ISO-repository/.gitlab-ci.yml

28 lines
1.2 KiB
YAML
Raw Normal View History

2022-05-23 08:30:27 +00:00
stages:
- build
build-images:
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 08:42:24 +00:00
- curl -O 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 08:30:27 +00:00
- echo debian/preseed.cfg | cpio -H newc -o -A -F isofiles/install.amd/initrd
- cp debian/*.cfg isofiles/isolinux
- 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