Skip to content

chore: refactor op e2e tests - part 6 (#186) #106

chore: refactor op e2e tests - part 6 (#186)

chore: refactor op e2e tests - part 6 (#186) #106

Workflow file for this run

name: docker_publish
on:
push:
branches:
- 'main'
- 'base/consumer-chain-support'
tags:
- '*'
jobs:
lint_test:
uses: babylonlabs-io/.github/.github/workflows/[email protected]
with:
go-version: '1.23'
go-lint-version: 'v1.60.2'
run-unit-tests: true
run-lint: true
e2e_babylon:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Run e2e Babylon tests
run: make test-e2e-babylon
e2e_wasmd:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Run e2e Wasmd tests
run: make test-e2e-wasmd
e2e_bcd:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Run e2e BCD tests
run: make test-e2e-bcd
# TODO: disable e2e_op as removing fast sync might introduce nontrivial change
# e2e_op:
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v3
# - name: Set up Go
# uses: actions/setup-go@v4
# with:
# go-version: '1.23'
# - name: Set up the devnet data
# run: make op-e2e-devnet
# - name: Run e2e OP tests
# run: make test-e2e-op
docker_pipeline:
needs: ["lint_test"]
uses: babylonlabs-io/.github/.github/workflows/[email protected]
secrets: inherit
with:
publish: true