-
Notifications
You must be signed in to change notification settings - Fork 19
/
charmcraft.yaml
44 lines (43 loc) · 1.01 KB
/
charmcraft.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
42
43
44
# Copyright 2024 Canonical Ltd.
# See LICENSE file for licensing details.
type: charm
parts:
charm:
charm-python-packages:
- setuptools # for jinja2
build-packages:
- git # for installing git source of pylxd
- libffi-dev # for cffi
- libssl-dev # for cryptography
- rust-all # for cryptography
- pkg-config # for cryptography
scripts:
plugin: dump
source: scripts
organize:
build-lxd-image.sh: scripts/build-lxd-image.sh
reactive_runner.py: scripts/reactive_runner.py
repo_policy_compliance_service.py: scripts/repo_policy_compliance_service.py
prime:
- scripts/
bases:
- build-on:
- name: "ubuntu"
channel: "22.04"
architectures:
- amd64
run-on:
- name: "ubuntu"
channel: "22.04"
architectures:
- amd64
- build-on:
- name: "ubuntu"
channel: "22.04"
architectures:
- arm64
run-on:
- name: "ubuntu"
channel: "22.04"
architectures:
- arm64