diff options
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a685bb9..9c34210 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -102,37 +102,3 @@ jobs: meson compile -C build meson test -C build - msys-meson: - name: 'msys-meson ${{ matrix.sys.abi }} ${{ matrix.library }}' - runs-on: windows-latest - defaults: - run: - shell: msys2 {0} - strategy: - matrix: - sys: - - { abi: mingw32, env: i686, compiler: gcc } - - { abi: mingw64, env: x86_64, compiler: gcc } - - { abi: ucrt64, env: ucrt-x86_64, compiler: gcc } - - { abi: clang32, env: clang-i686, compiler: clang } - - { abi: clang64, env: clang-x86_64, compiler: clang } - library: ['shared', 'static'] - fail-fast: false - steps: - - name: Use MinGW from MSYS - uses: msys2/setup-msys2@v2 - with: - msystem: ${{matrix.sys.abi}} - update: true - pacboy: >- - toolchain:p - meson:p - ninja:p - - - uses: actions/checkout@v2 - - - name: Build Windows - run: | - meson setup build -Dfastfloat=true -Dthreaded=true -Dsamples=true -Ddefault_library=${{ matrix.library }} - meson compile -C build - meson test -C build |