From 6a489d0d4446cd5dc151688dc56d16b9138d3e46 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Tue, 11 Jun 2024 11:11:48 +0200 Subject: [PATCH] CI Linux arm: use common build flags --- .github/workflows/arm-build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/arm-build.yml b/.github/workflows/arm-build.yml index c8a7681f4..725379ff0 100644 --- a/.github/workflows/arm-build.yml +++ b/.github/workflows/arm-build.yml @@ -29,6 +29,8 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Init environment variables + run: . .github/scripts/environment.sh - name: Prepare run: | sudo apt update @@ -76,6 +78,7 @@ jobs: run: | sudo cp -ar $GITHUB_WORKSPACE ~/chroot/UltraGrid env | grep -v '^\(HOME\)\|\(USER\)' | sed -e "s/=/='/" -e "s/$/'/" | sudo tee ~/chroot/envvars + echo "FEATURES=\"$FEATURES\"" | sudo tee -a ~/chroot/envvars sudo chroot ~/chroot /bin/sh -ec "set -a; . /envvars; set +a; cd UltraGrid; .github/scripts/Linux/arm/build.sh" - name: Upload Release Asset id: upload-release-asset