Skip to content

Commit

Permalink
UCRT added
Browse files Browse the repository at this point in the history
  • Loading branch information
niXman committed Dec 4, 2022
1 parent d4954df commit 9eef2ae
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
arch: [x86_64, i686]
threads: [posix, win32]
exceptions: [seh, dwarf]
msvcrt: [msvcrt, ucrt]
exclude:
- arch: x86_64
exceptions: dwarf
Expand All @@ -47,7 +48,18 @@ jobs:

- name: Build
shell: msys2 {0}
run: ./build --mode=gcc-${{ needs.split-tag.outputs.gcc-version }} --buildroot=/c/buildroot --jobs=4 --rev=${{ needs.split-tag.outputs.mingw-rev }} --rt-version=${{ needs.split-tag.outputs.rt-version }} --threads=${{ matrix.threads }} --exceptions=${{ matrix.exceptions }} --arch=${{ matrix.arch }} --bin-compress --enable-languages=c,c++,fortran
run: ./build \
--mode=gcc-${{ needs.split-tag.outputs.gcc-version }} \
--buildroot=/c/buildroot \
--jobs=4 \
--rev=${{ needs.split-tag.outputs.mingw-rev }} \
--with-default-msvcrt=${{ matrix.msvcrt }} \
--rt-version=${{ needs.split-tag.outputs.rt-version }} \
--threads=${{ matrix.threads }} \
--exceptions=${{ matrix.exceptions }} \
--arch=${{ matrix.arch }} \
--bin-compress \
--enable-languages=c,c++,fortran

- name: Upload
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 9eef2ae

Please sign in to comment.