mirror of
https://github.com/corda/corda.git
synced 2024-12-21 05:53:23 +00:00
298c91ce82
* add ability to index by class OR method * disable unit tests again * pending commit * stream output of build for debugging * remove git from the base image * re-enable NodeRPCTests * add ability to distribute tests based on TeamCity CSV output for test times * try enabling unit tests again after test distribution has been fixed * refactor BucketingAllocator to be a class, which bucketingAllocatorTask delegates to. * finishing touches for improved test distribution * create new pipelines for builds
11 lines
444 B
Plaintext
11 lines
444 B
Plaintext
FROM ubuntu:18.04
|
|
ENV GRADLE_USER_HOME=/tmp/gradle
|
|
RUN mkdir /tmp/gradle && mkdir -p /home/root/.m2/repository
|
|
|
|
RUN apt-get update && apt-get install -y curl libatomic1 && \
|
|
curl -O https://d3pxv6yz143wms.cloudfront.net/8.222.10.1/java-1.8.0-amazon-corretto-jdk_8.222.10-1_amd64.deb && \
|
|
apt-get install -y java-common && dpkg -i java-1.8.0-amazon-corretto-jdk_8.222.10-1_amd64.deb && \
|
|
apt-get clean && \
|
|
mkdir -p /tmp/source
|
|
|