From: Stéphane Graber Date: Fri, 3 Jun 2022 19:43:42 +0000 (-0400) Subject: github: Update build test for meson X-Git-Tag: lxc-5.0.0~7^2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f9fabfcb8a6614f88aa605d9259bd29ec407d2a;p=thirdparty%2Flxc.git github: Update build test for meson Signed-off-by: Stéphane Graber --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 291fa5822..e077154f4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,17 +11,18 @@ jobs: - gcc - clang os: - - ubuntu-18.04 - - ubuntu-20.04 + - ubuntu-22.04 runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Install dependencies run: | sudo apt-get update -qq - sudo apt-get install -qq gcc clang + sudo apt-get install -qq gcc clang meson sudo apt-get install -qq libapparmor-dev libcap-dev libseccomp-dev libselinux1-dev linux-libc-dev libpam0g-dev docbook2x - name: Compiler version @@ -42,22 +43,12 @@ jobs: env: CC: ${{ matrix.compiler }} run: | - # Configure - export CFLAGS="-Wall -Werror" - export LDFLAGS="-pthread -lpthread" - ./autogen.sh - - BUILD="$(pwd)/build" - SAN_BUILD="$(pwd)/san_build" - mkdir -p "${BUILD}" "${SAN_BUILD}" - cd "${BUILD}" - ../configure --enable-tests --with-distro=unknown - - # Build - make -j4 - make DESTDIR="${BUILD}/install" install - - cd "${SAN_BUILD}" - CFLAGS="$CFLAGS -fsanitize=address,undefined" ../configure --disable-no-undefined --enable-pam --enable-tests --with-distro=unknown - make -j4 - make DESTDIR="${SAN_BUILD}/install" install + # Standard build + meson setup build -Dtests=true -Dpam-cgroup=true -Dwerror=true + ninja -C build + DESTDIR=build_install ninja -C build install + + # Sanitized build + meson setup san_build -Dtests=true -Dpam-cgroup=true -Dwerror=true -Db_sanitize=address,undefined + ninja -C san_build + DESTDIR=san_build_install ninja -C san_build install