-
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.
ci: Add Kali rolling Debootstrap test
Kali rolling is based on Debian unstable. Add a test to ensure that we can build downstream distros with a different suite name to upstream Debian. Signed-off-by: Christopher Obbard <[email protected]>
- Loading branch information
Showing
4 changed files
with
37 additions
and
3 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,23 @@ | ||
--- | ||
# Test building a non-debian distribution based on unstable such as kali-rolling | ||
# to ensure bootstrapping suites that debootstrap won't internally know about | ||
# works | ||
{{- $architecture := or .architecture "amd64" }} | ||
|
||
architecture: {{ $architecture }} | ||
|
||
actions: | ||
- action: debootstrap | ||
suite: kali-rolling | ||
parent-suite: testing | ||
components: | ||
- main | ||
mirror: https://http.kali.org/kali/ | ||
variant: minbase | ||
keyring-package: kali-archive-keyring | ||
keyring-file: kali-archive-keyring.gpg | ||
|
||
- action: apt | ||
description: Install some base packages | ||
packages: | ||
- procps |