Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1334 Last change made me discover CMake on Ubuntu defaults to GCC. This change makes it so that we explicitly configure whether to use Clang/LLVM or GCC when building on machines with the `ubuntu-latest` image. Reviewed By: christophpurrer Differential Revision: D47462132 fbshipit-source-id: e81fb6d4b1740ab2913d39b6e90c52d674e5a4f2
69 lines
1.5 KiB
YAML
69 lines
1.5 KiB
YAML
name: C++
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
GTEST_COLOR: 1
|
|
|
|
jobs:
|
|
test:
|
|
name: Build and Test [${{ matrix.toolchain }}][${{ matrix.mode }}]
|
|
runs-on: ${{ (matrix.toolchain == 'MSVC') && 'windows-latest' || 'ubuntu-latest' }}
|
|
strategy:
|
|
matrix:
|
|
mode: [Debug, Release]
|
|
toolchain: [Clang, GCC] # TODO: fix issues building GTest Binary with MSVC in GitHub Actions
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup
|
|
uses: ./.github/actions/setup-cpp
|
|
with:
|
|
toolchain: ${{ matrix.toolchain }}
|
|
|
|
- name: Unit tests
|
|
run: ./unit_tests ${{ matrix.mode }}
|
|
|
|
benchmark:
|
|
name: Benchmark [${{ matrix.toolchain }}]
|
|
runs-on: ${{ (matrix.toolchain == 'MSVC') && 'windows-latest' || 'ubuntu-latest' }}
|
|
strategy:
|
|
matrix:
|
|
toolchain: [Clang, GCC, MSVC]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup
|
|
uses: ./.github/actions/setup-cpp
|
|
with:
|
|
toolchain: ${{ matrix.toolchain }}
|
|
|
|
- name: Build benchmark
|
|
run: |
|
|
cmake -S . -B build -G Ninja -D CMAKE_BUILD_TYPE=Release
|
|
cmake --build build
|
|
working-directory: benchmark
|
|
|
|
- name: Run benchmark
|
|
run: ./build/benchmark
|
|
working-directory: benchmark
|
|
|
|
clang-format:
|
|
name: Format
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: clang-format
|
|
uses: ./.github/actions/clang-format
|
|
with:
|
|
directory: ./yoga
|