Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[10.4 stable] use buildjet runners for building the packages #3618

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
fail-fast: false
matrix:
include:
- os: arm64-dirty
- 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 All @@ -42,7 +42,7 @@ jobs:
with:
fetch-depth: 0
- name: ensure zstd for cache # this should be removed once the arm64 VM includes zstd
if: ${{ matrix.os == 'arm64-dirty' || matrix.os == 'arm64-secure' }}
if: ${{ matrix.os == 'buildjet-4vcpu-ubuntu-2204-arm' || matrix.os == 'arm64-secure' }}
run: |
sudo apt install -y zstd
- name: ensure packages for cross-arch build
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
Loading