-
-
Notifications
You must be signed in to change notification settings - Fork 60
151 lines (143 loc) · 5.14 KB
/
ci.yaml
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
name: ci
on:
pull_request:
workflow_dispatch:
jobs:
ktlint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: curl -sSLO https://github.com/pinterest/ktlint/releases/download/1.4.0/ktlint && chmod a+x ktlint
- run: ./ktlint
gradle:
runs-on: ${{ matrix.os }}
needs: tox4j
strategy:
matrix:
os:
- ubuntu-22.04
- macos-14
- windows-2022
steps:
- name: Download tox4j
uses: actions/download-artifact@v4
with:
name: tox4j
path: ~/.m2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: ${{ github.ref != 'refs/heads/master' }}
# First build the .apks, then run things like check and lint tasks attached to the build task.
# We do this in multiple steps to try to reduce the peak memory usage as a plain
# `./gradlew build` often uses up all memory and dies in CI.
# See: https://issuetracker.google.com/issues/297088701
- run: ./gradlew assembleDebug
- run: ./gradlew assembleRelease
- run: ./gradlew build
- name: Upload apk
if: startsWith(matrix.os, 'ubuntu')
uses: actions/upload-artifact@v4
with:
name: atox-debug.apk
path: ./atox/build/outputs/apk/debug/atox-debug.apk
if-no-files-found: error
# https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/
- name: Enable hardware acceleration
if: startsWith(matrix.os, 'ubuntu')
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: Run Android tests
if: startsWith(matrix.os, 'ubuntu')
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 31
arch: x86_64
script: ./gradlew connectedCheck || { adb logcat -d; exit 1; }
tox4j:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17
- name: Set up cache
id: cache
uses: actions/cache@v4
with:
path: ~/.m2/repository/org/toktok
key: from-src-${{ hashFiles('scripts/**') }}
# TODO(robinlinden): Update NDK.
- name: Set up NDK
if: steps.cache.outputs.cache-hit != 'true'
run: |
# https://github.com/actions/virtual-environments/issues/5595
SDKMANAGER="${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager"
echo "y" | $SDKMANAGER "ndk;21.4.7075529"
- name: Install tox4j dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: sudo apt-get update && sudo apt install yasm
- name: Build tox4j
if: steps.cache.outputs.cache-hit != 'true'
run: |
export ANDROID_NDK_HOME="${ANDROID_SDK_ROOT}/ndk/21.4.7075529"
./scripts/build-host -j$(nproc)
./scripts/build-aarch64-linux-android -j$(nproc) release
./scripts/build-arm-linux-androideabi -j$(nproc) release
./scripts/build-i686-linux-android -j$(nproc) release
./scripts/build-x86_64-linux-android -j$(nproc) release
- name: Upload tox4j
uses: actions/upload-artifact@v4
with:
name: tox4j
path: ~/.m2
if-no-files-found: error
include-hidden-files: true
bazel:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17
- name: Set up Android
run: |
echo "y" | ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --install "ndk;$NDK_VERSION" | grep -v = || true
echo "ANDROID_NDK_HOME=$ANDROID_HOME/ndk/$NDK_VERSION" >> $GITHUB_ENV
env:
NDK_VERSION: "25.2.9519653"
- name: Set up Bazel cache
uses: actions/cache@v4
with:
path: ~/.cache/bazel
key: bazel-${{ hashFiles('.bazelversion', 'WORKSPACE', 'bazel/**') }}
- run: bazel test //...
buildifier:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install
run: |
wget --output-document=buildifier https://github.com/bazelbuild/buildtools/releases/download/v7.3.1/buildifier-linux-amd64
sudo chmod +x buildifier
- name: Check
run: ./buildifier --lint=warn --warnings=all -mode diff WORKSPACE $(find . -type f -name "BUILD.*")
prettier:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: npm install --global [email protected]
- run: npx prettier --ignore-path .gitignore --write .
- run: git diff --exit-code
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true