File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change 33 push :
44 pull_request :
55jobs :
6- windows-latest :
6+ windows-msvc :
77 runs-on : ' windows-latest'
88 steps :
99 - uses : actions/checkout@v4
2222 run : |
2323 cd CPP/build
2424 ctest . -C RelWithDebInfo --output-on-failure
25+ windows-msys2 :
26+ runs-on : ' windows-latest'
27+ defaults :
28+ run :
29+ shell : msys2 {0}
30+ steps :
31+ - uses : actions/checkout@v4
32+ - uses : msys2/setup-msys2@v2
33+ with :
34+ msystem : UCRT64
35+ update : true
36+ pacboy : >-
37+ git:
38+ make:
39+ toolchain:p
40+ cmake:p
41+ - name : Build
42+ run : |
43+ mkdir CPP/build
44+ cd CPP/build
45+ cmake .. -G "MSYS Makefiles" -DCLIPPER2_TESTS=ON
46+ cmake --build . --parallel
47+ - name : Run tests
48+ run : |
49+ cd CPP/build
50+ ctest . --output-on-failure
2551 ubuntu-latest-gcc-default :
2652 runs-on : ' ubuntu-latest'
2753 steps :
You can’t perform that action at this time.
0 commit comments