Skip to content

Commit

Permalink
Merge pull request #25 from rubensousa/plugin
Browse files Browse the repository at this point in the history
Add gradle plugin for allure report generation
  • Loading branch information
rubensousa authored Sep 16, 2024
2 parents 41512c1 + ed1ace8 commit 42b07ac
Show file tree
Hide file tree
Showing 76 changed files with 825 additions and 1,417 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,13 @@ jobs:
emulator-options: -no-window -no-snapshot-save -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
script: |
./gradlew uninstallAll
./gradlew --build-cache connectedDebugAndroidTest
./gradlew --build-cache connectedAllureReport
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.profile }}-${{ matrix.api-level }}--instrumentation-test-results
path: |
logs/**
./**/build/reports/androidTests-results/**
./**/build/outputs/connected_android_test_additional_output/**
./**/build/outputs/allure-results
if: always()
2 changes: 2 additions & 0 deletions build-logic/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.gradle
/.kotlin
17 changes: 17 additions & 0 deletions build-logic/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
dependencyResolutionManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
mavenLocal()
}
versionCatalogs {
create("libs") {
from(files("../gradle/libs.versions.toml"))
}
}
}

rootProject.name = "build-logic"
include(":carioca-plugin-android-allure")
project(':carioca-plugin-android-allure').projectDir = new File('../:carioca-plugin-android-allure')
20 changes: 0 additions & 20 deletions carioca-android/report-allure/src/main/AndroidManifest.xml

This file was deleted.

Loading

0 comments on commit 42b07ac

Please sign in to comment.