From 7df454daa881c8cdbbebd9706bc9898d5f1651f3 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Mon, 22 Nov 2021 10:35:56 +0100 Subject: [PATCH] .github: try working around runner limitations in unshare Signed-off-by: Joachim Wiberg --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df6ef7c..dcf4d44 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,8 +31,12 @@ jobs: - uses: actions/checkout@v2 - name: Configure run: | + set -x ./autogen.sh - ./configure --prefix=/tmp --with-systemd=/tmp/lib/systemd/system + mkdir -p build/dir + cd build/dir + ../../configure --prefix=/tmp --with-systemd=/tmp/lib/systemd/system + chmod -R a+w - name: Build run: | make V=1