-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/6/edge' into gatici-changes
- Loading branch information
Showing
27 changed files
with
509 additions
and
347 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 |
---|---|---|
|
@@ -12,17 +12,6 @@ on: | |
- cron: "53 0 * * *" # Daily at 00:53 UTC | ||
# Triggered on push to branch "main" by .github/workflows/release.yaml | ||
workflow_call: | ||
secrets: | ||
CHARMHUB_TOKEN: | ||
required: true | ||
AWS_ACCESS_KEY: | ||
required: true | ||
AWS_SECRET_KEY: | ||
required: true | ||
GCP_ACCESS_KEY: | ||
required: true | ||
GCP_SECRET_KEY: | ||
required: true | ||
|
||
jobs: | ||
lint: | ||
|
@@ -98,73 +87,37 @@ jobs: | |
exit "$FMT_STATUS" | ||
build: | ||
name: Build charms | ||
uses: canonical/data-platform-workflows/.github/workflows/build_charms_with_cache.yaml@v8 | ||
|
||
integration-test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
tox-environments: | ||
- charm-integration | ||
- ha-integration | ||
- relation-integration | ||
- legacy-integration | ||
- tls-integration | ||
- backup-integration | ||
- metric-integration | ||
- sharding-integration | ||
- sharding-relation-integration | ||
- sharding-race-conditions-integration | ||
- sharding-mongos-integration | ||
name: ${{ matrix.tox-environments }} | ||
path: | ||
- . | ||
- tests/integration/sharding_tests/application | ||
- tests/integration/relation_tests/new_relations/application-charm | ||
- tests/integration/dummy_legacy_app | ||
name: Build charm | ||
uses: canonical/data-platform-workflows/.github/workflows/[email protected] | ||
with: | ||
path-to-charm-directory: ${{ matrix.path }} | ||
cache: true | ||
|
||
integration-test: | ||
name: Integration test charm | ||
needs: | ||
- lint | ||
- unit-test | ||
- lib-check | ||
- build | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 120 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup operator environment | ||
# TODO: Replace with custom image on self-hosted runner | ||
uses: charmed-kubernetes/actions-operator@main | ||
with: | ||
provider: lxd | ||
juju-channel: 3.1/stable | ||
- name: Download packed charm(s) | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: ${{ needs.build.outputs.artifact-name }} | ||
- name: Free disk space | ||
run: | | ||
echo "Free disk space before cleanup" | ||
df -T | ||
# free space in the runner | ||
sudo rm -rf /usr/share/dotnet | ||
sudo rm -rf /opt/ghc | ||
sudo rm -rf /usr/local/share/boost | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||
echo "Free disk space after cleanup" | ||
df -T | ||
- name: Select tests | ||
id: select-tests | ||
run: | | ||
if [ "${{ github.event_name }}" == "schedule" ] | ||
then | ||
echo Running unstable and stable tests | ||
echo "mark_expression=" >> $GITHUB_OUTPUT | ||
else | ||
echo Skipping unstable tests | ||
echo "mark_expression=not unstable" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Run integration tests | ||
run: tox run -e ${{ matrix.tox-environments }} -- -m '${{ steps.select-tests.outputs.mark_expression }}' | ||
env: | ||
CI_PACKED_CHARMS: ${{ needs.build.outputs.charms }} | ||
AWS_ACCESS_KEY: ${{ matrix.tox-environments != 'backup-integration' || secrets.AWS_ACCESS_KEY }} | ||
AWS_SECRET_KEY: ${{ matrix.tox-environments != 'backup-integration' || secrets.AWS_SECRET_KEY }} | ||
GCP_ACCESS_KEY: ${{ matrix.tox-environments != 'backup-integration' || secrets.GCP_ACCESS_KEY }} | ||
GCP_SECRET_KEY: ${{ matrix.tox-environments != 'backup-integration' || secrets.GCP_SECRET_KEY }} | ||
uses: canonical/data-platform-workflows/.github/workflows/[email protected] | ||
with: | ||
artifact-prefix: packed-charm-cache-true | ||
cloud: lxd | ||
juju-agent-version: 3.1.6 | ||
permissions: | ||
contents: write # Needed for Allure Report beta | ||
secrets: | ||
integration-test: | | ||
{ | ||
"AWS_ACCESS_KEY": "${{ secrets.AWS_ACCESS_KEY }}", | ||
"AWS_SECRET_KEY": "${{ secrets.AWS_SECRET_KEY }}", | ||
"GCP_ACCESS_KEY": "${{ secrets.GCP_ACCESS_KEY }}", | ||
"GCP_SECRET_KEY": "${{ secrets.GCP_SECRET_KEY }}", | ||
} |
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 |
---|---|---|
|
@@ -8,25 +8,18 @@ on: | |
jobs: | ||
ci-tests: | ||
uses: ./.github/workflows/ci.yaml | ||
secrets: | ||
CHARMHUB_TOKEN: "${{ secrets.CHARMHUB_TOKEN }}" | ||
AWS_ACCESS_KEY: "${{ secrets.AWS_ACCESS_KEY }}" | ||
AWS_SECRET_KEY: "${{ secrets.AWS_SECRET_KEY }}" | ||
GCP_ACCESS_KEY: "${{ secrets.GCP_ACCESS_KEY }}" | ||
GCP_SECRET_KEY: "${{ secrets.GCP_SECRET_KEY }}" | ||
secrets: inherit | ||
|
||
build: | ||
name: Build charm | ||
uses: canonical/data-platform-workflows/.github/workflows/build_charm_without_cache.yaml@v8 | ||
with: | ||
charmcraft-snap-channel: "latest/stable" | ||
uses: canonical/data-platform-workflows/.github/workflows/[email protected] | ||
|
||
release-charm: | ||
name: Release charm | ||
needs: | ||
- ci-tests | ||
- build | ||
uses: canonical/data-platform-workflows/.github/workflows/release_charm.yaml@v8 | ||
uses: canonical/data-platform-workflows/.github/workflows/release_charm.yaml@v11.0.1 | ||
with: | ||
channel: 6/edge | ||
artifact-name: ${{ needs.build.outputs.artifact-name }} | ||
|
@@ -36,7 +29,7 @@ jobs: | |
contents: write # Needed to create GitHub release | ||
|
||
release-libraries: | ||
name: Release libraries | ||
name: Release libraries | ||
runs-on: ubuntu-latest | ||
needs: | ||
- ci-tests | ||
|
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
Oops, something went wrong.