Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanLav committed Feb 19, 2025
1 parent 7c01cf2 commit d44b594
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/android-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,18 @@ jobs:
distribution: 'adopt'
java-version: 17

- name: Debug Android SDK setup
run: |
echo "Current working directory: $(pwd)"
echo "ANDROID_SDK_ROOT: ${ANDROID_SDK_ROOT:-not set}"
echo "Listing root directory structure:"
ls -la /
echo "Checking for Android SDK directories:"
ls -la /usr/local/lib/android || echo "No /usr/local/lib/android"
ls -la /opt/android-sdk || echo "No /opt/android-sdk"
echo "Environment variables:"
env | grep -i android
- name: Install NDK
run: echo "y" | ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --install "ndk;24.0.8215888" --sdk_root=${ANDROID_SDK_ROOT}

Expand Down Expand Up @@ -99,6 +111,19 @@ jobs:
distribution: 'adopt'
java-version: 17


- name: Debug Android SDK setup
run: |
echo "Current working directory: $(pwd)"
echo "ANDROID_SDK_ROOT: ${ANDROID_SDK_ROOT:-not set}"
echo "Listing root directory structure:"
ls -la /
echo "Checking for Android SDK directories:"
ls -la /usr/local/lib/android || echo "No /usr/local/lib/android"
ls -la /opt/android-sdk || echo "No /opt/android-sdk"
echo "Environment variables:"
env | grep -i android
- name: Install NDK
run: echo "y" | ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --install "ndk;24.0.8215888" --sdk_root=${ANDROID_SDK_ROOT}

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/rust-clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
fetch-depth: 50
submodules: 'recursive'

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install llvm-dev libclang-dev clang
- name: Install Rust stable toolchain
uses: dtolnay/rust-toolchain@stable

Expand Down

0 comments on commit d44b594

Please sign in to comment.