-
Notifications
You must be signed in to change notification settings - Fork 25
38 lines (31 loc) · 1014 Bytes
/
functional.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
name: Functional Testing
on:
pull_request:
branches:
- main
jobs:
functional:
name: Run functional tests
runs-on: ubuntu-latest
steps:
- name: Get sources
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: canonical/setup-lxd@v0.1.1
- name: Install Juju
run: |
set -e -u -x
sudo snap install juju --channel 2.9 --classic
- name: Bootstrap controller
run: |
set -e -u -x
juju bootstrap localhost controller
- name: Focal / Ussuri
run: |
set -e -u -x
cd openstack
./generate-bundle.sh --name functional --series focal --release ussuri --run
juju status
juju switch default
juju destroy-model --yes --destroy-storage --force --no-wait functional