-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR addresses the following: - Update deps. - Add a `test` target to test reproducibility easily via `make rebuild-test`. Currently `kernel` and `nvidia-open-gpu-kernel-modules` are not re-producible due to using a throw away kernel signing key. - set `buildid` to empty for runc build for it to be reproducible, ref: - https://words.filippo.io/reproducing-go-binaries-byte-by-byte/ - https://shibumi.dev/posts/day-in-the-life-of-a-package-maintainer-reproducible-go-packages/ - fix reproducibility of `flannel-cni` - `ipmitool` might not be always re-producible due to the fact that it downloads a IANA database on build, so if that files changes `diffoscope` would show it as a diff, the binaries are completely reproducible. - Add a check to verify out-of-tree kernel modules are signed - Remove iscsi build from `pkgs`. iscsi-tools is now available as a system extension. Signed-off-by: Noel Georgi <git@frezbo.dev>
- Loading branch information
Showing
12 changed files
with
74 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ steps: | |
--disable-intf-serial \ | ||
--disable-ipmishell \ | ||
--with-kerneldir=/usr | ||
build: | ||
- | | ||
cd build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: test | ||
variant: scratch | ||
shell: /toolchain/bin/bash | ||
dependencies: | ||
- stage: base | ||
- stage: ca-certificates | ||
- stage: cni | ||
- stage: containerd | ||
- stage: cryptsetup | ||
- stage: dosfstools | ||
- stage: eudev | ||
- stage: fhs | ||
- stage: flannel-cni | ||
- stage: grub | ||
- stage: ipmitool | ||
- stage: iptables | ||
- stage: ipxe | ||
# - stage: kernel | ||
- stage: kmod | ||
- stage: libaio | ||
- stage: libinih | ||
- stage: libjson-c | ||
- stage: liblzma | ||
- stage: libpopt | ||
- stage: libseccomp | ||
- stage: liburcu | ||
- stage: linux-firmware | ||
- stage: lvm2 | ||
- stage: musl | ||
# - stage: nvidia-open-gpu-kernel-modules-pkg | ||
- stage: openssl | ||
- stage: raspberrypi-firmware | ||
- stage: runc | ||
- stage: socat | ||
- stage: syslinux | ||
- stage: u-boot | ||
- stage: util-linux | ||
- stage: xfsprogs | ||
finalize: | ||
- from: / | ||
to: / |