From fc8d111c3ae10591de1ff177692bc81575730153 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 13 Apr 2023 12:36:35 +0200 Subject: [PATCH] build: Update wrap mode defaults We switched the default of the wrap mode to nofallback. Update the CI builds accordingly. Signed-off-by: Daniel Wagner --- .github/workflows/build.yml | 6 ------ .github/workflows/release-python.yml | 3 +++ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b914aa06..01bae284 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,6 @@ jobs: setup-options: > --werror --buildtype=debug - --wrap-mode=nofallback meson-version: 0.61.2 - uses: BSFishy/meson-build@v1.0.3 name: test @@ -59,7 +58,6 @@ jobs: setup-options: > --werror --buildtype=release - --wrap-mode=nofallback -Dlibdbus=enabled meson-version: 0.61.2 - uses: BSFishy/meson-build@v1.0.3 @@ -92,7 +90,6 @@ jobs: setup-options: > --werror --buildtype=release - --wrap-mode=nofallback --cross-file=.github/cross/clang.txt -Dlibdbus=enabled meson-version: 0.61.2 @@ -242,7 +239,6 @@ jobs: setup-options: > --werror --buildtype=release - --wrap-mode=nofallback --cross-file=.github/cross/ubuntu-armhf.txt -Dpython=disabled meson-version: 0.61.2 @@ -285,7 +281,6 @@ jobs: setup-options: > --werror --buildtype=release - --wrap-mode=nofallback --cross-file=.github/cross/ubuntu-ppc64le.txt -Dpython=disabled meson-version: 0.61.2 @@ -328,7 +323,6 @@ jobs: setup-options: > --werror --buildtype=release - --wrap-mode=nofallback --cross-file=.github/cross/ubuntu-s390x.txt -Dpython=disabled meson-version: 0.61.2 diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 32bf2d07..86dc0de1 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -16,6 +16,9 @@ jobs: name: Build source distribution runs-on: ubuntu-latest steps: + - name: install libraries + run: sudo apt-get install gcc pkg-config libjson-c-dev libssl-dev python3-dev + - uses: actions/checkout@v3 - name: Build sdist -- 2.50.1