-
Notifications
You must be signed in to change notification settings - Fork 29
155 lines (118 loc) · 4.23 KB
/
matrix_ci.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: Build APK/AAB CI
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
concurrency:
group: matrix-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
build-v-examples-as-apk-and-aab:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
java-version: [8,11,15,20]
android-api: [27, 30]
timeout-minutes: 20
env:
VAB_FLAGS: -v 3 --build-tools 29.0.0
steps:
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java-version }}
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v
- name: Build local v
run: make -j2
- name: Checkout vab
uses: actions/checkout@v2
with:
path: vab
- name: Simulate "v install vab"
run: mv vab ~/.vmodules
- name: Run tests
run: ./v test ~/.vmodules/vab
- name: Build vab
run: ./v -g ~/.vmodules/vab
- name: Symlink vab
run: sudo ln -s ~/.vmodules/vab/vab /usr/local/bin/vab
- name: Run vab --help
run: vab --help
- name: Run vab doctor
run: vab doctor
# AAB
- name: Install AAB dependencies
run: |
vab install bundletool
vab install aapt2
- name: Build examples as APK + AAB (Java ${{ matrix.java-version }}) ${{ matrix.android-api }}
run: |
declare -a v_examples=('flappylearning' '2048' 'fireworks' 'tetris' 'sokol/particles' 'sokol/drawing.v' 'sokol/freetype_raven.v' 'gg/polygons.v' 'gg/raven_text_rendering.v' 'gg/rectangles.v' 'gg/stars.v' 'gg/worker_thread.v')
for example in "${v_examples[@]}"; do
package_id=$( echo "$example" | sed 's%/%%' | sed 's%\.%%' )
package_id=$( echo "v$package_id" )
# Setup env
mkdir -p java-${{ matrix.java-version }}/$example
# APK
vab --package-id "io.v.apk.$package_id" --api ${{ matrix.android-api }} "examples/$example" -o java-${{ matrix.java-version }}/$example/$package_id.apk
[ -f java-${{ matrix.java-version }}/$example/$package_id.apk ]
# AAB
vab --package-id "io.v.aab.$package_id" --api ${{ matrix.android-api }} "examples/$example" -o java-${{ matrix.java-version }}/$example/$package_id.aab
# Checks output inferring
[ -f java-${{ matrix.java-version }}/$example/$package_id.aab ]
done
build-v-examples-with-gc-disabled:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
java-version: [8, 15, 20]
android-api: [27, 30]
timeout-minutes: 20
env:
VAB_FLAGS: -v 3 -gc none --build-tools 29.0.0
steps:
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java-version }}
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v
- name: Build local v
run: make -j2
- name: Checkout vab
uses: actions/checkout@v2
with:
path: vab
- name: Simulate "v install vab"
run: mv vab ~/.vmodules
- name: Run tests
run: ./v test ~/.vmodules/vab
- name: Build vab
run: ./v -g ~/.vmodules/vab
- name: Symlink vab
run: sudo ln -s ~/.vmodules/vab/vab /usr/local/bin/vab
- name: Run vab --help
run: vab --help
- name: Run vab doctor
run: vab doctor
- name: Build examples with garbage collector (Java ${{ matrix.java-version }}) ${{ matrix.android-api }}
run: |
declare -a v_examples=('flappylearning' '2048' 'fireworks' 'tetris' 'sokol/particles' 'sokol/drawing.v' 'sokol/freetype_raven.v' 'gg/polygons.v' 'gg/raven_text_rendering.v' 'gg/rectangles.v' 'gg/stars.v' 'gg/worker_thread.v')
for example in "${v_examples[@]}"; do
package_id=$( echo "$example" | sed 's%/%%' | sed 's%\.%%' )
package_id=$( echo "vgc$package_id" )
# Setup env
mkdir -p gc-java-${{ matrix.java-version }}/$example
# APK
vab -gc boehm --package-id "io.v.apk.$package_id" --api ${{ matrix.android-api }} "examples/$example" -o gc-java-${{ matrix.java-version }}/$example/$package_id.apk
done