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 68706a3 commit 9ee66d3Copy full SHA for 9ee66d3
.github/workflows/build.yml
@@ -29,6 +29,28 @@ jobs:
29
- name: Run Tests
30
run: "./build/tests/lime-tests"
31
32
+ test-mingw:
33
+ runs-on: ubuntu-latest
34
+ container: archlinux:base-devel
35
+
36
+ strategy:
37
+ fail-fast: false
38
+ matrix:
39
+ language: ["cpp"]
40
+ arch: ["x86", "x64"]
41
42
+ steps:
43
+ - name: Checkout
44
+ uses: actions/checkout@v3
45
46
+ - name: Install build dependencies
47
+ run: "pacman --noconfirm -Syu cmake gcc git make mingw-w64"
48
49
+ - name: Compile
50
+ run: |
51
+ cmake -B build -Dlime_tests=ON -DCMAKE_TOOLCHAIN_FILE=cmake/mingw-${{ matrix.arch }}.cmake
52
+ cmake --build build
53
54
test-windows-clang:
55
runs-on: windows-latest
56
strategy:
0 commit comments