Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1781 This new image removed preinstalled libc++, and the ability to install old version of Clang Format we were installing. This manually installs libc++ when setting up Clang jobs, and fully removes the clang-format validation job, since it wasn't correctly running before, and it's probably more a pain to ask people to run this than to just run Arcanist when importing a change. Changelog: [Internal] Reviewed By: joevilches Differential Revision: D68455129 fbshipit-source-id: b5767be832b2b5d46db7e60e18b66823819ba15a
35 lines
999 B
YAML
35 lines
999 B
YAML
name: Setup C++ envirionment
|
|
inputs:
|
|
toolchain:
|
|
description: Compiler toolchain to use (Clang, GCC, or MSVC)
|
|
required: false
|
|
default: 'Clang'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install Ninja
|
|
if: ${{ runner.os != 'Windows' }}
|
|
uses: ./.github/actions/install-ninja
|
|
|
|
- name: Set Clang as compiler
|
|
if: ${{ inputs.toolchain == 'Clang' }}
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get install -y libc++-dev libc++abi-dev
|
|
echo "CC=/usr/bin/clang" >> $GITHUB_ENV
|
|
echo "CXX=/usr/bin/clang++" >> $GITHUB_ENV
|
|
echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV
|
|
echo "LDFLAGS=-stdlib=libc++" >> $GITHUB_ENV
|
|
|
|
- name: Set GCC as compiler
|
|
if: ${{ inputs.toolchain == 'GCC' }}
|
|
shell: bash
|
|
run: |
|
|
echo "CC=/usr/bin/gcc" >> $GITHUB_ENV
|
|
echo "CXX=/usr/bin/g++" >> $GITHUB_ENV
|
|
|
|
- name: Setup VS Developer Command Prompt
|
|
if: ${{ runner.os == 'Windows' }}
|
|
uses: ilammy/msvc-dev-cmd@v1
|