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

Update to gh-hosted runners for arm64 #114

Merged
merged 4 commits into from
Jun 21, 2024
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
binaryextension: .exe
- image: [self-hosted, macos, arm64]
name: macos-arm64
- image: [self-hosted, linux, arm64]
- image: ubuntu-latest-arm-8-cores
name: linux-arm64
env:
BINARY_NAME: smcli${{ matrix.binaryextension }}
Expand All @@ -38,7 +38,7 @@ jobs:
go-version: ${{ env.go-version }}
- name: Install required packages
# only run on GH-hosted runner; self-hosted runner already has these
if: matrix.name == 'linux-amd64'
if: ${{ matrix.name == 'linux-amd64' || matrix.name == 'linux-arm64' }}
run: sudo apt-get install -y libudev-dev
- name: Build
run: make build
Expand Down
Loading