-
-
Notifications
You must be signed in to change notification settings - Fork 40
170 lines (146 loc) · 5.7 KB
/
build_installer.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
name: Build Installer
# installer/ 以下のファイルに変更があったとき or
# .github/workflows/build_installer.yaml (このファイル) に変更があったとき or 他のワークフローからの呼び出し or 手動実行
on:
push:
branches:
- master
paths:
- 'installer/**'
- '.github/workflows/build_installer.yaml'
workflow_call:
workflow_dispatch:
# ジョブの定義
jobs:
# Windows 向けのインストーラーのビルド
build-windows:
runs-on: windows-2022
steps:
# KonomiTV のソースコードをチェックアウト
- name: Checkout Repository
uses: actions/checkout@v3
# Python 3.11 環境をセットアップ
## 事前に Runner 自体に入っている Python に Poetry をインストールしておく必要がある
- name: Install Poetry (for Runner)
run: |
python -m pip install poetry
- name: Setup Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'poetry'
cache-dependency-path: '${{ github.workspace }}/installer/poetry.lock'
# インストーラーの依存関係をインストール
- name: Install Dependencies
working-directory: installer/
run: |
pip install poetry
poetry install
# インストーラーを PyInstaller でビルド
- name: Build Installer with PyInstaller
working-directory: installer/
run: poetry run task build-windows
# 単一実行ファイルにビルドされたインストーラーを Artifact としてアップロード
- name: Upload Installer Executable as Artifact
uses: actions/upload-artifact@v3
with:
name: KonomiTV-Installer.exe
path: installer/dist/KonomiTV-Installer.exe
# Linux 向けのインストーラーのビルド
build-linux:
runs-on: ubuntu-20.04
steps:
# KonomiTV のソースコードをチェックアウト
- name: Checkout Repository
uses: actions/checkout@v3
# Python 3.11 環境をセットアップ
## 事前に Runner 自体に入っている Python に Poetry をインストールしておく必要がある
- name: Install Poetry (for Runner)
run: |
python -m pip install poetry
- name: Setup Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'poetry'
cache-dependency-path: '${{ github.workspace }}/installer/poetry.lock'
# インストーラーの依存関係をインストール
- name: Install Dependencies
working-directory: installer/
run: |
pip install poetry
poetry install
# インストーラーを PyInstaller でビルド
- name: Build Installer with PyInstaller
working-directory: installer/
run: poetry run task build-linux
# 単一実行ファイルにビルドされたインストーラーを Artifact としてアップロード
- name: Upload Installer Executable as Artifact
uses: actions/upload-artifact@v3
with:
name: KonomiTV-Installer.elf
path: installer/dist/KonomiTV-Installer.elf
# Linux (ARM) 向けのインストーラーのビルド
build-linux-arm:
runs-on: ubuntu-20.04
steps:
# QEMU のセットアップ
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: linux/arm64
# Docker Buildx のセットアップ
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# Dockerfile の作成
- name: Create Dockerfile
run: |
cat <<EOF > Dockerfile
ARG IMAGE
FROM \${IMAGE}
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends software-properties-common && \
add-apt-repository -y ppa:deadsnakes/ppa && \
apt-get install -y \
build-essential \
curl \
patchelf \
python3.11 \
python3.11-dev \
python3.11-distutils \
python3.11-venv \
zlib1g \
zlib1g-dev
RUN curl https://bootstrap.pypa.io/get-pip.py | python3.11
RUN python3.11 -m pip install poetry
EOF
# ARM64 版 Docker イメージのビルド
- name: Build Docker Image
uses: docker/build-push-action@v3
with:
context: .
tags: arm64v8/ubuntu:build
build-args: IMAGE=arm64v8/ubuntu:20.04
cache-from: type=gha,scope=arm64v8/ubuntu
cache-to: type=gha,scope=arm64v8/ubuntu,mode=max
load: true
# Dockerfile を削除
- name: Remove Dockerfile
run: rm Dockerfile
# KonomiTV のソースコードをチェックアウト
- name: Checkout Repository
uses: actions/checkout@v3
# インストーラーを PyInstaller でビルド
- name: Build Installer with PyInstaller
working-directory: installer/
run: |
docker run --rm -i -v $(pwd):/work -w /work arm64v8/ubuntu:build bash -c \
'poetry install && poetry run task build-linux'
sudo cp -a dist/KonomiTV-Installer.elf dist/KonomiTV-Installer-ARM.elf
# 単一実行ファイルにビルドされたインストーラーを Artifact としてアップロード
- name: Upload Installer Executable as Artifact
uses: actions/upload-artifact@v3
with:
name: KonomiTV-Installer-ARM.elf
path: installer/dist/KonomiTV-Installer-ARM.elf