From: Daan De Meyer Date: Fri, 14 Apr 2023 20:06:29 +0000 (+0200) Subject: Build systemctl in the github action X-Git-Tag: v15~255 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3452a702649fb77639f8ef163e5a2803560a663a;p=thirdparty%2Fmkosi.git Build systemctl in the github action To make sure systemctl understands to new ignore directive in preset. --- diff --git a/action.yaml b/action.yaml index 55e1a7589..cc36e9f5e 100644 --- a/action.yaml +++ b/action.yaml @@ -43,17 +43,19 @@ runs: sudo apt-get install libfdisk-dev git clone https://github.com/systemd/systemd --depth=1 meson systemd/build systemd -Drepart=true -Defi=true -Dbootloader=true - ninja -C systemd/build systemd-nspawn systemd-repart bootctl ukify systemd-analyze systemd-nspawn + ninja -C systemd/build systemd-nspawn systemd-repart bootctl ukify systemd-analyze systemd-nspawn systemctl sudo ln -svf $PWD/systemd/build/systemd-repart /usr/bin/systemd-repart sudo ln -svf $PWD/systemd/build/bootctl /usr/bin/bootctl sudo ln -svf $PWD/systemd/build/ukify /usr/bin/ukify sudo ln -svf $PWD/systemd/build/systemd-analyze /usr/bin/systemd-analyze sudo ln -svf $PWD/systemd/build/systemd-nspawn /usr/bin/systemd-nspawn + sudo ln -svf $PWD/systemd/build/systemctl /usr/bin/systemctl systemd-repart --version bootctl --version ukify --version systemd-analyze --version systemd-nspawn --version + systemctl --version - name: Install shell: bash