commit: 7003c4bc4c6f8905dce8d60353ef09c7e6edb4f1 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Nov 21 16:23:30 2024 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Nov 23 07:13:23 2024 +0000 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=7003c4bc
Add i686 ssemath-t64 stages Closes: https://github.com/gentoo/gentoo-docker-images/pull/149 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> .github/workflows/build.yml | 4 ++++ README.md | 2 ++ deploy-manifests.sh | 6 ++++++ 3 files changed, 12 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8918d2c..d352530 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,6 +53,8 @@ jobs: - stage3-i686-musl - stage3-i686-openrc - stage3-i686-systemd + - stage3-i686-ssemath-t64-openrc + - stage3-i686-ssemath-t64-systemd - stage3-ppc64le-musl-hardened-openrc - stage3-ppc64le-openrc - stage3-ppc64le-systemd @@ -92,6 +94,8 @@ jobs: - stage3:musl-llvm - stage3:nomultilib - stage3:nomultilib-systemd + - stage3:ssemath-t64 + - stage3:ssemath-t64-systemd - stage3:systemd name: ${{ matrix.target }} runs-on: ubuntu-latest diff --git a/README.md b/README.md index f35bf65..76aa42f 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,8 @@ The following targets are built and pushed to Docker Hub: * `stage3-i686-hardened-openrc` * `stage3-i686-musl` * `stage3-i686-openrc` + * `stage3-i686-ssemath-t64-openrc` + * `stage3-i686-ssemath-t64-systemd` * `stage3-i686-systemd` The following upstream stage3 targets are not built at all: diff --git a/deploy-manifests.sh b/deploy-manifests.sh index 0073da7..a2cde0e 100755 --- a/deploy-manifests.sh +++ b/deploy-manifests.sh @@ -45,6 +45,12 @@ case "${TARGET}" in "stage3:nomultilib-systemd") TAGS=("amd64-nomultilib-systemd") ;; + "stage3:ssemath-t64") + TAGS=("i686-ssemath-t64-openrc") + ;; + "stage3:ssemath-t64-systemd") + TAGS=("i686-ssemath-t64-systemd") + ;; "stage3:systemd") TAGS=("amd64-systemd" "armv5tel-systemd" "armv6j_hardfp-systemd" "armv7a_hardfp-systemd" "arm64-systemd" "i686-systemd" "ppc64le-systemd" "rv64_lp64d-systemd") ;;
