forked from lulzzz/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bedrock Testing V2: Parallelized testing through multi agent hosted j…
…obs (#566) * Update azure-pipelines.yml for Azure Pipelines * Init commit for synchronous Integration Tests and parallel jobs * Added support for parallelization of Bedrock builds (#565) * adding ssh-keygen missing from 2 integration test
- Loading branch information
1 parent
b0dfb1e
commit 1836ff8
Showing
2 changed files
with
173 additions
and
139 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
steps: | ||
- script: | | ||
mkdir -p '$(GOBIN)' | ||
mkdir -p '$(GOPATH)/pkg' | ||
mkdir -p '$(modulePath)' | ||
shopt -s extglob | ||
shopt -s dotglob | ||
mv !(gopath) '$(modulePath)' | ||
echo '##vso[task.prependpath]$(GOBIN)' | ||
echo '##vso[task.prependpath]$(GOROOT)/bin' | ||
displayName: 'Set up Go workspace' | ||
|
||
- script: | | ||
terraform -version | ||
wget https://releases.hashicorp.com/terraform/$(tf_version)/terraform_$(tf_version)_linux_amd64.zip -q | ||
unzip -q terraform_$(tf_version)_linux_amd64.zip | ||
sudo mv terraform /usr/local/bin | ||
terraform -version | ||
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl | ||
chmod +x ./kubectl | ||
sudo mv ./kubectl /usr/local/bin/kubectl | ||
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get > get_helm.sh | ||
chmod 700 get_helm.sh | ||
./get_helm.sh | ||
displayName: 'Install terraform, kubectl, helm' |