Skip to content

Add boot.efi

Add boot.efi #121

Workflow file for this run

name: Build Pull Request
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: macos-latest
steps:
- name: Clone
uses: actions/checkout@v2
- name: Install Packages
run: |
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
brew install openssl ninja
- name: Build
run: |
mkdir build && cd build
cmake -G Ninja -DKERNEL_BUILD_XNU=1 -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl ..
ninja