Always install build dependencies

pull/788/head
viktorxda 2023-05-10 22:40:16 +02:00
parent d23cb72c4d
commit c9164e1adb
1 changed files with 10 additions and 0 deletions

View File

@ -339,6 +339,16 @@ jobs:
with: with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit. fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
- name: Install build dependencies
run: |
sudo make install-deps
if [ ! -z "$ACT" ]; then
echo "FORCE_UNSAFE_CONFIGURE=1" >> $GITHUB_ENV
else
# https://github.com/actions/runner-images/issues/2577
echo "8.8.8.8 invisible-mirror.net" | sudo tee -a /etc/hosts
fi
- name: Free disk space - name: Free disk space
if: ${{ !env.ACT }} if: ${{ !env.ACT }}
run: | run: |