-
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.
* added model changes and schema changes * updated some logic and added first test * fixed broken texts * working tests, functional * added migration script * fixed migration script with permissions * testing prod pipes, temp wfl change * switch to using list operations for output files * refactored to use prefixes when listing * Fixed blob checks in output creation * uncomment test gcs client * working migration and fcf tests * optimised client calls * review cleanup and refactoring * added appropriate var to mock correctly * added monkey patch for gcs client * removed default var * patching all tests for gcs client * Bump version: 7.3.3 → 7.4.0
- Loading branch information
Showing
34 changed files
with
1,403 additions
and
70 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
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
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
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 |
---|---|---|
|
@@ -23,26 +23,26 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- id: "branch-check" | ||
- id: 'branch-check' | ||
name: Fail if branch is not main or dev | ||
if: github.event_name == 'workflow_dispatch' && (github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev') | ||
if: github.event_name == 'workflow_dispatch' && (github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' && github.ref != 'refs/heads/first-class-files-v3') | ||
run: | | ||
echo "This workflow should not be triggered with workflow_dispatch on a branch other than main or dev" | ||
exit 1 | ||
- id: "google-cloud-auth" | ||
name: "Authenticate to Google Cloud" | ||
uses: "google-github-actions/auth@v2" | ||
- id: 'google-cloud-auth' | ||
name: 'Authenticate to Google Cloud' | ||
uses: 'google-github-actions/auth@v2' | ||
with: | ||
workload_identity_provider: "projects/774248915715/locations/global/workloadIdentityPools/github-pool/providers/github-provider" | ||
service_account: "[email protected]" | ||
workload_identity_provider: 'projects/774248915715/locations/global/workloadIdentityPools/github-pool/providers/github-provider' | ||
service_account: '[email protected]' | ||
|
||
- id: "google-cloud-sdk-setup" | ||
name: "Set up Cloud SDK" | ||
- id: 'google-cloud-sdk-setup' | ||
name: 'Set up Cloud SDK' | ||
uses: google-github-actions/setup-gcloud@v2 | ||
|
||
- id: "invoke-cloud-run" | ||
name: "Invoke Cloud Run" | ||
- id: 'invoke-cloud-run' | ||
name: 'Invoke Cloud Run' | ||
run: | | ||
CLOUD_RUN_URL=$(gcloud run services describe schema-updater --region australia-southeast1 --format 'value(status.url)')/execute-liquibase?environment=${{ github.event.inputs.environment }} | ||
TOKEN=$(gcloud auth print-identity-token --impersonate-service-account="[email protected]" --audiences="$CLOUD_RUN_URL" --include-email) | ||
|
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
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
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
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
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
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 |
---|---|---|
|
@@ -50,6 +50,7 @@ | |
'cohort_sequencing_group', | ||
'analysis_cohort', | ||
'analysis_runner', | ||
'analysis_outputs', | ||
][::-1] | ||
|
||
|
||
|
Oops, something went wrong.