From d010772bb87aaaf7496cedbff883ae033359e72d Mon Sep 17 00:00:00 2001 From: Paul Balaji <10051819+paulbalaji@users.noreply.github.com> Date: Tue, 1 Oct 2024 19:56:50 +0100 Subject: [PATCH] chore: delete test-skipped workflow (#4601) chore: delete test-skipped workflow - despite recent changes to improve filtering for MD files, our test/test-skipped triggers are still throwing up problems e.g. https://canary.discord.com/channels/935678348330434570/935678739663192184/1290706562796617728 - given a MD-only change is unlikely, and we're likely to have MD files for changesets more often than not, better to remove test-skipped altogether until it becomes essential to skip tests - given our CI has gotten cheaper+faster lately, not a huge overhead to run for MD-only changes --- .github/workflows/test-skipped.yml | 95 ------------------------------ .github/workflows/test.yml | 6 -- 2 files changed, 101 deletions(-) delete mode 100644 .github/workflows/test-skipped.yml diff --git a/.github/workflows/test-skipped.yml b/.github/workflows/test-skipped.yml deleted file mode 100644 index c8dc05e69..000000000 --- a/.github/workflows/test-skipped.yml +++ /dev/null @@ -1,95 +0,0 @@ -# This is here to satisfy the PR requirements when only markdown changes occur. -name: test - -on: - # Auto-pass tests if only md files are changed - push: - branches: [main] - paths: - - '!**/*' - - '**/*.md' - # Auto-pass tests if only md files are changed - pull_request: - branches: - - '*' - paths: - - '!**/*' - - '**/*.md' - -concurrency: - group: e2e-${{ github.ref }} - cancel-in-progress: ${{ github.ref_name != 'main' }} - -jobs: - yarn-install: - runs-on: ubuntu-latest - steps: - - name: Instant pass - run: echo "yarn-install job passed" - - lint-prettier: - runs-on: ubuntu-latest - steps: - - name: Instant pass - run: echo "lint-prettier job passed" - - yarn-test: - runs-on: ubuntu-latest - steps: - - name: Instant pass - run: echo "yarn-test job passed" - - agent-configs: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - environment: [mainnet3, testnet4] - steps: - - name: Instant pass - run: echo "agent-configs job passed" - - e2e-matrix: - runs-on: ubuntu-latest - if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.base_ref == 'main') || github.event_name == 'merge_group' - strategy: - matrix: - e2e-type: [cosmwasm, non-cosmwasm] - steps: - - name: Instant pass - run: echo "e2e-matrix job passed" - - cli-advanced-e2e: - runs-on: ubuntu-latest - if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.base_ref == 'main') || github.event_name == 'merge_group' - strategy: - matrix: - include: - - test-type: preset_hook_enabled - - test-type: configure_hook_enabled - - test-type: pi_with_core_chain - steps: - - name: Instant pass - run: echo "cli-advanced-e2e job passed" - - env-test: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - environment: [mainnet3] - chain: [ethereum, arbitrum, optimism, inevm, viction] - module: [core, igp] - include: - - environment: testnet4 - chain: sepolia - module: core - steps: - - name: Instant pass - run: echo "env-test job passed" - - coverage: - runs-on: ubuntu-latest - steps: - - name: Instant pass - run: echo "coverage job passed" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e3516326..e6fcb5b6d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,16 +4,10 @@ on: # Triggers the workflow on pushes to main branch, ignoring md files push: branches: [main] - paths: - - '**/*' - - '!**/*.md' # Triggers on pull requests, ignoring md files pull_request: branches: - '*' - paths: - - '**/*' - - '!**/*.md' merge_group: workflow_dispatch: