2020-08-21 12:11:01 +00:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
|
|
|
|
test:
|
|
|
|
stage: test
|
|
|
|
tags:
|
|
|
|
- aave-build-runner
|
|
|
|
before_script:
|
|
|
|
- docker-compose -f docker-compose.test.yml build
|
|
|
|
script:
|
2020-08-21 12:19:07 +00:00
|
|
|
- docker-compose -f docker-compose.test.yml run contracts-env npm run ci:test
|
2020-08-21 12:11:01 +00:00
|
|
|
after_script:
|
|
|
|
- docker-compose -f docker-compose.test.yml run contracts-env npm run ci:clean
|
|
|
|
- docker-compose -f docker-compose.test.yml down
|
2020-11-01 16:34:06 +00:00
|
|
|
|
|
|
|
certora-test:
|
|
|
|
stage: test
|
2020-11-01 18:07:48 +00:00
|
|
|
image: python:latest
|
2020-11-01 16:34:06 +00:00
|
|
|
before_script:
|
2020-11-01 18:01:52 +00:00
|
|
|
- apt-get update || apt-get update
|
|
|
|
- apt-get install -y software-properties-common
|
2020-11-01 16:34:06 +00:00
|
|
|
- pip3 install certora-cli-beta==0.4.1
|
|
|
|
- wget https://github.com/ethereum/solidity/releases/download/v0.6.8/solc-static-linux
|
|
|
|
- chmod +x solc-static-linux
|
2020-11-01 18:01:52 +00:00
|
|
|
- mv solc-static-linux /usr/bin/solc
|
2020-11-01 19:11:47 +00:00
|
|
|
- export PATH=$PATH:/usr/bin/solc/solc-static-linux
|
2020-11-01 16:34:06 +00:00
|
|
|
script:
|
2020-11-01 19:17:24 +00:00
|
|
|
- certoraRun specs/harness/StableDebtTokenHarness.sol:StableDebtTokenHarness --verify StableDebtTokenHarness:specs/StableDebtToken.spec --settings -assumeUnwindCond --cache StableDebtToken --staging
|
2020-11-01 19:43:24 +00:00
|
|
|
- certoraRun specs/harness/UserConfigurationHarness.sol --verify UserConfigurationHarness:specs/UserConfiguration.spec --settings -useBitVectorTheory --staging
|
|
|
|
- certoraRun contracts/tokenization/VariableDebtToken.sol:VariableDebtToken specs/harness/LendingPoolHarnessForVariableDebtToken.sol --link VariableDebtToken:POOL=LendingPoolHarnessForVariableDebtToken --verify VariableDebtToken:specs/VariableDebtToken.spec --settings -assumeUnwindCond,-useNonLinearArithmetic --cache VariableDebtToken --staging
|
2020-11-01 16:34:06 +00:00
|
|
|
|