Skip to content

Commit

Permalink
Update test framework
Browse files Browse the repository at this point in the history
  • Loading branch information
max-kammerer committed Sep 29, 2023
1 parent f8d6d64 commit 403ddee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
api-level: [16, 25]
api-level: [18, 25]
arch: [[x86, X86]]
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -105,4 +106,4 @@ jobs:
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: ./gradlew connectedX86DebugAndroidTest -Porion.CIBuild=true
script: ./gradlew connected${{ matrix.arch[1] }}DebugAndroidTest -Porion.CIBuild=true
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ open class RenderThread(private val activity: OrionViewerActivity, protected var
log("Sending Bitmap")
val mutex = CountDownLatch(1)

if (!executeInSeparateThread) {
if (false && !executeInSeparateThread) {
fullScene.onNewImage(bitmap, curPos, mutex)
activity.device!!.flushBitmap()
mutex.countDown()
Expand Down

0 comments on commit 403ddee

Please sign in to comment.