]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
add ubuntu impish build 476/head
authorSerge Hallyn <serge@hallyn.com>
Mon, 27 Dec 2021 19:21:24 +0000 (13:21 -0600)
committerSerge Hallyn <serge@hallyn.com>
Mon, 27 Dec 2021 19:21:24 +0000 (13:21 -0600)
Signed-off-by: Serge Hallyn <serge@hallyn.com>
.builds/ubuntu-focal.yml [moved from .build.yml with 100% similarity]
.builds/ubuntu-impish.yml [new file with mode: 0644]

similarity index 100%
rename from .build.yml
rename to .builds/ubuntu-focal.yml
diff --git a/.builds/ubuntu-impish.yml b/.builds/ubuntu-impish.yml
new file mode 100644 (file)
index 0000000..71c0f17
--- /dev/null
@@ -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; })