3
0
mirror of https://github.com/triqs/dft_tools synced 2024-10-28 17:58:18 +01:00
dft_tools/.github/workflows/build.yml

147 lines
4.0 KiB
YAML
Raw Normal View History

2020-08-06 21:07:35 +02:00
name: build
on:
push:
branches: [ unstable ]
pull_request:
branches: [ unstable ]
workflow_call:
workflow_dispatch:
2023-10-13 13:35:03 +02:00
env:
CMAKE_C_COMPILER_LAUNCHER: ccache
CMAKE_CXX_COMPILER_LAUNCHER: ccache
CCACHE_COMPILERCHECK: content
CCACHE_BASEDIR: ${{ github.workspace }}
CCACHE_DIR: ${{ github.workspace }}/.ccache
CCACHE_MAXSIZE: 500M
CCACHE_SLOPPINESS: pch_defines,time_macros,include_file_mtime,include_file_ctime
CCACHE_COMPRESS: "1"
CCACHE_COMPRESSLEVEL: "1"
2020-08-06 21:07:35 +02:00
jobs:
build:
strategy:
fail-fast: false
2020-08-06 21:07:35 +02:00
matrix:
include:
- {os: ubuntu-22.04, cc: gcc-12, cxx: g++-12}
- {os: ubuntu-22.04, cc: clang-15, cxx: clang++-15}
- {os: macos-12, cc: gcc-12, cxx: g++-12}
2023-10-13 13:35:03 +02:00
- {os: macos-12, cc: clang, cxx: clang++}
2020-08-06 21:07:35 +02:00
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache/restore@v4
2023-10-13 13:35:03 +02:00
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.os }}-${{ matrix.cc }}-${{ github.run_id }}
restore-keys:
ccache-${{ matrix.os }}-${{ matrix.cc }}-
2020-08-06 21:07:35 +02:00
- name: Install ubuntu dependencies
if: matrix.os == 'ubuntu-22.04'
2020-08-06 21:07:35 +02:00
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 &&
2020-08-06 21:07:35 +02:00
sudo apt-get install
2023-10-13 13:35:03 +02:00
ccache
clang-15
g++-12
gfortran-12
2020-08-06 21:07:35 +02:00
hdf5-tools
libblas-dev
libboost-dev
libclang-15-dev
libc++-15-dev
libc++abi-15-dev
libomp-15-dev
2020-08-06 21:07:35 +02:00
libfftw3-dev
libgfortran5
2020-08-06 21:07:35 +02:00
libgmp-dev
libhdf5-dev
liblapack-dev
libopenmpi-dev
openmpi-bin
openmpi-common
openmpi-doc
python3-clang-15
2020-08-06 21:07:35 +02:00
python3-dev
python3-mako
python3-matplotlib
python3-mpi4py
python3-numpy
python3-pip
python3-scipy
python3-sphinx
python3-nbsphinx
- name: Install homebrew dependencies
if: matrix.os == 'macos-12'
2020-08-06 21:07:35 +02:00
run: |
2023-10-13 13:35:03 +02:00
brew install ccache gcc@12 llvm boost fftw hdf5 open-mpi openblas
mkdir $HOME/.venv
python3 -m venv $HOME/.venv/my_python
source $HOME/.venv/my_python/bin/activate
pip install mako numpy scipy mpi4py
pip install -r requirements.txt
echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV
echo "PATH=$PATH" >> $GITHUB_ENV
2020-08-06 21:07:35 +02:00
- name: add clang cxxflags
if: ${{ contains(matrix.cxx, 'clang') }}
2023-10-31 19:01:20 +01:00
run: |
2023-10-13 13:35:03 +02:00
echo "PATH=/usr/local/opt/llvm/bin:$PATH" >> $GITHUB_ENV
echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV
2020-08-06 21:07:35 +02:00
- name: Build & Install TRIQS
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
run: |
git clone https://github.com/TRIQS/triqs --branch unstable
mkdir triqs/build && cd triqs/build
cmake .. -DBuild_Tests=OFF -DCMAKE_INSTALL_PREFIX=$HOME/install
make -j1 install VERBOSE=1
cd ../
- name: Build dft_tools
2020-08-06 21:07:35 +02:00
env:
CC: ${{ matrix.cc }}
CXX: ${{ matrix.cxx }}
FC: gfortran-12
LIBRARY_PATH: /usr/local/opt/llvm/lib
2020-08-06 21:07:35 +02:00
run: |
source $HOME/install/share/triqs/triqsvars.sh
mkdir build && cd build && cmake ..
make -j2 || make -j1 VERBOSE=1
- name: Print logs
if: ${{ failure() }}
run: |
cat $(find . -name meson-log.txt)
2020-08-06 21:07:35 +02:00
- name: Test app4triqs
env:
DYLD_FALLBACK_LIBRARY_PATH: /usr/local/opt/llvm/lib
OPENBLAS_NUM_THREADS: "1"
2020-08-06 21:07:35 +02:00
run: |
source $HOME/install/share/triqs/triqsvars.sh
2020-08-06 21:07:35 +02:00
cd build
ctest -j2 --output-on-failure
2023-10-13 13:35:03 +02:00
- name: ccache statistics
if: always()
run: ccache -sv
- uses: actions/cache/save@v4
2023-10-13 13:35:03 +02:00
if: always()
with:
path: ${{ env.CCACHE_DIR }}
key: ccache-${{ matrix.os }}-${{ matrix.cc }}-${{ github.run_id }}