commit: cfd6eff35b999bfe1677a3bd0a5564af5a7035db
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 15 02:57:41 2022 +0000
Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
CommitDate: Fri Feb 18 17:39:07 2022 +0000
URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=cfd6eff3
Add stage3:desktop (just amd64-desktop-openrc for now)
In particular, this is useful for CI for upstreams who don't
want to have to build X etc just to run their test suite.
Signed-off-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: Alexys Jacob <ultrabug <AT> gentoo.org>
.github/workflows/build.yml | 1 +
README.md | 1 +
deploy.sh | 1 +
3 files changed, 3 insertions(+)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 7d93d8f..a58b93c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -23,6 +23,7 @@ jobs:
- stage3-amd64-nomultilib-openrc
- stage3-amd64-nomultilib-systemd
- stage3-amd64-openrc
+ - stage3-amd64-desktop-openrc
- stage3-amd64-systemd
- stage3-armv5tel-openrc
- stage3-armv5tel-systemd
diff --git a/README.md b/README.md
index 647eaf9..bc76134 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,7 @@ The following targets are built and pushed to Docker Hub:
* `stage3-amd64-nomultilib-openrc`
* `stage3-amd64-nomultilib-systemd`
* `stage3-amd64-openrc`
+ * `stage3-amd64-desktop-openrc`
* `stage3-amd64-systemd`
* `arm`
* `stage3-armv5tel-openrc`
diff --git a/deploy.sh b/deploy.sh
index da691f3..bd8ee55 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -17,6 +17,7 @@ docker push --all-tags "${ORG}/${NAME}"
declare -A MANIFEST_TAGS=(
[stage3:latest]="amd64-openrc;armv5tel-openrc;armv6j_hardfp-openrc;armv7a_hardfp-openrc;arm64;i686-openrc;ppc64le-openrc;rv64_lp64d-openrc;s390x"
+ [stage3:desktop]="amd64-desktop-openrc"
[stage3:hardened]="amd64-hardened-openrc;i686-hardened-openrc"
[stage3:hardened-nomultilib]="amd64-hardened-nomultilib-openrc"
[stage3:musl]="amd64-musl;i686-musl"