Files
shadow/.builds/ubuntu-focal.yml
T

29 lines
592 B
YAML
Raw Normal View History

2021-12-26 11:45:52 -06:00
image: ubuntu/focal
packages:
- automake
- autopoint
- xsltproc
2022-11-22 14:35:06 +01:00
- libbsd-dev
2021-12-26 11:45:52 -06:00
- libselinux1-dev
- gettext
- expect
- byacc
- libtool
2022-11-22 14:35:06 +01:00
- pkgconf
2021-12-26 11:45:52 -06:00
sources:
- https://github.com/shadow-maint/shadow
tasks:
- build: |
cd shadow
./autogen.sh --without-selinux --disable-man
grep ENABLE_ config.status
- tasks: |
cd shadow
cat /proc/self/uid_map
cat /proc/self/status
systemd-detect-virt
make
make DESTDIR=/tmp/shadow-inst install
sudo make install
(cd tests; sudo ./run_some || { cat testsuite.log; false; })