Skip to content

Commit

Permalink
ci: move --prefix configure arg first
Browse files Browse the repository at this point in the history
In the `build_and_test` job, to match the common usage.

Added on commit 300efec ("let github CI run tests", 2020-10-24).
  • Loading branch information
kmk3 committed Feb 17, 2023
1 parent d4639bf commit 9837161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: install dependencies
run: sudo apt-get install gcc-12 libapparmor-dev libselinux1-dev expect xzdec
- name: configure
run: CC=gcc-12 ./configure --enable-fatal-warnings --enable-analyzer --enable-apparmor --enable-selinux --prefix=/usr
run: CC=gcc-12 ./configure --prefix=/usr --enable-fatal-warnings --enable-analyzer --enable-apparmor --enable-selinux
- name: make
run: make
- name: make install
Expand Down

0 comments on commit 9837161

Please sign in to comment.