Skip to content

Commit

Permalink
Update job names in E2E reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcl committed Jul 18, 2024
1 parent 901609e commit c5afdef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-e2e-tests-reusable-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ jobs:

# Run Docker tests
run-docker-tests:
name: Run docker tests (${{ matrix.tests.id }})
name: Run ${{ matrix.tests.id }}
needs: [load-test-configurations, require-chainlink-image-versions-in-qa-ecr, require-chainlink-plugin-versions-in-qa-ecr, get_latest_chainlink_release_version]
# Run when none of the needed jobs fail or are cancelled (skipped or successful jobs are ok)
if: ${{ needs.load-test-configurations.outputs.run-docker-tests == 'true' && always() && !failure() && !cancelled() }}
Expand All @@ -378,7 +378,7 @@ jobs:
org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }}
basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }}
hostname: ${{ secrets.GRAFANA_INTERNAL_HOST }}
this-job-name: Run E2E Tests / Run docker tests (${{ matrix.tests.id }})
this-job-name: Run E2E Tests / Run ${{ matrix.tests.id }}
test-results-file: '{"testType":"go","filePath":"/tmp/gotest.log"}'
continue-on-error: true

Expand Down Expand Up @@ -485,7 +485,7 @@ jobs:
run-k8s-runner-tests:
needs: [load-test-configurations, prepare-remote-runner-test-image, require-chainlink-image-versions-in-qa-ecr, require-chainlink-plugin-versions-in-qa-ecr, get_latest_chainlink_release_version]
if: ${{ needs.load-test-configurations.outputs.run-k8s-tests == 'true' && always() && !failure() && !cancelled() }}
name: Run k8s tests (${{ matrix.tests.id }})
name: Run ${{ matrix.tests.id }}
runs-on: ${{ matrix.tests.runs_on }}
strategy:
fail-fast: false
Expand All @@ -509,7 +509,7 @@ jobs:
org-id: ${{ secrets.GRAFANA_INTERNAL_TENANT_ID }}
basic-auth: ${{ secrets.GRAFANA_INTERNAL_BASIC_AUTH }}
hostname: ${{ secrets.GRAFANA_INTERNAL_HOST }}
this-job-name: Run E2E Tests / Run k8s tests (${{ matrix.tests.id }})
this-job-name: Run E2E Tests / Run ${{ matrix.tests.id }}
continue-on-error: true

- name: Checkout repository
Expand Down

0 comments on commit c5afdef

Please sign in to comment.