Skip to content

Commit

Permalink
Merge pull request #371 from ava-labs/use-ubuntu-20.04-for-release
Browse files Browse the repository at this point in the history
use ubuntu 20.04 to make releases
  • Loading branch information
Connor Daly authored Dec 8, 2022
2 parents 1d8bb2b + 4a7eb00 commit 9fa5b49
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: scripts/tests.e2e.sh 1.9.2 1.9.2 0.4.3
release:
needs: [lint_test, unit_test, e2e_test]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Git checkout
uses: actions/checkout@v2
Expand All @@ -71,7 +71,9 @@ jobs:
with:
go-version: 1.18
- name: Set up arm64 cross compiler
run: sudo apt-get -y install gcc-aarch64-linux-gnu
run: |
sudo apt-get -y update
sudo apt-get -y install gcc-aarch64-linux-gnu
- name: Checkout osxcross
uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 9fa5b49

Please sign in to comment.