77
88# Basic Phase - Run super fast things and things that commonly catch bugs
99 - label : " :linux: linters.sh"
10- command : .buildkite/linters.sh
10+ command : ' .buildkite/linters.sh < /dev/null '
1111 << : &elastic
1212 agents :
1313 os : linux
2929 - " /usr/local/var/bazelcache:/usr/local/var/bazelcache"
3030
3131 - label : " :mac: test-static-sanitized.sh (master only)"
32- command : .buildkite/test-static-sanitized.sh
32+ command : ' .buildkite/test-static-sanitized.sh < /dev/null '
3333 branches : " master"
3434 artifact_paths : _out_/profile.json
3535 agents :
@@ -40,35 +40,35 @@ steps:
4040 automatic : true
4141
4242 - label : " :linux: test-static-sanitized.sh"
43- command : .buildkite/test-static-sanitized.sh
43+ command : ' .buildkite/test-static-sanitized.sh < /dev/null '
4444 artifact_paths : _out_/profile.json
4545 << : *elastic
4646
4747 - label : " :linux: test-rbi-gen.sh"
48- command : .buildkite/test-rbi-gen.sh
48+ command : ' .buildkite/test-rbi-gen.sh < /dev/null '
4949 artifact_paths :
5050 - _out_/profile.json
5151 << : *elastic
5252
5353 - label : " :linux: test-vscode-extension.sh"
54- command : ' .buildkite/test-vscode-extension.sh'
54+ command : ' .buildkite/test-vscode-extension.sh < /dev/null '
5555 << : *elastic
5656
5757 - wait : ~
5858
5959# Build Phase - Build all our artifacts
6060 - label : " :linux: build-website.sh"
61- command : .buildkite/build-website.sh
61+ command : ' .buildkite/build-website.sh < /dev/null '
6262 artifact_paths : _out_/**/*
6363 << : *elastic
6464
6565 - label : " :linux: build-sorbet-runtime.sh"
66- command : .buildkite/build-sorbet-runtime.sh
66+ command : ' .buildkite/build-sorbet-runtime.sh < /dev/null '
6767 artifact_paths : _out_/**/*
6868 << : *elastic
6969
7070 - label : " :mac: build-static-release.sh (master only)"
71- command : .buildkite/build-static-release.sh
71+ command : ' .buildkite/build-static-release.sh < /dev/null '
7272 branches : master
7373 artifact_paths : _out_/**/*
7474 agents :
@@ -79,37 +79,37 @@ steps:
7979 automatic : true
8080
8181 - label : " :linux: build-static-release.sh"
82- command : .buildkite/build-static-release.sh
82+ command : ' .buildkite/build-static-release.sh < /dev/null '
8383 artifact_paths : _out_/**/*
8484 << : *elastic
8585
8686 - label : " :linux: (arm64) build-static-release.sh"
87- command : .buildkite/build-static-release.sh
87+ command : ' .buildkite/build-static-release.sh < /dev/null '
8888 artifact_paths : _out_/**/*
8989 << : *elastic
9090 agents :
9191 os : linux
9292 queue : elastic-arm64
9393
9494 - label : " :linux: build-sorbet-static-and-runtime.sh"
95- command : .buildkite/build-sorbet-static-and-runtime.sh
95+ command : ' .buildkite/build-sorbet-static-and-runtime.sh < /dev/null '
9696 artifact_paths : _out_/**/*
9797 << : *elastic
9898
9999 - label : " :linux: build-emscripten.sh"
100- command : .buildkite/build-emscripten.sh
100+ command : ' .buildkite/build-emscripten.sh < /dev/null '
101101 artifact_paths : _out_/**/*
102102 << : *elastic
103103
104104 - label : " :linux: build-vscode-extension.sh"
105- command : .buildkite/build-vscode-extension.sh
105+ command : ' .buildkite/build-vscode-extension.sh < /dev/null '
106106 artifact_paths : _out_/**/*
107107 << : *elastic
108108
109109 - wait : ~
110110
111111 - label : " :linux: build-static-release-java.sh (master only)"
112- command : .buildkite/build-static-release-java.sh
112+ command : ' .buildkite/build-static-release-java.sh < /dev/null '
113113 # this needs to be run when both linux & mac build-static-release
114114 # are done. at the moment, mac is only done on master branch
115115 branches : master
@@ -120,17 +120,17 @@ steps:
120120
121121# Deploy Phase - Send the artifacts to the world
122122 - label : " :linux: publish.sh"
123- command : .buildkite/publish.sh
123+ command : ' .buildkite/publish.sh'
124124 agents :
125125 os : linux
126126 - wait : ~
127127
128128# Success Phase - Allow the PR to be merged
129129 - label : " All tests and builds succeeded"
130- command : .buildkite/all-succeeded.sh
130+ command : ' .buildkite/all-succeeded.sh'
131131
132132 - label : " :linux: publish-ruby-gems.sh (non-blocking)"
133- command : .buildkite/publish-ruby-gems.sh
133+ command : ' .buildkite/publish-ruby-gems.sh < /dev/null '
134134 artifact_paths : _out_/corrupt/**/*
135135 << : *elastic
136136
0 commit comments