From 38f160bdff0ff6f9527ca53311757fe25c803e87 Mon Sep 17 00:00:00 2001 From: Martin Ndegwa Date: Sat, 14 Sep 2024 09:19:16 +0300 Subject: [PATCH] Remove redundant Robolectric deps download step --- .github/workflows/library.yml | 7 ++----- .github/workflows/utils.yml | 5 +---- library/build.gradle | 2 +- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/library.yml b/.github/workflows/library.yml index 7bedd263..a908541d 100644 --- a/.github/workflows/library.yml +++ b/.github/workflows/library.yml @@ -44,10 +44,7 @@ jobs: - name: Git show commit count run: git fetch origin master && git rev-list --first-parent --count origin/master - - - name: Download Robolectric deps - run: chmod +x download-robolectric-deps.sh && ./download-robolectric-deps.sh - + - name: Clean project run: ./gradlew clean --stacktrace @@ -71,4 +68,4 @@ jobs: - name: Github Release uses: softprops/action-gh-release@v1 with: - prerelease: ${{ contains(github.ref, '-alpha') || contains(github.ref, '-beta') }} \ No newline at end of file + prerelease: ${{ contains(github.ref, '-alpha') || contains(github.ref, '-beta') }} diff --git a/.github/workflows/utils.yml b/.github/workflows/utils.yml index 03d3025e..178f3d83 100644 --- a/.github/workflows/utils.yml +++ b/.github/workflows/utils.yml @@ -44,10 +44,7 @@ jobs: - name: Git show commit count run: git fetch origin master && git rev-list --first-parent --count origin/master - - - name: Download Robolectric deps - run: chmod +x download-robolectric-deps.sh && ./download-robolectric-deps.sh - + - name: Clean project run: ./gradlew clean --stacktrace diff --git a/library/build.gradle b/library/build.gradle index cd6e0d94..c8f54c5d 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -122,7 +122,7 @@ dependencies { configuration -> // Comment the line below when creating releases - The line is for development of the library & utils //implementation (project(":utils")) { // Uncomment the line below when creating releases - implementation('io.ona.kujaku:utils:0.10.6-SNAPSHOT') { + implementation('io.ona.kujaku:utils:0.10.5-SNAPSHOT') { transitive = true; exclude group: 'com.mapbox.mapboxsdk', module: 'mapbox-android-sdk' exclude group: 'com.android.support', module: 'support-v4'