From ec658efca6bd4fc1edb2867fcb5141ca9d2ce0a0 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Mon, 15 Aug 2022 19:39:03 +0000 Subject: [PATCH] fix: docker-compose file renamed. opal-runtime excplicitly defined. --- --- 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" --- /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" --- a/.github/workflows/build-test-master.yml +++ b/.github/workflows/build-test-master.yml @@ -21,7 +21,7 @@ # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - build: + master-build-and-test: # The type of runner that the job will run on runs-on: self-hosted-ci @@ -34,11 +34,11 @@ matrix: include: - network: "Opal" - features: " " + features: "opal-runtime" - network: "Quartz" - features: "--features=quartz-runtime" + features: "quartz-runtime" - network: "Unique" - features: "--features=unique-runtime" + features: "unique-runtime" steps: - name: Skip if pull request is in Draft -- gitstuff