
Update the charmcraft.yaml file to use base and platforms, only allowing noble support. - Update osci.yaml to use the charmcraft 3.x/beta - Add noble/oracular to charmhelpers - Drop non-noble tests Change-Id: I20fae8598cb4ec4b6464131024b1c27a8ca24e65
38 lines
681 B
YAML
38 lines
681 B
YAML
type: charm
|
|
|
|
parts:
|
|
charm:
|
|
source: src/
|
|
plugin: reactive
|
|
reactive-charm-build-arguments:
|
|
- --binary-wheels-from-source
|
|
- -v
|
|
build-packages:
|
|
- git
|
|
- python3-dev
|
|
- libffi-dev
|
|
- libssl-dev
|
|
- rustc
|
|
- cargo
|
|
build-snaps:
|
|
- charm/latest/edge
|
|
build-environment:
|
|
- CHARM_INTERFACES_DIR: /root/project/interfaces/
|
|
- CHARM_LAYERS_DIR: /root/project/layers/
|
|
- MAKEFLAGS: -j$(nproc)
|
|
|
|
base: ubuntu@24.04
|
|
platforms:
|
|
amd64:
|
|
build-on: amd64
|
|
build-for: amd64
|
|
arm64:
|
|
build-on: arm64
|
|
build-for: arm64
|
|
ppc64el:
|
|
build-on: ppc64el
|
|
build-for: ppc64el
|
|
s390x:
|
|
build-on: s390x
|
|
build-for: s390x
|