Skip to content

Commit

Permalink
Build llvm based images
Browse files Browse the repository at this point in the history
Signed-off-by: Takuya Wakazono <[email protected]>
  • Loading branch information
pastalian committed Sep 18, 2024
1 parent 8751613 commit 716e23d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ jobs:
target:
- python
- stage3-amd64-hardened-openrc
- stage3-amd64-llvm-openrc
- stage3-amd64-llvm-systemd
- stage3-amd64-musl
- stage3-amd64-musl-hardened
- stage3-amd64-musl-llvm
- stage3-amd64-nomultilib-openrc
- stage3-amd64-nomultilib-systemd
- stage3-amd64-openrc
Expand All @@ -39,8 +42,11 @@ jobs:
- stage3-armv7a_hardfp-systemd
- stage3-arm64-desktop-openrc
- stage3-arm64-desktop-systemd
- stage3-arm64-llvm-openrc
- stage3-arm64-llvm-systemd
- stage3-arm64-musl
- stage3-arm64-musl-hardened
- stage3-arm64-musl-llvm
- stage3-arm64-openrc
- stage3-arm64-systemd
- stage3-i686-hardened-openrc
Expand Down Expand Up @@ -79,8 +85,11 @@ jobs:
- stage3:latest
- stage3:desktop
- stage3:hardened
- stage3:llvm
- stage3:llvm-systemd
- stage3:musl
- stage3:musl-hardened
- stage3:musl-llvm
- stage3:nomultilib
- stage3:nomultilib-systemd
- stage3:systemd
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ The following targets are built and pushed to Docker Hub:
* `amd64`
* `stage3-amd64-hardened-nomultilib-openrc`
* `stage3-amd64-hardened-openrc`
* `stage3-amd64-llvm-openrc`
* `stage3-amd64-llvm-systemd`
* `stage3-amd64-musl`
* `stage3-amd64-musl-hardened`
* `stage3-amd64-musl-llvm`
* `stage3-amd64-nomultilib-openrc`
* `stage3-amd64-nomultilib-systemd`
* `stage3-amd64-openrc`
Expand All @@ -43,8 +46,11 @@ The following targets are built and pushed to Docker Hub:
* `arm64`
* `stage3-arm64-desktop-openrc`
* `stage3-arm64-desktop-systemd`
* `stage3-arm64-llvm-openrc`
* `stage3-arm64-llvm-systemd`
* `stage3-arm64-musl`
* `stage3-arm64-musl-hardened`
* `stage3-arm64-musl-llvm`
* `stage3-arm64-openrc`
* `stage3-arm64-systemd`
* `ppc`
Expand Down
9 changes: 9 additions & 0 deletions deploy-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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")
;;
Expand Down

0 comments on commit 716e23d

Please sign in to comment.