Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Jenkinsfile: problem: newline unexpected
Browse files Browse the repository at this point in the history
wtf?

Date: 2024-06-08 11:31:14-06:00
Signed-off-by: meows <[email protected]>
meowsbits committed Jun 8, 2024
1 parent 3064fac commit a0a442b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ pipeline {
sh "export GOROOT=/usr/local/go"
sh "/usr/local/go/bin/go version"
sh "mkdir -p ./build/bin && /usr/local/go/bin/go build -o ./build/bin/geth && sudo chmod +x ./build/bin/geth"
sh "./build/bin/geth version"
sh '''./build/bin/geth version'''
sh "rm -rf ${GETH_DATADIR}-mordor"
sh "shasum -a 256 -c ./tests/regression/shasums/mordor.0-1686858.rlp.gz.sha256"
sh "./build/bin/geth --mordor --fakepow --cache=2048 --nocompaction --nousb --txlookuplimit=1 --datadir=${GETH_DATADIR}-mordor import ${GETH_EXPORTS}/mordor.0-1686858.rlp.gz"
@@ -46,7 +46,7 @@ pipeline {
sh "export GOROOT=/usr/local/go"
sh "/usr/local/go/bin/go version"
sh "mkdir -p ./build/bin && /usr/local/go/bin/go build -o ./build/bin/geth && sudo chmod +x ./build/bin/geth"
sh "./build/bin/geth version"
sh '''./build/bin/geth version'''
sh "rm -rf ${GETH_DATADIR}-goerli"
sh "shasum -a 256 -c ./tests/regression/shasums/goerli.0-2000000.rlp.gz.sha256"
sh "./build/bin/geth --goerli --cache=2048 --nocompaction --nousb --txlookuplimit=1 --datadir=${GETH_DATADIR}-goerli import ${GETH_EXPORTS}/goerli.0-2000000.rlp.gz"

0 comments on commit a0a442b

Please sign in to comment.