From 8fb9e734f03ccd28d0153e046d6613114800d3d9 Mon Sep 17 00:00:00 2001 From: Mariotaku Date: Tue, 27 Feb 2024 19:30:20 +0900 Subject: [PATCH] adding arm64 linux runner --- .github/workflows/build-verify.yml | 10 +++++++++- .github/workflows/release.yml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-verify.yml b/.github/workflows/build-verify.yml index 834ff54c..cfc91c14 100644 --- a/.github/workflows/build-verify.yml +++ b/.github/workflows/build-verify.yml @@ -13,6 +13,14 @@ on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: + inputs: + runner-type: + description: 'The type of runner to use' + required: true + default: 'ubuntu-20.04' + options: + - 'ubuntu-20.04' + - 'debian-arm64-latest' # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -23,7 +31,7 @@ jobs: node-version: [ 18.x, 20.x ] # The type of runner that the job will run on - runs-on: ubuntu-20.04 + runs-on: ${{ github.event.inputs.runner-type }} steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e37ce17..d51c9572 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,7 +57,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ windows-latest, ubuntu-20.04, macos-latest ] + os: [ windows-latest, ubuntu-20.04, macos-latest, debian-arm64-latest ] runs-on: ${{ matrix.os }}