aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-02-15 02:57:41 +0000
committerAlexys Jacob <ultrabug@gentoo.org>2022-02-18 17:39:07 +0000
commitcfd6eff35b999bfe1677a3bd0a5564af5a7035db (patch)
tree32e5d4a6205c4481d6acb80c54abb4db4c3a8bd2
parentFix armv*-openrc stage3 builds (diff)
downloaddocker-images-cfd6eff35b999bfe1677a3bd0a5564af5a7035db.tar.gz
docker-images-cfd6eff35b999bfe1677a3bd0a5564af5a7035db.tar.bz2
docker-images-cfd6eff35b999bfe1677a3bd0a5564af5a7035db.zip
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@gentoo.org> Signed-off-by: Alexys Jacob <ultrabug@gentoo.org>
-rw-r--r--.github/workflows/build.yml1
-rw-r--r--README.md1
-rwxr-xr-xdeploy.sh1
3 files changed, 3 insertions, 0 deletions
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"