difftreelog
fix docker-compose file renamed. opal-runtime excplicitly defined.
in: master
3 files changed
.docker/docker-compose-master.yamldiffbeforeafterboth--- a/.docker/docker-compose-master.yaml
+++ /dev/null
@@ -1,19 +0,0 @@
-version: "3.5"
-
-services:
- blockchain_nodes:
- build:
- context: ../
- dockerfile: .docker/Dockerfile-parachain
- image: blockchain_nodes
- container_name: blockchain_nodes
- expose:
- - 9944
- - 9933
- ports:
- - 127.0.0.1:9944:9944
- - 127.0.0.1:9933:9933
- logging:
- options:
- max-size: "1m"
- max-file: "3"
.docker/docker-compose-master.ymldiffbeforeafterboth--- /dev/null
+++ b/.docker/docker-compose-master.yml
@@ -0,0 +1,19 @@
+version: "3.5"
+
+services:
+ blockchain_nodes:
+ build:
+ context: ../
+ dockerfile: .docker/Dockerfile-parachain
+ image: blockchain_nodes
+ container_name: blockchain_nodes
+ expose:
+ - 9944
+ - 9933
+ ports:
+ - 127.0.0.1:9944:9944
+ - 127.0.0.1:9933:9933
+ logging:
+ options:
+ max-size: "1m"
+ max-file: "3"
.github/workflows/build-test-master.ymldiffbeforeafterboth21# A workflow run is made up of one or more jobs that can run sequentially or in parallel21# A workflow run is made up of one or more jobs that can run sequentially or in parallel22jobs:22jobs:232324 build:24 master-build-and-test:25 # The type of runner that the job will run on25 # The type of runner that the job will run on26 runs-on: self-hosted-ci26 runs-on: self-hosted-ci272734 matrix:34 matrix:35 include:35 include:36 - network: "Opal"36 - network: "Opal"37 features: " "37 features: "opal-runtime"38 - network: "Quartz"38 - network: "Quartz"39 features: "--features=quartz-runtime"39 features: "quartz-runtime"40 - network: "Unique"40 - network: "Unique"41 features: "--features=unique-runtime"41 features: "unique-runtime"424243 steps:43 steps:44 - name: Skip if pull request is in Draft44 - name: Skip if pull request is in Draft