[DPE-4867] - Release new rock and fix broken CI #171
Workflow file for this run
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
name: Operator Tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build rock | |
uses: canonical/data-platform-workflows/.github/workflows/build_rock.yaml@v16 | |
collect-tests: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Generate matrix with all tests | |
id: set-matrix | |
run: | | |
echo "matrix=$(find tests/integration/ -name "test_*.py" | jq -R -s -c 'split("\n")[:-1]')" | |
echo "matrix=$(find tests/integration/ -name "test_*.py" | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT | |
integration: | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
needs: | |
- build | |
- collect-tests | |
strategy: | |
matrix: | |
file: ${{ fromJson(needs.collect-tests.outputs.matrix) }} | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup operator environment | |
uses: charmed-kubernetes/actions-operator@main | |
with: | |
provider: microk8s | |
channel: "1.29-strict/stable" | |
bootstrap-constraints: "cores=2 mem=2G" | |
juju-channel: 3.1/stable | |
# This is needed until | |
# https://bugs.launchpad.net/juju/+bug/1977582 is fixed | |
bootstrap-options: "--agent-version 3.1.7" | |
- name: Install rockcraft | |
run: | | |
sudo snap install rockcraft --classic --revision 1206 | |
sudo snap refresh rockcraft --hold=forever | |
- name: Download rock package(s) | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: ${{ needs.build.outputs.artifact-prefix }}-* | |
merge-multiple: true | |
- name: Install tox & poetry | |
run: | | |
pipx install tox | |
pipx install poetry | |
- name: Integration Tests | |
run: | | |
echo "Running test ${{ matrix.file }}" | |
sg snap_microk8s -c "tox -e ${{ matrix.file }}" | |
- name: Free disk space | |
run: | | |
echo "Free disk space after int tests" | |
df -T | |
# free space in the runner | |
rockcraft clean | |
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 after int tests" | |
df -T |