-
Notifications
You must be signed in to change notification settings - Fork 18
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 #76 from nsimakov/xdmod9.0/appkernel-data-aggregat…
…ion-for-hichart Xdmod9.0/appkernel data aggregation for hichart
- Loading branch information
Showing
70 changed files
with
7,740 additions
and
3,487 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest | ||
|
||
# install python3 for akrr build | ||
RUN yum -y update && \ | ||
yum -y install --setopt=tsflags=nodocs python3 && \ | ||
yum -y clean all |
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,34 @@ | ||
# Perform shippable-like tests locally | ||
# with xdebug on | ||
|
||
FROM tas-tools-ext-01.ccr.xdmod.org/centos7_6-open8.5.1:latest | ||
|
||
RUN yum -y install --setopt=tsflags=nodocs python3 openssh-server && \ | ||
yum clean all | ||
|
||
COPY . /root/src/ubccr/xdmod-appkernels | ||
WORKDIR /root/src/ubccr/xdmod-appkernels | ||
|
||
COPY ./tests/utils/cmd_setup ./tests/utils/cmd_start ./tests/utils/cmd_stop /usr/local/sbin/ | ||
|
||
|
||
COPY ./tests/artifacts/sshd/ssh_host_ecdsa_key \ | ||
./tests/artifacts/sshd/ssh_host_ecdsa_key.pub \ | ||
./tests/artifacts/sshd/ssh_host_ed25519_key \ | ||
./tests/artifacts/sshd/ssh_host_ed25519_key.pub \ | ||
./tests/artifacts/sshd/ssh_host_rsa_key \ | ||
./tests/artifacts/sshd/ssh_host_rsa_key.pub \ | ||
/etc/ssh/ | ||
|
||
|
||
RUN /usr/local/sbin/cmd_setup xdebug sshd && echo 'root:root' |chpasswd && \ | ||
wget -O /usr/local/bin/phpunit https://phar.phpunit.de/phpunit-4.phar && \ | ||
chmod 755 /usr/local/bin/phpunit && \ | ||
cp /usr/local/bin/phpunit /usr/local/bin/phpunit.phar | ||
|
||
EXPOSE 22 | ||
|
||
ENV COMPOSER_ALLOW_SUPERUSER=1 | ||
|
||
ENTRYPOINT ["/usr/local/sbin/cmd_start"] | ||
CMD ["-set-no-exit-on-fail", "sshd", "/root/src/ubccr/xdmod-appkernels/tests/runtests.sh", "bash"] |
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
Oops, something went wrong.