Skip to content

Commit

Permalink
ci: pin to macos-13 since the emulator can't boot on M1
Browse files Browse the repository at this point in the history
  • Loading branch information
edusperoni committed Jul 2, 2024
1 parent cc7df0e commit 109bdd9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/npm_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ env:
EMULATOR_NAME: "runtime-emu"
NDK_VERSION: r23c
ANDROID_API: 29
ANDROID_ABI: arm64-v8a
ANDROID_ABI: x86_64
NDK_ARCH: darwin

jobs:
build:
name: Build
runs-on: macos-14
runs-on: macos-13
outputs:
npm_version: ${{ steps.npm_version_output.outputs.NPM_VERSION }}
npm_tag: ${{ steps.npm_version_output.outputs.NPM_TAG }}
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
path: dist/nativescript-android-${{steps.npm_version_output.outputs.NPM_VERSION}}.tgz
test:
name: Test
runs-on: macos-14
runs-on: macos-13
needs: build
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ env:
EMULATOR_NAME: "runtime-emu"
NDK_VERSION: r23c
ANDROID_API: 29
ANDROID_ABI: arm64-v8a
ANDROID_ABI: x86_64
NDK_ARCH: darwin


jobs:
build:
name: Build
runs-on: macos-14
runs-on: macos-13
outputs:
npm_version: ${{ steps.npm_version_output.outputs.NPM_VERSION }}
npm_tag: ${{ steps.npm_version_output.outputs.NPM_TAG }}
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
path: dist/nativescript-android-${{steps.npm_version_output.outputs.NPM_VERSION}}.tgz
test:
name: Test
runs-on: macos-14
runs-on: macos-13
needs: build
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 109bdd9

Please sign in to comment.