Skip to content

fix linux build

fix linux build #464

name: ubuntu_clang_release
on: push
jobs:
ubuntu_clang_release:
runs-on: ubuntu-latest
env:
CXX: clang++
steps:
- uses: actions/checkout@v2
- uses: KyleMayes/install-llvm-action@v1
with:
version: "16.0.4"
- id: install_dependencies
uses: ./.github/actions/linux/install_dependencies
with:
# libc++ and experimental are required by std::format with clang 16.0.4, which is the latest available version with github actions
cxx_flags: -stdlib=libc++ -fexperimental-library
build_type: Release
- uses: ./.github/actions/linux/build
with:
# libc++ and experimental are required by std::format with clang 16.0.4, which is the latest available version with github actions
cxx_flags: -stdlib=libc++ -fexperimental-library
build_type: Release
BOOST_ROOT: ${{ steps.install_dependencies.outputs.BOOST_ROOT }}
- uses: ./.github/actions/linux/run_tests