Skip to content

[doc] workflow bug fix #147

[doc] workflow bug fix

[doc] workflow bug fix #147

Workflow file for this run

name: build
on:
push:
branches: [ 3.2.x ]
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
#- {os: ubuntu-22.04, cc: gcc-12, cxx: g++-12}
- {os: ubuntu-22.04, cc: clang-15, cxx: clang++-15, doc: ON}
#- {os: macos-12, cc: gcc-12, cxx: g++-12}
#- {os: macos-12, cc: /usr/local/opt/llvm/bin/clang, cxx: /usr/local/opt/llvm/bin/clang++}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install ubuntu dependencies
if: matrix.os == 'ubuntu-22.04'
run: >
sudo apt-get update &&
sudo apt-get install lsb-release wget software-properties-common &&
wget -O /tmp/llvm.sh https://apt.llvm.org/llvm.sh && sudo chmod +x /tmp/llvm.sh && sudo /tmp/llvm.sh 15 &&
sudo apt-get install
clang-15
g++-12
gfortran
hdf5-tools
libblas-dev
libboost-dev
libclang-15-dev
libc++-15-dev
libc++abi-15-dev
libomp-15-dev
libfftw3-dev
libnfft3-dev
libgfortran5
libgmp-dev
libhdf5-dev
liblapack-dev
libopenmpi-dev
openmpi-bin
openmpi-common
openmpi-doc
python3-clang-15
python3-dev
python3-mako
python3-matplotlib
python3-mpi4py
python3-numpy
python3-pip
python3-scipy &&
pip3 install myst-parser linkify-it-py &&
pip3 install sphinx==5.3.0 sphinx-rtd-theme
- name: Install homebrew dependencies
if: matrix.os == 'macos-12'
run: |
brew install gcc@11 llvm boost fftw hdf5 open-mpi openblas
brew install wentzell/triqs/nfft
pip3 install mako numpy scipy mpi4py
pip3 install -r requirements.txt
- name: add clang cxxflags
if: ${{ contains(matrix.cxx, 'clang') }}
run:
echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV
- name: Build & Install TRIQS
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
run: |
git clone https://github.com/TRIQS/triqs --branch 3.2.1
mkdir triqs/build && cd triqs/build
cmake .. -DBuild_Tests=OFF -DCMAKE_INSTALL_PREFIX=$HOME/install
make -j1 install VERBOSE=1
cd ../
- name: Build ctseg
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
LIBRARY_PATH: /usr/local/opt/llvm/lib
run: |
source $HOME/install/share/triqs/triqsvars.sh
mkdir build && cd build && cmake .. -DBuild_Documentation=${{ matrix.doc }}
make -j2 || make -j1 VERBOSE=1
- name: Test ctseg
env:
DYLD_FALLBACK_LIBRARY_PATH: /usr/local/opt/llvm/lib
run: |
source $HOME/install/share/triqs/triqsvars.sh
cd build
ctest -j2 --output-on-failure
- name: Deploy documentation to website
if: matrix.doc == 'ON'
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build/doc/html
branch: github.io
target-folder: doc/3.2.x