Skip to content
Draft
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
16 changes: 16 additions & 0 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
@@ -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/*
5 changes: 0 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)" \
Expand Down