From 137cf2dbdd86deef428abcbdf1d5fe40410c32e1 Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Mon, 25 Sep 2023 10:35:05 +0200 Subject: [PATCH] Reverting smoke workflow --- .github/workflows/integration-tests-smoke.yml | 20 ++----------------- 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/.github/workflows/integration-tests-smoke.yml b/.github/workflows/integration-tests-smoke.yml index 074c77213..24e064afe 100644 --- a/.github/workflows/integration-tests-smoke.yml +++ b/.github/workflows/integration-tests-smoke.yml @@ -9,8 +9,6 @@ on: required: true default: develop type: string - schedule: - - cron: '0 * * * *' # Only run 1 of this workflow at a time per PR concurrency: @@ -104,24 +102,10 @@ jobs: QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }} QA_AWS_ACCOUNT_NUMBER: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }} - setup: - runs-on: ubuntu-latest - outputs: - job_name: ${{ steps.set_job_name.outputs.job_name }} - steps: - - name: Set job name - id: set_job_name - run: | - if [[ "${{ github.event_name }}" == "schedule" ]]; then - echo "job_name='Scheduled Run Smoke Tests'" >> $GITHUB_ENV - else - echo "job_name='Run Smoke Tests'" >> $GITHUB_ENV - fi - run_tests: - name: ${{ needs.setup.outputs.job_name }} + name: Run Smoke Tests runs-on: ubuntu20.04-16cores-64GB - needs: [setup, build_custom_chainlink_image, build_test_image] + needs: [ build_custom_chainlink_image, build_test_image ] environment: integration # these values need to match those used to build the chainlink image strategy: