Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
Update and rename blueprints.yaml to build_test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAlcerreca authored Dec 10, 2024
1 parent 86108e8 commit 62975ba
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 85 deletions.
85 changes: 0 additions & 85 deletions .github/workflows/blueprints.yaml

This file was deleted.

61 changes: 61 additions & 0 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: testingcodelabs

on:
push:
branches:
- starter_code
- end_codelab_1
- end_codelab_2
- end_codelab_3
pull_request:
branches:
- starter_code
- end_codelab_1
- end_codelab_2
- end_codelab_3

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
api-level: [29]

steps:
- uses: actions/checkout@v4

- 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: Set Up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '17'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Setup Android SDK
uses: android-actions/setup-android@v3

- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
arch: x86
disable-animations: true
script: ./gradlew connectedCheck --stacktrace

- name: Upload test reports
if: always()
uses: actions/upload-artifact@v4
with:
name: test-reports-${{ matrix.api-level }}
path: ./app/build/reports/androidTests

0 comments on commit 62975ba

Please sign in to comment.