Merge pull request #476 from hallyn/2021-12-27/impish

add ubuntu impish build
This commit is contained in:
Serge Hallyn 2021-12-27 13:26:11 -06:00 committed by GitHub
commit 6b341b1e90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

26
.builds/ubuntu-impish.yml Normal file
View File

@ -0,0 +1,26 @@
image: ubuntu/21.10
packages:
- automake
- autopoint
- xsltproc
- libselinux1-dev
- gettext
- expect
- byacc
- libtool
sources:
- https://github.com/shadow-maint/shadow
tasks:
- build: |
cd shadow
./autogen.sh --without-selinux --enable-man
grep ENABLE_ config.status
- tasks: |
cat /proc/self/uid_map
cat /proc/self/status
systemd-detect-virt
cd shadow
make
make DESTDIR=/tmp/shadow-inst install
sudo make install
(cd tests; sudo ./run_some || { cat testsuite.log; false; })