This repository was archived by the owner on Dec 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
services/horizon/docker/verify-range Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -70,12 +70,10 @@ jobs:
7070 - uses : actions/checkout@v2
7171
7272 - name : Build and test the Verify Range Docker image
73- env :
74- COMMIT_SHA : ${{ github.sha }}
7573 run : |
7674 docker build -f services/horizon/docker/verify-range/Dockerfile -t stellar/horizon-verify-range services/horizon/docker/verify-range/
7775 # Any range should do for basic testing, this range was chosen pretty early in history so that it only takes a few mins to run
78- docker run -e BRANCH=${COMMIT_SHA } -e FROM=10000063 -e TO=10000127 stellar/horizon-verify-range
76+ docker run -e BRANCH=${GITHUB_SHA } -e FROM=10000063 -e TO=10000127 stellar/horizon-verify-range
7977
8078 # Push
8179 - if : ${{ github.ref == 'master' }}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ echo "deb https://apt.stellar.org $(lsb_release -cs) unstable" | sudo tee -a /et
1111apt-get update
1212apt-get install -y stellar-core=${STELLAR_CORE_VERSION}
1313
14- wget https://dl.google.com/go/go1.17.linux-amd64.tar.gz
14+ wget -q https://dl.google.com/go/go1.17.linux-amd64.tar.gz
1515tar -C /usr/local -xzf go1.17.linux-amd64.tar.gz
1616
1717# configure postgres
@@ -25,5 +25,5 @@ cd stellar-go
2525# By default "git fetch" only fetches refs/<branchname>
2626# Below ensures we also fetch PR refs
2727git config --add remote.origin.fetch " +refs/pull/*/head:refs/remotes/origin/pull/*"
28- git fetch --force --quiet origin
28+ git fetch --force origin
2929/usr/local/go/bin/go build -v ./services/horizon
You can’t perform that action at this time.
0 commit comments