rename test #4040
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Size Check | |
on: [push] | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Cache compiler installations | |
id: cache-compiler | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.solcx | |
~/.vvm | |
key: ${{ runner.os }}-compiler-cache | |
- name: Setup node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "12.x" | |
- name: Install ganache | |
run: npm install -g [email protected] | |
- name: Set up python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Set pip cache directory path | |
id: pip-cache-dir-path | |
run: | | |
echo "PIP_CACHE_DIR=$(pip cache dir)" >> $GITHUB_ENV | |
- name: Restore pip cache | |
uses: actions/cache@v3 | |
id: pip-cache | |
with: | |
path: | | |
${PIP_CACHE_DIR} | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }} | |
${{ runner.os }}-pip- | |
- name: Install python dependencies | |
run: pip install -r requirements-dev.txt | |
- name: Run check-size script | |
id: check-size | |
run: | | |
mkdir -p size-reports-${{ github.run_id }} | |
./check-size.sh | tee size-reports-${{github.run_id}}/size-report | |
echo "SIZE_REPORT=$(echo $(cat size-reports-${{github.run_id}}/size-report|tail -1))" >> $GITHUB_OUTPUT | |
- name: Send size report to Discord | |
uses: appleboy/discord-action@master | |
with: | |
webhook_id: ${{ secrets.DISCORD_ID }} | |
webhook_token: ${{ secrets.DISCORD_TOKEN }} | |
username: "Contract Size Reporter" | |
message: Largest contract size for `${{ github.ref }}` ```${{ steps.check-size.outputs.SIZE_REPORT }}``` | |
timeout-minutes: 3 |