Skip to content

Commit 9f2eddf

Browse files
committed
feat: use our stagex fork
1 parent 9766891 commit 9f2eddf

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

Pkgfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ vars:
5050
musl_sha512: 7bb7f7833923cd69c7a1a9b8a5f1784bfd5289663eb6061dcd43d583e45987df8a68a1be05d75cc1c88a3f5b610653d1a70f4a9cff4d8f7fd41ae73ee058c17c
5151

5252
# Stage(x) reproducibly built bootstrap toolchain. Please update when necessary to build newer toolchain
53-
stagex_binutils_sha256: eff721a796fdfba8c34e21a487b0e376fb55ca2633524926998f1660fbb810de
54-
stagex_busybox_sha256: 3d128909dbc8e7b6c4b8c3c31f4583f01a307907ea179934bb42c4ef056c7efd
55-
stagex_diffutils_sha256: df935bd3df054427c559c5008f2e5de12419725c1331d1f863380a6015a1d0e2
56-
stagex_file_sha256: f1053114ea2ef35dc04bd1d1f1572c3f1b86e3d57dffda99faac9e191bd7ab5d
57-
stagex_gcc_sha256: 49ea63c81c65f8be25c242b7e64f2758b23effdaafb458b5862d0f23ec803075
58-
stagex_go_sha256: 6bb49db5a2d23cddcd9327933a4fcb6136882e72ec2be35730c06b1a420d7b17
59-
stagex_make_sha256: ad81793d21d9778421925085c52734fdcca443957ade4f9bb80e4032b88252db
60-
stagex_musl_sha256: d7f6c365f5724c65cadb2b96d9f594e46132ceb366174c89dbf7554897f2bc53
53+
stagex_prefix: ghcr.io/siderolabs/stagex
54+
stagex_binutils_sha256: b4c8c1b077ed483885db0d7d29c9a6efa574cda71629970f0c753f51ef0046ee
55+
stagex_busybox_sha256: c0b551b47d8f1ac2fd5f4712eafddb8717e6e563a47203e02f94f944f64c18b2
56+
stagex_diffutils_sha256: 697119e6231be9c3e3dcd5c6f04cb8bfdf9178a86ce03433d0f442793b6ac43d
57+
stagex_gcc_sha256: e56482e2e72b892a2c7faa9ef6ba2b37506695990aa139aa8fa8c1b2e90e5117
58+
stagex_go_sha256: 0298fd82defbb8266a6dd44024ca484c22a6e89226ad9b1a6c1fb9eea9258abd
59+
stagex_make_sha256: e36f3612c4788a3ff17312a3480228ae7b8edb2cdcba577fe3cc3db1ed5a4ee8
60+
stagex_musl_sha256: 63f3f84b0ff9827cf4345c722b562ede24fbe61e4ea28ffa9e6d12a3dfe8b90e
6161

6262
labels:
6363
org.opencontainers.image.source: https://github.com/siderolabs/toolchain

c/pkg.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: c
22
variant: scratch
33
dependencies:
4-
- image: "stagex/binutils@sha256:{{ .stagex_binutils_sha256 }}"
5-
- image: "stagex/busybox@sha256:{{ .stagex_busybox_sha256 }}"
6-
- image: "stagex/gcc@sha256:{{ .stagex_gcc_sha256 }}"
7-
- image: "stagex/make@sha256:{{ .stagex_make_sha256 }}"
8-
- image: "stagex/musl@sha256:{{ .stagex_musl_sha256 }}"
4+
- image: "{{ .stagex_prefix }}/core-binutils@sha256:{{ .stagex_binutils_sha256 }}"
5+
- image: "{{ .stagex_prefix }}/core-busybox@sha256:{{ .stagex_busybox_sha256 }}"
6+
- image: "{{ .stagex_prefix }}/core-gcc@sha256:{{ .stagex_gcc_sha256 }}"
7+
- image: "{{ .stagex_prefix }}/core-make@sha256:{{ .stagex_make_sha256 }}"
8+
- image: "{{ .stagex_prefix }}/core-musl@sha256:{{ .stagex_musl_sha256 }}"
99
finalize:
1010
- from: /
1111
to: /

golang/pkg.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: golang
22
variant: scratch
33
dependencies:
4-
- image: "stagex/busybox@sha256:{{ .stagex_busybox_sha256 }}"
5-
- image: "stagex/go@sha256:{{ .stagex_go_sha256 }}"
4+
- image: "{{ .stagex_prefix }}/core-busybox@sha256:{{ .stagex_busybox_sha256 }}"
5+
- image: "{{ .stagex_prefix }}/core-go@sha256:{{ .stagex_go_sha256 }}"
66
steps:
77
- sources:
88
- url: https://dl.google.com/go/go{{ .golang_version }}.src.tar.gz

musl/pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: musl
22
variant: scratch
33
dependencies:
44
- stage: c
5-
- image: "stagex/diffutils@sha256:{{ .stagex_diffutils_sha256 }}"
5+
- image: "{{ .stagex_prefix }}/core-diffutils@sha256:{{ .stagex_diffutils_sha256 }}"
66
steps:
77
- sources:
88
- url: https://www.musl-libc.org/releases/musl-{{ .musl_version }}.tar.gz

0 commit comments

Comments
 (0)