-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
skip conditions that are not present in domain (#118)
Signed-off-by: Henry Avetisyan <[email protected]>
- Loading branch information
1 parent
3800398
commit f80a216
Showing
8 changed files
with
61 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. | ||
|
||
shared: | ||
image: vespaengine/vespa-build-centos7:latest | ||
image: eclipse-temurin:11-jdk-focal | ||
settings: | ||
email: | ||
addresses: [[email protected]] | ||
|
@@ -30,12 +30,7 @@ jobs: | |
- SD_DEPLOY_KEY | ||
steps: | ||
- install-deps: | | ||
./scripts/goupdate.sh | ||
set -e | ||
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo | ||
yum -y install wget docker-ce-cli | ||
docker system info | ||
ls -la $SD_DIND_SHARE_PATH | ||
./scripts/install_deps.sh | ||
- tag-prerelease-version: | | ||
./scripts/git-tag.sh -r prerelease -t true | ||
- run-tests-prerelease-version: | | ||
|
@@ -58,12 +53,7 @@ jobs: | |
requires: [~pr] | ||
steps: | ||
- install-deps: | | ||
./scripts/goupdate.sh | ||
set -e | ||
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo | ||
yum -y install wget docker-ce-cli | ||
docker system info | ||
ls -la $SD_DIND_SHARE_PATH | ||
./scripts/install_deps.sh | ||
- unit-test: | | ||
make unit | ||
./execution/pr-acc-test.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
apt-get update | ||
apt-get clean | ||
apt-get autoremove | ||
|
||
echo "-----------------Install libs: -----------------" | ||
apt-get install -y libaio1 libnuma-dev build-essential libncurses5 aptitude net-tools gawk unzip | ||
|
||
echo "-----------------Install gcc: -----------------" | ||
apt-get install -y software-properties-common | ||
add-apt-repository -y ppa:ubuntu-toolchain-r/test | ||
apt-get install -y gcc | ||
apt-get install -y g++ | ||
|
||
echo "-----------------Install golang: -----------------" | ||
LATEST_GO_VERSION="$(curl --silent https://go.dev/VERSION?m=text | grep go)"; | ||
|
||
wget https://go.dev/dl/${LATEST_GO_VERSION}.linux-amd64.tar.gz | ||
tar -C /usr/local -xzf ${LATEST_GO_VERSION}.linux-amd64.tar.gz | ||
export PATH=$PATH:/usr/local/go/bin | ||
|
||
echo "-----------------Install Docker: -----------------" | ||
# Add Docker's official GPG key: | ||
apt-get update | ||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - | ||
apt-key fingerprint 0EBFCD88 | ||
|
||
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" | ||
apt-get update | ||
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin | ||
docker system info | ||
ls -la $SD_DIND_SHARE_PATH | ||
|
||
# check all installed dependencies | ||
echo "-----------------Golang Version: -----------------" | ||
go version | ||
echo "-----------------Docker Version: -----------------" | ||
docker version |