Skip to content

Commit

Permalink
Fix rust-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
soerenbf committed Sep 14, 2023
1 parent 6e99dde commit 1eede3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ jobs:
with:
workspaces: |
packages/rust-bindings
deps/concordium-deps
deps/concordium-base/rust-src
deps/concordium-base/concordium-contracts-common
- name: Get wasm-pack
uses: jetli/[email protected]
Expand Down Expand Up @@ -336,7 +337,8 @@ jobs:
with:
workspaces: |
packages/rust-bindings
deps/concordium-deps
deps/concordium-base/rust-src
deps/concordium-base/concordium-contracts-common
- name: Run clippy
run: cargo clippy --color=always --tests --benches -- -Dclippy::all
4 changes: 2 additions & 2 deletions packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
"lint": "eslint . --cache --ext .ts,.tsx --max-warnings 0",
"lint-fix": "yarn --silent lint --fix; exit 0",
"test": "jest",
"build": "rm -rf src/grpc-api lib/cjs/grpc-api; mkdir -p src/grpc-api lib/cjs/grpc-api; yarn generate && yarn build-dev",
"build-dev": "yarn tsc-esm && yarn tsc-cjs && cp -R src/grpc-api lib/esm && yarn generate-ts-v2-cjs",
"build": "rm -rf src/grpc-api; mkdir -p src/grpc-api; yarn generate && yarn build-dev",
"build-dev": "yarn tsc-esm && yarn tsc-cjs && cp -R src/grpc-api lib/esm && rm -rf lib/cjs/grpc-api && mkdir -p lib/cjs/grpc-api && yarn generate-ts-v2-cjs",
"tsc-esm": "tsc -p tsconfig.build.json",
"tsc-cjs": "tsc -p tsconfig.build.json --outDir ./lib/cjs --module commonjs",
"clean": "rimraf -- lib src/grpc-api"
Expand Down

0 comments on commit 1eede3c

Please sign in to comment.