Skip to content

Commit

Permalink
test: ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
krypton-byte committed Jan 11, 2024
1 parent 4de7066 commit e978cdf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,17 @@ jobs:
- name: Installing Dependencies
run: |
sudo apt install gcc-aarch64-linux-gnu wget -y
wget https://dl.google.com/android/repository/android-ndk-r26b-linux.zip
unzip android-ndk-r26b-linux.zip
poetry install
- name: LINUX
run: |
#AMD64/X86_64
poetry run build goneonize
- name: ANDROID
run: |
export PATH=$PATH:/home/runner/android-ndk-r26b/toolchains/llvm/prebuilt/linux-x86_64/bin
wget https://dl.google.com/android/repository/android-ndk-r26b-linux.zip
unzip android-ndk-r26b-linux.zip
export ANDROID_NDK_HOME=$(pwd)/android-ndk-r26b
export PATH=$PATH:$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin
#ARM64/AARCH64
export CC=$(which aarch64-linux-android28-clang)
export CXX=$(which aarch64-linux-android28-clang++)
Expand Down

0 comments on commit e978cdf

Please sign in to comment.