Skip to content

Commit c4de38d

Browse files
authored
Update build.yml
1 parent 17ffb9d commit c4de38d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
- uses: actions/checkout@v4
4747
with:
4848
fetch-depth: 0
49+
submodules: recursive
4950

5051
- name: Install LLVM toolchain
5152
run: |
@@ -58,15 +59,16 @@ jobs:
5859
done
5960
6061
ln -sf /usr/bin/ld.mold /usr/bin/ld
61-
ln -sf /usr/bin/clang /usr/bin/cc
62+
ln -sfT /usr/bin/clang /usr/bin/cc
63+
ln -sfT /usr/bin/clang /usr/bin/gcc
6264
6365
- name: Build
6466
env:
6567
ARCH: ${{ matrix.arch }}
6668
TARGET: ${{ matrix.arch }}-alpine-linux-musl
6769
run: |
6870
set -e
69-
./cbuild.sh -vvv
71+
./cbuild.sh
7072
7173
mkdir -p dist
7274
find . -maxdepth 1 -type f -perm -111 ! -name '*.sh' -exec mv {} dist/ \;

0 commit comments

Comments
 (0)