fix compile with openmp
[liba.git] / .github / workflows / msys2.yml
blob0f06396cdde15f76fb4b0e66b6ce5e5584692343
1 name: msys2
2 on:
3   workflow_dispatch:
4 jobs:
5   MSYS2:
6     strategy:
7       fail-fast: false
8       matrix:
9         include: [
10           { triple: x64, sys: MINGW64 },
11           { triple: x86, sys: MINGW32 },
12           { triple: x64, sys: CLANG64 },
13           { triple: x64, sys: UCRT64 },
14         ]
15     runs-on: windows-latest
16     steps:
17       - uses: actions/checkout@v4
18         with:
19           lfs: true
20           submodules: true
21       - uses: msys2/setup-msys2@v2
22         with:
23           update: true
24           location: D:\
25           path-type: strict
26           msystem: ${{ matrix.sys }}
27           pacboy: >-
28             toolchain:p
29             cmake:p
30             make:p
31             lua:p
32             rust:p
33             cython:p
34             python:p
35             python-pip:p
36             python-setuptools:p
37       - name: Run debug
38         shell: msys2 {0}
39         env:
40           MSYS2_PATH_TYPE: strict
41           MSYSTEM: ${{ matrix.sys }}
42         run: env
43       - name: Run cmake
44         shell: msys2 {0}
45         env:
46           MSYS2_PATH_TYPE: strict
47           MSYSTEM: ${{ matrix.sys }}
48           LIBA_OPENMP: ${{ !startsWith(matrix.sys, 'CLANG') }}
49         run: |
50           set -x
51           cmake -S . -B build -G "MinGW Makefiles" -DPython_ROOT_DIR=D:/msys64/${{ matrix.sys }} \
52             -DBUILD_TESTING=1 \
53             -DLIBA_WARNINGS=1 \
54             -DLIBA_PYTHON=1 \
55             -DLIBA_VCPKG=1 \
56             -DLIBA_JAVA=1 \
57             -DLIBA_LUA=1
58           cmake --build build --target package
59       - name: Run vcpkg
60         shell: msys2 {0}
61         env:
62           MSYS2_PATH_TYPE: strict
63           MSYSTEM: ${{ matrix.sys }}
64         run: |
65           set -x
66           cp -r build/vcpkg/* $VCPKG_INSTALLATION_ROOT
67           $VCPKG_INSTALLATION_ROOT/vcpkg install liba[ipo,pkgconfig]:${{ matrix.triple }}-mingw-static
68           $VCPKG_INSTALLATION_ROOT/vcpkg install liba[ipo,pkgconfig]:${{ matrix.triple }}-mingw-dynamic
69       - name: Run ctest
70         if: ${{ matrix.triple == 'x64' }}
71         shell: msys2 {0}
72         env:
73           MSYS2_PATH_TYPE: strict
74           MSYSTEM: ${{ matrix.sys }}
75           CTEST_OUTPUT_ON_FAILURE: 1
76         run: |
77           set -x
78           cmake --build build --target test