-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12a5f56
commit 3c28c09
Showing
3 changed files
with
45 additions
and
352 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,181 +1,45 @@ | ||
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 | ||
HOMEBREW_NO_INSTALL_CLEANUP: 1 | ||
HOMEBREW_NO_AUTO_UPDATE: 1 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Linux Toolchain | ||
run: | | ||
brew tap FiloSottile/homebrew-musl-cross | ||
brew install musl-cross | ||
- name: Install Dependencies | ||
run: brew install openssl mingw-w64 | ||
|
||
- name: CI Bootstrap | ||
run: | | ||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/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@v4 | ||
with: | ||
name: macOS XCODE5 Artifacts | ||
path: Binaries/*.zip | ||
- name: Upload to Release | ||
if: github.event_name == 'release' | ||
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # v2.9.0 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: Binaries/*.zip | ||
tag: ${{ github.ref }} | ||
file_glob: true | ||
|
||
build-linux-clangpdb: | ||
name: Linux CLANGPDB | ||
runs-on: ubuntu-24.04 | ||
env: | ||
TOOLCHAINS: CLANGPDB | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Apply Docker AppArmor settings | ||
run: | | ||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1 | ||
- name: Use Docker in rootless mode. | ||
uses: ScribeMD/[email protected] | ||
|
||
- name: ./build_duet.tool | ||
run: docker compose run build-duet | ||
|
||
- name: ./build_oc.tool | ||
run: docker compose run build-oc | ||
|
||
- name: Upload to Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Linux CLANGPDB Artifacts | ||
path: Binaries/*.zip | ||
|
||
build-linux-gcc5: | ||
name: Linux GCC | ||
runs-on: ubuntu-24.04 | ||
env: | ||
TOOLCHAINS: GCC | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Apply Docker AppArmor settings | ||
run: | | ||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1 | ||
- name: Use Docker in rootless mode. | ||
uses: ScribeMD/[email protected] | ||
|
||
- name: ./build_duet.tool | ||
run: docker compose run build-duet | ||
|
||
- name: ./build_oc.tool | ||
run: docker compose run build-oc | ||
|
||
- name: Upload to Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Linux GCC Artifacts | ||
path: Binaries/*.zip | ||
|
||
build-linux-clangdwarf: | ||
name: Linux CLANGDWARF | ||
runs-on: ubuntu-24.04 | ||
env: | ||
TOOLCHAINS: CLANGDWARF | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Apply Docker AppArmor settings | ||
run: | | ||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1 | ||
- name: Use Docker in rootless mode. | ||
uses: ScribeMD/[email protected] | ||
|
||
- name: ./build_duet.tool | ||
run: docker compose run build-duet | ||
|
||
- name: ./build_oc.tool | ||
run: docker compose run build-oc | ||
|
||
- name: Upload to Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Linux CLANGDWARF Artifacts | ||
path: Binaries/*.zip | ||
|
||
build-linux-docs: | ||
name: Linux Docs | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Apply Docker AppArmor settings | ||
run: | | ||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1 | ||
- 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@v4 | ||
|
||
- name: Install Dependencies | ||
run: | | ||
choco install make nasm zip iasl --no-progress | ||
- name: CI Bootstrap | ||
run: | | ||
src=$(curl -LfsS https://raw.githubusercontent.com/mikebeaton/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@v4 | ||
with: | ||
name: Windows Artifacts | ||
path: Binaries/*.zip | ||
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-windows: | ||
name: Windows VS2019 | ||
runs-on: windows-latest | ||
env: | ||
HAS_OPENSSL_BUILD: 0 | ||
CC: gcc | ||
defaults: | ||
run: | ||
shell: bash | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Dependencies | ||
run: | | ||
choco install make nasm zip iasl --no-progress | ||
- name: CI Bootstrap | ||
run: | | ||
src=$(curl -LfsS https://raw.githubusercontent.com/mikebeaton/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@v4 | ||
with: | ||
name: Windows Artifacts | ||
path: Binaries/*.zip |
This file was deleted.
Oops, something went wrong.