Merge branch 'master' of https://github.com/onecoolx/picasso #151
This file contains 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: Android Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: set up NDK | |
uses: nttld/[email protected] | |
with: | |
ndk-version: r25b | |
- name: build freetype | |
run: ndk-build NDK_PROJECT_PATH=./android/freetype | |
- name: build expat | |
run: ndk-build NDK_PROJECT_PATH=./android/expat | |
- name: build | |
run: ndk-build NDK_PROJECT_PATH=./android/ |