-
Notifications
You must be signed in to change notification settings - Fork 3
78 lines (78 loc) · 2.18 KB
/
prebuild.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Prebuild
on:
workflow_dispatch:
jobs:
prebuild-apple:
strategy:
matrix:
include:
- os: macos-12
platform: darwin
arch: x64
- os: macos-14
platform: darwin
arch: arm64
- os: macos-14
platform: ios
arch: arm64
- os: macos-14
platform: ios
arch: arm64
tags: -simulator
flags: --simulator
- os: macos-14
platform: ios
arch: x64
tags: -simulator
flags: --simulator
runs-on: ${{ matrix.os }}
name: ${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.tags }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v4
with:
path: vendor/bare/corestore
key: corestore-${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.tags }}
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install -g bare-dev
- run: bare-dev configure --platform ${{ matrix.platform }} --arch ${{ matrix.arch }} ${{ matrix.flags }}
- run: bare-dev build
- run: tar -cvf build/apple/BareKit.framework.tar -C build/apple BareKit.framework
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}-${{ matrix.arch }}${{ matrix.tags }}
path: build/apple/*.framework.tar
prebuild-android:
strategy:
matrix:
include:
- os: ubuntu-22.04
platform: android
runs-on: ${{ matrix.os }}
name: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/cache@v4
with:
path: vendor/bare/corestore
key: corestore-${{ matrix.platform }}
- uses: actions/setup-node@v4
with:
node-version: lts/*
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- run: npm install -g bare-dev
- run: bare-dev android sdk licenses accept
- run: bare-dev build --gradle
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform }}
path: android/build/outputs/aar/*-release.aar