Skip to content

Commit 7fb1bd7

Browse files
authored
fix(coprocessor): remove redundant npm install in GPU workflows (#1869)
* fix(ci): remove redundant npm install in GPU workflows `npm ci` already installs all dependencies from the lockfile. The subsequent `npm install` does nothing useful but wastes ~2-3 minutes checking dependencies on each workflow run. * trigger CI
1 parent 509c759 commit 7fb1bd7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/coprocessor-benchmark-gpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jobs:
232232
run: |
233233
cp ./host-contracts/.env.example ./host-contracts/.env
234234
npm --workspace=host-contracts ci --include=optional
235-
cd host-contracts && npm install && npm run deploy:emptyProxies && npx hardhat compile
235+
cd host-contracts && npm run deploy:emptyProxies && npx hardhat compile
236236
237237
- name: Run benchmarks on GPU
238238
run: |

.github/workflows/coprocessor-gpu-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181

182182
- run: cp ./host-contracts/.env.example ./host-contracts/.env
183183
- run: npm --workspace=host-contracts ci --include=optional
184-
- run: "cd host-contracts && npm install && npm run deploy:emptyProxies && npx hardhat compile"
184+
- run: "cd host-contracts && npm run deploy:emptyProxies && npx hardhat compile"
185185
env:
186186
HARDHAT_NETWORK: hardhat
187187

0 commit comments

Comments
 (0)