Build with 16KB pages support #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build aria2 | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: true | |
| - name: Setup NDK | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y autoconf automake autopoint autotools-dev libtool libxml2-dev libcppunit-dev | |
| wget https://dl.google.com/android/repository/android-ndk-r23b-linux.zip | |
| unzip -q android-ndk-r23b-linux.zip | |
| export ANDROID_NDK_HOME=`pwd`/android-ndk-r23b | |
| export PATH=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH | |
| export SILENT=true | |
| - name: Build | |
| run: | | |
| ./build_all.sh | |
| file ./bin/armeabi-v7a/bin/aria2c | |
| file ./bin/arm64-v8a/bin/aria2c | |
| file ./bin/x86/bin/aria2c | |
| file ./bin/x86_64/bin/aria2c |