@@ -97,45 +97,45 @@ jobs:
9797 if : ${{ matrix.sdk == '' }}
9898 env :
9999 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
100- integration-test-android :
101- name : " [Android] Integration tests"
102- runs-on : ubuntu-latest
103- strategy :
104- fail-fast : false
105- matrix :
106- api-level : [ 24, 35 ]
107- timeout-minutes : 30
108- steps :
109- - uses : actions/checkout@v5
110- - name : " Setup Flutter SDK"
111- uses : subosito/flutter-action@v2
112- with :
113- cache : true
114- - uses : actions/setup-java@v5
115- with :
116- java-version : ' 21'
117- distribution : ' temurin'
118- cache : ' gradle'
119- - name : " Get Flutter dependencies"
120- run : flutter pub get
121- # https://github.com/marketplace/actions/android-emulator-runner#running-hardware-accelerated-emulators-on-linux-runners
122- - name : " Enable KVM group perms"
123- run : |
124- echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
125- sudo udevadm control --reload-rules
126- sudo udevadm trigger --name-match=kvm
127- - name : " Run integration tests"
128- uses : reactivecircus/android-emulator-runner@v2
129- with :
130- api-level : ${{ matrix.api-level }}
131- arch : x86_64
132- emulator-boot-timeout : 1800 # 30 minutes
133- script : cd example && flutter test integration_test/main.dart --timeout=1800s -r expanded --coverage --coverage-package maplibre
134- - name : " Run Codecov"
135- uses : codecov/codecov-action@v5
136- if : ${{ matrix.api-level == '35' }}
137- env :
138- CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
100+ # integration-test-android:
101+ # name: "[Android] Integration tests"
102+ # runs-on: ubuntu-latest
103+ # strategy:
104+ # fail-fast: false
105+ # matrix:
106+ # api-level: [ 24, 35 ]
107+ # timeout-minutes: 30
108+ # steps:
109+ # - uses: actions/checkout@v5
110+ # - name: "Setup Flutter SDK"
111+ # uses: subosito/flutter-action@v2
112+ # with:
113+ # cache: true
114+ # - uses: actions/setup-java@v5
115+ # with:
116+ # java-version: '21'
117+ # distribution: 'temurin'
118+ # cache: 'gradle'
119+ # - name: "Get Flutter dependencies"
120+ # run: flutter pub get
121+ # # https://github.com/marketplace/actions/android-emulator-runner#running-hardware-accelerated-emulators-on-linux-runners
122+ # - name: "Enable KVM group perms"
123+ # run: |
124+ # echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
125+ # sudo udevadm control --reload-rules
126+ # sudo udevadm trigger --name-match=kvm
127+ # - name: "Run integration tests"
128+ # uses: reactivecircus/android-emulator-runner@v2
129+ # with:
130+ # api-level: ${{ matrix.api-level }}
131+ # arch: x86_64
132+ # emulator-boot-timeout: 1800 # 30 minutes
133+ # script: cd example && flutter test integration_test/main.dart --timeout=1800s -r expanded --coverage --coverage-package maplibre
134+ # - name: "Run Codecov"
135+ # uses: codecov/codecov-action@v5
136+ # if: ${{ matrix.api-level == '35' }}
137+ # env:
138+ # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
139139# integration-test-web:
140140# name: "[Web] Integration tests"
141141# runs-on: ubuntu-latest
0 commit comments