Skip to content

WIP cordova sdk 17 #186

WIP cordova sdk 17

WIP cordova sdk 17 #186

Workflow file for this run

name: CI
on: [pull_request]
jobs:
android:
runs-on: macos-11
env:
DEVELOPER_DIR: /Applications/Xcode_13.0.app/Contents/Developer
steps:
- uses: actions/checkout@v1
# Build tools 31.0.0 doesn't include dx (only d8), which Cordova expects to find.
# Uninstalling causes automatic build-tools resolution to fall back to an older
# version that does include dx.
- name: Workaround "Build-tool 31.0.0 is missing DX" error
run: bash $ANDROID_SDK_ROOT/tools/bin/sdkmanager --uninstall 'build-tools;31.0.0'
# Build tools 32.0.0 doesn't include dx (only d8), which Cordova expects to find.
# Uninstalling causes automatic build-tools resolution to fall back to an older
# version that does include dx.
- name: Workaround "Build-tool 32.0.0 is missing DX" error
run: bash $ANDROID_SDK_ROOT/tools/bin/sdkmanager --uninstall 'build-tools;32.0.0'
- name: Run CI
run: bash ./scripts/run_ci_tasks.sh -a
ios:
runs-on: macos-11
env:
DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer
steps:
- uses: actions/checkout@v1
- name: Run CI
run: bash ./scripts/run_ci_tasks.sh -i