From 13ef10d165e820b5a75069e7ed4c5800ee511396 Mon Sep 17 00:00:00 2001 From: nikolay19 Date: Mon, 12 Feb 2024 12:17:15 +0100 Subject: [PATCH 01/11] bench updates&workflow google sheet upload --- .github/workflows/benchmark.yml | 9 ++++++++- slitherin-benchmark | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 66c4349..89b101d 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -44,7 +44,14 @@ jobs: - name: Run Benchmark run: | cd slitherin-benchmark/ - python runner.py -i contracts/mainnet -o mainnet.csv --limit 7000 + python runner.py -i contracts/mainnet -o mainnet.csv --limit 10000 --skip-duplicates --skip-libs + - name: Upload sheet + run: | + echo $GOOGLE_JWT > service_account.json + python save_sheet.py -i mainnet.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln mainnet + env: + GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} + GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} - name: 'Upload Artifact' uses: actions/upload-artifact@v3 with: diff --git a/slitherin-benchmark b/slitherin-benchmark index 12792f9..0a6fe9b 160000 --- a/slitherin-benchmark +++ b/slitherin-benchmark @@ -1 +1 @@ -Subproject commit 12792f91792dfe5a90ed9a0fc955606082b92305 +Subproject commit 0a6fe9bf77bd5f56594c136f1845b84533d603a1 From 67a88c55ddd69f77a607a083366242d6692ac367 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Mon, 12 Feb 2024 22:06:52 +0300 Subject: [PATCH 02/11] bench 8000 contracts limit --- .github/workflows/benchmark.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 89b101d..79165a1 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -44,7 +44,7 @@ jobs: - name: Run Benchmark run: | cd slitherin-benchmark/ - python runner.py -i contracts/mainnet -o mainnet.csv --limit 10000 --skip-duplicates --skip-libs + python runner.py -i contracts/mainnet -o mainnet.csv --limit 8000 --skip-duplicates --skip-libs - name: Upload sheet run: | echo $GOOGLE_JWT > service_account.json From 417e8665fd01b9af9817daaba7868af5ae2cb344 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Tue, 13 Feb 2024 09:24:20 +0300 Subject: [PATCH 03/11] Update benchmark.yml --- .github/workflows/benchmark.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 79165a1..b9f4cec 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -47,6 +47,7 @@ jobs: python runner.py -i contracts/mainnet -o mainnet.csv --limit 8000 --skip-duplicates --skip-libs - name: Upload sheet run: | + cd slitherin-benchmark/ echo $GOOGLE_JWT > service_account.json python save_sheet.py -i mainnet.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln mainnet env: @@ -96,6 +97,14 @@ jobs: run: | cd slitherin-benchmark/ python runner.py -i contracts/openzeppelin -o oz.csv -eo oz_extra.csv + - name: Upload sheet + run: | + cd slitherin-benchmark/ + echo $GOOGLE_JWT > service_account.json + python save_sheet.py -i oz.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln OZ + env: + GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} + GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} - name: 'Upload Artifact' uses: actions/upload-artifact@v3 with: From 98921ea3a91d3b21b82fe916f0bb72ac9446faa8 Mon Sep 17 00:00:00 2001 From: nikolay19 Date: Thu, 15 Feb 2024 22:03:30 +0300 Subject: [PATCH 04/11] workflow for old version bench --- .github/workflows/old_version.yml | 117 ++++++++++++++++++++++++++++++ slitherin-benchmark | 2 +- 2 files changed, 118 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/old_version.yml diff --git a/.github/workflows/old_version.yml b/.github/workflows/old_version.yml new file mode 100644 index 0000000..b219aa3 --- /dev/null +++ b/.github/workflows/old_version.yml @@ -0,0 +1,117 @@ +name: Run Benchmark + +on: + workflow_dispatch: # Ручной запуск через UI Гитхаба +jobs: + RunBenchmarkOld: + runs-on: ubuntu-latest + env: + slitherin_version: 0.1.0 + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: 'true' + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.x' + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: '18.x' + - name: Update pip + run: python -m pip install --upgrade pip + - name: Install solc-select + run: python -m pip install solc-select + - name: Install Slither + run: python -m pip install slither-analyzer + - name: Install Setuptools + run: python -m pip install setuptools + - name: Install Slitherin + run: python -m pip install slitherin==$slitherin_version + - name: Configure + run: | + cd slitherin-benchmark/ + mv example.config.py config.py + - name: Install benchmark requirements + run: | + cd slitherin-benchmark/ + python -m pip install -r requirements.txt + - name: Run Benchmark + run: | + cd slitherin-benchmark/ + python runner.py -i contracts/mainnet -o mainnet.csv --limit 8000 --skip-duplicates --skip-libs --use-slither + - name: Upload sheet + run: | + cd slitherin-benchmark/ + echo $GOOGLE_JWT > service_account.json + python save_sheet.py -i mainnet.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln mainnet -sv "slitherin $slitherin_version" + env: + GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} + GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} + - name: 'Upload Artifact' + uses: actions/upload-artifact@v3 + with: + name: mainnet + path: slitherin-benchmark/mainnet.csv + RunBenchmarkOZOld: + runs-on: ubuntu-latest + env: + slitherin_version: 0.1.0 + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: 'true' + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.x' + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: '18.x' + - name: Update pip + run: python -m pip install --upgrade pip + - name: Install solc-select + run: python -m pip install solc-select + - name: Install Slither + run: python -m pip install slither-analyzer + - name: Install Setuptools + run: python -m pip install setuptools + - name: Install Slitherin + run: python -m pip install slitherin==$slitherin_version + - name: Configure + run: | + cd slitherin-benchmark/ + mv example.config.py config.py + - name: Install node dependencies + run: npm ci + - name: Install benchmark requirements + run: | + cd slitherin-benchmark/ + python -m pip install -r requirements.txt + - name: Run Benchmark + run: | + cd slitherin-benchmark/ + python runner.py -i contracts/openzeppelin -o oz.csv -eo oz_extra.csv --use-slither + - name: Upload sheet + run: | + cd slitherin-benchmark/ + echo $GOOGLE_JWT > service_account.json + python save_sheet.py -i oz.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln OZ -sv "slitherin $slitherin_version" + env: + GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} + GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} + - name: 'Upload Artifact' + uses: actions/upload-artifact@v3 + with: + name: oz + path: slitherin-benchmark/oz.csv + - name: 'Upload Artifact' + uses: actions/upload-artifact@v3 + with: + name: oz_extra + path: slitherin-benchmark/oz_extra.csv + diff --git a/slitherin-benchmark b/slitherin-benchmark index 0a6fe9b..12792f9 160000 --- a/slitherin-benchmark +++ b/slitherin-benchmark @@ -1 +1 @@ -Subproject commit 0a6fe9bf77bd5f56594c136f1845b84533d603a1 +Subproject commit 12792f91792dfe5a90ed9a0fc955606082b92305 From 94218f158ef76ffeef1b9404e70f28056de604b2 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Thu, 15 Feb 2024 22:38:50 +0300 Subject: [PATCH 05/11] Update old_version.yml --- .github/workflows/old_version.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/old_version.yml b/.github/workflows/old_version.yml index b219aa3..758dbc8 100644 --- a/.github/workflows/old_version.yml +++ b/.github/workflows/old_version.yml @@ -100,6 +100,7 @@ jobs: run: | cd slitherin-benchmark/ echo $GOOGLE_JWT > service_account.json + ls python save_sheet.py -i oz.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln OZ -sv "slitherin $slitherin_version" env: GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} From 53ef547048bd244a3d646c087fd34ca9aec3a652 Mon Sep 17 00:00:00 2001 From: nikolay19 Date: Thu, 15 Feb 2024 23:13:46 +0300 Subject: [PATCH 06/11] bench updates --- slitherin-benchmark | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slitherin-benchmark b/slitherin-benchmark index 12792f9..96f43d6 160000 --- a/slitherin-benchmark +++ b/slitherin-benchmark @@ -1 +1 @@ -Subproject commit 12792f91792dfe5a90ed9a0fc955606082b92305 +Subproject commit 96f43d6b35076a2b2912d9dfbc9695de0c8dfede From dc6210dd3831febbf8e436cebb4bc37156924d62 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Thu, 15 Feb 2024 23:25:13 +0300 Subject: [PATCH 07/11] Update benchmark.yml --- .github/workflows/benchmark.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 66c4349..48cebf0 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -34,6 +34,7 @@ jobs: - name: Configure run: | cd slitherin-benchmark/ + ls mv example.config.py config.py - name: Install node dependencies run: npm ci @@ -44,7 +45,15 @@ jobs: - name: Run Benchmark run: | cd slitherin-benchmark/ - python runner.py -i contracts/mainnet -o mainnet.csv --limit 7000 + python runner.py -i contracts/mainnet -o mainnet.csv --limit 8000 --skip-duplicates --skip-libs + - name: Upload sheet + run: | + cd slitherin-benchmark/ + echo $GOOGLE_JWT > service_account.json + python save_sheet.py -i mainnet.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln mainnet + env: + GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} + GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} - name: 'Upload Artifact' uses: actions/upload-artifact@v3 with: @@ -89,6 +98,14 @@ jobs: run: | cd slitherin-benchmark/ python runner.py -i contracts/openzeppelin -o oz.csv -eo oz_extra.csv + - name: Upload sheet + run: | + cd slitherin-benchmark/ + echo $GOOGLE_JWT > service_account.json + python save_sheet.py -i oz.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln OZ + env: + GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} + GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} - name: 'Upload Artifact' uses: actions/upload-artifact@v3 with: @@ -99,4 +116,3 @@ jobs: with: name: oz_extra path: slitherin-benchmark/oz_extra.csv - From 32b4e0c29049ada7c61a22ffa4f81235259ac57b Mon Sep 17 00:00:00 2001 From: Nikolay Date: Mon, 19 Feb 2024 21:51:28 +0300 Subject: [PATCH 08/11] Create benchmark_old.yml --- .github/workflows/benchmark_old.yml | 117 ++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 .github/workflows/benchmark_old.yml diff --git a/.github/workflows/benchmark_old.yml b/.github/workflows/benchmark_old.yml new file mode 100644 index 0000000..789d291 --- /dev/null +++ b/.github/workflows/benchmark_old.yml @@ -0,0 +1,117 @@ +name: Run Benchmark + +on: + workflow_dispatch: # Ручной запуск через UI Гитхаба +jobs: + RunBenchmarkOld: + runs-on: ubuntu-latest + env: + slitherin_version: 0.1.0 + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: 'true' + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.x' + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: '18.x' + - name: Update pip + run: python -m pip install --upgrade pip + - name: Install solc-select + run: python -m pip install solc-select + - name: Install Slither + run: python -m pip install slither-analyzer + - name: Install Setuptools + run: python -m pip install setuptools + - name: Install Slitherin + run: python -m pip install slitherin==$slitherin_version + - name: Configure + run: | + cd slitherin-benchmark/ + mv example.config.py config.py + - name: Install benchmark requirements + run: | + cd slitherin-benchmark/ + python -m pip install -r requirements.txt + - name: Run Benchmark + run: | + cd slitherin-benchmark/ + python runner.py -i contracts/mainnet -o mainnet.csv --limit 8000 --skip-duplicates --skip-libs --use-slither + - name: Upload sheet + run: | + cd slitherin-benchmark/ + echo $GOOGLE_JWT > service_account.json + python save_sheet.py -i mainnet.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln mainnet -sv "slitherin $slitherin_version" + env: + GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} + GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} + - name: 'Upload Artifact' + uses: actions/upload-artifact@v3 + with: + name: mainnet + path: slitherin-benchmark/mainnet.csv + RunBenchmarkOZOld: + runs-on: ubuntu-latest + env: + slitherin_version: 0.1.0 + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: 'true' + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.x' + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: '18.x' + - name: Update pip + run: python -m pip install --upgrade pip + - name: Install solc-select + run: python -m pip install solc-select + - name: Install Slither + run: python -m pip install slither-analyzer + - name: Install Setuptools + run: python -m pip install setuptools + - name: Install Slitherin + run: python -m pip install slitherin==$slitherin_version + - name: Configure + run: | + cd slitherin-benchmark/ + mv example.config.py config.py + - name: Install node dependencies + run: npm ci + - name: Install benchmark requirements + run: | + cd slitherin-benchmark/ + python -m pip install -r requirements.txt + - name: Run Benchmark + run: | + cd slitherin-benchmark/ + python runner.py -i contracts/openzeppelin -o oz.csv -eo oz_extra.csv --use-slither + - name: Upload sheet + run: | + cd slitherin-benchmark/ + echo $GOOGLE_JWT > service_account.json + ls + python save_sheet.py -i oz.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln OZ -sv "slitherin $slitherin_version" + env: + GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} + GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} + - name: 'Upload Artifact' + uses: actions/upload-artifact@v3 + with: + name: oz + path: slitherin-benchmark/oz.csv + - name: 'Upload Artifact' + uses: actions/upload-artifact@v3 + with: + name: oz_extra + path: slitherin-benchmark/oz_extra.csv From e1cb898b515559c878e3d1817a703199af06a3c7 Mon Sep 17 00:00:00 2001 From: nikolay19 Date: Mon, 19 Feb 2024 22:26:54 +0300 Subject: [PATCH 09/11] remove action --- .github/workflows/benchmark_old.yml | 117 ---------------------------- 1 file changed, 117 deletions(-) delete mode 100644 .github/workflows/benchmark_old.yml diff --git a/.github/workflows/benchmark_old.yml b/.github/workflows/benchmark_old.yml deleted file mode 100644 index 789d291..0000000 --- a/.github/workflows/benchmark_old.yml +++ /dev/null @@ -1,117 +0,0 @@ -name: Run Benchmark - -on: - workflow_dispatch: # Ручной запуск через UI Гитхаба -jobs: - RunBenchmarkOld: - runs-on: ubuntu-latest - env: - slitherin_version: 0.1.0 - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - submodules: 'true' - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' - - name: Set up Node - uses: actions/setup-node@v4 - with: - node-version: '18.x' - - name: Update pip - run: python -m pip install --upgrade pip - - name: Install solc-select - run: python -m pip install solc-select - - name: Install Slither - run: python -m pip install slither-analyzer - - name: Install Setuptools - run: python -m pip install setuptools - - name: Install Slitherin - run: python -m pip install slitherin==$slitherin_version - - name: Configure - run: | - cd slitherin-benchmark/ - mv example.config.py config.py - - name: Install benchmark requirements - run: | - cd slitherin-benchmark/ - python -m pip install -r requirements.txt - - name: Run Benchmark - run: | - cd slitherin-benchmark/ - python runner.py -i contracts/mainnet -o mainnet.csv --limit 8000 --skip-duplicates --skip-libs --use-slither - - name: Upload sheet - run: | - cd slitherin-benchmark/ - echo $GOOGLE_JWT > service_account.json - python save_sheet.py -i mainnet.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln mainnet -sv "slitherin $slitherin_version" - env: - GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} - GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} - - name: 'Upload Artifact' - uses: actions/upload-artifact@v3 - with: - name: mainnet - path: slitherin-benchmark/mainnet.csv - RunBenchmarkOZOld: - runs-on: ubuntu-latest - env: - slitherin_version: 0.1.0 - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - submodules: 'true' - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' - - name: Set up Node - uses: actions/setup-node@v4 - with: - node-version: '18.x' - - name: Update pip - run: python -m pip install --upgrade pip - - name: Install solc-select - run: python -m pip install solc-select - - name: Install Slither - run: python -m pip install slither-analyzer - - name: Install Setuptools - run: python -m pip install setuptools - - name: Install Slitherin - run: python -m pip install slitherin==$slitherin_version - - name: Configure - run: | - cd slitherin-benchmark/ - mv example.config.py config.py - - name: Install node dependencies - run: npm ci - - name: Install benchmark requirements - run: | - cd slitherin-benchmark/ - python -m pip install -r requirements.txt - - name: Run Benchmark - run: | - cd slitherin-benchmark/ - python runner.py -i contracts/openzeppelin -o oz.csv -eo oz_extra.csv --use-slither - - name: Upload sheet - run: | - cd slitherin-benchmark/ - echo $GOOGLE_JWT > service_account.json - ls - python save_sheet.py -i oz.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln OZ -sv "slitherin $slitherin_version" - env: - GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} - GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} - - name: 'Upload Artifact' - uses: actions/upload-artifact@v3 - with: - name: oz - path: slitherin-benchmark/oz.csv - - name: 'Upload Artifact' - uses: actions/upload-artifact@v3 - with: - name: oz_extra - path: slitherin-benchmark/oz_extra.csv From b4ba7f337c697c71293e9a4ddeb201ed8f59786e Mon Sep 17 00:00:00 2001 From: nikolay19 Date: Mon, 26 Feb 2024 15:53:15 +0300 Subject: [PATCH 10/11] bench updates --- slitherin-benchmark | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slitherin-benchmark b/slitherin-benchmark index 96f43d6..0690155 160000 --- a/slitherin-benchmark +++ b/slitherin-benchmark @@ -1 +1 @@ -Subproject commit 96f43d6b35076a2b2912d9dfbc9695de0c8dfede +Subproject commit 069015590cdd75f1348a1f78d1c9d1ba84021dff From 709548a9632f71438b7bd927ce70ee6f5ee2f7d3 Mon Sep 17 00:00:00 2001 From: nikolay19 Date: Thu, 7 Mar 2024 15:58:45 +0300 Subject: [PATCH 11/11] PR&slither version to sheet --- .github/workflows/benchmark.yml | 13 ++++++++++--- slitherin-benchmark | 2 +- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 48cebf0..013bd3a 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -45,20 +45,26 @@ jobs: - name: Run Benchmark run: | cd slitherin-benchmark/ - python runner.py -i contracts/mainnet -o mainnet.csv --limit 8000 --skip-duplicates --skip-libs + python runner.py -i contracts/mainnet -o mainnet.csv -eo mainnet_extra.csv --limit 8000 --skip-duplicates --skip-libs - name: Upload sheet run: | cd slitherin-benchmark/ echo $GOOGLE_JWT > service_account.json - python save_sheet.py -i mainnet.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln mainnet + python save_sheet.py -i mainnet.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln mainnet -pr $PR_NUMBER env: GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} + PR_NUMBER: ${{ github.event.number }} - name: 'Upload Artifact' uses: actions/upload-artifact@v3 with: name: mainnet path: slitherin-benchmark/mainnet.csv + - name: 'Upload Artifact Extra' + uses: actions/upload-artifact@v3 + with: + name: mainnet + path: slitherin-benchmark/mainnet_extra.csv RunBenchmarkOZ: runs-on: ubuntu-latest steps: @@ -102,10 +108,11 @@ jobs: run: | cd slitherin-benchmark/ echo $GOOGLE_JWT > service_account.json - python save_sheet.py -i oz.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln OZ + python save_sheet.py -i oz.csv -sa service_account.json -si $GOOGLE_SHEET_ID -ln OZ -pr $PR_NUMBER env: GOOGLE_JWT : ${{secrets.SERVICE_ACCOUNT}} GOOGLE_SHEET_ID : ${{ secrets.GOOGLE_SHEET_ID }} + PR_NUMBER: ${{ github.event.number }} - name: 'Upload Artifact' uses: actions/upload-artifact@v3 with: diff --git a/slitherin-benchmark b/slitherin-benchmark index 0690155..e8a7b64 160000 --- a/slitherin-benchmark +++ b/slitherin-benchmark @@ -1 +1 @@ -Subproject commit 069015590cdd75f1348a1f78d1c9d1ba84021dff +Subproject commit e8a7b64b52af91eb257399cdaf16c68c5695d9d7