mirror of
https://github.com/triqs/dft_tools
synced 2024-12-22 20:34:38 +01:00
[jenkins] initial py3 changes
This commit is contained in:
parent
6e4598ce07
commit
116df6ef67
@ -3,7 +3,7 @@ FROM flatironinstitute/triqs:unstable-ubuntu-clang
|
||||
ARG APPNAME=app4triqs
|
||||
|
||||
COPY requirements.txt /src/$APPNAME/requirements.txt
|
||||
RUN pip install -r /src/$APPNAME/requirements.txt
|
||||
RUN pip3 install -r /src/$APPNAME/requirements.txt
|
||||
|
||||
COPY --chown=build . $SRC/$APPNAME
|
||||
WORKDIR $BUILD/$APPNAME
|
||||
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -73,7 +73,7 @@ for (int i = 0; i < osxPlatforms.size(); i++) {
|
||||
"CMAKE_PREFIX_PATH=$triqsDir/lib/cmake/triqs"]) {
|
||||
deleteDir()
|
||||
/* note: this is installing into the parent (triqs) venv (install dir), which is thus shared among apps and so not be completely safe */
|
||||
sh "pip install -r $srcDir/requirements.txt"
|
||||
sh "pip3 install -r $srcDir/requirements.txt"
|
||||
sh "cmake $srcDir -DCMAKE_INSTALL_PREFIX=$installDir -DTRIQS_ROOT=$triqsDir"
|
||||
sh "make -j2"
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user