7 Commits

Author SHA1 Message Date
Chris Richardson
6fd275c24b asd
Some checks failed
Main / Build arm64v8 image (push) Failing after 1m1s
Main / Push arm64v8 image (push) Has been skipped
Main / Push manifest (push) Has been skipped
Main / Publish GitHub release (push) Has been skipped
2025-07-10 21:21:36 -04:00
Chris Richardson
f3294ccbdc asd
Some checks failed
Main / Build arm64v8 image (push) Successful in 8m59s
Main / Push arm64v8 image (push) Failing after 54s
2025-07-10 21:05:49 -04:00
Chris Richardson
5a9a1d969e asd
Some checks failed
Main / Build arm64v8 image (push) Failing after 57s
Main / Push arm64v8 image (push) Has been skipped
2025-07-10 19:56:23 -04:00
Chris Richardson
71b2f80c3a asd
All checks were successful
Main / Build arm64v8 image (push) Successful in 1m1s
Main / Push arm64v8 image (push) Has been skipped
2025-07-10 19:47:49 -04:00
Chris Richardson
00e50f9bb5 asd
All checks were successful
Main / Build arm64v8 image (push) Successful in 10m5s
Main / Push arm64v8 image (push) Has been skipped
2025-07-10 19:29:08 -04:00
Chris Richardson
9b5bffe885 asd
All checks were successful
Main / Build arm64v8 image (push) Successful in 10m17s
Main / Push arm64v8 image (push) Has been skipped
2025-07-10 19:09:13 -04:00
Chris Richardson
106fc86664 asd
Some checks failed
Main / Build arm64v8 image (push) Failing after 8m3s
Main / Push arm64v8 image (push) Has been skipped
2025-07-10 18:49:48 -04:00
4 changed files with 50 additions and 50 deletions

View File

@@ -64,33 +64,31 @@ jobs:
run: |
make "load-${{ matrix.arch }}-image" "push-${{ matrix.arch }}-image"
# push-manifest:
# name: "Push manifest"
# if: "startsWith(github.ref, 'refs/tags/v')"
# needs: ["push"]
# runs-on: "ubuntu-latest"
# permissions:
# contents: "read"
# steps:
# - name: "Checkout project"
# uses: "actions/checkout@v4"
# - name: "Login to Docker Hub"
# uses: "docker/login-action@v3"
# with:
# registry: "docker.io"
# username: "${{ secrets.DOCKERHUB_USERNAME }}"
# password: "${{ secrets.DOCKERHUB_TOKEN }}"
# - name: "Push manifest"
# run: |
# make push-cross-manifest
push-manifest:
name: "Push manifest"
if: "startsWith(github.ref, 'refs/tags/v')"
needs: ["push"]
runs-on: "ubuntu-latest"
permissions:
contents: "read"
steps:
- name: "Checkout project"
uses: "actions/checkout@v4"
- name: "Login to Docker Hub"
uses: "docker/login-action@v3"
with:
registry: "d.lilpenguins.com"
- name: "Push manifest"
run: |
make push-cross-manifest
# publish-github-release:
# name: "Publish GitHub release"
# if: "startsWith(github.ref, 'refs/tags/v')"
# needs: ["push-manifest"]
# runs-on: "ubuntu-latest"
# permissions:
# contents: "write"
# steps:
# - name: "Publish"
# uses: "hectorm/ghaction-release@066200d04c3549852afa243d631ea3dc93390f68"
publish-github-release:
name: "Publish GitHub release"
if: "startsWith(github.ref, 'refs/tags/v')"
needs: ["push-manifest"]
runs-on: "ubuntu-latest"
permissions:
contents: "write"
steps:
- name: "Publish"
uses: "hectorm/ghaction-release@066200d04c3549852afa243d631ea3dc93390f68"

View File

@@ -1,22 +1,22 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Rebuild latest release"
#name: "Rebuild latest release"
on:
schedule:
- cron: "20 04 * * 1"
workflow_dispatch:
#on:
# schedule:
# - cron: "20 04 * * 1"
# workflow_dispatch:
permissions: {}
#permissions: {}
jobs:
trigger-rebuild:
name: "Trigger rebuild"
runs-on: "ubuntu-latest"
permissions:
actions: "write"
contents: "read"
steps:
- name: "Trigger rebuild"
uses: "hectorm/ghaction-trigger-workflow@04c79e7a4e0c0b94bbcff3829f38359e34f1ea9e"
with:
workflow-id: "main.yml"
#jobs:
# trigger-rebuild:
# name: "Trigger rebuild"
# runs-on: "ubuntu-latest"
# permissions:
# actions: "write"
# contents: "read"
# steps:
# - name: "Trigger rebuild"
# uses: "hectorm/ghaction-trigger-workflow@04c79e7a4e0c0b94bbcff3829f38359e34f1ea9e"
# with:
# workflow-id: "main.yml"

View File

@@ -10,7 +10,8 @@ SHELL ["/bin/sh", "-euc"]
# Enable source repositories
RUN <<-EOF
sed -i '/^Types: deb$/s/$/ deb-src/' /etc/apt/sources.list.d/ubuntu.sources
sed -i '/^Types: deb$/s/$/ deb-src/' /etc/apt/sources.list.d/debian.sources
sed -i '/^Components: main$/s/$/ contrib non-free non-free-firmware/' /etc/apt/sources.list.d/debian.sources
EOF
# Install packages
@@ -26,6 +27,7 @@ RUN <<-EOF
cmake \
dbus-x11 \
devscripts \
doxygen \
dpkg-dev \
flex \
git \

View File

@@ -10,8 +10,8 @@ M4 := $(shell command -v m4 2>/dev/null)
DISTDIR := ./dist
DOCKERFILE_TEMPLATE := ./Dockerfile.m4
IMAGE_REGISTRY := docker.io
IMAGE_NAMESPACE := hectorm
IMAGE_REGISTRY := d.lilpenguins.com
IMAGE_NAMESPACE := desktop
IMAGE_PROJECT := xubuntu
IMAGE_NAME := $(IMAGE_REGISTRY)/$(IMAGE_NAMESPACE)/$(IMAGE_PROJECT)
ifeq ($(shell '$(GIT)' status --porcelain 2>/dev/null),)