From 4300e1a9241dfcc2d118d8c41347437fa7646fb6 Mon Sep 17 00:00:00 2001 From: bap2pecs Date: Wed, 11 Dec 2024 15:15:02 +0800 Subject: [PATCH] skip all other CI --- .github/workflows/ci.yml | 96 ++++++++++++++++++++-------------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60fb0d7b..912fae7b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,58 +6,58 @@ on: - '**' jobs: - lint_test: - uses: babylonlabs-io/.github/.github/workflows/reusable_go_lint_test.yml@v0.7.0 - secrets: inherit - with: - go-version: '1.23' - go-lint-version: 'v1.60.2' - run-unit-tests: true - run-lint: true + # lint_test: + # uses: babylonlabs-io/.github/.github/workflows/reusable_go_lint_test.yml@v0.7.0 + # secrets: inherit + # 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_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_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 + # 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 - 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: Run e2e OP tests - run: make test-e2e-op + # 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: Run e2e OP tests + # run: make test-e2e-op docker_pipeline: uses: babylonlabs-io/.github/.github/workflows/reusable_docker_pipeline.yml@v0.7.0