Skip to content

Commit

Permalink
ci: fix ios e2e ci, android sim
Browse files Browse the repository at this point in the history
  • Loading branch information
oscb committed Nov 28, 2023
1 parent f423174 commit b916d0f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,14 @@ jobs:
needs: cancel_previous
runs-on: 'macos-13'
steps:
- uses: actions/checkout@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.0.1

- name: Install applesimutils
run: |
HOMEBREW_NO_AUTO_UPDATE=1 brew tap wix/brew >/dev/null
HOMEBREW_NO_AUTO_UPDATE=1 brew install applesimutils >/dev/null
# Workaround for corepack enable in node
# Source: (https://github.com/actions/setup-node/issues/899#issuecomment-1828798029)
Expand All @@ -59,15 +66,6 @@ jobs:
cache: yarn
# End workaround

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.0.1

- name: Install applesimutils
run: |
HOMEBREW_NO_AUTO_UPDATE=1 brew tap wix/brew >/dev/null
HOMEBREW_NO_AUTO_UPDATE=1 brew install applesimutils >/dev/null
- name: Bootstrap
run: yarn bootstrap

Expand Down Expand Up @@ -133,7 +131,6 @@ jobs:

# Workaround for corepack enable in node
# Source: (https://github.com/actions/setup-node/issues/899#issuecomment-1828798029)
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down
2 changes: 1 addition & 1 deletion examples/AnalyticsReactNativeExample/.detoxrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module.exports = {
emulator: {
type: 'android.emulator',
device: {
avdName: 'Pixel_3a_API_32'
avdName: 'Pixel_API_21_AOSP'
}
}
},
Expand Down

0 comments on commit b916d0f

Please sign in to comment.