Optimize release-build.yml: Avoid building benchmark dependencies (#981)

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2023-04-06 16:19:15 +10:00 committed by GitHub
parent 0de3b21004
commit f134df548d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -60,7 +60,9 @@ jobs:
- name: Run unit tests in release build
if: "matrix.r"
run: just unit-tests
run: |
just avoid-benchmark-deps
just unit-tests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}