-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
38 additions
and
107 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
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,22 @@ | ||
FROM fedora:30 | ||
|
||
RUN dnf update -y | ||
RUN dnf install -y make python3 python3-virtualenv python3-nose python3-pip ccache git patch dos2unix openssh which wget Lmod texlive cmake gcc ninja-build | ||
RUN dnf install -y mingw32-nsis mingw32-gcc-c++ mingw32-gcc-gfortran mingw32-libjpeg-turbo-static mingw32-libpng-static mingw32-zlib-static mingw32-libgomp mingw32-winpthreads-static | ||
RUN dnf install -y mingw64-gcc-c++ mingw64-gcc-gfortran mingw64-libjpeg-turbo-static mingw64-libpng-static mingw64-zlib-static mingw64-libgomp mingw64-winpthreads-static | ||
|
||
RUN pip3 install --upgrade pip virtualenv | ||
|
||
RUN mkdir -p /tmp/dl && cd /tmp/dl && wget https://download.lammps.org/thirdparty/opencl-win-devel.tar.gz && tar -xzvf opencl-win-devel.tar.gz && cp -ar OpenCL/include/CL /usr/i686-w64-mingw32/sys-root/mingw/include/ && cp -ar OpenCL/include/CL /usr/x86_64-w64-mingw32/sys-root/mingw/include/ && cp OpenCL/lib_win32/libOpenCL.dll /usr/i686-w64-mingw32/sys-root/mingw/lib && cp OpenCL/lib_win64/libOpenCL.dll /usr/x86_64-w64-mingw32/sys-root/mingw/lib && cd && rm -rf /tmp/dl | ||
|
||
ENV MODULEPATH /etc/modulefiles:/usr/share/modulefiles:/usr/share/Modules/modulefiles | ||
ENV PATH /usr/lib/ccache:$PATH | ||
|
||
RUN groupadd -g 114 jenkins | ||
RUN useradd -u 108 -g 114 -ms /bin/bash jenkins | ||
|
||
COPY z00_StdEnv.sh /etc/profile.d/z00_StdEnv.sh | ||
|
||
USER jenkins | ||
|
||
CMD /bin/bash |
1 change: 0 additions & 1 deletion
1
envs/fedora/rawhide/z00_StdEnv.sh → envs/fedora/30_cross/z00_StdEnv.sh
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,5 +1,4 @@ | ||
if [ -z "$__Init_Default_Modules" -o -z "$LD_LIBRARY_PATH" ]; then | ||
__Init_Default_Modules=1; export __Init_Default_Modules; | ||
module getdefault default | ||
module load mpi | ||
fi |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
File renamed without changes.
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