Skip to content

Commit

Permalink
Update workflow script and ndk version
Browse files Browse the repository at this point in the history
  • Loading branch information
max-kammerer committed Sep 30, 2023
1 parent 2f87790 commit 4a2d6d0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,10 @@ jobs:
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
sdcard-path-or-size: 900M
script: ./gradlew connected${{ matrix.arch[2] }}DebugAndroidTest -Porion.CIBuild=true
script: ./gradlew connected${{ matrix.arch[2] }}DebugAndroidTest -Porion.CIBuild=true

- name: Test Summary
uses: test-summary/action@v2
with:
paths: orion-viewer/build/outputs/androidTest-results/connected/flavors/${{ matrix.arch[1] }}/TEST-*.xml
if: always()
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ project.ext {
orionCompileSdk = 33
orionBuildToolsVersion = "30.0.3"
if (isCIBuild) {
orionNdkVersion = "23.1.7779620"
orionNdkVersion = "23.2.8568313"
}
else {
orionNdkVersion = !isAndroid40Build ? "23.1.7779620" : "17.2.4988734"
orionNdkVersion = !isAndroid40Build ? "23.2.8568313" : "17.2.4988734"
}
testFiles = ['http://www.djvu.org/docs/DjVu3Spec.djvu']
}

0 comments on commit 4a2d6d0

Please sign in to comment.