-
Notifications
You must be signed in to change notification settings - Fork 3
254 lines (231 loc) · 9.02 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
name: Continuous Integration
on:
workflow_dispatch:
push:
branches:
- master
- dev
tags:
- 'v*'
jobs:
prepare-autohotkey-binaries:
name: Prepare AutoHotkey Binaries
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
uses: MinoruSekine/[email protected]
with:
buckets: extras
apps: rcedit autohotkey imagemagick-lean
- name: Prepare binaries
run: |
Push-Location assets
# https://learn.microsoft.com/windows/apps/design/style/iconography/app-icon-construction
magick.exe -background transparent -define 'icon:auto-resize=16,24,32,48,256' zhuyin-t.svg rabbit.ico
magick.exe -background transparent -define 'icon:auto-resize=16,24,32,48,256' zhuyin-t-alt.svg rabbit-alt.ico
magick.exe -background transparent -define 'icon:auto-resize=16,24,32,48,256' pinyin-t.svg rabbit-ascii.ico
Copy-Item "$(scoop prefix autohotkey)/v2/AutoHotkey32.exe","$(scoop prefix autohotkey)/v2/AutoHotkey64.exe" .
rcedit.exe AutoHotkey32.exe --set-icon rabbit.ico
rcedit.exe AutoHotkey64.exe --set-icon rabbit.ico
Pop-Location
Move-Item "assets/AutoHotkey32.exe","assets/AutoHotkey64.exe","assets/rabbit.ico","assets/rabbit-alt.ico","assets/rabbit-ascii.ico" .
- name: Upload Icon
uses: actions/upload-artifact@v4
with:
name: Icon
path: |
rabbit.ico
rabbit-alt.ico
rabbit-ascii.ico
- name: Upload AutoHotkey
uses: actions/upload-artifact@v4
with:
name: AutoHotkey
path: |
AutoHotkey32.exe
AutoHotkey64.exe
prepare-dependency:
name: Prepare Dependency
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build Jiandao
run: |
WORK=`pwd`
JIANDAO_DIR=${WORK}/schemas/jiandao-src
pushd ${JIANDAO_DIR}
JIANDAO_TAG=$(curl -s https://api.github.com/repos/amorphobia/rime-jiandao/releases/latest | jq -r '.tag_name')
make dicts DEWEIGHT=1 VERSION="${JIANDAO_TAG}-rabbit-${{ github.ref_name }}"
popd
sudo apt-get install -y opencc
if command -v opencc &> /dev/null; then
echo "$(opencc --version)"
mkdir -p ${JIANDAO_DIR}/schema/opencc
opencc -c t2s.json -i ${JIANDAO_DIR}/deps/rime-emoji/opencc/emoji_category.txt | awk '!seen[$1]++' > ${JIANDAO_DIR}/schema/opencc/emoji_category.txt
opencc -c t2s.json -i ${JIANDAO_DIR}/deps/rime-emoji/opencc/emoji_word.txt | awk '!seen[$1]++' > ${JIANDAO_DIR}/schema/opencc/emoji_word.txt
# https://github.com/rime/rime-emoji/issues/48
sed -i 's/鼔/鼓/g' ${JIANDAO_DIR}/schema/opencc/emoji_word.txt
cp ${JIANDAO_DIR}/deps/rime-emoji/opencc/emoji.json ${JIANDAO_DIR}/schema/opencc/
make -C ${JIANDAO_DIR}/deps/opencc-tonggui
cp ${JIANDAO_DIR}/deps/opencc-tonggui/opencc/* ${JIANDAO_DIR}/schema/opencc/
fi
rm -f ${JIANDAO_DIR}/schema/recipe.yaml ${JIANDAO_DIR}/schema/rime.lua
mkdir -p ${WORK}/schemas/jiandao
cp -r ${JIANDAO_DIR}/schema/* ${WORK}/schemas/jiandao/
- name: Fetch Librime
run: |
WORK=`pwd`
LIBRIME_TAG=$(curl -s https://api.github.com/repos/rime/librime/releases/latest | jq -r '.tag_name')
LIBRIME_SHA=$(curl -s https://api.github.com/repos/rime/librime/tags | jq -r --arg LIBRIME_TAG "${LIBRIME_TAG}" '.[] | select(.name == $LIBRIME_TAG).commit.sha' | cut -c1-7)
LIBRIME_MSVC_X86_URL="https://github.com/rime/librime/releases/download/${LIBRIME_TAG}/rime-${LIBRIME_SHA}-Windows-msvc-x86.7z"
LIBRIME_MSVC_X86_DEPS_URL="https://github.com/rime/librime/releases/download/${LIBRIME_TAG}/rime-deps-${LIBRIME_SHA}-Windows-msvc-x86.7z"
LIBRIME_MSVC_X64_URL="https://github.com/rime/librime/releases/download/${LIBRIME_TAG}/rime-${LIBRIME_SHA}-Windows-msvc-x64.7z"
mkdir -p ${WORK}/librime-msvc ${WORK}/librime-clang
cd ${WORK}/librime-msvc && \
wget -O librime.7z ${LIBRIME_MSVC_X86_URL} && \
7z x '-i!dist/lib/rime.dll' librime.7z && \
cp dist/lib/rime.dll ${WORK}/rime-x86.dll && \
rm -rf librime.7z dist && \
wget -O deps.7z ${LIBRIME_MSVC_X86_DEPS_URL} && \
7z x '-i!share/opencc' deps.7z && \
cp -r share/opencc ${WORK}/ && \
rm -rf deps.7z share
cd ${WORK}/librime-clang && \
wget -O librime.7z ${LIBRIME_MSVC_X64_URL} && \
7z x '-i!dist/lib/rime.dll' librime.7z && \
cp dist/lib/rime.dll ${WORK}/rime-x64.dll && \
rm -rf librime.7z dist
- name: Upload Rime
uses: actions/upload-artifact@v4
with:
name: Rime
path: |
rime-x86.dll
rime-x64.dll
- name: Prepare Data
run: |
WORK=`pwd`
SCHEMAS=${WORK}/schemas
DATA=${WORK}/Data
rm -rf ${DATA} && mkdir -p ${DATA}
cp ${SCHEMAS}/prelude/*.yaml ${DATA}/
cp ${SCHEMAS}/essay/essay.txt ${DATA}/
cp ${SCHEMAS}/default.yaml ${DATA}/
cp ${SCHEMAS}/rabbit.yaml ${DATA}/
cp ${SCHEMAS}/pinyin-simp/*.yaml ${DATA}/
cp -r ${SCHEMAS}/jiandao/* ${DATA}/
cp ${WORK}/opencc/* ${DATA}/opencc/
- name: Upload Data
uses: actions/upload-artifact@v4
with:
name: Data
path: Data
build-rabbit:
strategy:
matrix:
target: [ x86, x64 ]
include:
- { target: x86, ahk: AutoHotkey32.exe, rime: rime-x86.dll }
- { target: x64, ahk: AutoHotkey64.exe, rime: rime-x64.dll }
name: Build for ${{ matrix.target }}
runs-on: ubuntu-latest
needs: [ prepare-dependency, prepare-autohotkey-binaries ]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Download Dependencies
uses: actions/download-artifact@v4
- name: Copy Artifacts and Apply Patches
run: |
git apply --stat ./Lib/GetCaretPosEx/GetCaretPosEx.patch
git apply --check ./Lib/GetCaretPosEx/GetCaretPosEx.patch
git apply ./Lib/GetCaretPosEx/GetCaretPosEx.patch
cp AutoHotkey/${{ matrix.ahk }} Rabbit.exe
cp Rime/${{ matrix.rime }} ./Lib/librime-ahk/rime.dll
cp Icon/* Lib/
- name: Set Version
run: |
if [[ ${{ github.ref_name }} == v* ]]; then
VER=${{ github.ref_name }}
else
VER=${{ github.ref_name }}-$(git rev-parse --short ${{ github.sha }})
fi
echo $VER
sed -i -E 's/global RABBIT_VERSION := .+/global RABBIT_VERSION := \"'"$VER"'\"/' Lib/RabbitCommon.ahk
- name: Upload Rabbit ${{ matrix.target }}
uses: actions/upload-artifact@v4
with:
name: Rabbit-${{ matrix.target }}
path: |
Lib/librime-ahk/*.ahk
Lib/librime-ahk/rime.dll
Lib/librime-ahk/utils
Lib/librime-ahk/LICENSE
Lib/GetCaretPosEx/*.ahk
Lib/GetCaretPosEx/LICENSE.txt
Lib/*.ahk
Lib/*.ico
Rabbit.exe
*.ahk
LICENSE
README.md
- name: Upload Full Zip of Rabbit ${{ matrix.target }}
uses: actions/upload-artifact@v4
with:
name: Rabbit-Full-${{ matrix.target }}
path: |
Data
Lib/librime-ahk/*.ahk
Lib/librime-ahk/rime.dll
Lib/librime-ahk/utils
Lib/librime-ahk/LICENSE
Lib/GetCaretPosEx/*.ahk
Lib/GetCaretPosEx/LICENSE.txt
Lib/*.ahk
Lib/*.ico
Rabbit.exe
*.ahk
LICENSE
README.md
create-release:
name: Create Release
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
needs: build-rabbit
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create Release
uses: softprops/action-gh-release@v2
upload-release:
strategy:
matrix:
target: [ x86, x64 ]
name: Upload Release for ${{ matrix.target }}
runs-on: ubuntu-latest
needs: create-release
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: Rabbit-Full-${{ matrix.target }}
path: release
- name: Pack Zip
working-directory: release
run: |
mkdir Rime && zip -r -q ../rabbit-${{ github.ref_name }}-${{ matrix.target }}.zip *
- name: Upload Assets
uses: softprops/action-gh-release@v2
with:
prerelease: true
files: |
rabbit-${{ github.ref_name }}-${{ matrix.target }}.zip