Skip to content

Commit

Permalink
build.yaml: switch x86 to gcc13
Browse files Browse the repository at this point in the history
  • Loading branch information
korli authored Jan 16, 2025
1 parent 05de3f8 commit 3b0e704
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,8 @@ jobs:
version: ${{ matrix.config.version }}
architecture: ${{ matrix.config.architecture }}
run: |
cd source && make
if [[ `uname -m` == BePC ]]; then
cd source && setarch x86 make
else
cd source && make
fi

0 comments on commit 3b0e704

Please sign in to comment.