Skip to content

Commit 0a62e6a

Browse files
committed
Toolchain: Use curl instead of wget, select matching Starter version
arangodb/ubuntubuildarangodb-devel:15 and later do not include wget by default, and the Starter version was previously hardcoded
1 parent 63f6bf1 commit 0a62e6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.circleci/base_config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ commands:
168168
- run:
169169
name: Create archive of compiled instance
170170
command: |
171-
wget -O build/bin/arangodb https://github.com/arangodb-helper/arangodb/releases/download/0.15.8/arangodb-linux-amd64
171+
STARTER_VERSION=$(awk -F\" '/^STARTER_REV/ {print $2}' VERSIONS)
172+
curl -L -o build/bin/arangodb "https://github.com/arangodb-helper/arangodb/releases/download/$STARTER_VERSION/arangodb-linux-amd64"
172173
chmod +x build/bin/arangodb
173174
tar -czf install.tar.gz build/ scripts/ js/ etc/ utils/ enterprise/
174175
- run:

0 commit comments

Comments
 (0)