Skip to content

Commit 1a0e6a1

Browse files
committed
wip
1 parent 72f3fb0 commit 1a0e6a1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: .github/workflows/ci.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ jobs:
121121
key: tests-results
122122
- name: Configure the build
123123
run: cmake -S $GITHUB_WORKSPACE -B $GITHUB_WORKSPACE/build
124-
- name: Build
124+
- name: Run unit tests
125125
run: make -C $GITHUB_WORKSPACE/build -j `nproc` test
126-
- name: Build
126+
- name: Run end-to-end tests
127127
run: make -C $GITHUB_WORKSPACE/build -j `nproc` e2e
128128
- name: Cache the test results
129129
uses: actions/cache/save@v4
@@ -159,9 +159,10 @@ jobs:
159159
key: benchmarks-results
160160
- name: Build
161161
run: make -C $GITHUB_WORKSPACE/build -j `nproc` benchmark
162+
# && github.ref == 'refs/heads/main'
162163
- name: Cache the benchmark results
163164
uses: actions/cache/save@v4
164-
if: matrix.host.arch == 'x64' && github.ref == 'refs/heads/main'
165+
if: matrix.host.arch == 'x64'
165166
with:
166167
path: build/output/benchmarks
167168
key: benchmarks-results

0 commit comments

Comments
 (0)