Skip to content

Commit 4e724c5

Browse files
committed
build: implement workaround for spotlessGradle in updateArchives.yml
When cutting a new release, noticed the following error in the build: | Execution failed for task ':backtrace-library:spotlessGradle'. |> Couldn't follow symbolic link '/home/runner/work/backtrace-android/backtrace-android/backtrace-library/src/main/cpp/libbun/external/libunwindstack-ndk/.clang-format'. Looks like a workaround for this problem was implemented in test.yml but not carried over to uploadArchives.yml as well. This commit brings over this workaround so new release can be tagged and published.
1 parent 35869cb commit 4e724c5

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/uploadArchives.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ jobs:
4646
- name: Accept Android SDK licences
4747
run: yes | "${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager" --licenses
4848

49+
- name: Bugfix libunwindstack-ndk .clang-format symbolic link issue
50+
run: rm ./backtrace-library/src/main/cpp/libbun/external/libunwindstack-ndk/.clang-format
51+
4952
- name: Grant execute permission for gradlew
5053
run: chmod +x gradlew
5154

0 commit comments

Comments
 (0)