Extended DataLogging API for third-party Pebble watch apps #828
Workflow file for this run
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: Build | |
| on: [push, pull_request] | |
| jobs: | |
| android: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - name: Checkout source | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Cache build deps | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| key: android-deps-${{ runner.os }}-${{ hashFiles('gradle/**', 'gradlew*', 'gradle.properties', '*.gradle*') }} | |
| restore-keys: | | |
| android-deps-${{ runner.os }}- | |
| - name: Use dummy google-services json | |
| run: mv composeApp/src/google-services-dummy.json composeApp/src/google-services.json | |
| - name: Build and Test | |
| run: ./gradlew :composeApp:assembleDebug testDebugUnitTest jvmTest lintDebug | |
| env: | |
| GITHUB_ACTOR: ${{ secrets.READ_PACKAGES_ACTOR }} | |
| GITHUB_TOKEN: ${{ secrets.READ_PACKAGES_TOKEN }} | |
| ios: | |
| runs-on: macos-15 | |
| steps: | |
| - name: Setup JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| - name: Checkout source | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Cache build deps | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.gradle/caches | |
| ~/.gradle/wrapper | |
| ~/.konan | |
| key: ios-deps-${{ runner.os }}-${{ hashFiles('gradle/**', 'gradlew*', 'gradle.properties', '*.gradle*') }} | |
| restore-keys: | | |
| ios-deps-${{ runner.os }}- | |
| - name: Set up Xcode | |
| run: | | |
| ls /Applications/Xcode* | |
| swift --version | |
| sudo xcode-select --switch /Applications/Xcode_26.2.app/Contents/Developer | |
| - name: Use dummy google-services json | |
| run: mv composeApp/src/google-services-dummy.json composeApp/src/google-services.json | |
| - name: Build | |
| run: ./gradlew :composeApp:compileKotlinIosArm64 :libpebble3:linkDebugFrameworkIosArm64 | |
| env: | |
| GITHUB_ACTOR: ${{ secrets.READ_PACKAGES_ACTOR }} | |
| GITHUB_TOKEN: ${{ secrets.READ_PACKAGES_TOKEN }} |