![James Page](/assets/img/avatar_default.png)
Rebase charm to Ubuntu 22.04 to resolve build issues on 20.04 and reduce complexity of requirements management. Change-Id: I02a855b43e2458676e61a3b23b39d62293c6ff04
25 lines
427 B
YAML
25 lines
427 B
YAML
type: "charm"
|
|
bases:
|
|
- build-on:
|
|
- name: "ubuntu"
|
|
channel: "22.04"
|
|
run-on:
|
|
- name: "ubuntu"
|
|
channel: "22.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
|
|
- rustc
|
|
- cargo
|