This repository was archived by the owner on Jun 10, 2026. It is now read-only.
Update androidx.compose to v1.11.2 #525
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: CI | |
| on: | |
| pull_request: | |
| # Trigger on merges to `main` to allow `gradle/gradle-build-action` runs to write their caches. | |
| # https://github.com/gradle/gradle-build-action#using-the-caches-read-only | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - uses: gradle/actions/setup-gradle@v5 | |
| - name: local.properties | |
| working-directory: library | |
| run: | | |
| cat <<TEXTFILE > local.properties | |
| datadog.clientToken.android=noop | |
| datadog.clientToken.ios=noop | |
| datadog.clientToken.js=noop | |
| TEXTFILE | |
| - run: ./gradlew assemble | |
| - run: ./gradlew jsBrowserDevelopmentWebpack | |
| - run: brew install xcodegen | |
| - run: ./gradlew generateXcodeProject | |
| - run: xcodebuild -scheme Sample build CODE_SIGN_IDENTITY="" CODE_SIGNING_ALLOWED=NO | |
| working-directory: ios | |
| - run: ./gradlew check |