From 4c428ec5924e40742aae1a44273d691c759fb1a8 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 15 Mar 2025 17:27:08 +0100 Subject: [PATCH] ci: install selinux in other jobs --- .github/workflows/CICD.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 9643815d9..d474c59c9 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -267,6 +267,10 @@ jobs: - uses: dtolnay/rust-toolchain@stable - uses: taiki-e/install-action@nextest - uses: Swatinem/rust-cache@v2 + - name: Install/setup prerequisites + shell: bash + run: | + sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev - name: Run sccache-cache uses: mozilla-actions/sccache-action@v0.0.8 - name: "`make build`" @@ -402,7 +406,7 @@ jobs: run: | ## Install dependencies sudo apt-get update - sudo apt-get install jq + sudo apt-get install jq libselinux1-dev - name: "`make install`" shell: bash run: | @@ -847,6 +851,7 @@ jobs: - name: Install/setup prerequisites shell: bash run: | + sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev ## Install/setup prerequisites make prepare-busytest - name: Run BusyBox test suite @@ -939,6 +944,7 @@ jobs: - name: Install/setup prerequisites shell: bash run: | + sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev ## Install/setup prerequisites make toybox-src - name: Run Toybox test suite