Adding support from focal to noble #43
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: Charmed Kubernetes VSphere Integration Tests | |
on: | |
- pull_request | |
jobs: | |
integration-test: | |
name: Integration test with VMWare | |
runs-on: self-hosted | |
timeout-minutes: 360 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Setup operator environment | |
uses: charmed-kubernetes/actions-operator@main | |
with: | |
provider: vsphere | |
juju-channel: 3/stable | |
credentials-yaml: ${{ secrets.CREDENTIALS_YAML }} | |
clouds-yaml: ${{ secrets.CLOUDS_YAML }} | |
bootstrap-constraints: "arch=amd64 cores=2 mem=4G" | |
bootstrap-options: "${{ secrets.JAMMY_BOOTSTRAP_OPTIONS }} --model-default datastore=vsanDatastore --model-default primary-network=VLAN_2763" | |
- name: Run test | |
run: tox -e integration -- --basetemp=/home/ubuntu/pytest | |
- name: Setup Debug Artifact Collection | |
if: ${{ failure() }} | |
run: mkdir tmp | |
- name: Collect Juju Status | |
if: ${{ failure() }} | |
run: | | |
cat $HOME/.local/state/charmcraft/log/*.log | tee tmp/charmcraft.log | |
juju status 2>&1 | tee tmp/juju-status.txt | |
juju-crashdump -s -m controller -a debug-layer -a config -o tmp/ | |
mv juju-crashdump-* tmp/ | true | |
- name: Upload debug artifacts | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test-run-artifacts | |
path: tmp |