From ac5bb16e847a01cb74c2dabd2bf8b48f8e3e2833 Mon Sep 17 00:00:00 2001 From: Richard Ulrich Date: Wed, 30 Jul 2025 16:19:22 +0200 Subject: [PATCH] building an ISO in a github action --- .github/workflows/cont_integration.yml | 16 ++++++++++++++++ Makefile | 5 ----- 2 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/cont_integration.yml diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml new file mode 100644 index 0000000..5fcabac --- /dev/null +++ b/.github/workflows/cont_integration.yml @@ -0,0 +1,16 @@ +on: [push, pull_request] + +name: CI + +jobs: + + iso-nosb: + name: Build an ISO without secureboot + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v4 + - name: Build + run: make iso-nosb + - name: checksum + run: sha256sum output/* diff --git a/Makefile b/Makefile index 4441efb..56da959 100644 --- a/Makefile +++ b/Makefile @@ -29,11 +29,6 @@ ${ISO_FILENAME_NOSB}: builder @git --version docker run \ --rm \ - --interactive \ - --tty \ - --volume /run/pcscd:/run/pcscd:ro \ - --volume /run/user/${UID}/gnupg/S.gpg-agent:/root/.gnupg/S.gpg-agent:ro \ - --volume ${HOME}/.gnupg:/root/.gnupg:ro \ --volume ${PWD}/output:/home/satoshi/output \ --env SOURCE_DATE_EPOCH=$(shell git log -1 --format=%ct) \ --env TAG="$(shell git log -1 --format=%h)" \