-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch integration test pipeline from jenkins to GH Actions (#81)
* Switch integration test pipeline from jenkins to GH Actions * Trigger Build --------- Co-authored-by: Spencer Axelrod <[email protected]>
- Loading branch information
1 parent
f9b19a1
commit 9a105a3
Showing
4 changed files
with
26 additions
and
20 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Integration Tests | ||
|
||
on: pull_request | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
integration_tests: | ||
name: Integration tests | ||
uses: uc-cdis/.github/.github/workflows/integration_tests.yaml@master | ||
with: | ||
# Tag used in tests that depend on this repo (https://github.com/uc-cdis/gen3-code-vigil/blob/master/gen3-integration-tests/pyproject.toml) | ||
SERVICE_TO_TEST: wts | ||
secrets: | ||
CI_AWS_ACCESS_KEY_ID: ${{ secrets.CI_AWS_ACCESS_KEY_ID }} | ||
CI_AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_AWS_SECRET_ACCESS_KEY }} | ||
JENKINS_API_TOKEN: ${{ secrets.JENKINS_API_TOKEN }} | ||
QA_DASHBOARD_S3_PATH: ${{ secrets.QA_DASHBOARD_S3_PATH }} | ||
CI_TEST_ORCID_USERID: ${{ secrets.CI_TEST_ORCID_USERID }} | ||
CI_TEST_ORCID_PASSWORD: ${{ secrets.CI_TEST_ORCID_PASSWORD }} | ||
CI_TEST_RAS_USERID: ${{ secrets.CI_TEST_RAS_USERID }} | ||
CI_TEST_RAS_PASSWORD: ${{ secrets.CI_TEST_RAS_PASSWORD }} | ||
CI_SLACK_BOT_TOKEN: ${{ secrets.CI_SLACK_BOT_TOKEN }} | ||
CI_SLACK_CHANNEL_ID: ${{ secrets.CI_SLACK_CHANNEL_ID }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.