File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -84,22 +84,19 @@ jobs:
8484 - name : download zig
8585 uses : wei/wget@v1
8686 with :
87- args : -O zig.zip https://ziglang.org/builds/zig-linux-x86_64-0.15.0-dev.386+2e35fdd03.tar.xz
87+ args : -O https://ziglang.org/builds/zig-linux-x86_64-0.15.0-dev.386+2e35fdd03.tar.xz
8888
8989 # 解压zig
90- - name : unzip zig
91- uses : somaz94/compress-decompress @v1
90+ - name : unzip llvm
91+ uses : developerdino/action-tar @v1
9292 with :
93- command : decompress
94- source : ./zig.zip
95- format : zip
96- dest : ' ./zig'
93+ args : tar -xvf zig-linux-x86_64-0.15.0-dev.386+2e35fdd03.tar.xz
9794
9895 # 复制文件到指定目录
9996 - name : cp linux-x64 bin files
10097 run : |
10198 mkdir -p ./src/PublishAotCross.Compiler.linux-x64/bin
102- cp -r ./zig/zig -linux-x86_64-0.15.0-dev.386+2e35fdd03/* ./src/PublishAotCross.Compiler.linux-x64/bin
99+ cp -r ./zig-linux-x86_64-0.15.0-dev.386+2e35fdd03/* ./src/PublishAotCross.Compiler.linux-x64/bin
103100 rm -rf ./src/PublishAotCross.Compiler.linux-x64/bin/lib/tsan
104101 rm -rf ./src/PublishAotCross.Compiler.linux-x64/bin/lib/libcxxabi
105102 rm -rf ./src/PublishAotCross.Compiler.linux-x64/bin/lib/libcxx
You can’t perform that action at this time.
0 commit comments