Skip to content
This repository was archived by the owner on Jul 27, 2022. It is now read-only.

Commit 2c51f13

Browse files
bors[bot]tomtau
andauthored
Merge #674
674: Problem: blocking drone exec pipeline r=tomtau a=tomtau Solution: made it to be executed only on bors commands + updated the sig Co-authored-by: Tomas Tauber <2410580+tomtau@users.noreply.github.com>
2 parents 724c066 + 8770852 commit 2c51f13

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.drone.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,17 +140,22 @@ steps:
140140
- name: teardown
141141
commands:
142142
- cd integration-tests/jail
143-
- export JAIL_CLIENT_RPC=9981
144-
- export JAIL_CHAIN_RPC=26657
145143
- ./shutdown.sh
146144
when:
147145
status:
148146
- success
149147
- failure
150148

149+
trigger:
150+
branch:
151+
- master
152+
- staging
153+
- trying
154+
event:
155+
- push
151156

152157
---
153158
kind: signature
154-
hmac: dae5cd458b9f583fe5d3d01f64776c6af23ea9bd9a8c651db4f840ac2fb79d6c
159+
hmac: b0227856638a61f1a221c4bae23276462a9200632ebeb3ad60aae3c27f61af02
155160

156161
...

integration-tests/jail/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ services:
88
- ./disk/config0:/root/config
99
image: chain_test0
1010
ports:
11-
- ${JAIL_CLIENT_RPC}:9981
12-
- ${JAIL_CHAIN_RPC}:26657
11+
- ${JAIL_CLIENT_RPC:-9981}:9981
12+
- ${JAIL_CHAIN_RPC:-26657}:26657
1313
command: /root/disk/go_test.sh
1414
environment:
1515
RUST_BACKTRACE: 1

0 commit comments

Comments
 (0)