Skip to content

Commit

Permalink
Jenkinsfile: syntax problem
Browse files Browse the repository at this point in the history
Date: 2024-06-08 11:51:55-06:00
Signed-off-by: meows <[email protected]>
  • Loading branch information
meowsbits committed Jun 8, 2024
1 parent 7aa8e50 commit 25aaf5e
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
Expand Up @@ -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 "sudo cp ./build/bin/geth /usr/bin/ && echo $(which geth)"
sh "sudo cp ./build/bin/geth /usr/bin/ && which geth"
sh "geth version"
sh "rm -rf ${GETH_DATADIR}-mordor"
sh "shasum -a 256 -c ./tests/regression/shasums/mordor.0-1686858.rlp.gz.sha256"
Expand All @@ -47,7 +47,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 "sudo cp ./build/bin/geth /usr/bin/ && echo $(which geth)"
sh "sudo cp ./build/bin/geth /usr/bin/ && which geth"
sh "geth version"
sh "rm -rf ${GETH_DATADIR}-goerli"
sh "shasum -a 256 -c ./tests/regression/shasums/goerli.0-2000000.rlp.gz.sha256"
Expand Down

0 comments on commit 25aaf5e

Please sign in to comment.