Skip to content

Commit

Permalink
GitHub action: using DVM v0.3.1 release in integ tests (#125)
Browse files Browse the repository at this point in the history
* GitHub action: using DVM v0.3.1 release in integ tests

* Logs removed
  • Loading branch information
Mikhail Kornilov committed May 22, 2020
1 parent 97b1a40 commit 4cca285
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ jobs:
- name: Run INTEG tests
run: |
docker login -u ${OWN_REGISTRY_USR} --password-stdin ${REGISTRY} <<< ${OWN_REGISTRY_PWD}
docker image pull ${REGISTRY}/dfinance/dvm:${DVM_TAG}
docker image pull ${REGISTRY}/dfinance/dvm:${TAG}
cd go/src/github.com/${{ github.repository }}
go test ./... --tags=integ
docker logout
env:
DVM_TAG: ${{ secrets.DVM_TAG }}
TAG: v0.3.1
REGISTRY: ${{ secrets.OWN_REGISTRY }}
OWN_REGISTRY_USR: ${{ secrets.OWN_REGISTRY_USR }}
OWN_REGISTRY_PWD: ${{ secrets.OWN_REGISTRY_PWD }}
Expand Down
2 changes: 1 addition & 1 deletion app/integ_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func Test_VMExecuteScript(t *testing.T) {
//t.Parallel()
ct := cliTester.New(
t,
true,
false,
cliTester.VMConnectionSettings(50, 1000, 100),
cliTester.VMCommunicationBaseAddress("tcp://127.0.0.1"),
)
Expand Down

0 comments on commit 4cca285

Please sign in to comment.