From d7fcf9060ac741f7beb81ee1269665b4f47b8fbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Czekan=CC=81ski?= Date: Tue, 19 Sep 2023 13:50:31 +0200 Subject: [PATCH] ci: update runner images --- .github/workflows/build.yml | 58 +++++++++++++++++++++++++++++++++---- 1 file changed, 53 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dc5042a..2e3f33c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,7 @@ on: [push] jobs: linux_clang6: name: "Linux Clang6" - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v2 @@ -29,7 +29,7 @@ jobs: linux_clang8: name: "Linux Clang8" - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v2 @@ -46,6 +46,54 @@ jobs: - name: Build run: .ci/linux/run-container.sh 8 + - uses: sarisia/actions-status-discord@v1 + if: always() + with: + webhook: ${{ secrets.WEBHOOK_URL }} + + linux_clang10: + name: "Linux Clang10" + runs-on: ubuntu-22.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + submodules: 'recursive' + + - name: Prepare cache + uses: actions/cache@v2 + with: + path: ~/.ccache + key: ${{ runner.os }}-ccache-${{ github.sha }} + restore-keys: ${{ runner.os }}-ccache- + + - name: Build + run: .ci/linux/run-container.sh 10 + + - uses: sarisia/actions-status-discord@v1 + if: always() + with: + webhook: ${{ secrets.WEBHOOK_URL }} + + linux_clang15: + name: "Linux Clang15" + runs-on: ubuntu-22.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + submodules: 'recursive' + + - name: Prepare cache + uses: actions/cache@v2 + with: + path: ~/.ccache + key: ${{ runner.os }}-ccache-${{ github.sha }} + restore-keys: ${{ runner.os }}-ccache- + + - name: Build + run: .ci/linux/run-container.sh 15 + - name: Upload Github uses: kittaakos/upload-artifact-as-is@v0 with: @@ -61,7 +109,7 @@ jobs: android: name: "Android" - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v2 @@ -96,7 +144,7 @@ jobs: macos: name: "macOS" - runs-on: macOS-10.15 + runs-on: macOS-13 steps: - name: Checkout uses: actions/checkout@v2 @@ -112,7 +160,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '11.7' + xcode-version: '14.3.1' - name: Install run: .ci/macos/install-dependencies.sh