-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Dylan Simon <dylan@dylex.net>
- Loading branch information
Showing
43 changed files
with
593 additions
and
143 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
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.
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,24 @@ | ||
# See packaging for various base options | ||
FROM flatironinstitute/triqs:base | ||
ARG APPNAME=app4triqs | ||
|
||
COPY requirements.txt /src/$APPNAME/requirements.txt | ||
RUN pip3 install -r /src/$APPNAME/requirements.txt | ||
|
||
RUN useradd -u 990 -m build | ||
|
||
ENV SRC=/src \ | ||
BUILD=/home/build \ | ||
INSTALL=/usr/local \ | ||
PYTHONPATH=/usr/local/lib/python$PYTHON_VERSION/site-packages \ | ||
CMAKE_PREFIX_PATH=/usr/lib/cmake/$APPNAME | ||
|
||
COPY --chown=build . $SRC/$APPNAME | ||
WORKDIR $BUILD/$APPNAME | ||
RUN chown build . | ||
USER build | ||
ARG BUILD_ID | ||
ARG CMAKE_ARGS | ||
RUN cmake $SRC/$APPNAME -DCMAKE_INSTALL_PREFIX=$INSTALL -DCLANG_OPT="$CXXFLAGS" $CMAKE_ARGS && make -j4 || make -j1 VERBOSE=1 | ||
USER root | ||
RUN make install |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
#pragma once | ||
#include <triqs/gfs.hpp> | ||
#include <triqs/mesh.hpp> | ||
#include <h5/h5.hpp> | ||
|
||
namespace app4triqs { | ||
|
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
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.