git.delta.rocks / unique-network / refs/commits / ec658efca6bd

difftreelog

fix docker-compose file renamed. opal-runtime excplicitly defined.

Alexander Aksenov2022-08-15parent: #5403a31.patch.diff
in: master

3 files changed

deleted.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"
added.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"
modified.github/workflows/build-test-master.ymldiffbeforeafterboth
21# 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 parallel
22jobs:22jobs:
2323
24 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 on
26 runs-on: self-hosted-ci26 runs-on: self-hosted-ci
2727
34 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"
4242
43 steps:43 steps:
44 - name: Skip if pull request is in Draft44 - name: Skip if pull request is in Draft