1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
name: Android CI
on:
push:
branches: [ 2_x_dev ]
pull_request:
branches: [ 2_x_dev ]
jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
- name: Configure CMake
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake $GITHUB_WORKSPACE -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake -DANDROID_ABI=arm64-v8a
- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake --build .
- name: Create Build Environment (Shared Library)
run: cmake -E make_directory ${{github.workspace}}/build_shared
- name: Configure CMake (Shared Library)
working-directory: ${{github.workspace}}/build_shared
shell: bash
run: cmake $GITHUB_WORKSPACE -DBUILD_SHARED_LIBS=ON -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake -DANDROID_ABI=arm64-v8a
- name: Build (Shared Library)
working-directory: ${{github.workspace}}/build_shared
shell: bash
run: cmake --build .
|