aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@strace.io>2024-09-02 08:00:00 +0000
committerDmitry V. Levin <ldv@strace.io>2024-09-10 08:00:00 +0000
commit691688f3d059ab4b65bde5f3cd1186484d2693cd (patch)
tree3ce67d360f4d8d82f045f5149170af7ec02bd01a
parent7fb6beed01bc1a59438b8b2a9b34b2dba296e553 (diff)
downloadpam-691688f3d059ab4b65bde5f3cd1186484d2693cd.tar.gz
pam-691688f3d059ab4b65bde5f3cd1186484d2693cd.tar.bz2
pam-691688f3d059ab4b65bde5f3cd1186484d2693cd.zip
ci: add a few meson jobs
-rw-r--r--.github/workflows/ci.yml145
-rwxr-xr-xci/install-dependencies.sh14
-rwxr-xr-xci/meson-build.sh48
3 files changed, 202 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e3f77a0f..63b573fc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,6 +13,151 @@ jobs:
- name: check
run: git diff-index --check --cached 4b825dc642cb6eb9a060e54bf8d69288fbee4904
+ meson-gcc13-x86_64-vendordir:
+ runs-on: ubuntu-latest
+ env:
+ BUILD: meson
+ CC: gcc-13
+ TARGET: x86_64
+ VENDORDIR: ${prefix}/share/etc
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc13-x86_64-openssl:
+ runs-on: ubuntu-latest
+ env:
+ BUILD: meson
+ CC: gcc-13
+ TARGET: x86_64
+ USE_OPENSSL: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc13-x86_64-sanitizers:
+ runs-on: ubuntu-latest
+ env:
+ BUILD: meson
+ CC: gcc-13
+ CFLAGS: '-O1 -g -fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined -Wno-error=inline -Wno-error=format-overflow'
+ LDFLAGS: '-fsanitize=address -fsanitize-address-use-after-scope -fno-omit-frame-pointer -fsanitize=undefined'
+ ASAN_OPTIONS: strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
+ UBSAN_OPTIONS: print_stacktrace=1:print_summary=1:halt_on_error=1
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc13-x86_64:
+ runs-on: ubuntu-latest
+ env:
+ BUILD: meson
+ CC: gcc-13
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-gcc13-x86_64-debug:
+ runs-on: ubuntu-latest
+ env:
+ BUILD: meson
+ CC: gcc-13
+ TARGET: x86_64
+ ENABLE_DEBUG: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-clang15-x86_64-vendordir:
+ runs-on: ubuntu-latest
+ env:
+ BUILD: meson
+ CC: clang-15
+ TARGET: x86_64
+ VENDORDIR: ${prefix}/share/etc
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-clang15-x86_64-openssl:
+ runs-on: ubuntu-latest
+ env:
+ BUILD: meson
+ CC: clang-15
+ TARGET: x86_64
+ USE_OPENSSL: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-clang15-x86_64:
+ runs-on: ubuntu-latest
+ env:
+ BUILD: meson
+ CC: clang-15
+ TARGET: x86_64
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
+ meson-clang15-x86_64-debug:
+ runs-on: ubuntu-latest
+ env:
+ BUILD: meson
+ CC: clang-15
+ TARGET: x86_64
+ ENABLE_DEBUG: yes
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
+ - name: install dependencies
+ run: ci/install-dependencies.sh
+ - name: build check
+ run: ci/meson-build.sh
+
gcc13-x86_64-vendordir:
runs-on: ubuntu-latest
env:
diff --git a/ci/install-dependencies.sh b/ci/install-dependencies.sh
index 13affe57..3fe9d46d 100755
--- a/ci/install-dependencies.sh
+++ b/ci/install-dependencies.sh
@@ -8,9 +8,6 @@
j=-j`nproc` || j=
type sudo >/dev/null 2>&1 && sudo=sudo || sudo=
packages="
-autoconf
-automake
-autopoint
bison
bzip2
docbook5-xml
@@ -22,9 +19,7 @@ libdb-dev
libfl-dev
libselinux1-dev
libssl-dev
-libtool
libxml2-utils
-make
pkg-config
sed
w3m
@@ -52,6 +47,15 @@ apt_get_install()
install -y "$@"
}
+case "${BUILD-}" in
+ meson)
+ python -m pip install meson ninja
+ ;;
+ *)
+ packages="$packages autoconf automake autopoint libtool make"
+ ;;
+esac
+
case "$CC" in
gcc-*)
retry_if_failed \
diff --git a/ci/meson-build.sh b/ci/meson-build.sh
new file mode 100755
index 00000000..c5f57e67
--- /dev/null
+++ b/ci/meson-build.sh
@@ -0,0 +1,48 @@
+#!/bin/sh -ex
+#
+# Copyright (c) 2018-2024 The strace developers.
+# All rights reserved.
+#
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+opts='-Doptimization=2 -Dwerror=true -Dpam_lastlog=enabled'
+
+case "${VENDORDIR-}" in
+ */*)
+ opts="$opts -Dvendordir=$VENDORDIR"
+ ;;
+esac
+
+case "${USE_OPENSSL-}" in
+ yes)
+ opts="$opts -Dopenssl=enabled"
+ ;;
+esac
+
+case "${ENABLE_DEBUG-}" in
+ yes)
+ opts="$opts -Dpam-debug=true"
+ ;;
+esac
+
+echo 'BEGIN OF BUILD ENVIRONMENT INFORMATION'
+uname -a |head -1
+libc="$(ldd /bin/sh |sed -n 's|^[^/]*\(/[^ ]*/libc\.so[^ ]*\).*|\1|p' |head -1)"
+$libc |head -1
+$CC --version |head -1
+meson --version |head -1
+ninja --version |head -1
+kver="$(printf '%s\n%s\n' '#include <linux/version.h>' 'LINUX_VERSION_CODE' | $CC -E -P -)"
+printf 'kernel-headers %s.%s.%s\n' $((kver/65536)) $((kver/256%256)) $((kver%256))
+echo 'END OF BUILD ENVIRONMENT INFORMATION'
+
+mkdir build
+meson setup $opts build
+
+# If "meson dist" supported -v option, it could be used here
+# instead of all subsequent individual meson commands.
+
+meson compile -v -C build
+mkdir buildroot
+DESTDIR=$(pwd)/buildroot meson install -C build
+meson test -v -C build