Skip to content

Commit 7c0f7e0

Browse files
committed
fix extract
1 parent 8fbecda commit 7c0f7e0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/create_release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,11 @@ jobs:
128128
- name: download sysroot
129129
run: |
130130
wget https://wasm.storage.googleapis.com/sysroot_debian_stretch_amd64_v2.tar.xz
131-
tar xaf sysroot_debian_stretch_amd64_v2.tar.xz
132-
pwd
133-
ls
131+
mkdir sysroot && tar xaf sysroot_debian_stretch_amd64_v2.tar.xz -C sysroot
134132
135133
- name: cmake
136134
run: |
137-
cmake . -G Ninja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_AR=llvm-ar -DCMAKE_SYSROOT=$(pwd)/sysroot_debian_stretch_amd64_v2 -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC_LIB=ON -DCMAKE_INSTALL_PREFIX=install -DBYN_ENABLE_LTO=ON
135+
cmake . -G Ninja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang -DCMAKE_AR=llvm-ar -DCMAKE_SYSROOT=$(pwd)/sysroot -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC_LIB=ON -DCMAKE_INSTALL_PREFIX=install -DBYN_ENABLE_LTO=ON
138136
139137
- name: build
140138
run: |

0 commit comments

Comments
 (0)