.builds: silence apt-get, curl commands

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2021-03-28 15:43:21 +02:00
parent c2e0910c8b
commit e49afe7fa1
+4 -4
View File
@@ -38,7 +38,7 @@ secrets:
tasks:
- install_go1_14: |
mkdir -p /home/build/sdk
curl https://dl.google.com/go/go1.14.linux-amd64.tar.gz | tar -C /home/build/sdk -xzf -
curl -s https://dl.google.com/go/go1.14.linux-amd64.tar.gz | tar -C /home/build/sdk -xzf -
- test_gio: |
cd gio
export EGL_PLATFORM=surfaceless # for headless tests
@@ -48,8 +48,8 @@ tasks:
- install_chrome: |
curl -s https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt update
sudo apt install -y google-chrome-stable
sudo apt-get -qq update
sudo apt-get -qq install -y google-chrome-stable
- test_cmd: |
cd gio/cmd
go test ./...
@@ -58,7 +58,7 @@ tasks:
GOFLAGS=-modfile=../go.local.mod go test
- install_jdk8: |
curl -so jdk.deb "https://cdn.azul.com/zulu/bin/zulu8.42.0.21-ca-jdk8.0.232-linux_amd64.deb"
sudo apt install -y -f ./jdk.deb
sudo apt-get -qq install -y -f ./jdk.deb
- install_android: |
mkdir android
cd android