File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -121,9 +121,9 @@ jobs:
121
121
key : tests-results
122
122
- name : Configure the build
123
123
run : cmake -S $GITHUB_WORKSPACE -B $GITHUB_WORKSPACE/build
124
- - name : Build
124
+ - name : Run unit tests
125
125
run : make -C $GITHUB_WORKSPACE/build -j `nproc` test
126
- - name : Build
126
+ - name : Run end-to-end tests
127
127
run : make -C $GITHUB_WORKSPACE/build -j `nproc` e2e
128
128
- name : Cache the test results
129
129
uses : actions/cache/save@v4
@@ -159,9 +159,10 @@ jobs:
159
159
key : benchmarks-results
160
160
- name : Build
161
161
run : make -C $GITHUB_WORKSPACE/build -j `nproc` benchmark
162
+ # && github.ref == 'refs/heads/main'
162
163
- name : Cache the benchmark results
163
164
uses : actions/cache/save@v4
164
- if : matrix.host.arch == 'x64' && github.ref == 'refs/heads/main'
165
+ if : matrix.host.arch == 'x64'
165
166
with :
166
167
path : build/output/benchmarks
167
168
key : benchmarks-results
You can’t perform that action at this time.
0 commit comments