-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary of changes: - Update the charmcraft.yaml file to use base and platforms, only allowing noble support. - Update config to default to caracal. - Update osci.yaml to use the charmcraft 3.x/beta - Drop non-noble tests - Update constraints file from -2024.1.txt to -noble.txt - Add charmbuild to .zuul.yaml Change-Id: I5a6ba15bebf955ad84ed0b98f39f096d0970d4a0
- Loading branch information
Showing
12 changed files
with
55 additions
and
1,076 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,36 +19,17 @@ parts: | |
build-environment: | ||
- CHARM_INTERFACES_DIR: $CRAFT_PROJECT_DIR/interfaces/ | ||
- CHARM_LAYERS_DIR: $CRAFT_PROJECT_DIR/layers/ | ||
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: [s390x] | ||
run-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
architectures: [s390x] | ||
- build-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
architectures: [ppc64el] | ||
run-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
architectures: [ppc64el] | ||
- build-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
architectures: [arm64] | ||
run-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
architectures: [arm64] | ||
base: [email protected] | ||
platforms: | ||
amd64: | ||
build-on: amd64 | ||
build-for: amd64 | ||
arm64: | ||
build-on: arm64 | ||
build-for: arm64 | ||
ppc64el: | ||
build-on: ppc64el | ||
build-for: ppc64el | ||
s390x: | ||
build-on: s390x | ||
build-for: s390x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
charm=$(grep "charm_build_name" osci.yaml | awk '{print $2}') | ||
echo "renaming ${charm}_*.charm to ${charm}.charm" | ||
echo -n "pwd: " | ||
pwd | ||
ls -al | ||
echo "Removing bad downloaded charm maybe?" | ||
if [[ -e "${charm}.charm" ]]; | ||
then | ||
rm "${charm}.charm" | ||
fi | ||
echo "Renaming charm here." | ||
mv ${charm}_*.charm ${charm}.charm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.