Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Commit 05e96e3

Browse files
committed
See why the current PR commit is missing
1 parent 20578b4 commit 05e96e3

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/horizon.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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' }}

services/horizon/docker/verify-range/dependencies

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ echo "deb https://apt.stellar.org $(lsb_release -cs) unstable" | sudo tee -a /et
1111
apt-get update
1212
apt-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
1515
tar -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
2727
git 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

0 commit comments

Comments
 (0)