Skip to content

Commit 3b0e704

Browse files
authored
build.yaml: switch x86 to gcc13
1 parent 05de3f8 commit 3b0e704

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,8 @@ jobs:
2525
version: ${{ matrix.config.version }}
2626
architecture: ${{ matrix.config.architecture }}
2727
run: |
28-
cd source && make
28+
if [[ `uname -m` == BePC ]]; then
29+
cd source && setarch x86 make
30+
else
31+
cd source && make
32+
fi

0 commit comments

Comments
 (0)