diff options
Diffstat (limited to 'deploy-manifests.sh')
-rwxr-xr-x | deploy-manifests.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/deploy-manifests.sh b/deploy-manifests.sh index 37b735b..0073da7 100755 --- a/deploy-manifests.sh +++ b/deploy-manifests.sh @@ -24,12 +24,21 @@ case "${TARGET}" in "stage3:hardened") TAGS=("amd64-hardened-openrc" "i686-hardened-openrc") ;; + "stage3:llvm") + TAGS=("amd64-llvm-openrc" "arm64-llvm-openrc") + ;; + "stage3:llvm-systemd") + TAGS=("amd64-llvm-systemd" "arm64-llvm-systemd") + ;; "stage3:musl") TAGS=("amd64-musl" "armv7a_hardfp_musl-openrc" "arm64-musl" "i686-musl") ;; "stage3:musl-hardened") TAGS=("amd64-musl-hardened" "arm64-musl-hardened" "ppc64le-musl-hardened-openrc") ;; + "stage3:musl-llvm") + TAGS=("amd64-musl-llvm" "arm64-musl-llvm") + ;; "stage3:nomultilib") TAGS=("amd64-nomultilib-openrc") ;; |