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

ci: change oracle-aarch64-4cpu-16gb to longhorn-infra-arm64-runners #1115

Merged
merged 1 commit into from
May 30, 2024
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
20 changes: 12 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,16 @@ jobs:

build-arm64-binaries:
name: Build ARM64 binaries
runs-on: oracle-aarch64-4cpu-16gb
runs-on: longhorn-infra-arm64-runners
steps:
- name: Install make curl git
run: |
sudo apt update
sudo apt-get -y install make curl git
- name: Checkout code
uses: actions/checkout@v4

- name: Install make
run: sudo apt-get install make

# Build binaries
- name: Run make build
run: |
Expand Down Expand Up @@ -127,15 +129,17 @@ jobs:
build-push-arm64-images:
name: Build and push ARM64 images
runs-on: oracle-aarch64-4cpu-16gb
runs-on: longhorn-infra-arm64-runners
needs: build-arm64-binaries
steps:
- name: Install make curl git
run: |
sudo apt update
sudo apt-get -y install make curl git
- name: Checkout code
uses: actions/checkout@v4

- name: Install make
run: sudo apt-get install make

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down