Merge commit 'dffaa678f966f87dcd011671a16b554b29a37549' into develop
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
- name: Provision EC2 instances
|
||||
hosts: local
|
||||
hosts: localhost
|
||||
gather_facts: false
|
||||
roles:
|
||||
- ec2
|
||||
|
@@ -24,10 +24,9 @@
|
||||
region: "{{ region }}"
|
||||
key_name: "{{ keypair }}"
|
||||
instance_tags:
|
||||
Name: test_runner
|
||||
Name: "{{ item }}"
|
||||
Role: client-tests
|
||||
count_tag:
|
||||
Name: test_runner
|
||||
exact_count: "{{ total_no_instances }}"
|
||||
# volumes:
|
||||
# - device_name: /dev/xvda
|
||||
# volume_size: "{{ volume_size_gb }}"
|
||||
Name: "{{ item }}"
|
||||
exact_count: 1
|
||||
with_sequence: start=0 end={{ total_no_instances - 1 }} format=testrunner-%1u
|
||||
|
@@ -4,13 +4,9 @@
|
||||
instance_type: c4.xlarge
|
||||
security_group: client-tests
|
||||
|
||||
# image: ami-d6e7c084
|
||||
image: ami-9eaa1cf6
|
||||
# region: ap-southeast-1
|
||||
region: us-east-1
|
||||
keypair: christoph
|
||||
# keypair: client-tests
|
||||
volume_size_gb: 50
|
||||
|
||||
# limit access to AWS to these clients in CDIR notation
|
||||
ip_access_range: 0.0.0.0/0
|
||||
@@ -18,4 +14,4 @@ ip_access_range: 0.0.0.0/0
|
||||
|
||||
project_description: https://github.com/ethereum/tests
|
||||
|
||||
total_no_instances: 1
|
||||
total_no_instances: 3
|
||||
|
@@ -43,4 +43,4 @@ RUN mkdir -p cpp-ethereum/build
|
||||
RUN cd cpp-ethereum/build && cmake .. -DCMAKE_BUILD_TYPE=Debug -DVMTRACE=1 -DPARANOIA=1 -DEVMJIT=1 && make -j $(cat /proc/cpuinfo | grep processor | wc -l) && make install
|
||||
RUN ldconfig
|
||||
|
||||
ENTRYPOINT ["/cpp-ethereum/build/test/checkRandomTest"]
|
||||
ENTRYPOINT ["/cpp-ethereum/build/test/checkRandomStateTest"]
|
||||
|
@@ -7,7 +7,7 @@ cd ~/testout
|
||||
export EVMJIT="-cache=0"
|
||||
while [ 1 ]
|
||||
do
|
||||
TEST="$(docker run --rm --entrypoint=\"/cpp-ethereum/build/test/createRandomTest\" ethereum/cppjit-testrunner)"
|
||||
TEST="$(docker run --rm --entrypoint=\"/cpp-ethereum/build/test/createRandomStateTest\" ethereum/cppjit-testrunner)"
|
||||
# echo "$TEST"
|
||||
|
||||
# test pyethereum
|
||||
|
Reference in New Issue
Block a user