-
Notifications
You must be signed in to change notification settings - Fork 6
224 lines (201 loc) · 7.87 KB
/
build.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
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
name: "Check"
on:
push:
branches-ignore:
- docs
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
env:
VCPKG_ENABLE_METRICS: 0
VCPKG_FEATURE_FLAGS: "registries,binarycaching,manifests,versions"
jobs:
# https://learn.microsoft.com/en-us/vcpkg/commands/install
# https://learn.microsoft.com/en-us/vcpkg/concepts/classic-mode
overlay:
name: "Overlay"
runs-on: ${{ matrix.runner_image }} # https://github.com/actions/runner-images
strategy:
matrix:
include:
- runner_image: "ubuntu-latest"
triplet: "x64-linux"
- runner_image: "macos-13"
triplet: "x64-osx"
- runner_image: "macos-13"
triplet: "x64-ios-simulator"
- runner_image: "macos-13"
triplet: "arm64-osx"
- runner_image: "macos-13"
triplet: "arm64-ios"
- runner_image: "windows-latest"
triplet: "x64-windows"
- runner_image: "windows-latest"
triplet: "arm64-windows"
fail-fast: false
steps:
- uses: actions/checkout@v4.2.2
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- uses: lukka/run-vcpkg@v11.5
with:
vcpkgDirectory: "${{ runner.temp }}/vcpkg"
vcpkgGitCommitId: "6f29f12e82a8293156836ad81cc9bf5af41fe836" # 2025.01.13
runVcpkgInstall: false
- name: "Run apt"
if: runner.os == 'Linux'
run: |
# sudo apt update -y
sudo apt install -y nasm libnuma-dev libopenmpi-dev libx11-dev libxi-dev libxext-dev libx11-xcb-dev
- name: "Run homebrew"
if: runner.os == 'macOS'
run: brew install autoconf automake libtool
- uses: mobiledevops/xcode-select-version-action@v1.0.0
if: matrix.runner_image == 'macos-13'
with:
xcode-select-version: "15.2"
- uses: microsoft/setup-msbuild@v2
if: runner.os == 'Windows'
with:
msbuild-architecture: x64
- name: "Enable LongPath"
if: runner.os == 'Windows'
continue-on-error: true
run: |
git config --system core.longpaths true
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
shell: pwsh
- name: "Run vcpkg(${{matrix.triplet}})"
if: runner.os == 'Linux' || runner.os == 'macOS'
run: |
vcpkg install --keep-going \
--clean-buildtrees-after-build \
--clean-packages-after-build \
--x-manifest-root test \
--x-feature test
shell: bash
env:
VCPKG_BINARY_SOURCES: "${{ secrets.VCPKG_BINARY_SOURCES }}"
VCPKG_OVERLAY_PORTS: "${{ github.workspace }}/ports"
VCPKG_OVERLAY_TRIPLETS: "${{ github.workspace }}/triplets"
VCPKG_DEFAULT_TRIPLET: "${{matrix.triplet}}"
- name: "Run vcpkg(${{matrix.triplet}})"
if: runner.os == 'Windows'
run: |
vcpkg install --keep-going `
--clean-buildtrees-after-build `
--clean-packages-after-build `
--x-manifest-root test `
--x-feature test
shell: pwsh
env:
VCPKG_BINARY_SOURCES: "${{ secrets.VCPKG_BINARY_SOURCES }}"
VCPKG_OVERLAY_PORTS: "${{ github.workspace }}/ports"
VCPKG_OVERLAY_TRIPLETS: "${{ github.workspace }}/triplets"
VCPKG_DEFAULT_TRIPLET: "${{matrix.triplet}}"
android:
name: "Android"
runs-on: "ubuntu-latest" # https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404-Readme.md#environment-variables-2
# container: # https://circleci.com/developer/images/image/cimg/android
# image: cimg/android:2025.01.1-ndk # 28.0.12674087
steps:
- uses: actions/checkout@v4.2.2
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- uses: lukka/run-vcpkg@v11.5
with:
vcpkgDirectory: "${{ runner.temp }}/vcpkg"
vcpkgGitCommitId: "6f29f12e82a8293156836ad81cc9bf5af41fe836" # 2025.01.13
runVcpkgInstall: false
- name: "Run vcpkg(arm64-android)"
run: |
vcpkg install --keep-going \
--clean-buildtrees-after-build \
--clean-packages-after-build \
--x-manifest-root test \
--x-feature test
shell: bash
env:
VCPKG_BINARY_SOURCES: "${{ secrets.VCPKG_BINARY_SOURCES }}"
VCPKG_OVERLAY_PORTS: "${{ github.workspace }}/ports"
VCPKG_OVERLAY_TRIPLETS: "${{ github.workspace }}/triplets"
VCPKG_DEFAULT_TRIPLET: "arm64-android"
- name: "Run vcpkg(x64-android)"
run: |
vcpkg install --keep-going \
--clean-buildtrees-after-build \
--clean-packages-after-build \
--x-manifest-root test \
--x-feature test
shell: bash
env:
VCPKG_BINARY_SOURCES: "${{ secrets.VCPKG_BINARY_SOURCES }}"
VCPKG_OVERLAY_PORTS: "${{ github.workspace }}/ports"
VCPKG_OVERLAY_TRIPLETS: "${{ github.workspace }}/triplets"
VCPKG_DEFAULT_TRIPLET: "x64-android"
vulkan:
name: Vulkan
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v4.2.2
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- uses: humbletim/install-vulkan-sdk@v1.1.1
with:
version: "1.3.296.0"
cache: true
- uses: microsoft/setup-msbuild@v2
with:
msbuild-architecture: x64
- uses: lukka/run-vcpkg@v11.5
with:
vcpkgDirectory: "C:/vcpkg"
vcpkgGitCommitId: "6f29f12e82a8293156836ad81cc9bf5af41fe836" # 2025.01.13
vcpkgJsonGlob: "test/self-hosted.json"
vcpkgConfigurationJsonGlob: "test/vcpkg-configuration.json"
runVcpkgInstall: true
runVcpkgFormatString: '[`install`, `--keep-going`, `--triplet`, `$[env.VCPKG_DEFAULT_TRIPLET]`, `--x-feature`, `vulkan`]'
env:
VCPKG_DEFAULT_TRIPLET: "x64-windows"
VCPKG_BINARY_SOURCES: "${{ secrets.VCPKG_BINARY_SOURCES }}"
VCPKG_OVERLAY_PORTS: "${{ github.workspace }}/ports"
VCPKG_OVERLAY_TRIPLETS: "${{ github.workspace }}/triplets"
emscripten:
name: "Emscripten"
runs-on: "ubuntu-latest"
container:
image: "emscripten/emsdk:3.1.74" # https://hub.docker.com/r/emscripten/emsdk
env:
EMSDK_NODE: /emsdk/node/20.18.0_64bit/bin/node
EMCC_CFLAGS: "-mbulk-memory -matomics -pthread"
steps:
- uses: actions/checkout@v4
- name: "Run apt"
run: |
sudo apt update -y
sudo apt install -y pkg-config python3-pip
- name: "Run git config"
run: |
git config --global --add safe.directory /__w/vcpkg-registry/vcpkg-registry
- name: "Change vcpkg.json"
run: mv test/test-emsdk.json test/vcpkg.json
- uses: lukka/run-vcpkg@v11.5
with:
vcpkgDirectory: "${{ runner.temp }}/vcpkg"
vcpkgJsonGlob: "test/vcpkg.json"
vcpkgConfigurationJsonGlob: "test/vcpkg-configuration.json"
runVcpkgInstall: true
env:
VCPKG_DEFAULT_TRIPLET: "wasm32-emscripten"
VCPKG_OVERLAY_PORTS: "${{ github.workspace }}/ports"
VCPKG_OVERLAY_TRIPLETS: "${{ github.workspace }}/triplets"