Skip to content

Commit

Permalink
Merge pull request #40 from starg2/patch-1
Browse files Browse the repository at this point in the history
Fix build command in build.yml
  • Loading branch information
niXman committed May 24, 2023
2 parents 3ef32ef + 7b99b0e commit ecaa196
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +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 }} \
--with-default-msvcrt=${{ matrix.msvcrt }} \
--rt-version=${{ needs.split-tag.outputs.rt-version }} \
--threads=${{ matrix.threads }} \
--exceptions=${{ matrix.exceptions }} \
--arch=${{ matrix.arch }} \
--bin-compress \
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
Expand Down

0 comments on commit ecaa196

Please sign in to comment.