forked from cdapio/hydrator-plugins
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cdapio#1839 from cdapio/add-cucumber-report-url
Add cucumber report url to the workflow
- Loading branch information
Showing
1 changed file
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,22 +74,19 @@ jobs: | |
- name: Run all e2e tests | ||
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || steps.filter.outputs.e2e-test == 'true' | ||
run: python3 e2e/src/main/scripts/run_e2e_test.py --module ${{ matrix.module }} | ||
- name: Upload report | ||
uses: actions/[email protected] | ||
if: always() | ||
with: | ||
name: Cucumber report | ||
path: ./**/target/cucumber-reports | ||
- name: Upload debug files | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: Debug files | ||
path: ./**/target/e2e-debug | ||
- name: Upload files to GCS | ||
uses: google-github-actions/upload-cloud-storage@v0 | ||
uses: google-github-actions/upload-cloud-storage@v2 | ||
if: always() | ||
with: | ||
path: ./plugin | ||
destination: e2e-tests-cucumber-reports/${{ github.event.repository.name }}/${{ github.ref }} | ||
glob: '**/target/cucumber-reports/**' | ||
- name: Cucumber Report URL | ||
if: always() | ||
run: echo "https://storage.googleapis.com/e2e-tests-cucumber-reports/${{ github.event.repository.name }}/${{ github.ref }}/plugin/${{ matrix.module }}/target/cucumber-reports/advanced-reports/cucumber-html-reports/overview-features.html" |