Bump androidx.core:core-ktx from 1.17.0 to 1.18.0 #417
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Pull request | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| env: | |
| resourceRunID: ${{ github.run_id }}-${{ github.run_number }} | |
| jobs: | |
| Build: | |
| name: Test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-24.04 ] | |
| api: [ 34 ] | |
| abi: [ x86_64 ] | |
| emulatorApi: [ 14 ] | |
| tag: [ 'google_apis' ] | |
| steps: | |
| - name: kvm support | |
| run: | | |
| egrep -c '(vmx|svm)' /proc/cpuinfo | |
| id | |
| sudo adduser $USER kvm | |
| sudo chown -R $USER /dev/kvm | |
| id | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - name: set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'adopt' | |
| java-version: 17 | |
| - uses: gradle/actions/wrapper-validation@v5 | |
| - name: Install Android SDK | |
| uses: hannesa2/action-android/install-sdk@0.1.16.7 | |
| - name: Android Emulator test | |
| uses: hannesa2/action-android/emulator-run-cmd@0.1.16.7 | |
| with: | |
| cmd: ./gradlew cAT --continue | |
| api: ${{ matrix.api }} | |
| tag: ${{ matrix.tag }} | |
| abi: ${{ matrix.abi }} | |
| cmdOptions: -noaudio -no-boot-anim -no-window -metrics-collection | |
| disableAnimations: true | |
| bootTimeout: 720 | |
| - uses: actions/upload-artifact@v4 | |
| if: ${{ always() }} | |
| with: | |
| name: ipcam-Espresso-${{ matrix.api }}-${{ matrix.abi }}-report-${{ matrix.emulatorApi }} | |
| path: | | |
| ./**/build/reports/androidTests/connected | |
| ./**/build/outputs/androidTest-results/connected | |
| Check: | |
| name: Check | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-22.04 ] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - name: set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'adopt' | |
| java-version: 17 | |
| - name: Install Android SDK | |
| uses: hannesa2/action-android/install-sdk@0.1.16.7 | |
| - name: Run tests | |
| run: ./gradlew test | |
| - name: Code checks | |
| run: ./gradlew check | |
| - name: Archive Lint report | |
| uses: actions/upload-artifact@v4 | |
| if: ${{ always() }} | |
| with: | |
| name: IPView-Lint-report | |
| path: | | |
| ./**/build/reports/lint-results*.html | |
| ./**/build/reports/ktlint/ktlintMainSourceSetCheck/ktlintMainSourceSetCheck.txt |