Skip to content

Commit

Permalink
more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Sep 19, 2024
1 parent 274c16a commit b4a4c71
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/actionlint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
self-hosted-runner:
labels:
- custom-arm64-focal
- custom-arm64-jammy
- custom-arm64-noble
16 changes: 0 additions & 16 deletions .github/actions/install-focal-deps/action.yml

This file was deleted.

6 changes: 2 additions & 4 deletions .github/workflows/build-linux-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,14 @@ jobs:
rm -rf /tmp/avalanchego
build-arm64-binaries-tarball:
runs-on: custom-arm64-focal
runs-on: custom-arm64-jammy
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/install-focal-deps

- uses: ./.github/actions/setup-go-for-project

- run: go version
Expand Down Expand Up @@ -124,7 +122,7 @@ jobs:
TAG: ${{ env.TAG }}
BUCKET: ${{ secrets.BUCKET }}
ARCH: "arm64"
RELEASE: "focal"
RELEASE: "jammy"

- name: Save as Github artifact
uses: actions/upload-artifact@v4
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/build-ubuntu-arm64-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,14 @@ jobs:
rm -rf ./build
rm -rf /tmp/avalanchego
build-focal-arm64-package:
runs-on: custom-arm64-focal
build-noble-arm64-package:
runs-on: custom-arm64-noble
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-focal-deps
- uses: ./.github/actions/setup-go-for-project
- run: go version

Expand Down Expand Up @@ -119,12 +118,12 @@ jobs:
TAG: ${{ env.TAG }}
BUCKET: ${{ secrets.BUCKET }}
ARCH: "arm64"
RELEASE: "focal"
RELEASE: "noble"

- name: Save as Github artifact
uses: actions/upload-artifact@v4
with:
name: focal
name: noble
path: /tmp/avalanchego/avalanchego-${{ env.TAG }}-arm64.deb

- name: Cleanup
Expand Down

0 comments on commit b4a4c71

Please sign in to comment.