Skip to content

Commit

Permalink
fix android workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rainyl committed Mar 16, 2024
1 parent edc3b89 commit 64ba058
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test_conan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,12 @@ jobs:
unzip -q -o build/android-ndk-$ANDROID_NDK_VERSION-linux.zip -d build/
- name: build-android
run: |
conan build . -b missing -pr:h profiles/android-x86_64 -c tools.android:ndk_path=build/android-ndk-$ANDROID_NDK_VERSION
conan build . -b missing -pr:h profiles/android-armv8 -c tools.android:ndk_path=build/android-ndk-$ANDROID_NDK_VERSION
conan build . -b missing -pr:h profiles/android-armv7 -c tools.android:ndk_path=build/android-ndk-$ANDROID_NDK_VERSION
conan build . -b missing -pr:h profiles/android-x86_64 \
-c tools.android:ndk_path="build/android-ndk-$ANDROID_NDK_VERSION"
conan build . -b missing -pr:h profiles/android-armv8 \
-c tools.android:ndk_path="build/android-ndk-$ANDROID_NDK_VERSION"
conan build . -b missing -pr:h profiles/android-armv7 \
-c tools.android:ndk_path="build/android-ndk-$ANDROID_NDK_VERSION"
- uses: actions/upload-artifact@v4
name: upload-android-x86_64
with:
Expand Down

0 comments on commit 64ba058

Please sign in to comment.