forked from ethereum/tests
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
31 lines (28 loc) · 967 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
dist: focal
language: python
python:
- "3.6"
branches:
only:
- master
- develop
sudo: false
install:
- pip install pyyaml jsonschema pysha3
#- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
#- sudo apt-get update
#- sudo apt-get install gcc-9
#- sudo apt-get install --only-upgrade libstdc++6
script:
# sanitation checks against testsets
- wget http://retesteth.ethdevops.io/retesteth
- chmod +x ./retesteth
- ./retesteth --version
- ./retesteth -t GeneralStateTests -- --checkhash --all --testpath $(pwd)
- ./retesteth -t BlockchainTests -- --checkhash --all --testpath $(pwd)
- ./retesteth -t BCGeneralStateTests -- --checkhash --all --testpath $(pwd)
- ./retesteth -t LegacyTests -- --checkhash --all --testpath $(pwd)
- ./retesteth -t TransactionTests -- --checkhash --all --testpath $(pwd)
- ./retesteth -t DifficultyTests -- --checkhash --all --testpath $(pwd)
# Retesteth does the format check upon test run and generation
#- make sani