We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c5e8bb commit 4bf09b8Copy full SHA for 4bf09b8
1 file changed
.github/workflows/build.yml
@@ -37,7 +37,7 @@ jobs:
37
steps:
38
- name: Patch Alpine for GitHub Actions
39
run: |
40
- apk add --no-cache nodejs npm gcompat
+ apk add --no-cache nodejs npm gcompat git
41
sed -i 's/^ID=.*/ID=gha/' /etc/os-release
42
mkdir -p /__e/node20/bin
43
ln -sf /usr/bin/node /__e/node20/bin/node
@@ -47,11 +47,16 @@ jobs:
47
with:
48
fetch-depth: 0
49
50
+ - name: Fetch submodules
51
+ run: |
52
+ git config --global --add safe.directory "$GITHUB_WORKSPACE"
53
+ git submodule update --init --recursive
54
+
55
- name: Install LLVM toolchain
56
57
apk add --no-cache \
58
clang llvm mold \
- musl-dev make git curl
59
+ musl-dev make curl
60
61
for t in ar ranlib nm objcopy objdump strip strings size readelf addr2line; do
62
ln -sf "/usr/bin/llvm-$t" "/usr/bin/$t"
0 commit comments