From a15730c4fd393dcb142fc7d8f346c34e06453886 Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Thu, 11 May 2023 21:49:26 -0500 Subject: [PATCH] We do wasm integration CI elsewhere now --- .github/workflows/integration.yml | 38 ------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/integration.yml diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml deleted file mode 100644 index 24c8a7750..000000000 --- a/.github/workflows/integration.yml +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Contract CI - -on: - pull_request: - paths: - - '**.go' - push: - paths: - - '**.go' - tags: - branches: - - 'main' - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Docker compose - run: STAKE_TOKEN="ujunox" TIMEOUT_COMMIT=500ms docker-compose up -d - - name: Checkout - uses: actions/checkout@v3 - with: - repository: 'envoylabs/whoami' - ref: 'v0.7.1-alpha' - - name: Run deploy script - run: | - chmod a+x ./scripts/deploy_ci.sh - ./scripts/deploy_ci.sh - - name: Dump docker logs on failure - if: failure() - uses: jwalton/gh-docker-logs@v2 -