mirror of
https://github.com/rocky-linux/sig-cloud-instance-images.git
synced 2024-10-31 18:31:23 +00:00
Rocky 9
This commit is contained in:
parent
f7a74536c0
commit
4187d6d12d
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
@ -3,7 +3,7 @@ name: Build container images
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ $default-branch, imagefactory ]
|
||||
branches: [ $default-branch ]
|
||||
pull_request:
|
||||
branches: [ $default-branch ]
|
||||
workflow_dispatch:
|
||||
@ -16,10 +16,21 @@ jobs:
|
||||
matrix:
|
||||
architecture:
|
||||
- x64
|
||||
- ARM64
|
||||
- arm64
|
||||
version:
|
||||
- 8
|
||||
- 9.0-rc
|
||||
include:
|
||||
- version: 9.0-rc
|
||||
experimental: true
|
||||
experimental: [false]
|
||||
runs-on:
|
||||
- self-hosted
|
||||
- ${{ matrix.architecture }}
|
||||
continue-on-error: ${{ matrix.experimental }}
|
||||
env:
|
||||
CI_RELEASE: ${{ matrix.version }}
|
||||
DEBUG: 1
|
||||
steps:
|
||||
- name: Checkout sig-cloud-instance-images
|
||||
uses: actions/checkout@v2
|
||||
|
1
.github/workflows/scan.yml
vendored
1
.github/workflows/scan.yml
vendored
@ -1,6 +1,5 @@
|
||||
name: Scan images using trivy
|
||||
on:
|
||||
push:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "0 13 * * *"
|
||||
|
7
Makefile
7
Makefile
@ -1,14 +1,15 @@
|
||||
ARCH = $(shell uname -m)
|
||||
BUILDDATE = $(shell /bin/date +%Y%m%d_%H%M)
|
||||
KICKSTART_DIR = kickstarts
|
||||
KICKSTART_PATH = "${KICKSTART_DIR}/Rocky-8-Container.ks"
|
||||
LOG_DIR = logs
|
||||
OUT = out
|
||||
RELEASE_VER = 8.6
|
||||
RELEASE_VER = $(shell echo ${CI_RELEASE})
|
||||
MAJOR = $(shell v='$(RELEASE_VER)'; echo "$${v%.*}")
|
||||
TEMPLATE_DIR = templates
|
||||
TEMPLATE_PATH = "${TEMPLATE_DIR}/tdl-${ARCH}.xml"
|
||||
|
||||
KICKSTART_DIR = kickstarts
|
||||
KICKSTART_PATH = "${KICKSTART_DIR}/Rocky-${MAJOR}-Container.ks"
|
||||
|
||||
OUTNAME := rocky-${RELEASE_VER}-docker
|
||||
BASEIMAGE_META := base_image-$(OUTNAME).meta
|
||||
TARGETIMAGE_META := target_image-$(OUTNAME).meta
|
||||
|
Loading…
Reference in New Issue
Block a user