Skip to content

Commit b871f49

Browse files
authored
Merge pull request #1223 from asklymenko/rolling
T861: add secure boot support
2 parents ec0afde + a7ccbf6 commit b871f49

4 files changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/trigger_rebuild_packages.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ jobs:
8282
- 'scripts/package-build/pyhumps/**'
8383
radvd:
8484
- 'scripts/package-build/radvd/**'
85+
shim-signed:
86+
- 'scripts/package-build/shim-signed/**'
8587
strongswan:
8688
- 'scripts/package-build/strongswan/**'
8789
tacacs:
@@ -235,6 +237,10 @@ jobs:
235237
trigger_build "radvd"
236238
fi
237239
240+
if [ "${{ steps.changes.outputs.shim-signed }}" == "true" ]; then
241+
trigger_build "shim-signed"
242+
fi
243+
238244
if [ "${{ steps.changes.outputs.strongswan }}" == "true" ]; then
239245
trigger_build "strongswan"
240246
fi
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/shim-signed/
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../build.py
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[[packages]]
2+
name = "shim-signed"
3+
commit_id = "rolling"
4+
scm_url = "https://github.com/vyos/shim-signed.git"
5+
6+
[dependencies]
7+
packages = [
8+
"shim-helpers-amd64-signed",
9+
"shim-helpers-amd64-signed-template",
10+
"shim-unsigned"
11+
]

0 commit comments

Comments
 (0)