Migrate manifest tests to new RHEL GA version

This commit is contained in:
Tom Koscielniak 2024-03-04 10:38:37 +01:00 committed by Jakub Rusz
parent 345516e867
commit 3b7a8aa728
3 changed files with 6 additions and 7 deletions

View file

@ -101,12 +101,12 @@ Manifests:
- aws/centos-stream-9-aarch64
- PARALLEL_EXEC: ["1/8", "2/8", "3/8", "4/8", "5/8", "6/8", "7/8", "8/8"]
RUNNER:
- aws/rhel-8.8-ga-x86_64
- aws/rhel-8.8-ga-aarch64
- aws/rhel-8.9-ga-x86_64
- aws/rhel-8.9-ga-aarch64
- aws/rhel-8.10-nightly-x86_64
- aws/rhel-8.10-nightly-aarch64
- aws/rhel-9.2-ga-x86_64
- aws/rhel-9.2-ga-aarch64
- aws/rhel-9.3-ga-x86_64
- aws/rhel-9.3-ga-aarch64
- aws/rhel-9.4-nightly-x86_64
- aws/rhel-9.4-nightly-aarch64
INTERNAL_NETWORK: "true"

View file

@ -2,7 +2,7 @@
"global": {
"dependencies": {
"manifest-db": {
"commit": "3bb2cb6ec1c037dfc6a6dd57f65e245c0b3e79ae"
"commit": "d143f8838ddcf596b7e02c0e0cdc664f39117e27"
}
}
},

View file

@ -3,8 +3,7 @@ set -euxo pipefail
# Get OS details.
source /etc/os-release
ARCH=$(uname -m)
DISTRO_CODE="${DISTRO_CODE:-${ID}-${VERSION_ID//./}}"
DISTRO_CODE="${DISTRO_CODE:-${ID}-${VERSION_ID}}"
# get manifest-db at the version specified for this arch+distro
MANIFEST_DB_COMMIT=$(cat Schutzfile | jq -r '.global.dependencies."manifest-db".commit')
MANIFEST_DB_REPO="https://github.com/osbuild/manifest-db"