We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8daa329 commit 51f9309Copy full SHA for 51f9309
.github/workflows/ci.yml
@@ -34,8 +34,23 @@ jobs:
34
${{ runner.os }}-test-
35
${{ runner.os }}-
36
- uses: julia-actions/julia-buildpkg@v1
37
+
38
- name: Build libLLVMExtra
39
run: julia --project=deps deps/build_ci.jl
40
+ if: runner.os != 'Windows'
41
42
+ # we really don't want to use MSVC
43
+ - name: Install MSYS2
44
+ uses: msys2/setup-msys2@v2
45
+ with:
46
+ path-type: inherit
47
+ install: mingw-w64-x86_64-gcc
48
+ if: runner.os == 'Windows'
49
+ - name: Build libLLVMExtra (in msys2)
50
+ shell: msys2 {0}
51
+ run: julia --project=deps deps/build_ci.jl
52
53
54
- name: Run tests
55
run: julia --project -e 'using Pkg; Pkg.test(; coverage=true, julia_args=`-g2`)'
56
- uses: julia-actions/julia-processcoverage@v1
0 commit comments