forked from sourcegraph/deploy-sourcegraph
-
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.
upgrade pulumi version to 1.12.0 (sourcegraph#544)
- Loading branch information
Showing
16 changed files
with
431 additions
and
162 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eu | ||
cd $BUILDKITE_BUILD_CHECKOUT_PATH | ||
pushd $(dirname "${BASH_SOURCE[0]}")/../.. | ||
|
||
echo "Installing asdf dependencies as defined in '$BUILDKITE_BUILD_CHECKOUT_PATH/.tool-versions':" | ||
asdf install | ||
TOOL_VERSION_FILES=() | ||
mapfile -d $'\0' TOOL_VERSION_FILES < <(fd .tool-versions --hidden --absolute-path --print0) | ||
|
||
asdf global kubectl 1.17.3 | ||
for file in "${TOOL_VERSION_FILES[@]}" | ||
do | ||
echo "Installing asdf dependencies as defined in ${file}:" | ||
parent=$(dirname "${file}") | ||
pushd "${parent}" | ||
|
||
asdf install | ||
|
||
popd | ||
done | ||
|
||
popd |
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,10 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd $(dirname "${BASH_SOURCE[0]}")/.. | ||
set -euxo pipefail | ||
|
||
cd tests/integration/fresh/step1 | ||
|
||
yarn | ||
|
||
yarn run prettier-check |
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 @@ | ||
12.16.1 |
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,5 @@ | ||
golang 1.14 | ||
yarn 1.22.4 | ||
kubectl 1.17.3 | ||
pulumi 1.12.0 | ||
fd 7.4.0 |
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 |
---|---|---|
@@ -1,15 +1,12 @@ | ||
module github.com/sourcegraph/deploy-sourcegraph | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
require ( | ||
github.com/docker/docker v1.13.1 // indirect | ||
github.com/frankban/quicktest v1.4.2 | ||
github.com/pulumi/pulumi v1.0.0 | ||
github.com/pulumi/pulumi v1.12.0 | ||
github.com/sethgrid/pester v0.0.0-20190127155807-68a33a018ad0 | ||
github.com/stretchr/testify v1.4.0 // indirect | ||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect | ||
google.golang.org/appengine v1.5.0 // indirect | ||
) | ||
|
||
replace golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373 => golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 | ||
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.4.3+incompatible |
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 @@ | ||
12.16.1 |
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,2 @@ | ||
yarn 1.22.4 | ||
pulumi 1.12.0 |
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,16 +1,21 @@ | ||
{ | ||
"name": "steps", | ||
"scripts": { | ||
"prettier": "prettier '**/{*.{js?(on),ts?(x),graphql,md,scss},.*.js?(on)}' --write --list-different --config prettier.config.js", | ||
"prettier-check": "yarn -s run prettier --write=false" | ||
}, | ||
"devDependencies": { | ||
"@sourcegraph/prettierrc": "3.0.1", | ||
"@types/node": "latest", | ||
"fast-glob": "^3.2.2", | ||
"prettier": "1.18.2", | ||
"tslint": "5.19.0", | ||
"tslint-config-prettier": "1.18.0" | ||
}, | ||
"dependencies": { | ||
"@pulumi/gcp": "1.3.0", | ||
"@pulumi/kubernetes": "1.2.2", | ||
"@pulumi/pulumi": "1.3.1", | ||
"@pulumi/pulumi": "1.12.0", | ||
"change-case": "^3.1.0" | ||
} | ||
} |
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 +1 @@ | ||
module.exports = require("@sourcegraph/prettierrc"); | ||
module.exports = require('@sourcegraph/prettierrc') |
Oops, something went wrong.