-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'app4triqs_remote/cpp_only_notriqs' into…
… unstable
- Loading branch information
Showing
14 changed files
with
135 additions
and
713 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
branches: [ unstable ] | ||
pull_request: | ||
branches: [ unstable ] | ||
|
||
jobs: | ||
build: | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- {os: ubuntu-20.04, cc: gcc-10, cxx: g++-10} | ||
- {os: ubuntu-20.04, cc: clang-10, cxx: clang++-10} | ||
- {os: macos-10.15, cc: gcc-10, cxx: g++-10} | ||
- {os: macos-10.15, 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-20.04' | ||
run: > | ||
sudo apt-get install | ||
clang-10 | ||
g++-10 | ||
gfortran | ||
hdf5-tools | ||
libblas-dev | ||
libclang-10-dev | ||
libc++-10-dev | ||
libc++abi-10-dev | ||
libgfortran4 | ||
libgmp-dev | ||
libhdf5-dev | ||
liblapack-dev | ||
libopenmpi-dev | ||
openmpi-bin | ||
openmpi-common | ||
openmpi-doc | ||
python3-clang-10 | ||
python3-dev | ||
python3-mako | ||
python3-mpi4py | ||
python3-numpy | ||
python3-pip | ||
python3-scipy | ||
python3-sphinx | ||
python3-nbsphinx | ||
- name: Install homebrew dependencies | ||
if: matrix.os == 'macos-10.15' | ||
run: | | ||
brew install gcc@10 llvm@10 hdf5 open-mpi openblas numpy scipy mpi4py | ||
pip3 install mako | ||
pip3 install -r requirements.txt | ||
- name: Build itertools | ||
env: | ||
CC: ${{ matrix.cc }} | ||
CXX: ${{ matrix.cxx }} | ||
LIBRARY_PATH: /usr/local/opt/llvm/lib | ||
run: | | ||
mkdir build && cmake -B build -DCMAKE_INSTALL_PREFIX=$HOME/install | ||
cmake --build build -j2 | ||
- name: Test itertools | ||
env: | ||
DYLD_FALLBACK_LIBRARY_PATH: /usr/local/opt/llvm/lib | ||
run: | | ||
cd build | ||
ctest -j2 --output-on-failure |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.