difftreelog
Merge pull request #518 from UniqueNetwork/CI-43-try-runtime
in: master
Ci 43 try runtime
8 files changed
.docker/Dockerfile-try-runtimediffbeforeafterboth--- a/.docker/Dockerfile-try-runtime
+++ b/.docker/Dockerfile-try-runtime
@@ -34,16 +34,17 @@
ARG PROFILE=release
ARG FEATURE=
-ARG REPO_URL=
-ARG BRANCH=
ARG FORK_FROM=
+ENV FEATURE $FEATURE
+ENV FORK_FROM $FORK_FROM
+COPY . /unique_parachain
WORKDIR /unique_parachain
+
RUN echo "Requested features: $FEATURE\n" && \
echo "Fork from: $FORK_FROM\n" && \
- echo "Repositry URL: $REPO_URL\n" && \
- echo "Branch: $BRANCH\n" && \
- git clone $REPO_URL -b $BRANCH . && \
- cargo run --features=$FEATURE --release -- try-runtime on-runtime-upgrade live --uri $FORK_FROM
+ cargo build --features=$FEATURE --release
+
+CMD cargo run --features=$FEATURE --release -- try-runtime on-runtime-upgrade live --uri $FORK_FROM
.docker/docker-compose.tmp-dev.j2diffbeforeafterboth--- a/.docker/docker-compose.tmp-dev.j2
+++ b/.docker/docker-compose.tmp-dev.j2
@@ -19,4 +19,3 @@
max-size: "1m"
max-file: "3"
command: cargo run --release --features=$FEATURE -- --dev -linfo --unsafe-ws-external --rpc-cors=all --unsafe-rpc-external
-
\ No newline at end of file
.docker/docker-compose.tmp-unit.j2diffbeforeafterboth--- a/.docker/docker-compose.tmp-unit.j2
+++ b/.docker/docker-compose.tmp-unit.j2
@@ -12,5 +12,3 @@
options:
max-size: "1m"
max-file: "3"
-
-
\ No newline at end of file
.docker/docker-compose.try-runtime.j2diffbeforeafterboth--- a/.docker/docker-compose.try-runtime.j2
+++ b/.docker/docker-compose.try-runtime.j2
@@ -5,8 +5,6 @@
build:
args:
- "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"
- - "BRANCH={{ BRANCH }}"
- - "REPO_URL={{ REPO_URL }}"
- "FEATURE={{ FEATURE }}"
- "FORK_FROM={{ FORK_FROM }}"
.github/workflows/codestyle.ymldiffbeforeafterboth--- a/.github/workflows/codestyle.yml
+++ b/.github/workflows/codestyle.yml
@@ -1,4 +1,4 @@
-name: Code style
+name: cargo fmt
on:
pull_request:
.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-nodata.yml
+++ b/.github/workflows/forkless-update-nodata.yml
@@ -52,9 +52,9 @@
id: create_matrix
with:
matrix: |
- network {Opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
- network {Quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
- network {Unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}
+ network {opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
+ network {quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}
+ network {unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}
.github/workflows/tests_codestyle.ymldiffbeforeafterboth1name: Tests code style23on:4 pull_request:5 branches:6 - develop7 types:8 - opened9 - reopened10 - synchronize11 - ready_for_review1213concurrency: 14 group: ${{ github.workflow }}-${{ github.ref }}15 cancel-in-progress: true1617jobs:18 code_style:19 runs-on: self-hosted-ci2021 steps:22 - name: Skip if pull request is in Draft23 # `if: github.event.pull_request.draft == true` should be kept here, at24 # the step level, rather than at the job level. The latter is not25 # recommended because when the PR is moved from "Draft" to "Ready to26 # review" the workflow will immediately be passing (since it was skipped),27 # even though it hasn't actually ran, since it takes a few seconds for28 # the workflow to start. This is also disclosed in:29 # https://github.community/t/dont-run-actions-on-draft-pull-requests/16817/1730 # That scenario would open an opportunity for the check to be bypassed:31 # 1. Get your PR approved32 # 2. Move it to Draft33 # 3. Push whatever commits you want34 # 4. Move it to "Ready for review"; now the workflow is passing (it was35 # skipped) and "Check reviews" is also passing (it won't be updated36 # until the workflow is finished)37 if: github.event.pull_request.draft == true38 run: exit 13940 - uses: actions/checkout@v34142 - uses: actions/setup-node@v343 with:44 node-version: 164546 - name: Install modules47 run: cd tests && yarn48 - name: Run ESLint49 run: cd tests && yarn eslint --ext .ts,.js src/1name: yarn eslint23on:4 pull_request:5 branches:6 - develop7 types:8 - opened9 - reopened10 - synchronize11 - ready_for_review1213concurrency: 14 group: ${{ github.workflow }}-${{ github.ref }}15 cancel-in-progress: true1617jobs:18 code_style:19 runs-on: self-hosted-ci2021 steps:22 - name: Skip if pull request is in Draft23 # `if: github.event.pull_request.draft == true` should be kept here, at24 # the step level, rather than at the job level. The latter is not25 # recommended because when the PR is moved from "Draft" to "Ready to26 # review" the workflow will immediately be passing (since it was skipped),27 # even though it hasn't actually ran, since it takes a few seconds for28 # the workflow to start. This is also disclosed in:29 # https://github.community/t/dont-run-actions-on-draft-pull-requests/16817/1730 # That scenario would open an opportunity for the check to be bypassed:31 # 1. Get your PR approved32 # 2. Move it to Draft33 # 3. Push whatever commits you want34 # 4. Move it to "Ready for review"; now the workflow is passing (it was35 # skipped) and "Check reviews" is also passing (it won't be updated36 # until the workflow is finished)37 if: github.event.pull_request.draft == true38 run: exit 13940 - uses: actions/checkout@v34142 - uses: actions/setup-node@v343 with:44 node-version: 164546 - name: Install modules47 run: cd tests && yarn48 - name: Run ESLint49 run: cd tests && yarn eslint --ext .ts,.js src/.github/workflows/try-runtime.ymldiffbeforeafterboth--- a/.github/workflows/try-runtime.yml
+++ b/.github/workflows/try-runtime.yml
@@ -1,4 +1,4 @@
-name: Try Runtime
+name: try-runtime
# Controls when the action will run.
on:
@@ -36,13 +36,13 @@
strategy:
matrix:
include:
- - network: Opal
+ - network: opal
features: try-runtime,opal-runtime
fork_from_address: wss://eu-ws-opal.unique.network:443
- - network: Quartz
+ - network: quartz
features: try-runtime,quartz-runtime
fork_from_address: wss://eu-ws-quartz.unique.network:443
- - network: Unique
+ - network: unique
features: try-runtime,unique-runtime
fork_from_address: wss://eu-ws.unique.network:443
@@ -83,20 +83,16 @@
template: .docker/docker-compose.try-runtime.j2
output_file: .docker/docker-compose.try-runtime.${{ matrix.network }}.yml
variables: |
- REPO_URL=${{ github.server_url }}/${{ github.repository }}.git
RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
FEATURE=${{ matrix.features }}
- BRANCH=${{ github.head_ref }}
FORK_FROM=${{ matrix.fork_from_address }}
- name: Show build configuration
run: cat .docker/docker-compose.try-runtime.${{ matrix.network }}.yml
-
- name: Build the stack
- run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" up -d --build --force-recreate --timeout 300
+ run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" up -d --build --force-recreate --timeout 300 --remove-orphans
-
- name: Collect Docker Logs
if: success() || failure()
uses: jwalton/gh-docker-logs@v2.2.0
@@ -104,16 +100,8 @@
dest: './try-runtime-logs.${{ matrix.features }}'
images: 'try-runtime'
- - name: Tar logs
- if: success() || failure()
- run: tar cvzf ./try-runtime-logs.${{ matrix.features }}.tgz ./try-runtime-logs.${{ matrix.features }}
-
- - name: Upload logs to GitHub
- if: success() || failure()
- uses: actions/upload-artifact@master
- with:
- name: try-runtime-logs.${{ matrix.features }}.tgz
- path: ./try-runtime-logs.${{ matrix.features }}.tgz
+ - name: Show docker logs
+ run: cat './try-runtime-logs.${{ matrix.features }}/try-runtime.log'
- name: Stop running containers
if: always() # run this step always