summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIker Pedrosa <ipedrosa@redhat.com>2023-08-31 16:20:54 +0200
committerSerge Hallyn <serge@hallyn.com>2023-10-04 13:31:38 -0500
commit13a77133841982e3ce604e0b78a334f22b71df7d (patch)
tree0a756cd5992ce6cdc7a7c43667f8c454d28050c6
parent48aa12af31c0b72872b411857d03a518a4200a3d (diff)
CI: remove .builds folder
We stopped using the CI relying on this folder and moved to Github's, so I'm removing these files. Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
-rw-r--r--.builds/alpine-edge.yml34
-rw-r--r--.builds/fedora.yml33
-rw-r--r--.builds/ubuntu-focal.yml28
-rw-r--r--.builds/ubuntu-jammy.yml28
4 files changed, 0 insertions, 123 deletions
diff --git a/.builds/alpine-edge.yml b/.builds/alpine-edge.yml
deleted file mode 100644
index 2bb867e3..00000000
--- a/.builds/alpine-edge.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-image: alpine/latest
-# apk add --update alpine-sdk
-packages:
- - cmd:setcap
- - autoconf
- - automake
- - byacc
- - expect
- - gettext
- - gettext-dev
- - gettext-lang
- - libbsd-dev
- - libcap-dev
- - libtool
- - linux-pam-dev
- - pkgconf
- - sed
-sources:
- - https://github.com/shadow-maint/shadow
-tasks:
- - build: |
- cd shadow
- ./autogen.sh --without-selinux --disable-man --disable-nls
- grep ENABLE_ config.status
- - tasks: |
- cd shadow
- cat /proc/self/uid_map
- cat /proc/self/status
- make
- make DESTDIR=/tmp/shadow-inst install
- sudo make install
- #TODO - fix up the tests. Let's merge what's here now as it
- #at least tests build.
- #(cd tests; sudo ./run_some || { cat testsuite.log; false; })
diff --git a/.builds/fedora.yml b/.builds/fedora.yml
deleted file mode 100644
index a10151ed..00000000
--- a/.builds/fedora.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-image: fedora/latest
-packages:
- - autoconf
- - automake
- - byacc
- - expect
- - findutils
- - gettext
- - gettext-devel
- - git
- - libbsd-devel
- - libselinux-devel
- - libsemanage-devel
- - libtool
- - libxslt
- - pkgconf
-sources:
- - https://github.com/shadow-maint/shadow
-tasks:
- - build: |
- cd shadow
- ./autogen.sh --with-selinux --enable-man
- grep ENABLE_ config.status
- - tasks: |
- cd shadow
- cat /proc/self/uid_map
- cat /proc/self/status
- make
- make DESTDIR=/tmp/shadow-inst install
- sudo make install
- #TODO - fix up the tests. Let's merge what's here now as it
- #at least tests build.
- #(cd tests; sudo ./run_some || { cat testsuite.log; false; })
diff --git a/.builds/ubuntu-focal.yml b/.builds/ubuntu-focal.yml
deleted file mode 100644
index 22cbe4ec..00000000
--- a/.builds/ubuntu-focal.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-image: ubuntu/focal
-packages:
- - automake
- - autopoint
- - xsltproc
- - libbsd-dev
- - libselinux1-dev
- - gettext
- - expect
- - byacc
- - libtool
- - pkgconf
-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; })
diff --git a/.builds/ubuntu-jammy.yml b/.builds/ubuntu-jammy.yml
deleted file mode 100644
index 243b2c03..00000000
--- a/.builds/ubuntu-jammy.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-image: ubuntu/22.04
-packages:
- - automake
- - autopoint
- - xsltproc
- - libbsd-dev
- - libselinux1-dev
- - gettext
- - expect
- - byacc
- - libtool
- - pkgconf
-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; })