-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changes to support Pydantic v2 * Remove use of deprecated parse_obj * Use most recent kube-custom-resource patch * Deal better with long versions (i.e. branch names) * Pick up kube-custom-resource fixes * Bump kube-custom-resource to pick up fixes * Changes to libraries merged and tagged + tests added * We don't need to run a full test suite
- Loading branch information
Showing
10 changed files
with
147 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Test Azimuth deployment | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- ready_for_review | ||
- reopened | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: ${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# This job exists so that PRs from outside the main repo are rejected | ||
fail_on_remote: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: PR must be from a branch in the stackhpc/azimuth-identity-operator repo | ||
run: exit ${{ github.repository == 'stackhpc/azimuth-identity-operator' && '0' || '1' }} | ||
|
||
publish_artifacts: | ||
needs: [fail_on_remote] | ||
uses: ./.github/workflows/build-push-artifacts.yaml | ||
|
||
run_azimuth_tests: | ||
needs: [publish_artifacts] | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Check out the configuration repository | ||
- name: Set up Azimuth environment | ||
uses: stackhpc/azimuth-config/.github/actions/setup@main | ||
with: | ||
os-clouds: ${{ secrets.OS_CLOUDS }} | ||
environment-prefix: identity-ci | ||
# Use the version of the chart that we just built | ||
# We also don't need all the tests | ||
# The workstation is sufficient to test that the OIDC discovery is working | ||
extra-vars: | | ||
azimuth_identity_operator_chart_version: ${{ needs.publish_artifacts.outputs.chart-version }} | ||
generate_tests_caas_test_case_slurm_enabled: false | ||
generate_tests_caas_test_case_repo2docker_enabled: false | ||
generate_tests_caas_test_case_rstudio_enabled: false | ||
generate_tests_kubernetes_suite_enabled: false | ||
generate_tests_kubernetes_apps_suite_enabled: false | ||
# Provision Azimuth using the azimuth-ops version under test | ||
- name: Provision Azimuth | ||
uses: stackhpc/azimuth-config/.github/actions/provision@main | ||
|
||
# # Run the tests | ||
- name: Run Azimuth tests | ||
uses: stackhpc/azimuth-config/.github/actions/test@main | ||
|
||
# Tear down the environment | ||
- name: Destroy Azimuth | ||
uses: stackhpc/azimuth-config/.github/actions/destroy@main | ||
if: ${{ always() }} |
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
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 |
---|---|---|
@@ -1,29 +1,29 @@ | ||
aiohttp==3.8.5 | ||
aiohttp==3.8.6 | ||
aiosignal==1.3.1 | ||
annotated-types==0.5.0 | ||
anyio==3.7.1 | ||
async-timeout==4.0.2 | ||
annotated-types==0.6.0 | ||
anyio==4.0.0 | ||
async-timeout==4.0.3 | ||
attrs==23.1.0 | ||
certifi==2023.7.22 | ||
charset-normalizer==3.2.0 | ||
click==8.1.6 | ||
configomatic @ git+https://github.com/stackhpc/configomatic.git@a53458c00bae1d94ba2fcb6cf14c530de44aa297 | ||
easykube @ git+https://github.com/stackhpc/easykube.git@594e65190e6f13d66f069feaece534f7595c1656 | ||
exceptiongroup==1.1.2 | ||
charset-normalizer==3.3.2 | ||
click==8.1.7 | ||
configomatic==0.2.0 | ||
easykube==0.1.1 | ||
exceptiongroup==1.1.3 | ||
frozenlist==1.4.0 | ||
h11==0.14.0 | ||
httpcore==0.17.3 | ||
httpx==0.24.1 | ||
httpcore==1.0.1 | ||
httpx==0.25.1 | ||
idna==3.4 | ||
iso8601==2.0.0 | ||
iso8601==2.1.0 | ||
kopf==1.36.2 | ||
kube-custom-resource @ git+https://github.com/stackhpc/kube-custom-resource.git@106a72837395ba871c6fcb13992a38478c50ae7a | ||
kube-custom-resource==0.2.0 | ||
multidict==6.0.4 | ||
pydantic==1.10.12 | ||
pydantic_core==2.4.0 | ||
pyhelm3 @ git+https://github.com/stackhpc/pyhelm3.git@cacf99d706851b67a57249726e94adedf03c6451 | ||
pydantic==2.4.2 | ||
pydantic_core==2.10.1 | ||
pyhelm3==0.2.0 | ||
python-json-logger==2.0.7 | ||
PyYAML==6.0.1 | ||
sniffio==1.3.0 | ||
typing_extensions==4.7.1 | ||
typing_extensions==4.8.0 | ||
yarl==1.9.2 |
Oops, something went wrong.