Skip to content

Commit

Permalink
Certora Review (aave#812) (aave#814)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Morami <[email protected]>
  • Loading branch information
miguelmtzinf and MichaelMorami authored Feb 13, 2023
1 parent a00f28e commit 94e571f
Show file tree
Hide file tree
Showing 59 changed files with 1,896 additions and 3,931 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/certora.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: certora

on:
push:
branches:
- master
pull_request:
branches:
- master

workflow_dispatch:

jobs:
verify:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Check key
env:
CERTORAKEY: ${{ secrets.CERTORAKEY }}
run: echo "key length" ${#CERTORAKEY}

- name: Install python
uses: actions/setup-python@v2
with: { python-version: 3.9 }

- name: Install java
uses: actions/setup-java@v1
with: { java-version: "11", java-package: jre }

- name: Install certora cli
run: pip install certora-cli

- name: Install solc
run: |
wget https://github.com/ethereum/solidity/releases/download/v0.8.10/solc-static-linux
chmod +x solc-static-linux
sudo mv solc-static-linux /usr/local/bin/solc8.10
- name: Verify rule ${{ matrix.rule }}
run: |
cd certora
touch applyHarness.patch
make munged
cd ..
echo "key length" ${#CERTORAKEY}
sh certora/scripts/${{ matrix.rule }}
env:
CERTORAKEY: ${{ secrets.CERTORAKEY }}

strategy:
fail-fast: false
max-parallel: 16
matrix:
rule:
- verifyAToken.sh
- verifyPool.sh getReserveNormalizedVariableDebtCheck
- verifyReserveConfiguration.sh
- verifyStableTokenCLI.sh
- verifyUserConfigCLI.sh
- verifyVariableTokenCLI.sh
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,12 @@ coverage
.coverage_cache
.coverage_contracts
coverage.json
deployments/
deployments/

#certora
.certora*
.certora*.json
**.last_conf*
certora-logs
certora_debug_log.txt
resource_errors.json
Loading

0 comments on commit 94e571f

Please sign in to comment.