File tree Expand file tree Collapse file tree 1 file changed +10
-17
lines changed Expand file tree Collapse file tree 1 file changed +10
-17
lines changed Original file line number Diff line number Diff line change 72
72
path : build.tar.gz
73
73
retention-days : 1
74
74
75
- # FIXME: This is not needed. Remove.
76
- - name : Print CCache Statistics
77
- run : |
78
- ccache -s
79
-
80
75
81
76
BuildVTRWithOdin :
82
77
name : ' B: Building VTR Release With Odin'
@@ -117,10 +112,6 @@ jobs:
117
112
path : build.tar.gz
118
113
retention-days : 1
119
114
120
- - name : Print CCache Statistics
121
- run : |
122
- ccache -s
123
-
124
115
125
116
Format :
126
117
runs-on : ubuntu-24.04
@@ -186,15 +177,19 @@ jobs:
186
177
- name : Install dependencies
187
178
run : ./.github/scripts/install_dependencies.sh
188
179
189
- - name : ' ccache'
190
- uses :
hendrikmuhs/[email protected]
180
+ - name : Download Build Artifact
181
+ uses : actions/download-artifact@v4
182
+ with :
183
+ name : build-release.tar.gz
184
+
185
+ - name : Unpack Build
186
+ shell : bash
187
+ run : |
188
+ tar -xvzf build.tar.gz
191
189
192
190
- name : Test
193
- env :
194
- CMAKE_PARAMS : " -DVTR_ASSERT_LEVEL=3"
195
- NUM_PROC : ${{ steps.cpu-cores.outputs.count }}
196
191
run : |
197
- export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
192
+ cd build
198
193
make test -j${{ steps.cpu-cores.outputs.count }}
199
194
200
195
@@ -203,7 +198,6 @@ jobs:
203
198
# that these build variations are warning clean.
204
199
BuildVariations :
205
200
runs-on : ubuntu-24.04
206
- needs : [BuildVTR]
207
201
name : ' B: Build Variations'
208
202
env :
209
203
# For the CI, we want all build variations to be warning clean.
@@ -460,7 +454,6 @@ jobs:
460
454
461
455
Sanitized :
462
456
runs-on : ubuntu-24.04
463
- needs : [BuildVTRWithOdin]
464
457
strategy :
465
458
fail-fast : false
466
459
matrix :
You can’t perform that action at this time.
0 commit comments