Skip to content

Commit

Permalink
Match Ninja flags more closely to Make in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ribbanya committed Feb 21, 2024
1 parent fb377c9 commit 6a0ae4c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,12 @@ jobs:
run: ln -s /orig .
- name: Build
run: |
args='--version ${{matrix.version}} --compilers /compilers'
args=\
'--compilers /compilers' \
'--max-errors 1'
'--require-protos' \
'--verbose' \
'--version ${{matrix.version}}'
if [ -z '${{matrix.options}}' ]; then
args="--map $args"
fi
Expand Down

0 comments on commit 6a0ae4c

Please sign in to comment.