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

[WIP] chore: less buildjet #5206

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ env:
CXX: sccache clang++

jobs:
build-ubuntu-2204-amd64:
name: Build forest binaries on Ubuntu-22.04-amd64
build-ubuntu-amd64:
name: Build forest binaries on Linux AMD64
runs-on: ubuntu-22.04
# Run the job only if the PR is not a draft.
# This is done to limit the runner cost.
Expand Down Expand Up @@ -74,9 +74,9 @@ jobs:
~/.cargo/bin/forest*
if-no-files-found: error

build-ubuntu-2204-arm64:
name: Build forest binaries on Ubuntu-22.04-arm64
runs-on: buildjet-8vcpu-ubuntu-2204-arm
build-ubuntu-arm64:
name: Build forest binaries on Ubuntu ARM64
runs-on: ubuntu-22.04-arm
# Run the job only if the PR is not a draft.
# This is done to limit the runner cost.
if: github.event.pull_request.draft == false
Expand Down Expand Up @@ -127,8 +127,8 @@ jobs:
if: github.event.pull_request.draft == false
timeout-minutes: 30
needs:
- build-ubuntu-2204-amd64
- build-ubuntu-2204-arm64
- build-ubuntu-amd64
- build-ubuntu-arm64
steps:
- name: List cached docker images
run: docker image ls
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/forest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ jobs:
needs:
- build-ubuntu
name: Calibnet snapshot parity checks
runs-on: buildjet-8vcpu-ubuntu-2204
runs-on: ubuntu-24.04
# Run the job only on main to limit the runner cost.
# The downside is that the offending commit can only be caught after being merged
# and a manual revert is required.
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ env:

jobs:
tests:
# Change to `buildjet-8vcpu-ubuntu-2204` if `fuzzy` is down.
# runs-on: fuzzy
runs-on: buildjet-8vcpu-ubuntu-2204
# Run the job only if the PR is not a draft.
# This is done to limit the runner cost.
Expand All @@ -57,8 +55,6 @@ jobs:
uses: taiki-e/install-action@nextest
- run: make test
tests-release:
# Change to `buildjet-8vcpu-ubuntu-2204` if `fuzzy` is down.
# runs-on: fuzzy
runs-on: buildjet-8vcpu-ubuntu-2204
# Run the job only if the PR is not a draft.
# This is done to limit the runner cost.
Expand Down
Loading