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-09 18:40:02 +00:00
|
|
|
- run: mkdir proc2
|
|
|
|
- run: mount -t proc proc proc2
|
2023-12-09 17:30:02 +00:00
|
|
|
- run: apt-get update; apt-get install -y live-build
|
2023-12-09 17:28:41 +00:00
|
|
|
- run: lb build
|
2023-12-09 18:47:02 +00:00
|
|
|
- run: cat /workspace/plantroon/deblive/chroot/debootstrap/debootstrap.log
|