feat: add arm64 on macos build ()

This commit is contained in:
Baptiste Augrain 2021-09-18 10:12:10 +02:00 committed by GitHub
parent db02ad1133
commit b748657b09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 3 deletions
.github/workflows

View file

@ -20,7 +20,6 @@ jobs:
strategy:
fail-fast: false
matrix:
vscode_arch: [x64, arm64, armhf]
include:
- vscode_arch: x64
npm_arch: x64

View file

@ -10,10 +10,21 @@ on:
jobs:
build:
runs-on: macOS-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- vscode_arch: x64
os: macOS-10.15
- vscode_arch: arm64
os: macOS-11
env:
OS_NAME: "osx"
VSCODE_ARCH: "x64"
VSCODE_ARCH: ${{ matrix.vscode_arch }}
steps:
- uses: actions/checkout@v2