-
Notifications
You must be signed in to change notification settings - Fork 39
56 lines (47 loc) · 1.34 KB
/
android.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
#
# Android Workflow
#
# https://github.com/filipdutescu/modern-cpp-template/blob/master/.github/workflows
name: Android
on:
push:
branches: [ release, next ]
pull_request:
branches: [ release, next ]
jobs:
build:
strategy:
fail-fast: false
matrix:
android_ndk_revision:
- r25b
- r24
- r23
- r22b
- r21e
install_location:
- .local
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip ci android]')"
steps:
- uses: actions/checkout@v3
- name: Setup Cache
uses: actions/cache@v3
id: cache
with:
path: |
${{github.workspace}}/${{matrix.install_location}}
${{github.workspace}}/build/out
${{github.workspace}}/cmake
key: ${{runner.os}}-dependencies
- name: Setup NDK
uses: nttld/setup-ndk@v1
with:
ndk-version: ${{matrix.android_ndk_revision}}
# Always add to path. Otherwise,
# the wrong standard headers are found.
add-to-path: true
local-cache: true
- name: Build
run: |
tool/build --verbose --platform-android --no-build-test --no-build-bench --no-run-test --no-run-bench