Skip to content

e!! Turn off Boost builds, until can update to conan v2 #24

e!! Turn off Boost builds, until can update to conan v2

e!! Turn off Boost builds, until can update to conan v2 #24

Workflow file for this run

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