Skip to content

Commit

Permalink
Reverting smoke workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
smickovskid committed Sep 25, 2023
1 parent 1c8765e commit 137cf2d
Showing 1 changed file with 2 additions and 18 deletions.
20 changes: 2 additions & 18 deletions .github/workflows/integration-tests-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 137cf2d

Please sign in to comment.