Skip to content

Commit

Permalink
[DPE-2297] relation secrets (#126)
Browse files Browse the repository at this point in the history
* Initial implementation

* Bump libs

* Typing focal test

* Free disk for client-relation-integration tests

* Bump lib
  • Loading branch information
dragomirp authored Oct 12, 2023
1 parent 0090099 commit d5cf509
Show file tree
Hide file tree
Showing 10 changed files with 1,273 additions and 350 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,21 @@ jobs:
tox-environments:
- standalone-integration
- backend-integration
- client-relation-integration
- legacy-client-relation-integration
- legacy-client-relation-integration-admin
- scaling-integration
agent-versions:
- "2.9.45" # renovate: latest juju 2
- "3.1.5" # renovate: latest juju 3
- "3.1.6" # renovate: latest juju 3
free-disk-space:
- false
include:
- tox-environments: client-relation-integration
agent-versions: "2.9.44" # renovate: latest juju 2
free-disk-space: true
- tox-environments: client-relation-integration
agent-versions: "3.1.6" # renovate: latest juju 3
free-disk-space: true
name: ${{ matrix.tox-environments }} | ${{ matrix.agent-versions }}
needs:
- lib-check
Expand All @@ -93,6 +101,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Free disk space
if: ${{ matrix.free-disk-space == true }}
run: |
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
sudo rm -rf \
/usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \
/usr/lib/jvm || true
- name: Set channel
run: |
juju_channel=$(echo "${{ matrix.agent-versions }}" | cut -c 1-3)
Expand Down
Loading

0 comments on commit d5cf509

Please sign in to comment.