git.delta.rocks / unique-network / refs/commits / 0e2d278f9389

difftreelog

fix workflows for sapphire

Unique2022-12-27parent: #35449cb.patch.diff
in: master

2 files changed

modified.docker/Dockerfile-try-runtimediffbeforeafterboth
--- a/.docker/Dockerfile-try-runtime
+++ b/.docker/Dockerfile-try-runtime
@@ -38,6 +38,7 @@
 ARG WASM_NAME
 ENV NETWORK $NETWORK
 ENV REPLICA_FROM $REPLICA_FROM
+ENV WASM_NAME
 
 COPY . /unique_parachain
 WORKDIR /unique_parachain
modified.docker/docker-compose.tmp-try-runtime.j2diffbeforeafterboth
before · .docker/docker-compose.tmp-try-runtime.j2
1version: "3.5"23services:4  try-runtime:5    build:6      context: ../7      dockerfile: .docker/Dockerfile-try-runtime8      args:9        - "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"10        - "NETWORK={{ NETWORK }}"11        - "REPLICA_FROM={{ REPLICA_FROM }}"12        - "WASM_NAME={{ WASM_NAME }} "      13    image: try-runtime14    container_name: try-runtime15    expose:16      - 994417      - 993318    ports:19      - 127.0.0.1:9944:994420      - 127.0.0.1:9933:993321    logging:22      options:23        max-size: "1m"24        max-file: "3"
after · .docker/docker-compose.tmp-try-runtime.j2
1version: "3.5"23services:4  try-runtime:5    build:6      context: ../7      dockerfile: .docker/Dockerfile-try-runtime8      args:9        - "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"10        - "NETWORK={{ NETWORK }}"11        - "REPLICA_FROM={{ REPLICA_FROM }}"12        - "WASM_NAME={{ WASM_NAME }}"      13    image: try-runtime14    container_name: try-runtime15    expose:16      - 994417      - 993318    ports:19      - 127.0.0.1:9944:994420      - 127.0.0.1:9933:993321    logging:22      options:23        max-size: "1m"24        max-file: "3"