From 8fbb1a8897b3a3948d9453ad9b470a36a2731597 Mon Sep 17 00:00:00 2001 From: "Dm. Yakushev" Date: Fri, 18 Jun 2021 16:11:00 +0300 Subject: [PATCH 1/3] Bump version. --- Cargo.lock | 2 +- cli/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e4ecfa13..af72f655 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -925,7 +925,7 @@ dependencies = [ [[package]] name = "dvm-cli" -version = "0.7.2" +version = "0.8.0" dependencies = [ "anyhow", "clap 3.0.0-beta.2", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index bf58bb2e..2de3f5ff 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dvm-cli" -version = "0.7.2" +version = "0.8.0" authors = [ "Alex Koz. ", "Dm. Yakushev ", From 2691eb2ff755f0e298d30b9eca7ea78332e787c6 Mon Sep 17 00:00:00 2001 From: "Dm. Yakushev" Date: Fri, 18 Jun 2021 16:34:30 +0300 Subject: [PATCH 2/3] Fix for CI --- .github/workflows/integration.dnode.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.dnode.yml b/.github/workflows/integration.dnode.yml index 0f2982dc..547d8769 100644 --- a/.github/workflows/integration.dnode.yml +++ b/.github/workflows/integration.dnode.yml @@ -50,7 +50,7 @@ jobs: run: | echo ::set-output name=DVM_BIN::${{ github.workspace }}/target/debug echo ::set-output name=NODE_REPO::dfinance/dnode - echo ::set-output name=NODE_REPO_PATH::${{ github.workspace }}/go/src/github.com/dfinance/dnode + echo ::set-output name=NODE_REPO_PATH::${{ github.workspace }}/go/src/github.com/dfinance/dstation echo ::set-output name=GOPATH::${{ github.workspace }}/go # usage: From 035d6b7b62bac667bd20fc5b5644db51d63b82b2 Mon Sep 17 00:00:00 2001 From: "Dm. Yakushev" Date: Fri, 18 Jun 2021 16:51:54 +0300 Subject: [PATCH 3/3] Fix for CI --- .github/workflows/integration.dnode.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration.dnode.yml b/.github/workflows/integration.dnode.yml index 547d8769..b98902f8 100644 --- a/.github/workflows/integration.dnode.yml +++ b/.github/workflows/integration.dnode.yml @@ -1,4 +1,4 @@ -name: Dnode Integration Tests +name: Dstation Integration Tests on: push: branches: @@ -49,14 +49,14 @@ jobs: id: VARS run: | echo ::set-output name=DVM_BIN::${{ github.workspace }}/target/debug - echo ::set-output name=NODE_REPO::dfinance/dnode + echo ::set-output name=NODE_REPO::dfinance/dstation echo ::set-output name=NODE_REPO_PATH::${{ github.workspace }}/go/src/github.com/dfinance/dstation echo ::set-output name=GOPATH::${{ github.workspace }}/go # usage: - # ${{ steps.dnode_ref.outputs.value }} - - name: Extract the dnode repo ref from tag - id: dnode_ref + # ${{ steps.dstation_ref.outputs.value }} + - name: Extract the dstation repo ref from tag + id: dstation_ref run: | TAG_KIND=$(echo $GITHUB_REF | cut -d / -f 2) TAG_FIRST=$(echo $GITHUB_REF | cut -d / -f 3) @@ -127,12 +127,12 @@ jobs: # # Node (Go) # - - name: Checkout DNode (${{ steps.dnode_ref.outputs.value }}) + - name: Checkout Dstation (${{ steps.dstation_ref.outputs.value }}) uses: actions/checkout@v2 with: repository: ${{ steps.VARS.outputs.NODE_REPO }} submodules: true - ref: ${{ steps.dnode_ref.outputs.value }} + ref: ${{ steps.dstation_ref.outputs.value }} path: ${{ steps.VARS.outputs.NODE_REPO_PATH }} - name: Set GOPATH @@ -169,7 +169,7 @@ jobs: rustc -V dvm -V go version - dnode version + dstation version - name: Tests