Commit 70b1a63 1 parent d3c65a8 commit 70b1a63 Copy full SHA for 70b1a63
File tree 3 files changed +23
-2
lines changed
3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ set -o errexit -o nounset -o xtrace -o pipefail
3
+ shopt -s inherit_errexit nullglob dotglob
4
+
5
+ rm -rf " ${GITHUB_WORKSPACE:? } " /*
6
+
7
+ if test " ${RUNNER_DEBUG:- 0} " ! = ' 1' ; then
8
+ set +o xtrace
9
+ fi
Original file line number Diff line number Diff line change 42
42
with :
43
43
name : gfruit-image
44
44
path : " ./buck-out/v2/gen/root/**/*"
45
+ - name : Cleanup
46
+ run : bash .github/cleanup.sh
45
47
46
48
cosmo_seq :
47
49
needs : changes
63
65
with :
64
66
name : cosmo-seq-image
65
67
path : " ./buck-out/v2/gen/root/**/*"
68
+ - name : Cleanup
69
+ run : bash .github/cleanup.sh
66
70
67
71
cosmo_hp :
68
72
needs : changes
84
88
with :
85
89
name : cosmo-hp-image
86
90
path : " ./buck-out/v2/gen/root/**/*"
91
+ - name : Cleanup
92
+ run : bash .github/cleanup.sh
87
93
88
94
bsv-streams :
89
95
needs : changes
@@ -113,4 +119,6 @@ jobs:
113
119
- uses : actions/upload-artifact@v4
114
120
with :
115
121
name : bsv-images
116
- path : " ./build/latest/**/*"
122
+ path : " ./build/latest/**/*"
123
+ - name : Cleanup
124
+ run : bash .github/cleanup.sh
Original file line number Diff line number Diff line change 35
35
run : echo "~/.cargo/bin" >> "$GITHUB_PATH"
36
36
- name : Run VUnit tests
37
37
run : set -o pipefail; buck2 bxl //tools/vunit-sims.bxl:vunit_sim_gen | while IFS= read -r line; do eval "$line" ; done
38
+ - name : Cleanup
39
+ run : bash .github/cleanup.sh
38
40
39
41
bsv-sim :
40
42
needs : changes
60
62
run : ./cobble bluesim_test "//.*Test.*"
61
63
working-directory : ./build
62
64
- name : backup build-dir
63
- run : cp -R ./build /tmp/cobble_build_bkup
65
+ run : cp -R ./build /tmp/cobble_build_bkup
66
+ - name : Cleanup
67
+ run : bash .github/cleanup.sh
You can’t perform that action at this time.
0 commit comments