Skip to content

Commit fafe8ca

Browse files
author
mike dupont
committed
update
1 parent e6a3e88 commit fafe8ca

File tree

5 files changed

+61
-688
lines changed

5 files changed

+61
-688
lines changed

.github/workflows/docker-image.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,15 @@ jobs:
2626
run: docker compose up
2727
# - name: docker cp strace.txt
2828
# run: docker compose cp mina-local-network:/tmp/strace.txt strace.txt
29-
- name: list files
30-
run: find .
3129
- name: list files docker
32-
run: docker compose run mina-local-network /bin/find .
30+
run: docker compose run mina-local-network /bin/find /app/.clinic/
31+
- name: docker cp strace.txt
32+
run: docker compose cp mina-local-network:/app/.clinic clinic
33+
- name: list files
34+
run: find clinic
35+
3336
# - name: Archive code coverage results
3437
# uses: meta-introspector/upload-artifact@v4
3538
# with:
3639
# name: strace.txt
37-
# path: strace.txt
40+
# path: strace.txt

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ COPY tests /app/tests
2424
COPY benchmark /app/benchmark
2525
COPY jest /app/jest
2626
COPY dune-project /app/dune-project
27-
27+
RUN apt update
28+
RUN apt install -y git
2829
RUN npm ci
2930
RUN pnpm run build
3031
RUN pnpm install jest

README-dev.md

+3
Original file line numberDiff line numberDiff line change
@@ -233,3 +233,6 @@ After the Node.js process is running, open the Chrome browser and navigate to `c
233233
`docker compose build`
234234
`docker compose run mina-local-network`
235235
`docker compose run -it mina-local-network /bin/bash`
236+
237+
to update the pnpm lock
238+
`pnpm install --no-frozen-lockfile`

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
2-
"name": "o1js",
2+
"name": "o1js",
3+
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
34
"description": "TypeScript framework for zk-SNARKs and zkApps",
4-
"version": "1.7.0",
5+
"version": "1.7.0",
6+
57
"license": "Apache-2.0",
68
"homepage": "https://github.com/o1-labs/o1js/",
79
"repository": {

0 commit comments

Comments
 (0)