Skip to content

Commit

Permalink
Use same runners between jobs in build.yml for cache to work
Browse files Browse the repository at this point in the history
GitHub cache uses absolute paths, BuildJet and GitHub runners
have different file structure, we use same runners for cache
to work

Signed-off-by: Pavel Abramov <[email protected]>
  • Loading branch information
uncleDecart authored and eriknordmark committed Nov 21, 2023
1 parent 597bfac commit 8ea9bae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
include:
- os: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64
- os: ubuntu-20.04
- os: buildjet-4vcpu-ubuntu-2004
arch: amd64
- os: ubuntu-20.04
- os: buildjet-4vcpu-ubuntu-2004
arch: riscv64
steps:
- name: Starting Report
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
eve:
needs: packages # all packages for all platforms must be built first
runs-on: ubuntu-20.04
runs-on: buildjet-4vcpu-ubuntu-2004
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 8ea9bae

Please sign in to comment.