Browse Source

.github: [jepsen] fix directory name (#6138)

```
bash: line 0: cd: tendermint: No such file or directory
```
pull/6139/head
Anton Kaliaev 3 years ago
committed by GitHub
parent
commit
a48c6bdf5e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      .github/workflows/jepsen.yml

+ 1
- 1
.github/workflows/jepsen.yml View File

@ -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 }}'

Loading…
Cancel
Save