Skip to content

Update GitHub action versions; remove operator references #380

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

Merged
merged 9 commits into from
Dec 21, 2022
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
22 changes: 7 additions & 15 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ jobs:
name: Lint tests
runs-on: ubuntu-latest
steps:
- name: Allow access to avalanchego-operator repo
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.SNOWBOT_PAT }}
run: git config --global url."https://${GITHUB_ACCESS_TOKEN}@github.com/ava-labs/avalanchego-operator".insteadOf "https://github.com/ava-labs/avalanchego-operator"
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
Expand All @@ -35,12 +31,8 @@ jobs:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Allow access to avalanchego-operator repo
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.SNOWBOT_PAT }}
run: git config --global url."https://${GITHUB_ACCESS_TOKEN}@github.com/ava-labs/avalanchego-operator".insteadOf "https://github.com/ava-labs/avalanchego-operator"
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.18
- run: go test -v -timeout 10m -race ./...
Expand All @@ -51,11 +43,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Run e2e tests
Expand All @@ -66,20 +58,20 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
path: avalanche-network-runner
- name: Set up Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Set up arm64 cross compiler
run: |
sudo apt-get -y update
sudo apt-get -y install gcc-aarch64-linux-gnu
- name: Checkout osxcross
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: tpoechtrager/osxcross
path: osxcross
Expand Down