fix: update capsule to latest core (#1127)
* fix: update capsule to latest core * chore: install vega wallet binaries * chore: rename work name
This commit is contained in:
parent
484bae7b6d
commit
1f73c8164f
@ -52,7 +52,7 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: vegaprotocol/vegacapsule
|
repository: vegaprotocol/vegacapsule
|
||||||
ref: v0.2.1
|
ref: main
|
||||||
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
||||||
path: './capsule'
|
path: './capsule'
|
||||||
|
|
||||||
@ -66,22 +66,24 @@ jobs:
|
|||||||
- name: Set GOBIN
|
- name: Set GOBIN
|
||||||
run: echo GOBIN=$(go env GOPATH)/bin >> $GITHUB_ENV
|
run: echo GOBIN=$(go env GOPATH)/bin >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Install binaries
|
|
||||||
run: vegacapsule install-bins
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
|
||||||
GOBIN: ${{ env.GOBIN }}
|
|
||||||
|
|
||||||
- name: Checkout Vega
|
- name: Checkout Vega
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: vegaprotocol/vega
|
repository: vegaprotocol/vega
|
||||||
ref: tm35.9
|
ref: develop
|
||||||
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
||||||
path: './vega'
|
path: './vega'
|
||||||
|
|
||||||
- name: Install binary from Vega repo
|
- name: Install Vega binaries
|
||||||
run: go install ./cmd/vega
|
run: go install -v ./cmd/vega
|
||||||
|
working-directory: vega
|
||||||
|
|
||||||
|
- name: Install Vega wallet binaries
|
||||||
|
run: go install ./cmd/vegawallet
|
||||||
|
working-directory: vega
|
||||||
|
|
||||||
|
- name: Install date-node binaries
|
||||||
|
run: go install ./cmd/data-node
|
||||||
working-directory: vega
|
working-directory: vega
|
||||||
|
|
||||||
######
|
######
|
||||||
|
22
.github/workflows/capsule-cypress-night-run.yml
vendored
22
.github/workflows/capsule-cypress-night-run.yml
vendored
@ -36,7 +36,7 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: vegaprotocol/vegacapsule
|
repository: vegaprotocol/vegacapsule
|
||||||
ref: v0.2.1
|
ref: main
|
||||||
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
||||||
path: './capsule'
|
path: './capsule'
|
||||||
|
|
||||||
@ -50,22 +50,24 @@ jobs:
|
|||||||
- name: Set GOBIN
|
- name: Set GOBIN
|
||||||
run: echo GOBIN=$(go env GOPATH)/bin >> $GITHUB_ENV
|
run: echo GOBIN=$(go env GOPATH)/bin >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Install binaries
|
|
||||||
run: vegacapsule install-bins
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
|
||||||
GOBIN: ${{ env.GOBIN }}
|
|
||||||
|
|
||||||
- name: Checkout Vega
|
- name: Checkout Vega
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: vegaprotocol/vega
|
repository: vegaprotocol/vega
|
||||||
ref: tm35.9
|
ref: develop
|
||||||
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
||||||
path: './vega'
|
path: './vega'
|
||||||
|
|
||||||
- name: Install binary from Vega repo
|
- name: Install Vega binaries
|
||||||
run: go install ./cmd/vega
|
run: go install -v ./cmd/vega
|
||||||
|
working-directory: vega
|
||||||
|
|
||||||
|
- name: Install Vega wallet binaries
|
||||||
|
run: go install ./cmd/vegawallet
|
||||||
|
working-directory: vega
|
||||||
|
|
||||||
|
- name: Install date-node binaries
|
||||||
|
run: go install ./cmd/data-node
|
||||||
working-directory: vega
|
working-directory: vega
|
||||||
|
|
||||||
######
|
######
|
||||||
|
24
.github/workflows/capsule-cypress.yml
vendored
24
.github/workflows/capsule-cypress.yml
vendored
@ -22,7 +22,7 @@ jobs:
|
|||||||
uses: actions/setup-go@v3
|
uses: actions/setup-go@v3
|
||||||
id: go
|
id: go
|
||||||
with:
|
with:
|
||||||
go-version: 1.18
|
go-version: 1.19
|
||||||
- name: Set up Node 16
|
- name: Set up Node 16
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
id: npm
|
id: npm
|
||||||
@ -38,7 +38,7 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: vegaprotocol/vegacapsule
|
repository: vegaprotocol/vegacapsule
|
||||||
ref: v0.2.1
|
ref: main
|
||||||
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
||||||
path: './capsule'
|
path: './capsule'
|
||||||
|
|
||||||
@ -52,22 +52,24 @@ jobs:
|
|||||||
- name: Set GOBIN
|
- name: Set GOBIN
|
||||||
run: echo GOBIN=$(go env GOPATH)/bin >> $GITHUB_ENV
|
run: echo GOBIN=$(go env GOPATH)/bin >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Install binaries
|
|
||||||
run: vegacapsule install-bins
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
|
||||||
GOBIN: ${{ env.GOBIN }}
|
|
||||||
|
|
||||||
- name: Checkout Vega
|
- name: Checkout Vega
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
repository: vegaprotocol/vega
|
repository: vegaprotocol/vega
|
||||||
ref: tm35.9
|
ref: develop
|
||||||
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
token: ${{ secrets.VEGA_CI_BOT_GITHUB_TOKEN }}
|
||||||
path: './vega'
|
path: './vega'
|
||||||
|
|
||||||
- name: Install binary from Vega repo
|
- name: Install Vega binaries
|
||||||
run: go install ./cmd/vega
|
run: go install -v ./cmd/vega
|
||||||
|
working-directory: vega
|
||||||
|
|
||||||
|
- name: Install Vega wallet binaries
|
||||||
|
run: go install ./cmd/vegawallet
|
||||||
|
working-directory: vega
|
||||||
|
|
||||||
|
- name: Install date-node binaries
|
||||||
|
run: go install ./cmd/data-node
|
||||||
working-directory: vega
|
working-directory: vega
|
||||||
|
|
||||||
######
|
######
|
||||||
|
@ -124,7 +124,7 @@ context('Staking Page - verify elements on page', function () {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// 1002-STKE-050
|
// 1002-STKE-050
|
||||||
describe.skip('Should be able to see static information about a validator', function () {
|
describe('Should be able to see static information about a validator', function () {
|
||||||
before('connect wallets and click on validator', function () {
|
before('connect wallets and click on validator', function () {
|
||||||
cy.vega_wallet_import();
|
cy.vega_wallet_import();
|
||||||
cy.vega_wallet_connect();
|
cy.vega_wallet_connect();
|
||||||
|
Loading…
Reference in New Issue
Block a user