Skip to content

Commit

Permalink
github action: Print gcc version
Browse files Browse the repository at this point in the history
  • Loading branch information
mkj committed Aug 23, 2024
1 parent 269f99f commit b24ff28
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ jobs:
- uses: actions/checkout@v4

- name: configure
run: ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1)
run: |
$(CC) --version
./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1)
- name: nowritev
if: ${{ matrix.nowritev }}
Expand Down

0 comments on commit b24ff28

Please sign in to comment.