ci: cleanup Ganache container after tests finish

We've had too many leftover containers conflicting with new ones.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-05-05 17:28:29 +02:00
parent f94b071a84
commit 8fafc367eb
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 16 additions and 9 deletions

View File

@ -44,14 +44,16 @@ pipeline {
} } }
}
stage('Ganache') { steps { script {
ganache = docker.image(
'trufflesuite/ganache:v7.4.1'
).run(
["-p 127.0.0.1:${env.GANACHE_RPC_PORT}:8545"].join(' '),
["-m='${GANACHE_MNEMONIC}'"].join(' ')
)
} } }
stage('Ganache') {
steps { script {
ganache = docker.image(
'trufflesuite/ganache:v7.4.1'
).run(
"-p 127.0.0.1:${env.GANACHE_RPC_PORT}:8545",
"-m='${GANACHE_MNEMONIC}'"
)
} }
}
stage('On-chain tests') {
environment {
@ -68,6 +70,11 @@ pipeline {
} }
success { script { github.notifyPR(true) } }
failure { script { github.notifyPR(false) } }
cleanup { cleanWs() }
cleanup { script {
cleanWs()
catchError {
ganache.stop()
}
} }
}
}