
Update the charmcraft.yaml file to use base and platforms, only allowing noble support. - Update osci.yaml to use the charmcraft 3.x/beta - Drop non-noble tests Change-Id: Ied2b97aaf399593af2faee43753e9eaf1d1b1df6
40 lines
779 B
YAML
40 lines
779 B
YAML
- project:
|
|
templates:
|
|
- charm-unit-jobs-py310
|
|
check:
|
|
jobs:
|
|
- noble-mysql8
|
|
- noble-raft
|
|
- noble-raft-cluster
|
|
vars:
|
|
needs_charm_build: true
|
|
charm_build_name: vault
|
|
build_type: charmcraft
|
|
charmcraft_channel: 3.x/beta
|
|
|
|
- job:
|
|
name: noble-mysql8
|
|
parent: func-target
|
|
dependencies:
|
|
- osci-lint
|
|
- name: tox-py310
|
|
soft: True
|
|
- charm-build
|
|
vars:
|
|
tox_extra_args: '-- noble-mysql8'
|
|
- job:
|
|
name: noble-raft
|
|
parent: func-target
|
|
dependencies:
|
|
- noble-mysql8
|
|
vars:
|
|
tox_extra_args: '-- noble-raft'
|
|
- job:
|
|
name: noble-raft-cluster
|
|
parent: func-target
|
|
dependencies:
|
|
- noble-mysql8
|
|
vars:
|
|
tox_extra_args: '-- noble-raft-cluster'
|
|
|