-
Notifications
You must be signed in to change notification settings - Fork 2.1k
176 lines (144 loc) · 4.18 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
name: Build
on:
push:
pull_request:
workflow_dispatch:
release:
types: [published]
env:
PROJECT_TYPE: UEFI
FORCE_INSTALL: 1
HAS_OPENSSL_BUILD: 1
HAS_OPENSSL_W32BUILD: 0
WERROR: 1
jobs:
build-macos:
name: macOS XCODE5
runs-on: macos-latest
env:
JOB_TYPE: BUILD
steps:
- uses: actions/checkout@v3
- name: Add Linux Toolchain
run: brew tap FiloSottile/homebrew-musl-cross
- name: Install Linux Toolchain
run: brew install musl-cross
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1
HOMEBREW_NO_AUTO_UPDATE: 1
- name: Install Dependencies
run: brew install openssl mingw-w64
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1
HOMEBREW_NO_AUTO_UPDATE: 1
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
- run: ./build_duet.tool
- run: ./build_oc.tool
- name: Upload to Artifacts
uses: actions/upload-artifact@v3
with:
name: macOS XCODE5 Artifacts
path: Binaries/*.zip
- name: Upload to Release
if: github.event_name == 'release'
uses: svenstaro/upload-release-action@e74ff71f7d8a4c4745b560a485cc5fdb9b5b999d
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: Binaries/*.zip
tag: ${{ github.ref }}
file_glob: true
build-linux-clangpdb:
name: Linux CLANGPDB
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Docker in rootless mode.
uses: ScribeMD/[email protected]
- name: ./build_duet.tool
run: docker compose run build-duet
env:
TOOLCHAINS: CLANGPDB
- name: ./build_oc.tool
run: docker compose run build-oc
env:
TOOLCHAINS: CLANGPDB
- name: Upload to Artifacts
uses: actions/upload-artifact@v3
with:
name: Linux CLANGPDB Artifacts
path: Binaries/*.zip
build-linux-gcc5:
name: Linux GCC
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Docker in rootless mode.
uses: ScribeMD/[email protected]
- name: ./build_duet.tool
run: docker compose run build-duet
env:
TOOLCHAINS: GCC
- name: ./build_oc.tool
run: docker compose run build-oc
env:
TOOLCHAINS: GCC
- name: Upload to Artifacts
uses: actions/upload-artifact@v3
with:
name: Linux GCC Artifacts
path: Binaries/*.zip
build-linux-clangdwarf:
name: Linux CLANGDWARF
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Docker in rootless mode.
uses: ScribeMD/[email protected]
- name: ./build_duet.tool
run: docker compose run build-duet
env:
TOOLCHAINS: CLANGDWARF
- name: ./build_oc.tool
run: docker compose run build-oc
env:
TOOLCHAINS: CLANGDWARF
- name: Upload to Artifacts
uses: actions/upload-artifact@v3
with:
name: Linux CLANGDWARF Artifacts
path: Binaries/*.zip
build-linux-docs:
name: Linux Docs
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Docker in rootless mode.
uses: ScribeMD/[email protected]
- name: Docs
run: docker compose run build-docs
build-windows:
name: Windows VS2019
runs-on: windows-latest
env:
HAS_OPENSSL_BUILD: 0
CC: gcc
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
choco install make nasm zip iasl --no-progress
- name: CI Bootstrap
run: |
src=$(curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
- run: ./build_duet.tool
- run: ./build_oc.tool
- name: Upload to Artifacts
uses: actions/upload-artifact@v3
with:
name: Windows Artifacts
path: Binaries/*.zip