napi-rs/.github/workflows/android.yml

70 lines
1.8 KiB
YAML
Raw Normal View History

2021-12-02 14:11:32 +09:00
name: Android-aarch64
2020-12-09 16:50:34 +09:00
on:
push:
2021-04-12 12:02:50 +09:00
branches:
- main
pull_request:
2020-12-09 16:50:34 +09:00
env:
DEBUG: 'napi:*'
jobs:
build-android-aarch64:
name: Build - Android - aarch64
2021-12-02 14:11:32 +09:00
runs-on: ubuntu-latest
2020-12-09 16:50:34 +09:00
steps:
- uses: actions/checkout@v2
- name: Setup node
2021-12-02 14:11:32 +09:00
uses: actions/setup-node@v2
2020-12-09 16:50:34 +09:00
with:
2021-11-19 15:58:21 +09:00
node-version: 16
cache: 'yarn'
check-latest: true
2020-12-09 16:50:34 +09:00
- name: List NDK Home
run: ls -R "${ANDROID_NDK_HOME}"
- name: Install
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
2021-11-19 15:58:21 +09:00
target: 'aarch64-linux-android'
2020-12-09 16:50:34 +09:00
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache cargo registry
2021-07-30 14:20:40 +09:00
uses: actions/cache@v2
2020-12-09 16:50:34 +09:00
with:
path: ~/.cargo/registry
2021-12-02 14:11:32 +09:00
key: stable-linux-android-node@16-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
2020-12-09 16:50:34 +09:00
- name: Cache cargo index
2021-07-30 14:20:40 +09:00
uses: actions/cache@v2
2020-12-09 16:50:34 +09:00
with:
path: ~/.cargo/git
2021-12-02 14:11:32 +09:00
key: stable-linux-android-node@16-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
2020-12-09 16:50:34 +09:00
- name: Cache NPM dependencies
2021-07-30 14:20:40 +09:00
uses: actions/cache@v2
2020-12-09 16:50:34 +09:00
with:
path: node_modules
2021-12-02 14:11:32 +09:00
key: npm-cache-linux-android-node@16-${{ hashFiles('yarn.lock') }}
2020-12-09 16:50:34 +09:00
- name: Install dependencies
run: yarn install --frozen-lockfile --registry https://registry.npmjs.org --network-timeout 300000
- name: 'Build TypeScript'
run: yarn build
- name: Cross build native tests
run: |
2021-12-02 14:11:32 +09:00
export CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER="${ANDROID_NDK_HOME}/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android24-clang"
2020-12-09 16:50:34 +09:00
yarn build:test:android