Skip to content

Commit

Permalink
Remove redundant Robolectric deps download step
Browse files Browse the repository at this point in the history
  • Loading branch information
ndegwamartin committed Sep 14, 2024
1 parent 40d4118 commit 38f160b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -71,4 +68,4 @@ jobs:
- name: Github Release
uses: softprops/action-gh-release@v1
with:
prerelease: ${{ contains(github.ref, '-alpha') || contains(github.ref, '-beta') }}
prerelease: ${{ contains(github.ref, '-alpha') || contains(github.ref, '-beta') }}
5 changes: 1 addition & 4 deletions .github/workflows/utils.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 38f160b

Please sign in to comment.