13 lines
466 B
Bash
13 lines
466 B
Bash
#!/bin/bash
|
|
|
|
echo $PUB | dart pub token add https://git.zontreck.com/api/packages/AriasCreations/pub
|
|
|
|
mkdir -pv ~/.gradle
|
|
echo $GRADLEPROP | base64 -d > ~/.gradle/gradle.properties
|
|
|
|
mkdir -pv ~/.ssh
|
|
echo "$PRIVKEY" | base64 -d > ~/.ssh/id_rsa
|
|
echo "$PUBKEY" | base64 -d > ~/.ssh/id_rsa.pub
|
|
chmod 0600 ~/.ssh/id_rsa
|
|
|
|
java -Dfile.encoding=UTF-8 -Dsun.jnu.encoding=UTF-8 -jar /agent.jar -url "https://ci.zontreck.com" -secret "$AGENT" -name "Linux" -workDir "/builder"
|