Fix spelling typo #2371
Workflow file for this run
This file contains 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: 'Integration Tests - Benchmarks' | |
on: | |
schedule: | |
- cron: '0 0 * * *' # every night at midnight UTC | |
pull_request: | |
paths: | |
- '**/sentry/**' | |
- '**/sentry-android/**' | |
- '**/sentry-android-core/**' | |
- '**/sentry-android-ndk/**' | |
- '**/sentry-android-integration-tests/**' | |
- '**/.github/**' | |
jobs: | |
test: | |
name: Benchmarks | |
runs-on: ubuntu-latest | |
# we copy the secret to the env variable in order to access it in the workflow | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: 'Set up Java: 17' | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
# Clean, build and release a test apk, but only if we will run the benchmark | |
- name: Make assembleBenchmarks | |
if: env.SAUCE_USERNAME != null | |
run: make assembleBenchmarks | |
# We stop gradle at the end to make sure the cache folders | |
# don't contain any lock files and are free to be cached. | |
- name: Make stop | |
run: make stop | |
- name: Run All Tests in SauceLab | |
uses: saucelabs/saucectl-run-action@f401339df4c4b84945783f16b45fd545ac52a2eb # pin@v3 | |
if: github.event_name != 'pull_request' && env.SAUCE_USERNAME != null | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
sauce-username: ${{ secrets.SAUCE_USERNAME }} | |
sauce-access-key: ${{ secrets.SAUCE_ACCESS_KEY }} | |
config-file: .sauce/sentry-uitest-android-benchmark.yml | |
- name: Run one test in SauceLab | |
uses: saucelabs/saucectl-run-action@f401339df4c4b84945783f16b45fd545ac52a2eb # pin@v3 | |
if: github.event_name == 'pull_request' && env.SAUCE_USERNAME != null | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
sauce-username: ${{ secrets.SAUCE_USERNAME }} | |
sauce-access-key: ${{ secrets.SAUCE_ACCESS_KEY }} | |
config-file: .sauce/sentry-uitest-android-benchmark-lite.yml | |
app-metrics: | |
runs-on: ubuntu-latest | |
# we copy the secret to the env variable in order to access it in the workflow | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: 'Set up Java: 17' | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- uses: actions/cache@v3 | |
id: app-plain-cache | |
with: | |
path: sentry-android-integration-tests/test-app-plain/build/outputs/apk/release/test-app-plain-release.apk | |
key: ${{ github.workflow }}-${{ github.job }}-appplain-${{ hashFiles('sentry-android-integration-tests/test-app-plain/**') }} | |
- name: Build Android app plain | |
if: steps.app-plain-cache.outputs['cache-hit'] != 'true' | |
run: ./gradlew :sentry-android-integration-tests:test-app-plain:assembleRelease | |
- name: Build Android app with Sentry | |
run: ./gradlew :sentry-android-integration-tests:test-app-sentry:assembleRelease | |
- name: Collect app metrics | |
uses: getsentry/action-app-sdk-overhead-metrics@v1 | |
with: | |
config: sentry-android-integration-tests/metrics-test.yml | |
sauce-user: ${{ secrets.SAUCE_USERNAME }} | |
sauce-key: ${{ secrets.SAUCE_ACCESS_KEY }} | |
if: env.SAUCE_USERNAME != null |