Detect CI environment and send associated data along with the test suite #6
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: Test Example Project To Verify Test Collector Integration | |
# this workflow will always fail since we've added failing tests to verify collector integration with all kinds of possible test results | |
on: | |
pull_request: | |
branches: [main] | |
env: | |
BUILDKITE_ANALYTICS_TOKEN: ${{ secrets.BUILDKITE_ANALYTICS_TOKEN }} | |
BUILDKITE_ANALYTICS_DEBUG_ENABLED: ${{ secrets.BUILDKITE_ANALYTICS_DEBUG_ENABLED }} | |
GITHUB_ACTION: ${{ github.action }} | |
GITHUB_RUN_ID: ${{ github.run_id }} | |
GITHUB_RUN_NUMBER: ${{ github.run_number }} | |
GITHUB_RUN_ATTEMPT: ${{ github.run_attempt }} | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
GITHUB_REF_NAME: ${{ github.ref_name }} | |
GITHUB_SHA: ${{ github.sha }} | |
GITHUB_WORKFLOW: ${{ github.workflow }} | |
GITHUB_ACTOR: ${{ github.actor }} | |
jobs: | |
example-project-unit-tests: | |
name: Run Example Project Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 17 | |
- name: Debug Build | |
run: ./gradlew :example:buildDebug | |
- name: Example Project Unit Tests | |
run: "support/scripts/example-unit-tests" | |
example-project-instrumented-tests: | |
name: Run Example Project Instrumented Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
api-level: [28] | |
timeout-minutes: 90 | |
steps: | |
- name: "Enable KVM group perms" | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
ls /dev/kvm | |
- name: Git Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 17 | |
- name: "Run instrumented tests" | |
uses: reactivecircus/[email protected] | |
with: | |
api-level: ${{ matrix.api-level }} | |
force-avd-creation: false | |
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -timezone Australia/Melbourne -camera-back none | |
disable-animations: true | |
disable-spellchecker: true | |
profile: Nexus 6 | |
arch: x86_64 | |
ram-size: 4096M | |
heap-size: 512M | |
script: "support/scripts/example-instrumented-tests" |