forked from xrootd/xrootd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from stfc/master
upstream v5.7.3
- Loading branch information
Showing
64 changed files
with
1,042 additions
and
358 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 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 |
---|---|---|
|
@@ -11,7 +11,6 @@ on: | |
options: | ||
- alma8 | ||
- alma9 | ||
- centos7 | ||
- debian | ||
- fedora | ||
- ubuntu | ||
|
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.
File renamed without changes.
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,46 @@ | ||
FROM alpine | ||
|
||
RUN apk add \ | ||
bash \ | ||
cmake \ | ||
ceph-dev \ | ||
curl-dev \ | ||
fuse-dev \ | ||
fuse3-dev \ | ||
g++ \ | ||
git \ | ||
gtest-dev \ | ||
isa-l-dev \ | ||
json-c-dev \ | ||
krb5-dev \ | ||
libxml2-dev \ | ||
linux-headers \ | ||
make \ | ||
openssl \ | ||
openssl-dev \ | ||
procps \ | ||
py3-pip \ | ||
py3-setuptools \ | ||
py3-wheel \ | ||
python3-dev \ | ||
readline-dev \ | ||
sudo \ | ||
tinyxml-dev \ | ||
util-linux-dev \ | ||
uuidgen \ | ||
zlib-dev | ||
|
||
RUN adduser -D xrootd && echo "xrootd ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers | ||
|
||
USER xrootd | ||
WORKDIR /home/xrootd | ||
|
||
COPY xrootd.tar.gz xrootd.tar.gz | ||
|
||
RUN tar xf xrootd.tar.gz \ | ||
&& env CMAKE_ARGS='-DCMAKE_INSTALL_PREFIX=/usr' \ | ||
ctest -VV -S xrootd/test.cmake \ | ||
&& sudo cmake --install build \ | ||
&& xrootd/tests/post-install.sh \ | ||
&& xrootd/tests/check-headers.sh \ | ||
&& sudo rm -rf /home/xrootd/* |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.