chore: fix function names in comment #4661
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
tags: | |
- "*" | |
branches: | |
- master | |
- dev | |
pull_request: | |
merge_group: | |
types: [checks_requested] | |
permissions: | |
contents: read | |
# Cancel ongoing workflow runs if a new one is started | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
go_version: '~1.21.9' | |
grafana_url: https://grafana-experimental.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?orgId=1&refresh=10s&var-filter=is_ephemeral_node%7C%3D%7Cfalse&var-filter=gh_repo%7C%3D%7Cava-labs%2Favalanchego&var-filter=gh_run_id%7C%3D%7C${{ github.run_id }}&var-filter=gh_run_attempt%7C%3D%7C${{ github.run_attempt }} | |
jobs: | |
Unit: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-12, ubuntu-20.04, ubuntu-22.04, windows-2022, [self-hosted, linux, ARM64, focal], [self-hosted, linux, ARM64, jammy]] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.go_version }} | |
check-latest: true | |
- name: Set timeout on Windows # Windows UT run slower and need a longer timeout | |
shell: bash | |
if: matrix.os == 'windows-2022' | |
run: echo "TIMEOUT=240s" >> $GITHUB_ENV | |
- name: build_test | |
shell: bash | |
run: ./scripts/build_test.sh | |
env: | |
TIMEOUT: ${{ env.TIMEOUT }} | |
Fuzz: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
check-latest: true | |
- name: fuzz_test | |
shell: bash | |
run: ./scripts/build_fuzz.sh 10 # Run each fuzz test 10 seconds | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
check-latest: true | |
- name: Build AvalancheGo Binary | |
shell: bash | |
run: ./scripts/build.sh -r | |
- name: Start prometheus | |
# Only run for the original repo; a forked repo won't have access to the monitoring credentials | |
if: (github.event.pull_request.head.repo.full_name == github.repository) || (github.event.repository.fork == false) | |
shell: bash | |
run: bash -x ./scripts/run_prometheus.sh | |
env: | |
PROMETHEUS_ID: ${{ secrets.PROMETHEUS_ID }} | |
PROMETHEUS_PASSWORD: ${{ secrets.PROMETHEUS_PASSWORD }} | |
- name: Start promtail | |
if: (github.event.pull_request.head.repo.full_name == github.repository) || (github.event.repository.fork == false) | |
shell: bash | |
run: bash -x ./scripts/run_promtail.sh | |
env: | |
LOKI_ID: ${{ secrets.LOKI_ID }} | |
LOKI_PASSWORD: ${{ secrets.LOKI_PASSWORD }} | |
- name: Notify of metrics availability | |
if: (github.event.pull_request.head.repo.full_name == github.repository) || (github.event.repository.fork == false) | |
shell: bash | |
run: .github/workflows/notify-metrics-availability.sh | |
env: | |
GRAFANA_URL: ${{ env.grafana_url }} | |
GH_JOB_ID: ${{ github.job }} | |
FILTER_BY_OWNER: avalanchego-e2e | |
- name: Run e2e tests | |
shell: bash | |
run: E2E_SERIAL=1 ./scripts/tests.e2e.sh | |
env: | |
GH_REPO: ${{ github.repository }} | |
GH_WORKFLOW: ${{ github.workflow }} | |
GH_RUN_ID: ${{ github.run_id }} | |
GH_RUN_NUMBER: ${{ github.run_number }} | |
GH_RUN_ATTEMPT: ${{ github.run_attempt }} | |
GH_JOB_ID: ${{ github.job }} | |
- name: Upload tmpnet network dir | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: e2e-tmpnet-data | |
path: | | |
~/.tmpnet/networks | |
~/.tmpnet/prometheus/prometheus.log | |
~/.tmpnet/promtail/promtail.log | |
if-no-files-found: error | |
e2e_existing_network: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
check-latest: true | |
- name: Build AvalancheGo Binary | |
shell: bash | |
run: ./scripts/build.sh -r | |
- name: Start prometheus | |
# Only run for the original repo; a forked repo won't have access to the monitoring credentials | |
if: (github.event.pull_request.head.repo.full_name == github.repository) || (github.event.repository.fork == false) | |
shell: bash | |
run: bash -x ./scripts/run_prometheus.sh | |
env: | |
PROMETHEUS_ID: ${{ secrets.PROMETHEUS_ID }} | |
PROMETHEUS_PASSWORD: ${{ secrets.PROMETHEUS_PASSWORD }} | |
- name: Start promtail | |
if: (github.event.pull_request.head.repo.full_name == github.repository) || (github.event.repository.fork == false) | |
shell: bash | |
run: bash -x ./scripts/run_promtail.sh | |
env: | |
LOKI_ID: ${{ secrets.LOKI_ID }} | |
LOKI_PASSWORD: ${{ secrets.LOKI_PASSWORD }} | |
- name: Notify of metrics availability | |
if: (github.event.pull_request.head.repo.full_name == github.repository) || (github.event.repository.fork == false) | |
shell: bash | |
run: .github/workflows/notify-metrics-availability.sh | |
env: | |
GRAFANA_URL: ${{ env.grafana_url }} | |
GH_JOB_ID: ${{ github.job }} | |
- name: Run e2e tests with existing network | |
shell: bash | |
run: E2E_SERIAL=1 ./scripts/tests.e2e.existing.sh | |
env: | |
GH_REPO: ${{ github.repository }} | |
GH_WORKFLOW: ${{ github.workflow }} | |
GH_RUN_ID: ${{ github.run_id }} | |
GH_RUN_NUMBER: ${{ github.run_number }} | |
GH_RUN_ATTEMPT: ${{ github.run_attempt }} | |
GH_JOB_ID: ${{ github.job }} | |
- name: Upload tmpnet network dir | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: e2e-existing-network-tmpnet-data | |
path: | | |
~/.tmpnet/networks | |
~/.tmpnet/prometheus/prometheus.log | |
~/.tmpnet/promtail/promtail.log | |
if-no-files-found: error | |
Upgrade: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
check-latest: true | |
- name: Build AvalancheGo Binary | |
shell: bash | |
run: ./scripts/build.sh | |
- name: Start prometheus | |
# Only run for the original repo; a forked repo won't have access to the monitoring credentials | |
if: (github.event.pull_request.head.repo.full_name == github.repository) || (github.event.repository.fork == false) | |
shell: bash | |
run: bash -x ./scripts/run_prometheus.sh | |
env: | |
PROMETHEUS_ID: ${{ secrets.PROMETHEUS_ID }} | |
PROMETHEUS_PASSWORD: ${{ secrets.PROMETHEUS_PASSWORD }} | |
- name: Start promtail | |
if: (github.event.pull_request.head.repo.full_name == github.repository) || (github.event.repository.fork == false) | |
shell: bash | |
run: bash -x ./scripts/run_promtail.sh | |
env: | |
LOKI_ID: ${{ secrets.LOKI_ID }} | |
LOKI_PASSWORD: ${{ secrets.LOKI_PASSWORD }} | |
- name: Notify of metrics availability | |
if: (github.event.pull_request.head.repo.full_name == github.repository) || (github.event.repository.fork == false) | |
shell: bash | |
run: .github/workflows/notify-metrics-availability.sh | |
env: | |
GRAFANA_URL: ${{ env.grafana_url }} | |
GH_JOB_ID: ${{ github.job }} | |
- name: Run e2e tests | |
shell: bash | |
run: ./scripts/tests.upgrade.sh | |
env: | |
GH_REPO: ${{ github.repository }} | |
GH_WORKFLOW: ${{ github.workflow }} | |
GH_RUN_ID: ${{ github.run_id }} | |
GH_RUN_NUMBER: ${{ github.run_number }} | |
GH_RUN_ATTEMPT: ${{ github.run_attempt }} | |
GH_JOB_ID: ${{ github.job }} | |
- name: Upload tmpnet network dir | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: upgrade-tmpnet-data | |
path: | | |
~/.tmpnet/networks | |
~/.tmpnet/prometheus/prometheus.log | |
~/.tmpnet/promtail/promtail.log | |
if-no-files-found: error | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
check-latest: true | |
- name: Run static analysis tests | |
shell: bash | |
run: scripts/lint.sh | |
- name: Run shellcheck | |
shell: bash | |
run: scripts/shellcheck.sh | |
buf-lint: | |
name: Protobuf Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: bufbuild/[email protected] | |
with: | |
github_token: ${{ github.token }} | |
- uses: bufbuild/buf-lint-action@v1 | |
with: | |
input: "proto" | |
check_generated_protobuf: | |
name: Up-to-date protobuf | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
check-latest: true | |
- uses: bufbuild/[email protected] | |
- shell: bash | |
run: scripts/protobuf_codegen.sh | |
- shell: bash | |
run: .github/workflows/check-clean-branch.sh | |
check_mockgen: | |
name: Up-to-date mocks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
check-latest: true | |
- shell: bash | |
run: scripts/mock.gen.sh | |
- shell: bash | |
run: .github/workflows/check-clean-branch.sh | |
go_mod_tidy: | |
name: Up-to-date go.mod and go.sum | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.go_version }} | |
check-latest: true | |
- shell: bash | |
run: go mod tidy | |
- shell: bash | |
run: .github/workflows/check-clean-branch.sh | |
test_build_image: | |
name: Image build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install qemu (required for cross-platform builds) | |
run: | | |
sudo apt update | |
sudo apt -y install qemu qemu-user-static | |
- name: Check image build | |
shell: bash | |
run: bash -x scripts/tests.build_image.sh | |
govulncheck: | |
runs-on: ubuntu-latest | |
name: govulncheck | |
steps: | |
- id: govulncheck | |
uses: golang/govulncheck-action@v1 | |
with: | |
go-version-input: ${{ env.go_version }} |