-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (39 loc) · 1.09 KB
/
integration.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
name: Operator Tests
on:
pull_request:
workflow_call:
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build.yaml
integration:
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
env:
- integration-charm
- integration-database-relation
- integration-osm-mysql
- integration-replication
- integration-self-healing
- integration-tls
- integration-backups
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup operator environment
uses: charmed-kubernetes/actions-operator@main
with:
provider: microk8s
# This is needed until
# https://bugs.launchpad.net/juju/+bug/1977582 is fixed
bootstrap-options: "--agent-version 2.9.29"
- uses: actions/download-artifact@v3
with:
name: charmed-mysql-rock
- name: Install tox
run: python3 -m pip install tox
- name: Integration Tests
run: sg microk8s -c "tox -e ${{ matrix.env }}"