Enable building with quota and libtirpc on Fedora 40 #2269
Workflow file for this run
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
name: Checks | |
on: | |
push: | |
branches: | |
- main | |
- branch-* | |
paths-ignore: | |
- "CONTRIBUTORS" | |
- "COPYING" | |
- "COPYRIGHT" | |
- "Dockerfile" | |
- "INSTALL" | |
- "NEWS" | |
- "README.md" | |
pull_request: | |
branches: | |
- main | |
- branch-* | |
types: | |
- opened | |
- synchronize | |
- reopened | |
paths-ignore: | |
- "CONTRIBUTORS" | |
- "NEWS" | |
- "README.md" | |
env: | |
APT_PACKAGES: | | |
autoconf \ | |
automake \ | |
bison \ | |
docbook-xsl \ | |
flex \ | |
libacl1-dev \ | |
libavahi-client-dev \ | |
libcrack2-dev \ | |
libdb-dev \ | |
libdbus-1-dev \ | |
libdbus-glib-1-dev \ | |
libevent-dev \ | |
libgcrypt-dev \ | |
libglib2.0-dev \ | |
libkrb5-dev \ | |
libldap2-dev \ | |
libmysqlclient-dev \ | |
libpam0g-dev \ | |
libssl-dev \ | |
libtalloc-dev \ | |
libtirpc-dev \ | |
libtool \ | |
libtool-bin \ | |
libtracker-sparql-3.0-dev \ | |
libwrap0-dev \ | |
meson \ | |
ninja-build \ | |
quota \ | |
systemtap-sdt-dev \ | |
tcpd \ | |
tracker \ | |
xsltproc | |
jobs: | |
build-alpine: | |
name: Alpine Linux | |
runs-on: ubuntu-22.04 | |
container: | |
image: alpine:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
apk add \ | |
acl-dev \ | |
autoconf \ | |
automake \ | |
avahi-dev \ | |
bison \ | |
build-base \ | |
cracklib \ | |
cracklib-dev \ | |
cracklib-words \ | |
curl \ | |
db-dev \ | |
dbus-dev \ | |
dbus-glib-dev \ | |
flex \ | |
gcc \ | |
krb5-dev \ | |
libevent-dev \ | |
libgcrypt-dev \ | |
libtirpc-dev \ | |
libtool \ | |
libtracker \ | |
linux-pam-dev \ | |
meson \ | |
ninja \ | |
openldap-dev \ | |
openrc \ | |
openssl-dev \ | |
pkgconfig \ | |
rpcsvc-proto-dev \ | |
talloc-dev \ | |
tracker \ | |
tracker-dev | |
- name: Autotools - Bootstrap | |
run: ./bootstrap | |
- name: Autotools - Configure | |
run: | | |
./configure \ | |
--enable-krbV-uam \ | |
--enable-pgp-uam \ | |
--with-cracklib \ | |
--with-init-style=openrc \ | |
--with-libtirpc \ | |
--with-tracker-pkgconfig-version=3.0 | |
- name: Autotools - Build | |
run: make -j $(nproc) | |
- name: Autotools - Run tests | |
run: make check | |
- name: Autotools - Install | |
run: make install | |
- name: Autotools - Uninstall | |
run: make uninstall | |
- name: Meson - Configure | |
run: | | |
meson setup build \ | |
-Dbuild-tests=true \ | |
-Dwith-init-style=openrc \ | |
-Dwith-libtirpc=true | |
- name: Meson - Build | |
run: ninja -C build | |
- name: Meson - Run tests | |
run: cd build && meson test | |
- name: Meson - Install | |
run: ninja -C build install | |
- name: Meson - Uninstall | |
run: ninja -C build uninstall | |
build-archlinux: | |
name: Arch Linux | |
runs-on: ubuntu-22.04 | |
container: | |
image: archlinux:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
pacman -Sy --noconfirm \ | |
autoconf \ | |
automake \ | |
cracklib \ | |
gcc \ | |
libtool \ | |
make \ | |
meson \ | |
ninja \ | |
pkgconfig | |
- name: Autotools - Bootstrap | |
run: ./bootstrap | |
- name: Autotools - Configure | |
run: | | |
./configure \ | |
--disable-init-hooks \ | |
--with-cracklib \ | |
--with-init-style=systemd | |
- name: Autotools - Build | |
run: make -j $(nproc) | |
- name: Autotools - Run tests | |
run: make check | |
- name: Autotools - Install | |
run: make install | |
- name: Autotools - Uninstall | |
run: make uninstall | |
- name: Meson - Configure | |
run: | | |
meson setup build \ | |
-Dbuild-tests=true \ | |
-Ddisable-init-hooks=true \ | |
-Dwith-init-style=systemd | |
- name: Meson - Build | |
run: ninja -C build | |
- name: Meson - Run tests | |
run: cd build && meson test | |
- name: Meson - Install | |
run: ninja -C build install | |
- name: Meson - Uninstall | |
run: ninja -C build uninstall | |
build-debian: | |
name: Debian Linux | |
runs-on: ubuntu-22.04 | |
container: | |
image: debian:bookworm | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
apt-get update | |
apt-get install --assume-yes --no-install-recommends \ | |
autoconf \ | |
automake \ | |
bison \ | |
default-libmysqlclient-dev \ | |
file \ | |
flex \ | |
gcc \ | |
libacl1-dev \ | |
libavahi-client-dev \ | |
libcrack2-dev \ | |
libdb-dev \ | |
libdbus-1-dev \ | |
libdbus-glib-1-dev \ | |
libevent-dev \ | |
libgcrypt-dev \ | |
libglib2.0-dev \ | |
libkrb5-dev \ | |
libldap2-dev \ | |
libltdl-dev \ | |
libpam0g-dev \ | |
libssl-dev \ | |
libtalloc-dev \ | |
libtirpc-dev \ | |
libtool \ | |
libtool-bin \ | |
libtracker-sparql-3.0-dev \ | |
libwrap0-dev \ | |
make \ | |
meson \ | |
ninja-build \ | |
quota \ | |
systemtap-sdt-dev \ | |
tcpd \ | |
tracker | |
- name: Autotools - Bootstrap | |
run: ./bootstrap | |
- name: Autotools - Configure | |
run: | | |
./configure \ | |
--disable-dependency-tracking \ | |
--enable-krbV-uam \ | |
--enable-pgp-uam \ | |
--enable-quota \ | |
--with-cracklib \ | |
--with-init-style=debian-sysv \ | |
--with-libtirpc \ | |
--with-tracker-pkgconfig-version=3.0 | |
- name: Autotools - Build | |
run: make -j $(nproc) all | |
- name: Autotools - Run tests | |
run: make check | |
- name: Autotools - Install | |
run: make install | |
- name: Start netatalk | |
run: /etc/init.d/netatalk start && sleep 2 && asip-status localhost | |
- name: Stop netatalk | |
run: /etc/init.d/netatalk stop | |
- name: Autotools - Uninstall | |
run: make uninstall | |
- name: Meson - Configure | |
run: | | |
meson setup build \ | |
-Dbuild-tests=true \ | |
-Dwith-init-style=debian-sysv \ | |
-Dwith-libtirpc=true | |
- name: Meson - Build | |
run: ninja -C build | |
- name: Meson - Run tests | |
run: cd build && meson test | |
- name: Meson - Install | |
run: ninja -C build install | |
- name: Start netatalk | |
run: /etc/init.d/netatalk start && sleep 2 && asip-status localhost | |
- name: Stop netatalk | |
run: /etc/init.d/netatalk stop | |
- name: Meson - Uninstall | |
run: ninja -C build uninstall | |
build-fedora: | |
name: Fedora Linux | |
runs-on: ubuntu-22.04 | |
container: | |
image: fedora:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
dnf --setopt=install_weak_deps=False --assumeyes install \ | |
automake \ | |
avahi-devel \ | |
bison \ | |
chkconfig \ | |
cracklib-devel \ | |
dbus-devel \ | |
dbus-glib-devel \ | |
flex \ | |
glib2-devel \ | |
krb5-devel \ | |
libacl-devel \ | |
libdb-devel \ | |
libgcrypt-devel \ | |
libtalloc-devel \ | |
libtool \ | |
meson \ | |
ninja-build \ | |
openldap-devel \ | |
openssl-devel \ | |
pam-devel \ | |
perl \ | |
quota-devel \ | |
systemd \ | |
systemtap-sdt-devel \ | |
tracker \ | |
tracker-devel | |
- name: Autotools - Bootstrap | |
run: ./bootstrap | |
- name: Autotools - Configure | |
run: | | |
./configure \ | |
--disable-init-hooks \ | |
--enable-krbV-uam \ | |
--enable-pgp-uam \ | |
--enable-quota \ | |
--with-cracklib \ | |
--with-init-style=redhat-systemd \ | |
--with-libtirpc \ | |
--with-tracker-pkgconfig-version=3.0 | |
- name: Autotools - Build | |
run: make -j $(nproc) | |
- name: Autotools - Run tests | |
run: make check | |
- name: Autotools - Install | |
run: sudo make install | |
- name: Autotools - Uninstall | |
run: sudo make uninstall | |
- name: Meson - Configure | |
run: | | |
meson setup build \ | |
-Dbuild-tests=true \ | |
-Ddisable-init-hooks=true \ | |
-Dwith-init-style=redhat-systemd \ | |
-Dwith-libtirpc=true | |
- name: Meson - Build | |
run: ninja -C build | |
- name: Meson - Run tests | |
run: cd build && meson test | |
- name: Meson - Install | |
run: sudo ninja -C build install | |
- name: Meson - Uninstall | |
run: sudo ninja -C build uninstall | |
build-opensuse: | |
name: openSUSE Linux | |
runs-on: ubuntu-22.04 | |
container: | |
image: opensuse/tumbleweed:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
zypper in -y \ | |
automake \ | |
file \ | |
gawk \ | |
gcc \ | |
libtool \ | |
make \ | |
meson \ | |
ninja \ | |
pkg-config \ | |
systemd \ | |
wget && | |
zypper in -y \ | |
bison \ | |
cracklib-devel \ | |
dbus-1-devel \ | |
dbus-1-glib-devel \ | |
flex \ | |
glib2-devel \ | |
krb5-devel \ | |
libacl-devel \ | |
libavahi-devel \ | |
libdb-4_8-devel \ | |
libevent-devel \ | |
libgcrypt-devel \ | |
libmariadb-devel \ | |
libopenssl-devel \ | |
libtalloc-devel \ | |
libtdb-devel \ | |
libtracker-sparql-3_0-0 \ | |
openldap2-devel \ | |
pam-devel \ | |
systemtap-sdt-devel \ | |
tcpd-devel \ | |
tracker | |
- name: Autotools - Bootstrap | |
run: ./bootstrap | |
- name: Autotools - Configure | |
run: | | |
./configure \ | |
--disable-init-hooks \ | |
--enable-krbV-uam \ | |
--enable-pgp-uam \ | |
--with-cracklib \ | |
--with-init-style=suse-systemd \ | |
--with-tracker-pkgconfig-version=3.0 | |
- name: Autotools - Build | |
run: make -j $(nproc) | |
- name: Autotools - Run tests | |
run: make check | |
- name: Autotools - Install | |
run: make install | |
- name: Autotools - Uninstall | |
run: make uninstall | |
- name: Meson - Configure | |
run: | | |
meson setup build \ | |
-Dbuild-tests=true \ | |
-Ddisable-init-hooks=true \ | |
-Dwith-init-style=suse-systemd | |
- name: Meson - Build | |
run: ninja -C build | |
- name: Meson - Run tests | |
run: cd build && meson test | |
- name: Meson - Install | |
run: ninja -C build install | |
- name: Meson - Uninstall | |
run: ninja -C build uninstall | |
build-ubuntu: | |
name: Ubuntu Linux | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --assume-yes --no-install-recommends ${{ env.APT_PACKAGES }} | |
- name: Autotools - Bootstrap | |
run: ./bootstrap | |
- name: Autotools - Configure | |
run: | | |
./configure \ | |
--disable-init-hooks \ | |
--enable-krbV-uam \ | |
--enable-pgp-uam \ | |
--enable-quota \ | |
--with-cracklib \ | |
--with-docbook=/usr/share/xml/docbook/stylesheet/docbook-xsl \ | |
--with-init-style=debian-systemd \ | |
--with-libtirpc \ | |
--with-tracker-pkgconfig-version=3.0 | |
- name: Autotools - Generate manual pages | |
run: make html | |
- name: Autotools - Build | |
run: make -j $(nproc) all | |
- name: Autotools - Run tests | |
run: make check | |
- name: Autotools - Run distribution tests | |
run: make distcheck | |
- name: Autotools - Install | |
run: sudo make install | |
- name: Start netatalk | |
run: sudo systemctl start netatalk && sleep 2 && asip-status localhost | |
- name: Stop netatalk | |
run: sudo systemctl stop netatalk | |
- name: Autotools - Uninstall | |
run: sudo make uninstall | |
- name: Meson - Configure | |
run: | | |
meson setup build \ | |
-Dbuild-tests=true \ | |
-Dbuild-manual=true \ | |
-Ddisable-init-hooks=true \ | |
-Dwith-init-style=debian-systemd \ | |
-Dwith-libtirpc=true | |
- name: Meson - Build and generate manual pages | |
run: ninja -C build | |
- name: Meson - Run tests | |
run: cd build && meson test | |
- name: Meson - Run distribution tests | |
run: cd build && meson dist | |
- name: Meson - Install | |
run: sudo ninja -C build install | |
- name: Start netatalk | |
run: sudo systemctl start netatalk && sleep 2 && asip-status localhost | |
- name: Stop netatalk | |
run: sudo systemctl stop netatalk | |
- name: Meson - Uninstall | |
run: sudo ninja -C build uninstall | |
build-dflybsd: | |
name: DragonflyBSD | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build on VM | |
uses: vmactions/[email protected] | |
with: | |
copyback: false | |
usesh: true | |
prepare: | | |
pkg install -y \ | |
autoconf \ | |
automake \ | |
avahi \ | |
bison \ | |
db5 \ | |
gmake \ | |
libevent \ | |
libgcrypt \ | |
libtool \ | |
meson \ | |
perl5 \ | |
pkgconf \ | |
py39-gdbm \ | |
py39-sqlite3 \ | |
py39-tkinter \ | |
talloc \ | |
tracker3 | |
run: | | |
set -e | |
echo "Building with Autotools" | |
./bootstrap | |
./configure \ | |
--with-ssl-dir=/usr/local \ | |
--with-tracker-pkgconfig-version=3.0 \ | |
LDFLAGS=-L/usr/local/lib \ | |
MAKE=gmake | |
gmake -j2 | |
gmake install | |
gmake uninstall | |
echo "Building with Meson" | |
meson setup build | |
ninja -C build | |
ninja -C build install | |
ninja -C build uninstall | |
build-freebsd: | |
name: FreeBSD | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build on VM | |
uses: vmactions/[email protected] | |
with: | |
copyback: false | |
prepare: | | |
pkg install -y \ | |
autoconf \ | |
automake \ | |
avahi \ | |
bison \ | |
db5 \ | |
flex \ | |
gmake \ | |
libevent \ | |
libgcrypt \ | |
libressl \ | |
libtool \ | |
meson \ | |
openldap26-client-2.6.7 \ | |
pkgconf \ | |
talloc \ | |
tracker3 | |
run: | | |
set -e | |
echo "Building with Autotools" | |
./bootstrap | |
./configure \ | |
--enable-krbV-uam \ | |
--enable-pgp-uam \ | |
--with-init-style=freebsd \ | |
--with-ldap=/usr/local \ | |
--with-ssl-dir=/usr/local \ | |
--with-tracker-pkgconfig-version=3.0 \ | |
MAKE=gmake \ | |
PKG_CONFIG_PATH=/usr/local/libdata/pkgconfig | |
gmake -j $(nproc) | |
gmake install | |
/etc/rc.d/netatalk start | |
sleep 2 | |
asip-status localhost | |
/etc/rc.d/netatalk stop | |
gmake uninstall | |
echo "Building with Meson" | |
meson setup build \ | |
-Dpkg_config_path=/usr/local/libdata/pkgconfig \ | |
-Dwith-init-style=freebsd | |
ninja -C build | |
ninja -C build install | |
/etc/rc.d/netatalk start | |
sleep 2 | |
asip-status localhost | |
/etc/rc.d/netatalk stop | |
/etc/rc.d/netatalk disable | |
ninja -C build uninstall | |
build-netbsd: | |
name: NetBSD | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build on VM | |
uses: vmactions/[email protected] | |
with: | |
copyback: false | |
prepare: | | |
pkg_add \ | |
autoconf \ | |
automake \ | |
avahi \ | |
bison \ | |
db5 \ | |
dbus-glib \ | |
flex \ | |
gcc13 \ | |
gmake \ | |
gnome-tracker \ | |
libevent \ | |
libgcrypt \ | |
libressl \ | |
libtool \ | |
meson \ | |
pkg-config \ | |
talloc | |
run: | | |
set -e | |
echo "Building with Autotools" | |
./bootstrap | |
./configure \ | |
--enable-krbV-uam \ | |
--enable-pgp-uam \ | |
--with-bdb=/usr/pkg \ | |
--with-init-style=netbsd \ | |
--with-libgcrypt-dir=/usr/pkg \ | |
--with-tracker-pkgconfig-version=3.0 \ | |
MAKE=gmake \ | |
PKG_CONFIG_PATH=/usr/pkg/lib/pkgconfig | |
gmake -j $(nproc) | |
gmake install | |
service netatalk onestart | |
sleep 2 | |
asip-status localhost | |
service netatalk onestop | |
gmake uninstall | |
echo "Building with Meson" | |
meson setup build \ | |
-Dpkg_config_path=/usr/pkg/lib/pkgconfig \ | |
-Dwith-dtrace=false \ | |
-Dwith-init-style=netbsd | |
ninja -C build | |
ninja -C build install | |
service netatalk onestart | |
sleep 2 | |
asip-status localhost | |
service netatalk onestop | |
ninja -C build uninstall | |
build-openbsd: | |
name: OpenBSD | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build on VM | |
uses: vmactions/[email protected] | |
with: | |
copyback: false | |
prepare: | | |
pkg_add -I \ | |
autoconf-2.71 \ | |
automake-1.16.5 \ | |
avahi \ | |
bison \ | |
dbus-glib \ | |
db-4.6.21p7v0 \ | |
gcc-11.2.0p9 \ | |
gmake \ | |
libevent \ | |
libgcrypt \ | |
libtalloc \ | |
libtool \ | |
meson \ | |
openldap-client-2.6.6v0 \ | |
openpam \ | |
pkgconf \ | |
tracker3 | |
run: | | |
set -e | |
echo "Building with Autotools" | |
export AUTOCONF_VERSION=2.71 | |
export AUTOMAKE_VERSION=1.16 | |
export CFLAGS=-I/usr/local/include | |
export LDFLAGS=-L/usr/local/lib | |
autoreconf -fi | |
./configure \ | |
--with-init-style=openbsd \ | |
--with-tracker-pkgconfig-version=3.0 \ | |
MAKE=gmake \ | |
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig | |
gmake -j $(nproc) | |
gmake install | |
rcctl -d start netatalk | |
sleep 2 | |
asip-status localhost | |
rcctl -d stop netatalk | |
gmake uninstall | |
echo "Building with Meson" | |
meson setup build \ | |
-Dpkg_config_path=/usr/local/lib/pkgconfig \ | |
-Dwith-init-style=openbsd | |
ninja -C build | |
ninja -C build install | |
rcctl -d start netatalk | |
sleep 2 | |
asip-status localhost | |
rcctl -d stop netatalk | |
rcctl -d disable netatalk | |
ninja -C build uninstall | |
build-macos: | |
name: macOS | |
runs-on: macos-latest | |
env: | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
HOMEBREW_NO_AUTO_UPDATE: 1 | |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: brew install automake berkeley-db libressl libtool meson mysql talloc | |
- name: Autotools - Bootstrap | |
run: ./bootstrap | |
- name: Autotools - Configure | |
run: | | |
./configure \ | |
--enable-krbV-uam \ | |
--enable-pgp-uam \ | |
--with-bdb=/opt/homebrew/opt/berkeley-db \ | |
--with-init-style=macos-launchd \ | |
--with-ssl-dir=/opt/homebrew/opt/libressl | |
- name: Autotools - Build | |
run: make -j $(nproc) all | |
- name: Autotools - Run tests | |
run: make check | |
- name: Autotools - Install | |
run: sudo make install | |
- name: Start netatalk | |
run: sudo /usr/local/bin/netatalkd start && sleep 2 && asip-status localhost | |
- name: Stop netatalk | |
run: sudo netatalkd stop | |
- name: Autotools - Uninstall | |
run: sudo make uninstall | |
- name: Meson - Configure | |
run: | | |
meson setup build \ | |
-Dwith-bdb=/opt/homebrew/opt/berkeley-db \ | |
-Dwith-init-style=macos-launchd \ | |
-Dwith-ssl-dir=/opt/homebrew/opt/libressl \ | |
-Dbuild-tests=true | |
- name: Meson - Build | |
run: ninja -C build | |
- name: Meson - Run tests | |
run: cd build && meson test | |
- name: Meson - Install | |
run: sudo ninja -C build install | |
- name: Start netatalk | |
run: sudo netatalkd start && sleep 2 && asip-status localhost | |
- name: Stop netatalk | |
run: sudo netatalkd stop | |
- name: Meson - Uninstall | |
run: sudo ninja -C build uninstall | |
build-omnios: | |
name: OmniOS | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build on VM | |
uses: vmactions/[email protected] | |
with: | |
copyback: false | |
prepare: | | |
pkg install \ | |
build-essential \ | |
libtool \ | |
pkg-config | |
curl -O https://pkgsrc.smartos.org/packages/SmartOS/bootstrap/bootstrap-trunk-x86_64-20230910.tar.gz | |
tar -zxpf bootstrap-trunk-x86_64-20230910.tar.gz -C / | |
export PATH=/opt/local/sbin:/opt/local/bin:/usr/gnu/bin:/usr/bin:/usr/sbin:/sbin:$PATH | |
pkgin -y install \ | |
avahi \ | |
dbus-glib \ | |
gnome-tracker \ | |
libevent \ | |
libgcrypt \ | |
meson \ | |
talloc | |
run: | | |
set -e | |
export PATH=/opt/local/sbin:/opt/local/bin:/usr/gnu/bin:/usr/bin:/usr/sbin:/sbin:$PATH | |
echo "Building with Autotools" | |
./bootstrap | |
./configure \ | |
--enable-pgp-uam \ | |
--with-bdb=/opt/local \ | |
--with-init-style=solaris \ | |
--with-ldap=/opt/local \ | |
--with-libgcrypt-dir=/opt/local \ | |
--with-tracker-pkgconfig-version=3.0 \ | |
MAKE=gmake \ | |
PKG_CONFIG_PATH=/opt/local/lib/pkgconfig | |
gmake -j $(nproc) | |
gmake install | |
svcadm enable svc:/network/netatalk:default | |
sleep 2 | |
/usr/local/bin/asip-status localhost | |
svcadm disable svc:/network/netatalk:default | |
gmake uninstall | |
echo "Building with Meson" | |
meson setup build \ | |
-Dpkg_config_path=/opt/local/lib/pkgconfig \ | |
-Dwith-init-style=solaris \ | |
-Dwith-ldap=/opt/local | |
ninja -C build | |
ninja -C build install | |
svcadm enable svc:/network/netatalk:default | |
sleep 2 | |
/usr/local/bin/asip-status localhost | |
svcadm disable svc:/network/netatalk:default | |
ninja -C build uninstall | |
build-solaris: | |
name: Solaris | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build on VM | |
uses: vmactions/[email protected] | |
with: | |
copyback: false | |
prepare: | | |
pkg install \ | |
autoconf \ | |
automake \ | |
bison \ | |
flex \ | |
gcc \ | |
libevent \ | |
libgcrypt \ | |
libtool \ | |
pkg-config | |
wget https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz --no-check-certificate | |
wget https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz --no-check-certificate | |
tar xvf autoconf-2.71.tar.gz | |
tar xvf automake-1.16.5.tar.gz | |
cd autoconf-2.71 | |
./configure --prefix=/usr | |
make | |
make install | |
cd ../automake-1.16.5 | |
./configure --prefix=/usr | |
make | |
make install | |
cd .. | |
run: | | |
set -e | |
echo "Building with Autotools" | |
./bootstrap | |
./configure \ | |
--enable-krbV-uam \ | |
--enable-pgp-uam \ | |
--with-init-style=solaris \ | |
--without-afpstats \ | |
MAKE=gmake \ | |
PKG_CONFIG_PATH=/usr/lib/amd64/pkgconfig | |
gmake -j $(nproc) | |
gmake install | |
svcadm enable svc:/network/netatalk:default | |
sleep 2 | |
/usr/local/bin/asip-status localhost | |
svcadm disable -s svc:/network/netatalk:default | |
gmake uninstall | |
static_analysis: | |
name: Static Analysis | |
runs-on: ubuntu-22.04 | |
env: | |
# Directory where build-wrapper output will be placed | |
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory | |
if: ${{ !github.event.pull_request.head.repo.fork }} # Run only if not originating from a fork | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# Shallow clones should be disabled for a better relevancy of analysis | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install --assume-yes --no-install-recommends ${{ env.APT_PACKAGES }} | |
- name: Install sonar-scanner and build-wrapper | |
uses: SonarSource/sonarcloud-github-c-cpp@v2 | |
- name: Run build-wrapper | |
run: | | |
mkdir -p ${{ env.BUILD_WRAPPER_OUT_DIR }} | |
meson setup build \ | |
-Denable-krbV-uam=enabled \ | |
-Denable-pgp-uam=enabled | |
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} ninja -C build | |
- name: Run sonar-scanner | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: | | |
sonar-scanner --define sonar.cfamily.build-wrapper-output="${{ env.BUILD_WRAPPER_OUT_DIR }}" |