mirror of
https://github.com/PureDarwin/PureDarwin.git
synced 2026-01-25 04:06:25 +00:00
23 lines
492 B
YAML
23 lines
492 B
YAML
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
|