From 2177a396b90465217a66f96370abe2cccc8ce595 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Walther?= Date: Wed, 16 Feb 2022 11:48:11 +0100 Subject: [PATCH] Added assume yes option on apt-get install --- .github/workflows/build.yml | 4 ++-- .github/workflows/test_build.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 229060b381..4a6e438dde 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: continue-on-error: ${{ matrix.rust == 'nightly' || matrix.rust == 'beta' || matrix.os == 'windows-latest' }} steps: - name: Install Dependencies (Linux) - run: sudo apt-get update && sudo apt-get install libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev squashfs-tools + run: sudo apt-get update && sudo apt-get -y install libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev squashfs-tools if: matrix.os == 'ubuntu-latest' - name: Check out repository code @@ -99,4 +99,4 @@ jobs: if: ${{ matrix.rust != 'nightly' }} with: command: clippy - args: --features=coconut -- -D warnings \ No newline at end of file + args: --features=coconut -- -D warnings diff --git a/.github/workflows/test_build.yml b/.github/workflows/test_build.yml index d0aa62379f..a34b1da90b 100644 --- a/.github/workflows/test_build.yml +++ b/.github/workflows/test_build.yml @@ -2,13 +2,13 @@ name: Tests builds on: schedule: - - cron: '30 10 * * *' + - cron: '50 10 * * *' jobs: build: runs-on: [ self-hosted, custom-linux-gcp ] steps: - name: Install Dependencies (Linux) - run: sudo apt-get update && sudo apt-get install libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev squashfs-tools + run: sudo apt-get update && sudo apt-get -y install libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev squashfs-tools - name: Check out repository code uses: actions/checkout@v2