Skip to content

Commit

Permalink
Fix cordova CI (#1009)
Browse files Browse the repository at this point in the history
* Lock down ubuntu and android build tool versions
  • Loading branch information
peitschie authored Mar 20, 2024
1 parent c805c5e commit 6ffb5f7
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/cordova.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,49 @@ jobs:
cordova-android:
name: android@${{ matrix.platform }} cordova@${{ matrix.cordova }}

runs-on: ubuntu-latest
runs-on: ubuntu-${{ matrix.ubuntu }}

strategy:
fail-fast: false
matrix:
include:
- jdk: 16
cordova: latest
platform: latest
node: 18.x
ubuntu: 22.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: set up JDK ${{ matrix.jdk }}
- name: Setup JDK ${{ matrix.jdk }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'
- name: Use Node.js ${{ matrix.node }}
- 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"
npm install -g cordova@${{ matrix.cordova }}
cordova create temp
cd temp
Expand Down

0 comments on commit 6ffb5f7

Please sign in to comment.