ISO-repository/.gitlab-ci.yml

40 lines
1.4 KiB
YAML
Raw Normal View History

2022-05-23 08:30:27 +00:00
stages:
- build
2022-05-25 10:38:21 +00:00
build-x86:
2022-05-23 08:30:27 +00:00
image: debian:latest
stage: build
script:
- apt update
2022-05-23 08:44:35 +00:00
- apt install -y xorriso curl genisoimage cpio
2022-05-23 21:17:10 +00:00
- curl -LO https://laotzu.ftp.acc.umu.se/debian-cd/current/amd64/iso-cd/debian-11.3.0-amd64-netinst.iso
2022-05-23 08:37:25 +00:00
- xorriso -osirrox on -indev debian-11.3.0-amd64-netinst.iso -extract / ./isofiles
2022-05-23 08:30:27 +00:00
- chmod +w -R isofiles/
2022-05-23 08:42:24 +00:00
- gunzip ./isofiles/install.amd/initrd.gz
2022-05-23 10:13:27 +00:00
- echo preseed.cfg | cpio -H newc -o -A -F isofiles/install.amd/initrd
- cp bootloader-configs/*.cfg isofiles/isolinux
2022-05-23 08:30:27 +00:00
- gzip isofiles/install.amd/initrd
2022-05-23 09:33:03 +00:00
- cd isofiles
# Execute the md5sum generation in a separated shell instance, because it returns a
# warning (file system loop) that makes the CI job error out
2022-05-23 08:49:47 +00:00
- sh -c "find -follow -type f ! -name md5sum.txt -print0 | xargs -0 md5sum > md5sum.txt"
2022-05-23 09:33:03 +00:00
- cd ..
2022-05-23 08:30:27 +00:00
- chmod -w -R isofiles/
- genisoimage -r -J -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o halia-debian-11.3.0-amd64.iso isofiles
artifacts:
paths:
- halia-debian-11.3.0-amd64.iso
expire_in: 1 mos 8 days
build-arm64:
2022-05-25 10:39:30 +00:00
image: debian:latest
stage: build
script:
2022-05-25 10:39:30 +00:00
- apt update
- apt install -y curl
2022-05-25 10:37:22 +00:00
- ./arm64-build.sh
artifacts:
paths:
2022-05-25 10:37:22 +00:00
- ./*.img.xz
expire_in: 1 mos 8 days