Skip to content

Commit

Permalink
Merge pull request #65 from mvallim/feature/secure-boot
Browse files Browse the repository at this point in the history
Support built image to boot with secure boot enabled.
  • Loading branch information
mvallim authored Sep 8, 2024
2 parents 921684e + 5bd8fb3 commit fe1f1fd
Show file tree
Hide file tree
Showing 10 changed files with 728 additions and 403 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-bionic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-focal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-jammy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/build-noble.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: build-noble

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Build
run: |
cd scripts
sed -i -E 's/TARGET_UBUNTU_VERSION=(.*)/TARGET_UBUNTU_VERSION="noble"/g' default_config.sh
./build.sh -
cd ..
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: ubuntu-from-scratch
path: |
scripts/ubuntu-from-scratch.iso
scripts/image/md5sum.txt
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
scripts/chroot
scripts/image
scripts/certificates
*.iso
9 changes: 6 additions & 3 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Marcos Vallim <[email protected]>
Ken Gilmer <[email protected]>
Marcos Vallim <[email protected]> - mvallim
Ken Gilmer <[email protected]> - kgilmer
Anduin Xue <[email protected]> - Anduin2017
Andreas Blaesius <[email protected]> - andi34
Andre Julius <> - NotNorom
sostela <>
monkey-jsun <>
Andreas Blaesius <[email protected]>
Loading

0 comments on commit fe1f1fd

Please sign in to comment.