-
Notifications
You must be signed in to change notification settings - Fork 0
171 lines (137 loc) · 4.48 KB
/
build.yml
File metadata and controls
171 lines (137 loc) · 4.48 KB
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
name: Build
on:
schedule:
- cron: '0 1 * * 1'
push:
branches:
- master
- dev
- feature/*
- dev/*
- fix/*
pull_request:
workflow_dispatch:
jobs:
Windows:
runs-on: windows-2022
strategy:
matrix:
python-version: [ 3.14 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Retrieve submodules
run: git submodule update --init --recursive
- name: Install Dependencies
run: |
Invoke-WebRequest -Uri "https://sdk.lunarg.com/sdk/download/1.3.296.0/windows/VulkanSDK-1.3.296.0-Installer.exe" -OutFile VulkanSDK.exe
# ./VulkanSDK.exe --help
./VulkanSDK.exe --accept-licenses --default-answer --root D:/a/VulkanSDK --confirm-command install
python -m pip install pl-build
cd ..
git clone https://github.com/PilotLightTech/pilotlight
cd pilotlight-python
- name: Build Python
shell: cmd
run: |
cd scripts
python gen_build.py
build_python_for_win32.bat
- name: Build Binaries
shell: cmd
run: |
set VULKAN_SDK=D:/a/VulkanSDK
cd src
call build.bat
if %ERRORLEVEL% NEQ 0 exit 1
MacOS:
runs-on: macos-latest
env:
CXX: g++-10
strategy:
matrix:
python-version: [ 3.14 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Retrieve submodules
run: git submodule update --init --recursive
- name: Install Dependencies
run: |
curl https://sdk.lunarg.com/sdk/download/1.3.283.0/mac/vulkansdk-macos-1.3.283.0.dmg -o vk.dmg
hdiutil attach vk.dmg
sudo /Volumes/vulkansdk-macos-1.3.283.0/InstallVulkan.app/Contents/MacOS/InstallVulkan --root ~/VulkanSDK/1.3.283.0 --accept-licenses --default-answer --confirm-command install com.lunarg.vulkan.core com.lunarg.vulkan.usr com.lunarg.vulkan.sdl2 com.lunarg.vulkan.glm com.lunarg.vulkan.volk com.lunarg.vulkan.vma com.lunarg.vulkan.ios
python3 -m pip install pl-build
cd ..
git clone https://github.com/PilotLightTech/pilotlight
cd pilotlight-python
- name: Build Python
run: |
cd $GITHUB_WORKSPACE
cd scripts
python3 gen_build.py
chmod +x build_python_for_mac.sh
./build_python_for_mac.sh
- name: Build Binaries
run: |
cd $GITHUB_WORKSPACE
cd src
chmod +x build.sh
./build.sh || exit 1
Ubuntu:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [ 3.14 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Retrieve submodules
run: git submodule update --init --recursive
- name: Install Dependencies
run: |
wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee /etc/apt/trusted.gpg.d/lunarg.asc
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-1.4.309-jammy.list https://packages.lunarg.com/vulkan/1.4.309/lunarg-vulkan-1.4.309-jammy.list
sudo apt update
sudo apt install vulkan-sdk
sudo apt install libx11-dev
sudo apt install libxkbcommon-x11-dev
sudo apt install libx11-xcb-dev
sudo apt install libxcb-xfixes0-dev
sudo apt install libxcb-cursor-dev
sudo apt install libxcb-cursor0
sudo apt install libxcb-keysyms1-dev
sudo apt install libxcursor-dev
sudo apt install libxrandr-dev
sudo apt install libxinerama-dev
sudo apt install libgl-dev
sudo apt install libxi-dev
python3 -m pip install pl-build
cd ..
git clone https://github.com/PilotLightTech/pilotlight
cd pilotlight-python
- name: Build Python
run: |
cd $GITHUB_WORKSPACE
cd scripts
python3 gen_build.py
chmod +x build_python_for_linux.sh
./build_python_for_linux.sh
- name: Build Binaries
run: |
cd $GITHUB_WORKSPACE
cd src
chmod +x build.sh
./build.sh || exit 1