Skip to content

Commit 6a7f9fb

Browse files
committed
static: split artifacts
Signed-off-by: Paweł Gronowski <[email protected]>
1 parent 23d5659 commit 6a7f9fb

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/.nightly.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ jobs:
7878
export DOCKER_COMPOSE_REF=main
7979
export DOCKER_COMPOSE_VERSION=$VERSION
8080
81-
if [ "${{ inputs.target }}" == "static" ]; then
82-
export DOCKER_BUILD_PKGS="static-linux cross-mac cross-win"
81+
if [ "${{ inputs.target }}" == static ]; then
82+
export DOCKER_BUILD_PKGS="${{ inputs.arch }}"
8383
else
84-
export ARCH=${{ inputs.arch }}
84+
export ARCH=${{ inputs.arch }}
8585
fi
8686
8787
make ${{ inputs.target }}

.github/workflows/nightly.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,17 @@ jobs:
2525
#- {target: "rhel-8", image: "registry.access.redhat.com/ubi8/ubi"}
2626
#- {target: "rhel-9", image: "registry.access.redhat.com/ubi9/ubi"}
2727
include:
28-
- arch: static
28+
- arch: static-linux
2929
dist: {target: "static", image: ""}
30+
- arch: cross-mac
31+
dist: {target: "static", image: ""}
32+
- arch: cross-win
33+
dist: {target: "static", image: ""}
34+
- arch: armhf
35+
dist: {target: "debian-bookworm", image: "debian:bookworm"}
3036
#- arch: armhf
3137
# dist: {target: "debian-bullseye", image: "debian:bullseye"}
3238
#- arch: armhf
33-
# dist: {target: "debian-bookworm", image: "debian:bookworm"}
34-
#- arch: armhf
3539
# dist: {target: "ubuntu-focal", image: "ubuntu:focal"}
3640
#- arch: armhf
3741
# dist: {target: "ubuntu-jammy", image: "ubuntu:jammy"}

0 commit comments

Comments
 (0)