Migrate from Travis to Github actions
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 20 Feb 2023 19:46:16 +0000 (19:46 +0000)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 20 Feb 2023 20:28:12 +0000 (20:28 +0000)
With current Ubuntu, Valgrind apparently does not like clang debug info, so do not run
valgrind with clang-compiled binaries.

.github/workflows/pr-ci.yml
.travis.yml [deleted file]
test/ci-build.sh [new file with mode: 0755]
test/ci-install.sh [new file with mode: 0755]
test/travis-build.sh [deleted file]
test/travis-install.sh [deleted file]

index e1007f8ffd0b66ea248f6e76f84c92346a85eb72..401b76899416e797bdf3aee442e1f04ce07f7306 100644 (file)
@@ -1,4 +1,4 @@
-name: Converted Workflow
+name: 'Build & Test'
 on:
   push:
     branches:
@@ -21,6 +21,6 @@ jobs:
         if: runner.os == 'Linux'
         run: sudo apt-get update && sudo apt-get install -y clang doxygen gcc gcc-10 gcc-9 libstdc++-10-dev libstdc++-9-dev ninja-build python3-pip python3-setuptools valgrind
       - uses: actions/checkout@v3
-      - run: test/travis-install.sh
-      - run: test/travis-build.sh
+      - run: test/ci-install.sh
+      - run: test/ci-build.sh
 
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644 (file)
index 0b5749c..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-sudo: required
-dist: jammy
-
-language:
-    - c
-    - c++
-addons:
-  apt:
-    sources:
-    - sourceline: 'ppa:ubuntu-toolchain-r/test'
-    packages:
-    - doxygen
-    - clang
-    - libstdc++-9-dev
-    - libstdc++-10-dev
-    - gcc
-    - gcc-9
-    - gcc-10
-    - python3-pip
-    - python3-setuptools
-    - ninja-build
-    - valgrind
-install: test/travis-install.sh
-script: test/travis-build.sh
-
diff --git a/test/ci-build.sh b/test/ci-build.sh
new file mode 100755 (executable)
index 0000000..71508d9
--- /dev/null
@@ -0,0 +1,105 @@
+#!/bin/bash
+
+set -e
+
+TEST_CMD="python3 -m pytest --maxfail=99 test/"
+
+# Make sure binaries can be accessed when invoked by root.
+umask 0022
+
+# There are tests that run as root but without CAP_DAC_OVERRIDE. To allow these
+# to launch built binaries, the directory tree must be accessible to the root
+# user. Since the source directory isn't necessarily accessible to root, we
+# build and run tests in a temporary directory that we can set up to be world
+# readable/executable.
+SOURCE_DIR="$(readlink -f .)"
+TEST_DIR="$(mktemp -dt libfuse-build-XXXXXX)"
+chmod 0755 "${TEST_DIR}"
+cd "${TEST_DIR}"
+echo "Running in ${TEST_DIR}"
+
+cp -v "${SOURCE_DIR}/test/lsan_suppress.txt" .
+export LSAN_OPTIONS="suppressions=$(pwd)/lsan_suppress.txt"
+export ASAN_OPTIONS="detect_leaks=1"
+export CC
+
+# Standard build
+for CC in gcc gcc-9 gcc-10 clang; do
+    echo "=== Building with ${CC} ==="
+    mkdir build-${CC}; cd build-${CC}
+    if [ "${CC}" == "clang" ]; then
+        export CXX="clang++"
+        export TEST_WITH_VALGRIND=false
+    else
+        export TEST_WITH_VALGRIND=true
+    fi
+    if [ ${CC} == 'gcc-7' ]; then
+        build_opts='-D b_lundef=false'
+    else
+        build_opts=''
+    fi
+    if [ ${CC} == 'gcc-10' ]; then
+        build_opts='-Dc_args=-flto=auto'
+    else
+        build_opts=''
+    fi
+    meson -D werror=true ${build_opts} "${SOURCE_DIR}" || (cat meson-logs/meson-log.txt; false)
+    ninja
+
+    sudo chown root:root util/fusermount3
+    sudo chmod 4755 util/fusermount3
+    ${TEST_CMD}
+    cd ..
+done
+(cd build-$CC; sudo ninja install)
+
+sanitized_build()
+{
+    san=$1
+    additonal_option=$2
+
+    echo "=== Building with clang and ${san} sanitizer ==="
+    [ -n ${additonal_option} ] || echo "Additional option: ${additonal_option}"
+
+    mkdir build-${san}; pushd build-${san}
+
+    # b_lundef=false is required to work around clang
+    # bug, cf. https://groups.google.com/forum/#!topic/mesonbuild/tgEdAXIIdC4
+    meson -D b_sanitize=${san} -D b_lundef=false -D werror=true\
+           ${additonal_option} "${SOURCE_DIR}" \
+           || (cat meson-logs/meson-log.txt; false)
+    ninja
+
+    # Test as root and regular user
+    sudo ${TEST_CMD}
+    sudo chown root:root util/fusermount3
+    sudo chmod 4755 util/fusermount3
+    # Cleanup temporary files (since they are now owned by root)
+    sudo rm -rf test/.pytest_cache/ test/__pycache__
+
+    ${TEST_CMD}
+    
+    popd
+    rm -fr build-${san}
+}
+
+# Sanitized build
+CC=clang
+CXX=clang++
+TEST_WITH_VALGRIND=false
+for san in undefined address; do
+    sanitized_build ${san}
+done
+
+# Sanitized build without libc versioned symbols
+CC=clang
+CXX=clang++
+for san in undefined address; do
+    sanitized_build ${san} "-Ddisable-libc-symbol-version=true"
+done
+
+# Documentation.
+(cd "${SOURCE_DIR}"; doxygen doc/Doxyfile)
+
+# Clean up.
+rm -rf "${TEST_DIR}"
diff --git a/test/ci-install.sh b/test/ci-install.sh
new file mode 100755 (executable)
index 0000000..924623b
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+set -e
+
+sudo python3 -m pip install --upgrade pip
+# Meson 0.45 requires Python 3.5 or newer
+sudo python3 -m pip install pytest meson==0.50
+valgrind --version
+ninja --version
+meson --version
diff --git a/test/travis-build.sh b/test/travis-build.sh
deleted file mode 100755 (executable)
index f3a106a..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-#!/bin/bash
-
-set -e
-
-TEST_CMD="python3 -m pytest --maxfail=99 test/"
-
-# Make sure binaries can be accessed when invoked by root.
-umask 0022
-
-# There are tests that run as root but without CAP_DAC_OVERRIDE. To allow these
-# to launch built binaries, the directory tree must be accessible to the root
-# user. Since the source directory isn't necessarily accessible to root, we
-# build and run tests in a temporary directory that we can set up to be world
-# readable/executable.
-SOURCE_DIR="$(readlink -f .)"
-TEST_DIR="$(mktemp -dt libfuse-build-XXXXXX)"
-chmod 0755 "${TEST_DIR}"
-cd "${TEST_DIR}"
-echo "Running in ${TEST_DIR}"
-
-cp -v "${SOURCE_DIR}/test/lsan_suppress.txt" .
-export LSAN_OPTIONS="suppressions=$(pwd)/lsan_suppress.txt"
-export ASAN_OPTIONS="detect_leaks=1"
-export CC
-
-# Standard build
-for CC in gcc gcc-9 gcc-10 clang; do
-    echo "=== Building with ${CC} ==="
-    mkdir build-${CC}; cd build-${CC}
-    if [ "${CC}" == "clang" ]; then
-        export CXX="clang++"
-    fi
-    if [ ${CC} == 'gcc-7' ]; then
-        build_opts='-D b_lundef=false'
-    else
-        build_opts=''
-    fi
-    if [ ${CC} == 'gcc-10' ]; then
-        build_opts='-Dc_args=-flto=auto'
-    else
-        build_opts=''
-    fi
-    meson -D werror=true ${build_opts} "${SOURCE_DIR}" || (cat meson-logs/meson-log.txt; false)
-    ninja
-
-    sudo chown root:root util/fusermount3
-    sudo chmod 4755 util/fusermount3
-    TEST_WITH_VALGRIND=true ${TEST_CMD}
-    cd ..
-done
-(cd build-$CC; sudo ninja install)
-
-sanitized_build()
-{
-    san=$1
-    additonal_option=$2
-
-    echo "=== Building with clang and ${san} sanitizer ==="
-    [ -n ${additonal_option} ] || echo "Additional option: ${additonal_option}"
-
-    mkdir build-${san}; pushd build-${san}
-
-    # b_lundef=false is required to work around clang
-    # bug, cf. https://groups.google.com/forum/#!topic/mesonbuild/tgEdAXIIdC4
-    meson -D b_sanitize=${san} -D b_lundef=false -D werror=true\
-           ${additonal_option} "${SOURCE_DIR}" \
-           || (cat meson-logs/meson-log.txt; false)
-    ninja
-
-    # Test as root and regular user
-    sudo ${TEST_CMD}
-    sudo chown root:root util/fusermount3
-    sudo chmod 4755 util/fusermount3
-    # Cleanup temporary files (since they are now owned by root)
-    sudo rm -rf test/.pytest_cache/ test/__pycache__
-
-    ${TEST_CMD}
-    
-    popd
-    rm -fr build-${san}
-}
-
-# Sanitized build
-CC=clang
-CXX=clang++
-for san in undefined address; do
-    sanitized_build ${san}
-done
-
-# Sanitized build without libc versioned symbols
-CC=clang
-CXX=clang++
-for san in undefined address; do
-    sanitized_build ${san} "-Ddisable-libc-symbol-version=true"
-done
-
-# Documentation.
-(cd "${SOURCE_DIR}"; doxygen doc/Doxyfile)
-
-# Clean up.
-rm -rf "${TEST_DIR}"
diff --git a/test/travis-install.sh b/test/travis-install.sh
deleted file mode 100755 (executable)
index 924623b..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-set -e
-
-sudo python3 -m pip install --upgrade pip
-# Meson 0.45 requires Python 3.5 or newer
-sudo python3 -m pip install pytest meson==0.50
-valgrind --version
-ninja --version
-meson --version