We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17ffb9d commit c4de38dCopy full SHA for c4de38d
1 file changed
.github/workflows/build.yml
@@ -46,6 +46,7 @@ jobs:
46
- uses: actions/checkout@v4
47
with:
48
fetch-depth: 0
49
+ submodules: recursive
50
51
- name: Install LLVM toolchain
52
run: |
@@ -58,15 +59,16 @@ jobs:
58
59
done
60
61
ln -sf /usr/bin/ld.mold /usr/bin/ld
- 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
64
65
- name: Build
66
env:
67
ARCH: ${{ matrix.arch }}
68
TARGET: ${{ matrix.arch }}-alpine-linux-musl
69
70
set -e
- ./cbuild.sh -vvv
71
+ ./cbuild.sh
72
73
mkdir -p dist
74
find . -maxdepth 1 -type f -perm -111 ! -name '*.sh' -exec mv {} dist/ \;
0 commit comments