summaryrefslogtreecommitdiffstats
path: root/testing/get-coursier.sh
blob: 4c5e955de9d5b436abdeeff28835e50ee5ef52e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash
# This is a script used in CI to install coursier
set -euo pipefail

COURSIER_URL="https://github.com/coursier/coursier/releases/download/v2.0.0/cs-x86_64-pc-linux"
COURSIER_HASH="e2e838b75bc71b16bcb77ce951ad65660c89bda7957c79a0628ec7146d35122f"
ARTIFACT="/tmp/coursier/cs"

mkdir -p /tmp/coursier
rm -f "$ARTIFACT"
curl --location --silent --output "$ARTIFACT" "$COURSIER_URL"
echo "$COURSIER_HASH  $ARTIFACT" | sha256sum --check
chmod ugo+x /tmp/coursier/cs

echo '##vso[task.prependpath]/tmp/coursier'