Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/JetLagged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,18 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
api-level: [24, 26]
api-level: [30, 31]

steps:
- name: Checkout
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
Expand All @@ -68,9 +73,11 @@ jobs:

- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@a421e43855164a8197daf9d8d40fe71c6996bb0d # v2.38.0
env:
ADB_INSTALL_TIMEOUT: 10
with:
api-level: ${{ matrix.api-level }}
arch: x86
arch: x86_64
disable-animations: true
script: ./gradlew connectedCheck --stacktrace
working-directory: ${{ env.SAMPLE_PATH }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/JetNews.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
api-level: [24, 26]
api-level: [30, 31]

steps:
- name: Checkout
Expand Down Expand Up @@ -71,9 +71,11 @@ jobs:
key: gradle-${{ hashFiles('checksum.txt') }}
- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@a421e43855164a8197daf9d8d40fe71c6996bb0d # v2.38.0
env:
ADB_INSTALL_TIMEOUT: 10
with:
api-level: ${{ matrix.api-level }}
arch: x86
arch: x86_64
disable-animations: true
script: ./gradlew connectedCheck --stacktrace
working-directory: ${{ env.SAMPLE_PATH }}
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/Jetchat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,18 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
api-level: [24, 26]
api-level: [30, 31]

steps:
- name: Checkout
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
Expand All @@ -67,9 +72,11 @@ jobs:

- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@a421e43855164a8197daf9d8d40fe71c6996bb0d # v2.38.0
env:
ADB_INSTALL_TIMEOUT: 10
with:
api-level: ${{ matrix.api-level }}
arch: x86
arch: x86_64
disable-animations: true
script: ./gradlew connectedCheck --stacktrace
working-directory: ${{ env.SAMPLE_PATH }}
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/Reply.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,18 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
api-level: [24, 26]
api-level: [30, 31]

steps:
- name: Checkout
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm

- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
Expand All @@ -68,9 +73,11 @@ jobs:

- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@a421e43855164a8197daf9d8d40fe71c6996bb0d # v2.38.0
env:
ADB_INSTALL_TIMEOUT: 10
with:
api-level: ${{ matrix.api-level }}
arch: x86
arch: x86_64
disable-animations: true
script: ./gradlew connectedCheck --stacktrace
working-directory: ${{ env.SAMPLE_PATH }}
Expand Down
1 change: 1 addition & 0 deletions Jetchat/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ plugins {

android {
compileSdk = libs.versions.compileSdk.get().toInt()
compileSdkMinor = 2
namespace = "com.example.compose.jetchat"

defaultConfig {
Expand Down
Loading
Loading