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 412f0a6 commit 6ab461bCopy full SHA for 6ab461b
.github/workflows/ubuntu.yml
@@ -11,6 +11,7 @@ on:
11
12
env:
13
build_dir: "build"
14
+ artifact: "cubool-ubuntu-build.tar.xz"
15
16
jobs:
17
build:
@@ -25,7 +26,6 @@ jobs:
25
26
gcc: 9
27
28
config: "Release"
- artifact: "cubool-ubuntu-build.tar.xz"
29
30
steps:
31
- uses: actions/checkout@v4
@@ -63,6 +63,16 @@ jobs:
63
regression-test-file: cpu_test_regression.log
64
65
66
+ - uses: actions/download-artifact@v4
67
+ with:
68
+ name: ${{ env.artifact }}
69
+
70
+ - name: Unarchive artifact
71
+ run: |
72
+ tar xzf ${{ env.artifact }}
73
+ rm ${{ env.artifact }}
74
+ ls
75
76
- name: Run unit-tests
77
working-directory: ${{ env.build_dir }}
78
run: |
0 commit comments