From a727d96fe763e2b3c10ba2d2a437182c47f884d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Walther?= Date: Thu, 21 Sep 2023 17:58:42 +0200 Subject: [PATCH] =?UTF-8?q?Github=C2=A0Actions:=20Move=20nightly=20to=20cu?= =?UTF-8?q?stom-linux?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/nightly_build.yml | 12 ++++++------ .github/workflows/nightly_build_matrix_includes.json | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/nightly_build.yml b/.github/workflows/nightly_build.yml index 28606c2f81..7eab4f5f94 100644 --- a/.github/workflows/nightly_build.yml +++ b/.github/workflows/nightly_build.yml @@ -27,7 +27,7 @@ jobs: - 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 libudev-dev squashfs-tools protobuf-compiler continue-on-error: true - if: matrix.os == 'ubuntu-20.04' + if: matrix.os == 'custom-linux' - name: Check out repository code uses: actions/checkout@v3 @@ -54,7 +54,7 @@ jobs: - name: Reclaim some disk space uses: actions-rs/cargo@v1 - if: ${{ matrix.os == 'windows-latest' || matrix.os == 'ubuntu-20.04' }} + if: ${{ matrix.os == 'windows-latest' || matrix.os == 'custom-linux' }} with: command: clean @@ -66,7 +66,7 @@ jobs: - name: Reclaim some disk space uses: actions-rs/cargo@v1 - if: ${{ matrix.os == 'windows-latest' || matrix.os == 'ubuntu-20.04' }} + if: ${{ matrix.os == 'windows-latest' || matrix.os == 'custom-linux' }} with: command: clean @@ -78,7 +78,7 @@ jobs: - name: Reclaim some disk space uses: actions-rs/cargo@v1 - if: ${{ matrix.os == 'windows-latest' || matrix.os == 'ubuntu-20.04' }} + if: ${{ matrix.os == 'windows-latest' || matrix.os == 'custom-linux' }} with: command: clean @@ -91,7 +91,7 @@ jobs: - name: Reclaim some disk space uses: actions-rs/cargo@v1 - if: ${{ matrix.os == 'windows-latest' || matrix.os == 'ubuntu-20.04' }} + if: ${{ matrix.os == 'windows-latest' || matrix.os == 'custom-linux' }} with: command: clean @@ -111,7 +111,7 @@ jobs: - name: Reclaim some disk space uses: actions-rs/cargo@v1 - if: ${{ matrix.os == 'windows-latest' || matrix.os == 'ubuntu-20.04' }} + if: ${{ matrix.os == 'windows-latest' || matrix.os == 'custom-linux' }} with: command: clean diff --git a/.github/workflows/nightly_build_matrix_includes.json b/.github/workflows/nightly_build_matrix_includes.json index f276fac8b8..a41333b492 100644 --- a/.github/workflows/nightly_build_matrix_includes.json +++ b/.github/workflows/nightly_build_matrix_includes.json @@ -1,6 +1,6 @@ [ { - "os":"ubuntu-20.04", + "os":"custom-linux", "rust":"stable", "runOnEvent":"schedule" }, @@ -17,7 +17,7 @@ }, { - "os":"ubuntu-20.04", + "os":"custom-linux", "rust":"beta", "runOnEvent":"schedule" }, @@ -33,7 +33,7 @@ }, { - "os":"ubuntu-20.04", + "os":"custom-linux", "rust":"nightly", "runOnEvent":"schedule" },