Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ jobs:
path: |
deployments/localhost
export
key: restore-artifacts-${{ hashFiles('docker-compose-deploy.yml', 'docker-compose.override.yml') }}

key: restore-artifacts-${{ hashFiles('docker-compose.yml', docker-compose.override.yml') }}

# Install dependencies
- name: Install Yarn
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker.io/docker/dockerfile:1.4
FROM cartesi/toolchain:0.13.0 as go-build
FROM cartesi/toolchain:0.14.0 as go-build

# Install Go build dependencies
RUN <<EOF
Expand Down
10 changes: 5 additions & 5 deletions deploy-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ version: "3.9"
services:
machine:
image: cartesi/dapp:${DAPP_NAME:?undefined DAPP_NAME}-devel-machine
command: xxd -c 256 -p hash; sleep 3
command: xxd -c 256 -p latest/hash; sleep 3
volumes:
- machine:/opt/cartesi/share/dapp-bin
- machine:/var/opt/cartesi/machine-snapshots

deployer:
image: juztamau5/rollups-cli:0.8.2
image: juztamau5/rollups-cli:0.9.1
depends_on:
machine:
condition: service_started
Expand All @@ -20,7 +20,7 @@ services:
"--mnemonic",
"${MNEMONIC:?undefined MNEMONIC}",
"--templateHashFile",
"/opt/cartesi/share/dapp-bin/hash",
"/var/opt/cartesi/machine-snapshots/latest/hash",
"--outputFile",
"/deployments/${NETWORK:?undefined NETWORK}/${DAPP_NAME:?undefined DAPP_NAME}.json",
"--validators",
Expand All @@ -31,7 +31,7 @@ services:
"${GAS_LIMIT:?undefined GAS_LIMIT}",
]
volumes:
- machine:/opt/cartesi/share/dapp-bin:ro
- machine:/var/opt/cartesi/machine-snapshots:ro
- ./deployments:/deployments

volumes:
Expand Down
Loading