Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[metabase] Update to use hyphen based args #62

Merged
merged 2 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 18 additions & 12 deletions .github/workflows/trunk-hourly-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,11 @@ jobs:

- run: ls -l ./cypress/reports/mochareports/
- name: Upload results
if: "!cancelled()"
uses: trunk-io/analytics-uploader@main
with:
junit_paths: cypress/reports/**/*junit*.xml
org_url_slug: trunk-staging-org
junit-paths: cypress/reports/**/*junit*.xml
org-slug: trunk-staging-org
token: ${{ secrets.TRUNK_DEBUGGER_TOKEN }}
env:
TRUNK_LOG: info
Expand All @@ -145,10 +146,11 @@ jobs:

- run: ls -l ./cypress/reports/mochareports/
- name: Upload results
if: "!cancelled()"
uses: trunk-io/analytics-uploader@main
with:
junit_paths: cypress/reports/**/*junit*.xml
org_url_slug: trunk-staging-org
junit-paths: cypress/reports/**/*junit*.xml
org-slug: trunk-staging-org
token: ${{ secrets.TRUNK_DEBUGGER_TOKEN }}
env:
TRUNK_LOG: info
Expand All @@ -165,10 +167,11 @@ jobs:

- run: ls -l ./cypress/reports/mochareports/
- name: Upload results
if: "!cancelled()"
uses: trunk-io/analytics-uploader@main
with:
junit_paths: cypress/reports/**/*junit*.xml
org_url_slug: trunk-staging-org
junit-paths: cypress/reports/**/*junit*.xml
org-slug: trunk-staging-org
token: ${{ secrets.TRUNK_DEBUGGER_TOKEN }}
env:
TRUNK_LOG: info
Expand All @@ -186,10 +189,11 @@ jobs:

- run: ls -l ./cypress/reports/mochareports/
- name: Upload results
if: "!cancelled()"
uses: trunk-io/analytics-uploader@main
with:
junit_paths: cypress/reports/**/*junit*.xml
org_url_slug: trunk-staging-org
junit-paths: cypress/reports/**/*junit*.xml
org-slug: trunk-staging-org
token: ${{ secrets.TRUNK_DEBUGGER_TOKEN }}
env:
TRUNK_LOG: info
Expand All @@ -208,21 +212,23 @@ jobs:
continue-on-error: true

- name: Upload results
if: "!cancelled()"
uses: trunk-io/analytics-uploader@main
with:
junit_paths: cypress/reports/**/*junit*.xml
org_url_slug: trunk-staging-org
junit-paths: cypress/reports/**/*junit*.xml
org-slug: trunk-staging-org
token: ${{ secrets.TRUNK_DEBUGGER_TOKEN }}
env:
TRUNK_LOG: info
TRUNK_API_ADDRESS: https://api.trunk-staging.io:5022
continue-on-error: true

- name: Upload results
if: "!cancelled()"
uses: trunk-io/analytics-uploader@main
with:
junit_paths: cypress/reports/**/*junit*.xml
org_url_slug: trunk-staging-org
junit-paths: cypress/reports/**/*junit*.xml
org-slug: trunk-staging-org
token: ${{ secrets.TRUNK_DEBUGGER_TOKEN }}
tags: tests=e2e
env:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/trunk-hourly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ jobs:
continue-on-error: true

- name: Upload results
if: "!cancelled()"
uses: trunk-io/analytics-uploader@main
with:
junit_paths: target/junit/**/*_test.xml
org_url_slug: trunk-staging-org
junit-paths: target/junit/**/*_test.xml
org-slug: trunk-staging-org
token: ${{ secrets.TRUNK_DEBUGGER_TOKEN }}
env:
TRUNK_LOG: info
Expand Down