-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add Debian with --disable-test-modules
Signed-off-by: Lucas De Marchi <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Link: #78
- Loading branch information
1 parent
dcc1c32
commit eacbb46
Showing
2 changed files
with
32 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: 'setup Debian' | ||
description: 'Setup a Debian container for running CI' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Install dependencies | ||
shell: bash | ||
run: | | ||
apt-get update | ||
apt-get install --yes \ | ||
build-essential \ | ||
autoconf \ | ||
automake \ | ||
gtk-doc-tools \ | ||
libssl-dev \ | ||
liblzma-dev \ | ||
libssl-dev \ | ||
libtool \ | ||
libzstd-dev \ | ||
scdoc \ | ||
zlib1g-dev \ | ||
zstd | ||
# not used by default in Debian since it builds with --disable-test-modules | ||
# developers should have it though | ||
# apt-get install linux-headers-generic |
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