-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add cordova 11 with cordova-android 11 - add capacitor 5 (latest is now 6)
- Loading branch information
Showing
3 changed files
with
105 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
name: Cordova | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: ['master'] | ||
pull_request: | ||
branches: ['master'] | ||
|
||
jobs: | ||
cordova-android: | ||
name: cordova@${{ matrix.cordova }} android@${{ matrix.platform }} | ||
runs-on: ubuntu-${{ matrix.ubuntu }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- jdk: 17 | ||
cordova: latest | ||
platform: latest | ||
node: 18.x | ||
ubuntu: 22.04 | ||
android-cmdline-tools-version: 10406996 | ||
- jdk: 16 | ||
cordova: 12 | ||
platform: 12 | ||
node: 18.x | ||
ubuntu: 22.04 | ||
android-cmdline-tools-version: 9862592 | ||
- jdk: 11 | ||
cordova: 11 | ||
platform: 11 | ||
node: 14.x | ||
ubuntu: 20.04 | ||
android-cmdline-tools-version: 9862592 | ||
- jdk: 11 | ||
cordova: 11 | ||
platform: 10 | ||
node: 14.x | ||
ubuntu: 20.04 | ||
android-cmdline-tools-version: 9862592 | ||
- jdk: 8 | ||
cordova: 10 | ||
platform: 10 | ||
node: 14.x | ||
ubuntu: 20.04 | ||
android-cmdline-tools-version: 8512546 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup JDK ${{ matrix.jdk }} | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.jdk }} | ||
distribution: 'temurin' | ||
- name: Setup Node.js ${{ matrix.node }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Setup Android SDK | ||
uses: android-actions/setup-android@v3 | ||
with: | ||
cmdline-tools-version: ${{ matrix.android-cmdline-tools-version }} | ||
- name: Build test app | ||
run: | | ||
sdkmanager "build-tools;30.0.3" | ||
sdkmanager "build-tools;34.0.0" | ||
npm install -g cordova@${{ matrix.cordova }} | ||
cordova create temp | ||
cd temp | ||
cordova platform add android@${{ matrix.platform }} | ||
cordova plugin add .. --noregistry --force --link | ||
cordova build android | ||
cordova-ios: | ||
name: cordova@${{ matrix.cordova }} ios@${{ matrix.platform }} | ||
|
||
runs-on: macos-latest | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- cordova: latest | ||
platform: latest | ||
node: 18.x | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: Build test app | ||
run: | | ||
npm install -g cordova@${{ matrix.cordova }} | ||
cordova create temp | ||
cd temp | ||
cordova platform add ios@${{ matrix.platform }} | ||
cordova plugin add .. --noregistry --force --link | ||
cordova build ios |
This file was deleted.
Oops, something went wrong.