
The build time is very long because of PIP having to fetch and build native components of the libraries. This change show a possible way to bypass this issue. This has implication regarding the platform it's running on. In this case, we know the charm is going to be run on a 22.04 machine. Change-Id: I759e5436e47869d30c1f0de7ccdabed2ba6f1c49
27 lines
527 B
YAML
27 lines
527 B
YAML
# This file configures Charmcraft.
|
|
# See https://juju.is/docs/sdk/charmcraft-config for guidance.
|
|
|
|
type: charm
|
|
bases:
|
|
- build-on:
|
|
- name: ubuntu
|
|
channel: "22.04"
|
|
run-on:
|
|
- name: ubuntu
|
|
channel: "22.04"
|
|
|
|
parts:
|
|
charm:
|
|
build-packages:
|
|
- git
|
|
- libffi-dev
|
|
- libssl-dev
|
|
- pkg-config
|
|
- rustc
|
|
- cargo
|
|
charm-binary-python-packages:
|
|
- cryptography
|
|
- jsonschema
|
|
- jinja2
|
|
- git+https://opendev.org/openstack/charm-ops-sunbeam#egg=ops_sunbeam
|