We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 389072b commit d686fc9Copy full SHA for d686fc9
2 files changed
.github/workflows/mainline-compile.yml
@@ -46,4 +46,3 @@ jobs:
46
path: |
47
build/Release/*.tar.gz
48
if-no-files-found: error
49
- compression-level: '0'
.github/workflows/mainline-test.yml
@@ -35,8 +35,11 @@ jobs:
35
- name: Extract and run tarballs
36
run: |
37
for archive in artifacts/*.tar.gz; do
38
- tar -xpf "$archive" -C / --overwrite
+ mkdir unpacked
39
+ unzip -q "$archive" -d unpacked
40
+ tar -xpf "unpacked/$archive" -C / --overwrite
41
for f in /opt/hcpu/tests/*; do
42
[ -f "$f" ] && [ -x "$f" ] && "$f"
43
done
44
+ rm -rf unpacked
45
0 commit comments