Skip to content

Commit

Permalink
CI debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
divergentdave committed Dec 1, 2023
1 parent a7b1b4b commit f512ea8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,22 @@ jobs:
- name: Rust lint
working-directory: divviup/rust
run: cargo clippy
- name: Build and test
run: ./gradlew build generateReleaseJavadoc
- name: CI debugging
run: |
echo $ANDROID_SDK_ROOT # /usr/local/lib/android/sdk
echo $ANDROID_NDK_HOME # /usr/local/lib/android/sdk/ndk/25.2.9519653
ls -l /usr/local/lib/android/sdk
ls -l /usr/local/lib/android/sdk/ndk
ls -l /usr/local/lib/android/sdk/ndk/25.2.9519653
ls -l /usr/local/lib/android/sdk/ndk/25.2.9519653/toolchains
ls -l /usr/local/lib/android/sdk/ndk/25.2.9519653/toolchains/llvm
ls -l /usr/local/lib/android/sdk/ndk/25.2.9519653/toolchains/llvm/prebuilt
ls -l /usr/local/lib/android/sdk/ndk/25.2.9519653/toolchains/llvm/prebuilt/*/bin/llvm-strip
echo $GRADLE_USER_HOME # unset
echo $GRADLE_HOME # /usr/share/gradle-8.4
ls -l $GRADLE_HOME # no gradle.properties file
echo $GRADLE_OPTS # unset
./gradlew :sampleapp:stripReleaseDebugSymbols -i
dependency-review:
if: github.event_name == 'pull_request'
Expand Down
4 changes: 3 additions & 1 deletion sampleapp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ android {
namespace = "org.divviup.sampleapp"
compileSdk = 34

ndkVersion = "26.1.10909125"

defaultConfig {
applicationId = "org.divviup.sampleapp"
minSdk = 21
Expand Down Expand Up @@ -40,4 +42,4 @@ dependencies {
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
}
}

0 comments on commit f512ea8

Please sign in to comment.