Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1217 This updates the CMake build present for being able to share options, fixing up flags, etc. A GTest build is added as well, along with a script and VSCode debug target so that OSS contributors can very easily run and debug tests on any OS. Note that this isn't completely done (need to revise Windows, Mac, documentation), but should be finished enough otherwise for review. Changelog: [Internal] Reviewed By: cortinico Differential Revision: D42406686 fbshipit-source-id: db15a2a94b59fe78a49530fb55aa8da0426ce4df
15 lines
326 B
YAML
15 lines
326 B
YAML
name: Install Ninja
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install ninja (Linux)
|
|
if: ${{ runner.os == 'Linux' }}
|
|
shell: bash
|
|
run: sudo apt-get install -y ninja-build
|
|
|
|
- name: Install ninja (Windows)
|
|
if: ${{ runner.os == 'Windows' }}
|
|
shell: powershell
|
|
run: choco install ninja
|