
Remove references in documentation to openstack-charmers repos. Remove github workflows. Add .gitreview file Add .zuul.yaml file Update packages in requirements file to point to opendev.org instead of github.com Change-Id: Ib72255da7fdee624160e230ed828f8deea898b17
28 lines
575 B
YAML
28 lines
575 B
YAML
# Learn more about charmcraft.yaml configuration at:
|
|
# https://juju.is/docs/sdk/charmcraft-config
|
|
type: "charm"
|
|
bases:
|
|
- build-on:
|
|
- name: "ubuntu"
|
|
channel: "20.04"
|
|
run-on:
|
|
- name: "ubuntu"
|
|
channel: "20.04"
|
|
parts:
|
|
update-certificates:
|
|
plugin: nil
|
|
override-build: |
|
|
apt update
|
|
apt install -y ca-certificates
|
|
update-ca-certificates
|
|
|
|
charm:
|
|
after: [update-certificates]
|
|
build-packages:
|
|
- git
|
|
- libffi-dev
|
|
- libssl-dev
|
|
charm-python-packages:
|
|
- setuptools < 58
|
|
- cryptography < 3.4
|