From e83e83abedd9414405ebd17fb4431b766aed803c Mon Sep 17 00:00:00 2001 From: farbanas Date: Mon, 23 Jan 2023 11:56:02 +0100 Subject: [PATCH] Since we have two runners on the same machine apt might get locked. This will allow it to fail, maybe those deps are already installed --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 67d28d826f..402d5e2def 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,7 @@ jobs: steps: - name: Install Dependencies (Linux) run: sudo apt-get update && sudo apt-get -y install libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libudev-dev squashfs-tools + continue-on-error: true - name: Check out repository code uses: actions/checkout@v2