Skip to content
This repository was archived by the owner on Apr 11, 2025. It is now read-only.

Commit 78ba66b

Browse files
committed
feat: update Go to 1.23.3
Via pkgs update. Signed-off-by: Andrey Smirnov <[email protected]>
1 parent eab6e58 commit 78ba66b

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

Diff for: .github/workflows/ci.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-10-17T16:22:46Z by kres 34e72ac.
3+
# Generated on 2024-11-12T11:08:13Z by kres b6443eb.
44

55
name: default
66
concurrency:
@@ -33,7 +33,7 @@ jobs:
3333
labels: ${{ steps.retrieve-pr-labels.outputs.result }}
3434
services:
3535
buildkitd:
36-
image: moby/buildkit:v0.16.0
36+
image: moby/buildkit:v0.17.1
3737
options: --privileged
3838
ports:
3939
- 1234:1234
@@ -129,7 +129,7 @@ jobs:
129129
- default
130130
services:
131131
buildkitd:
132-
image: moby/buildkit:v0.16.0
132+
image: moby/buildkit:v0.17.1
133133
options: --privileged
134134
ports:
135135
- 1234:1234

Diff for: .github/workflows/weekly.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-10-17T16:22:46Z by kres 34e72ac.
3+
# Generated on 2024-11-12T11:08:13Z by kres b6443eb.
44

55
name: weekly
66
concurrency:
@@ -16,7 +16,7 @@ jobs:
1616
- pkgs
1717
services:
1818
buildkitd:
19-
image: moby/buildkit:v0.16.0
19+
image: moby/buildkit:v0.17.1
2020
options: --privileged
2121
ports:
2222
- 1234:1234

Diff for: Makefile

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-08-07T15:33:12Z by kres dbf015a.
3+
# Generated on 2024-11-12T11:08:13Z by kres b6443eb.
44

55
# common variables
66

@@ -41,6 +41,7 @@ COMMON_ARGS += --provenance=false
4141
COMMON_ARGS += --progress=$(PROGRESS)
4242
COMMON_ARGS += --platform=$(PLATFORM)
4343
COMMON_ARGS += --build-arg=SOURCE_DATE_EPOCH=$(SOURCE_DATE_EPOCH)
44+
COMMON_ARGS += --build-arg=BUILDKIT_MULTI_PLATFORM=1
4445

4546
# targets defines all the available targets
4647

@@ -111,6 +112,15 @@ target-%: ## Builds the specified target defined in the Pkgfile. The build resu
111112

112113
local-%: ## Builds the specified target defined in the Pkgfile using the local output type. The build result will be output to the specified local destination.
113114
@$(MAKE) target-$* TARGET_ARGS="--output=type=local,dest=$(DEST) $(TARGET_ARGS)"
115+
@PLATFORM=$(PLATFORM) ARTIFACTS=$(ARTIFACTS) bash -c '\
116+
for platform in $$(tr "," "\n" <<< "$$PLATFORM"); do \
117+
echo $$platform; \
118+
directory="$${platform//\//_}"; \
119+
if [[ -d "$$ARTIFACTS/$$directory" ]]; then \
120+
mv "$$ARTIFACTS/$$directory/"* $$ARTIFACTS; \
121+
rmdir "$$ARTIFACTS/$$directory/"; \
122+
fi; \
123+
done'
114124

115125
docker-%: ## Builds the specified target defined in the Pkgfile using the docker output type. The build result will be loaded into Docker.
116126
@$(MAKE) target-$* TARGET_ARGS="$(TARGET_ARGS)"

Diff for: Pkgfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ format: v1alpha2
44

55
vars:
66
PKGS_PREFIX: ghcr.io/siderolabs
7-
PKGS_VERSION: v1.9.0-alpha.0-23-g0b67a13
7+
PKGS_VERSION: v1.9.0-alpha.0-39-gb15a3d9
88

99
# renovate: datasource=git-refs versioning=git depName=https://github.com/awslabs/tc-redirect-tap.git
1010
tc_redirect_tap_ref: ad89862342243a8ba9abad6d23d358cffd2d4077

0 commit comments

Comments
 (0)