Skip to content

Commit

Permalink
Update carioca reports to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensousa committed Nov 11, 2024
1 parent aa4e87b commit 5f91976
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
name: ${{ matrix.api-level }}-${{ matrix.arch }}-instrumentation-test-results
path: |
logs/**
build/outputs/
./**/build/reports/androidTests/connected/**
./**/build/outputs/allure-results
./**/build/outputs/connected_android_test_additional_output/debugAndroidTest/connected/**
if: always()
10 changes: 7 additions & 3 deletions dpadrecyclerview-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}

}
Expand All @@ -62,3 +62,7 @@ dependencies {
androidTestImplementation libs.androidx.test.compose.ui.junit4
androidTestUtil libs.androidx.test.services
}

allureReport {
outputDir = rootProject.file("build/outputs/allure-results")
}
10 changes: 7 additions & 3 deletions dpadrecyclerview-testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}

testOptions {
Expand All @@ -63,3 +63,7 @@ dependencies {
androidTestImplementation project (':dpadrecyclerview-test-fixtures')
androidTestUtil libs.androidx.test.services
}

allureReport {
outputDir = rootProject.file("build/outputs/allure-results")
}
10 changes: 7 additions & 3 deletions dpadrecyclerview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '17'
}
}

Expand All @@ -65,3 +65,7 @@ dependencies {
androidTestImplementation project (':dpadrecyclerview-test-fixtures')
androidTestUtil libs.androidx.test.services
}

allureReport {
outputDir = rootProject.file("build/outputs/allure-results")
}
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jacoco = "0.8.11"
test-junit = '4.13.2'
test-truth = '1.4.1'
test-mockk = '1.13.10'
carioca-report = "1.0.0-alpha01"
carioca-allure = "1.0.0-alpha01"
carioca-report = "1.0.0-beta01"
carioca-allure = "1.0.0-beta01"

[plugins]
android-application = { id = "com.android.application", version.ref = "android-gradle-plugin" }
Expand Down
3 changes: 3 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ pluginManagement {
gradlePluginPortal()
google()
mavenCentral()
maven {
url "https://s01.oss.sonatype.org/content/repositories/releases/"
}
}
}
dependencyResolutionManagement {
Expand Down

0 comments on commit 5f91976

Please sign in to comment.