forked from VariableDeclared/charm-tigera
-
Notifications
You must be signed in to change notification settings - Fork 1
99 lines (82 loc) · 2.82 KB
/
actions.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Calico Enterprise Test Suite
on:
push:
branches:
- main
pull_request:
jobs:
call-inclusive-naming-check:
name: Inclusive Naming
uses: canonical-web-and-design/Inclusive-naming/.github/workflows/woke.yaml@main
with:
fail-on-error: "true"
lint-unit:
name: Lint Unit
uses: charmed-kubernetes/workflows/.github/workflows/lint-unit.yaml@main
with:
python: "['3.8', '3.9', '3.10', '3.11']"
needs:
- call-inclusive-naming-check
integration-test:
name: VSphere Integration Test
needs:
- lint-unit
runs-on: self-hosted
env:
JUJU_MODEL: calico-enterprise
CHARM_TIGERA_EE_LICENSE: ${{ secrets.CHARM_TIGERA_EE_LICENSE }}
CHARM_TIGERA_EE_REG_SECRET: ${{ secrets.CHARM_TIGERA_EE_REG_SECRET }}
CREDENTIALS_YAML_CONTENT: ${{ secrets.CREDENTIALS_YAML }}
CLOUDS_YAML_CONTENT: ${{ secrets.CLOUDS_YAML }}
timeout-minutes: 90
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Tools
run: tests/integration/setup.sh install_tools
- name: Generate SSH Keys
run: tests/integration/setup.sh generate_ssh_keys
- name: Apply cloud credentials
run: tests/integration/setup.sh apply_cloud_credentials
- name: Terraform Create Cloud
run: tests/integration/setup.sh terraform_cloud
- name: Setup operator environment
uses: charmed-kubernetes/actions-operator@main
with:
provider: manual-cloud
juju-channel: 3.1/stable
credentials-yaml: ${{ secrets.CREDENTIALS_YAML }}
clouds-yaml: ${{ env.MANUAL_CLOUD_YAML }}
bootstrap-constraints: ""
bootstrap-options: ""
- name: Juju Deploy DualTor Charms
run: tests/integration/setup.sh juju_create_manual_model
- name: Run test
run: tox -e integration -- --basetemp=/home/ubuntu/pytest --crash-dump=on-failure
- name: Setup Debug Artifact Collection
if: ${{ failure() }}
run: mkdir tmp
- name: Collect Charmcraft Errors
if: ${{ failure() }}
run: |
mv /home/ubuntu/.local/state/charmcraft/log/* tmp/ | true
- name: Collect Juju Status
if: ${{ failure() }}
run: tests/integration/setup.sh juju_status
- name: Upload debug artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: test-run-artifacts
path: tmp
- name: Juju Teardown
if: ${{ always() }}
run: |
juju destroy-model ${JUJU_MODEL} --force --destroy-storage --no-prompt
- name: Terraform Teardown
if: ${{ always() }}
run: tests/integration/setup.sh terraform_teardown