Skip to content

Commit 69d701b

Browse files
committed
Download the windows tracer home zip from github instead
1 parent 8eebf59 commit 69d701b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.gitlab/download-single-step-artifacts.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,20 @@ if [ -n "$CI_COMMIT_TAG" ] || [ -n "$DOTNET_PACKAGE_VERSION" ]; then
1717
done
1818

1919
if [ -n "$CI_COMMIT_SHA" ]; then
20-
echo "Downloading Windows fleet-installer from S3"
21-
2220
# Put this in the same place the "build" stage does
2321
win_target_dir=artifacts-out
2422
mkdir -p $win_target_dir
2523

24+
echo "Downloading Windows Tracer Home from Github"
2625
curl --location --fail \
27-
--output $win_target_dir/fleet-installer.zip \
28-
"https://dd-windowsfilter.s3.amazonaws.com/builds/tracer/${CI_COMMIT_SHA}/fleet-installer.zip"
26+
--output $win_target_dir/windows-tracer-home.zip \
27+
"https://github.com/DataDog/dd-trace-dotnet/releases/download/v${VERSION}/windows-tracer-home.zip"
28+
29+
echo "Downloading Windows fleet-installer from S3"
2930

3031
curl --location --fail \
31-
--output $win_target_dir/windows-tracer-home.zip \
32-
"https://dd-windowsfilter.s3.amazonaws.com/builds/tracer/${CI_COMMIT_SHA}/windows-tracer-home.zip"
32+
--output $win_target_dir/fleet-installer.zip \
33+
"https://dd-windowsfilter.s3.amazonaws.com/builds/tracer/${CI_COMMIT_SHA}/fleet-installer.zip"
3334
fi
3435

3536
echo -n $VERSION > $target_dir/version.txt

0 commit comments

Comments
 (0)