e!! Turn off Boost builds, until can update to conan v2 #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: clang13-temp | |
on: | |
push: | |
branches: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
Linux-Clang13: | |
# if: false # Disable this platform temporarily | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- generator: '"Unix Makefiles"' | |
name: Linux Clang13 | |
env: | |
BUILD_PATH: ${{ github.workspace }}/build_space | |
CC: clang-13 | |
CXX: clang++-13 | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Clang | |
uses: egor-tensin/setup-clang@v1 | |
with: | |
version: 13 | |
- name: install boost | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -y libboost-all-dev | |
- uses: ./.github/actions/build-and-test | |