From a48c6bdf5e4c1388ba5aa342592f9e75a3c474cf Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Thu, 18 Feb 2021 16:10:52 +0400 Subject: [PATCH] .github: [jepsen] fix directory name (#6138) ``` bash: line 0: cd: tendermint: No such file or directory ``` --- .github/workflows/jepsen.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jepsen.yml b/.github/workflows/jepsen.yml index a49f34868..314892e0b 100644 --- a/.github/workflows/jepsen.yml +++ b/.github/workflows/jepsen.yml @@ -45,4 +45,4 @@ jobs: run: ./bin/up --daemon - name: Run the test - run: docker exec -i jepsen-control bash -c 'cd tendermint; lein run test --nemesis ${{ github.event.inputs.nemesis }} --workload ${{ github.event.inputs.workload }} --concurrency ${{ github.event.inputs.concurrency }} --tendermint-url ${{ github.event.inputs.tendermintUrl }} --merkleeyes-url ${{ github.event.inputs.merkleeyesUrl }} --time-limit ${{ github.event.inputs.timeLimit }} ${{ github.event.inputs.dupOrSuperByzValidators }}' + run: docker exec -i jepsen-control bash -c 'cd /jepsen/tendermint; lein run test --nemesis ${{ github.event.inputs.nemesis }} --workload ${{ github.event.inputs.workload }} --concurrency ${{ github.event.inputs.concurrency }} --tendermint-url ${{ github.event.inputs.tendermintUrl }} --merkleeyes-url ${{ github.event.inputs.merkleeyesUrl }} --time-limit ${{ github.event.inputs.timeLimit }} ${{ github.event.inputs.dupOrSuperByzValidators }}'