2023-12-09 16:29:32 +00:00
|
|
|
name: Build ISOs
|
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-isos:
|
2023-12-09 17:25:30 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-12-09 16:29:32 +00:00
|
|
|
container:
|
|
|
|
image: node:16-bullseye
|
2023-12-09 18:27:04 +00:00
|
|
|
privileged: yes
|
2023-12-09 18:06:04 +00:00
|
|
|
volumes:
|
|
|
|
- /srv/vapps/gitea-rootless/volumes/test2:/data
|
2023-12-09 16:29:32 +00:00
|
|
|
steps:
|
|
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
|
2023-12-09 17:41:15 +00:00
|
|
|
- run: cd /data
|
2023-12-09 18:38:08 +00:00
|
|
|
- run: ls -al /proc
|
2023-12-10 11:00:07 +00:00
|
|
|
- run: mkdir proc2; mkdir test2
|
2023-12-09 18:40:02 +00:00
|
|
|
- run: mount -t proc proc proc2
|
2023-12-10 10:57:31 +00:00
|
|
|
- run: apt-get update; apt-get install -y live-build chroot; lb config
|
2023-12-10 11:00:07 +00:00
|
|
|
- run: debootstrap bullseye /test2 http://deb.debian.org/debian
|
2023-12-10 10:57:31 +00:00
|
|
|
- run: lb build || true; ls -al *;
|
2023-12-09 18:47:02 +00:00
|
|
|
- run: cat /workspace/plantroon/deblive/chroot/debootstrap/debootstrap.log
|