Skip to content

add llvm include path to flags #175

add llvm include path to flags

add llvm include path to flags #175

Workflow file for this run

name: Release Builds
on: push
env:
SME_DEPS_COMMON_VERSION: "2023.07.12"
DUNE_COPASI_VERSION: "cxx20_and_libcpp_support"
jobs:
# linux:
# name: Linux
# runs-on: ubuntu-20.04
# env:
# INSTALL_PREFIX: "/opt/smelibs"
# SUDOCMD: "sudo"
# OS_TARGET: "linux"
# DUNE_USE_FALLBACK_FILESYSTEM: "ON"
# CC: "clang"
# CXX: "clang++"
# defaults:
# run:
# shell: bash
# steps:
# - name: Add llvm repo for clang 16 & install
# run: |
# sudo wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
# sudo add-apt-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-16 main"
# sudo apt update -yy
# sudo apt install -yy clang-16
# - name: Set clang version
# run: |
# sudo update-alternatives --remove-all clang || echo "nothing to remove"
# sudo update-alternatives --remove-all clang++ || echo "nothing to remove"
# sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 100
# sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-16 100
# - uses: actions/checkout@v3
# - name: Build script
# run: ./build.sh
# - uses: actions/upload-artifact@v3
# with:
# path: ./artefacts/*
macos:
name: MacOS
runs-on: macos-11
env:
INSTALL_PREFIX: "/opt/smelibs"
SUDOCMD: "sudo"
MACOSX_DEPLOYMENT_TARGET: "11"
OS_TARGET: "osx"
DUNE_USE_FALLBACK_FILESYSTEM: "ON"
# CXX: "g++-13"
# CC: "gcc-13"
defaults:
run:
shell: bash
steps:
- run: brew install llvm@16
- run: brew info llvm
- run: ls /usr/local/opt/llvm/lib/c++
- uses: actions/checkout@v3
- name: Build script
run: ./build.sh
- uses: actions/upload-artifact@v3
with:
path: ./artefacts/*
# win64:
# name: Windows 64-bit
# runs-on: windows-2022
# env:
# INSTALL_PREFIX: "/c/smelibs"
# SUDOCMD: ""
# OS_TARGET: "win64-mingw"
# DUNE_USE_FALLBACK_FILESYSTEM: "OFF"
# defaults:
# run:
# shell: msys2 {0}
# steps:
# - uses: actions/checkout@v3
# - uses: msys2/setup-msys2@v2
# with:
# msystem: MINGW64
# update: true
# install: mingw-w64-x86_64-gcc mingw-w64-x86_64-cmake make git dos2unix
# - name: Build script
# run: ./build.sh
# - uses: actions/upload-artifact@v3
# with:
# path: ./artefacts/*
# release:
# name: Upload Binaries to GitHub Release
# needs: [linux, macos, win64]
# runs-on: ubuntu-latest
# # upload binaries to github release if commit is tagged
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
# steps:
# - uses: dev-drprasad/[email protected]
# with:
# repo: spatial-model-editor/sme_deps
# keep_latest: 5
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - uses: actions/download-artifact@v3
# with:
# name: artifact
# path: binaries
# - name: Upload binaries to release
# uses: svenstaro/upload-release-action@v2
# with:
# repo_token: ${{ secrets.GITHUB_TOKEN }}
# file: binaries/*
# tag: ${{ github.ref }}
# overwrite: true
# file_glob: true