-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
362: fix non-debian builds based on current debian releases r=obbardc a=sjoerdsimons Work around new debootstrap behaviour by always excluding the usr-is-merged package as this allows derivatives based on older debian versions to build again. See #361 for more details Co-authored-by: Sjoerd Simons <[email protected]>
- Loading branch information
Showing
4 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
# Test building a non-debian distribution such as apertis to ensure | ||
# bootstrapping suites that debootstrap won't internally know about works | ||
{{- $architecture := or .architecture "amd64"}} | ||
architecture: {{$architecture}} | ||
|
||
actions: | ||
- action: debootstrap | ||
suite: v2022 | ||
components: | ||
- target | ||
mirror: https://repositories.apertis.org/apertis/ | ||
variant: minbase | ||
keyring-package: apertis-archive-keyring | ||
keyring-file: apertis-archive-keyring.gpg | ||
|
||
- action: apt | ||
description: Install some base packages | ||
packages: | ||
- procps |