add missing overrides for api #251
Workflow file for this run
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: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
env: | |
min_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%2Fsubnet-evm&var-filter=gh_run_id%7C%3D%7C${{ github.run_id }}&var-filter=gh_run_attempt%7C%3D%7C${{ github.run_attempt }} | |
jobs: | |
lint_test: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/lint_allowed_geth_imports.sh | |
shell: bash | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.min_go_version }} | |
check-latest: true | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.56 | |
working-directory: . | |
args: --timeout 10m | |
skip-pkg-cache: true | |
- name: Run shellcheck | |
shell: bash | |
run: scripts/shellcheck.sh | |
unit_test: | |
name: Golang Unit Tests v${{ matrix.go }} (${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-20.04, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.min_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-latest' | |
run: echo "TIMEOUT=1200s" >> $GITHUB_ENV | |
- run: go mod download | |
shell: bash | |
- run: ./scripts/build.sh ./build/subnetevm | |
shell: bash | |
- run: ./scripts/build_test.sh | |
env: | |
TIMEOUT: ${{ env.TIMEOUT }} | |
shell: bash | |
- run: ./scripts/coverage.sh | |
shell: bash | |
e2e_precompile: | |
name: e2e precompile tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.min_go_version }} | |
check-latest: true | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.15" | |
- name: NPM Clean Install | |
run: npm ci | |
working-directory: ./contracts | |
- name: Hardhat Clean | |
run: npx hardhat clean | |
working-directory: ./contracts | |
- name: Hardhat Compile | |
run: npx hardhat compile | |
working-directory: ./contracts | |
- name: Install AvalancheGo Release | |
shell: bash | |
run: BASEDIR=/tmp/e2e-test AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego ./scripts/install_avalanchego_release.sh | |
- name: Build Subnet-EVM Plugin Binary | |
shell: bash | |
run: ./scripts/build.sh /tmp/e2e-test/avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy | |
- name: Run E2E Precompile Tests | |
shell: bash | |
run: AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego DATA_DIR=/tmp/e2e-test/precompile-data ./scripts/run_ginkgo_precompile.sh | |
- name: Upload Artifact | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: subnet-evm-e2e-logs-precompile | |
path: /tmp/e2e-test/precompile-data | |
retention-days: 5 | |
e2e_warp: | |
name: e2e warp tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.min_go_version }} | |
check-latest: true | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.15" | |
- name: NPM Clean Install | |
run: npm ci | |
working-directory: ./contracts | |
- name: Hardhat Clean | |
run: npx hardhat clean | |
working-directory: ./contracts | |
- name: Hardhat Compile | |
run: npx hardhat compile | |
working-directory: ./contracts | |
- name: Install AvalancheGo Release | |
shell: bash | |
run: BASEDIR=/tmp/e2e-test AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego ./scripts/install_avalanchego_release.sh | |
- name: Build Subnet-EVM Plugin Binary | |
shell: bash | |
run: ./scripts/build.sh /tmp/e2e-test/avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy | |
- name: Start prometheus | |
# Only run for the original repo; a forked repo won't have access to the monitoring credentials | |
if: (github.event_name != 'pull_request') || (github.event.pull_request.head.repo.full_name == github.repository) | |
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_name != 'pull_request') || (github.event.pull_request.head.repo.full_name == github.repository) | |
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_name != 'pull_request') || (github.event.pull_request.head.repo.full_name == github.repository) | |
shell: bash | |
run: .github/workflows/notify-metrics-availability.sh | |
env: | |
GRAFANA_URL: ${{ env.grafana_url }} | |
GH_JOB_ID: ${{ github.job }} | |
- name: Run Warp E2E Tests | |
shell: bash | |
run: AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego ./scripts/run_ginkgo_warp.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 for warp testing | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: warp-tmpnet-data | |
path: | | |
~/.tmpnet/networks | |
~/.tmpnet/prometheus/prometheus.log | |
~/.tmpnet/promtail/promtail.log | |
if-no-files-found: error | |
e2e_load: | |
name: e2e load tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.min_go_version }} | |
check-latest: true | |
- name: Install AvalancheGo Release | |
shell: bash | |
run: BASEDIR=/tmp/e2e-test AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego ./scripts/install_avalanchego_release.sh | |
- name: Build Subnet-EVM Plugin Binary | |
shell: bash | |
run: ./scripts/build.sh /tmp/e2e-test/avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy | |
- name: Start prometheus | |
# Only run for the original repo; a forked repo won't have access to the monitoring credentials | |
if: (github.event_name != 'pull_request') || (github.event.pull_request.head.repo.full_name == github.repository) | |
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_name != 'pull_request') || (github.event.pull_request.head.repo.full_name == github.repository) | |
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_name != 'pull_request') || (github.event.pull_request.head.repo.full_name == github.repository) | |
shell: bash | |
run: .github/workflows/notify-metrics-availability.sh | |
env: | |
GRAFANA_URL: ${{ env.grafana_url }} | |
GH_JOB_ID: ${{ github.job }} | |
- name: Run E2E Load Tests | |
shell: bash | |
run: AVALANCHEGO_BUILD_PATH=/tmp/e2e-test/avalanchego ./scripts/run_ginkgo_load.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 for load testing | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: load-tmpnet-data | |
path: | | |
~/.tmpnet/networks | |
~/.tmpnet/prometheus/prometheus.log | |
~/.tmpnet/promtail/promtail.log | |
if-no-files-found: error | |
mock_gen: | |
name: MockGen Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ env.min_go_version }} | |
check-latest: true | |
- shell: bash | |
run: scripts/mock.gen.sh | |
- shell: bash | |
run: .github/workflows/check-clean-branch.sh |