From 734557b36c12a74e1fa1508c4e7f457e7646ab83 Mon Sep 17 00:00:00 2001 From: viktorxda <35473052+viktorxda@users.noreply.github.com> Date: Wed, 10 May 2023 22:57:53 +0200 Subject: [PATCH] Always install build dependencies (#788) Co-authored-by: viktorxda --- .github/workflows/matrix_build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/matrix_build.yml b/.github/workflows/matrix_build.yml index f5bbdbbf..2a0458ad 100644 --- a/.github/workflows/matrix_build.yml +++ b/.github/workflows/matrix_build.yml @@ -339,6 +339,16 @@ jobs: with: 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 if: ${{ !env.ACT }} run: |