Skip to content

Commit

Permalink
fix: correct architectures
Browse files Browse the repository at this point in the history
The architectures in the charmcraft.yaml aren't correct. We've got
duplicate arm64 architectures (arm64 and aarch64), so we should
just pick one. Power PC was completely missing.

This charm currently only works by happenstance because what we
build on is only amd64. If there were any architectual specific
binaries we would stop working as we don't correctly build for those.
  • Loading branch information
SimonRichardson committed Sep 30, 2024
1 parent 75a5f9e commit e3c9fe8
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions charmcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,30 @@ parts:
bases:
- build-on:
- name: ubuntu
channel: "22.04"
channel: "24.04"
architectures: ["amd64"]
run-on:
- name: ubuntu
channel: "24.04"
architectures:
- amd64
- arm64
- s390x
- ppc64el
- riscv64
- name: ubuntu
channel: "22.04"
architectures:
architectures:
- amd64
- aarch64
- arm64
- s390x
- ppc64el
- riscv64
- name: ubuntu
channel: "20.04"
architectures:
architectures:
- amd64
- aarch64
- arm64
- s390x
- ppc64el
- riscv64

0 comments on commit e3c9fe8

Please sign in to comment.