Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
# debian:trixie matches the target distro (snosi images are Trixie-based).
# ghcr.io/frostyard/snow:latest can no longer be used as a job container:
# snosi CI re-chunks published images into 100+ layers for efficient delta
# updates, and Docker refuses to pull them ("max depth exceeded" — the
# ~128-layer overlay2 limit). Podman/bootc hosts are unaffected.
container:
image: ghcr.io/frostyard/snow:latest
volumes:
- /proc:/proc
- /:/run/host
options: --privileged -it
image: debian:trixie

steps:
- uses: actions/checkout@v6
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ on:
jobs:
build-artifacts:
runs-on: ubuntu-latest
# debian:trixie matches the target distro (snosi images are Trixie-based).
# ghcr.io/frostyard/snow:latest can no longer be used as a job container:
# snosi CI re-chunks published images into 100+ layers for efficient delta
# updates, and Docker refuses to pull them ("max depth exceeded" — the
# ~128-layer overlay2 limit). Podman/bootc hosts are unaffected.
container:
image: ghcr.io/frostyard/snow:latest
volumes:
- /proc:/proc
- /:/run/host
options: --privileged -it
image: debian:trixie
permissions:
contents: read

Expand All @@ -31,7 +32,7 @@ jobs:
- name: Install build dependencies
run: |
apt-get update
apt-get install -y awscli
apt-get install -y awscli dpkg-dev devscripts
apt-get build-dep -y .

- name: Build .deb package
Expand Down Expand Up @@ -114,7 +115,7 @@ jobs:
base-url: https://repository.frostyard.org # required for sysext

- name: Kickoff snosi
if: github.event_name != 'pull_request' && github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
if: startsWith(github.ref, 'refs/tags/')
continue-on-error: true
uses: peter-evans/repository-dispatch@v4
with:
Expand Down
Loading