We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2dd686 commit f3e8049Copy full SHA for f3e8049
.buildkite/hooks/pre-command
@@ -27,4 +27,8 @@ trap remove_pidfile EXIT
27
echo $$ > "$PIDFILE"
28
29
echo "Installing asdf dependencies as defined in '${WORKDIR}/.tool-versions':"
30
-asdf install
+if [ ! -f ".use-mise" ]; then
31
+ asdf install
32
+else
33
+ mise install
34
+fi
.use_mise
@@ -0,0 +1,6 @@
1
+Buildkite Agent CI use the presence of this file to determine whether it should install tools with mise or install them with ASDF.
2
+Thus if you delete this file, CI will use ASDF to install tools and not mise.
3
+
4
+The file is only meant to be here while we transition to using mise completely.
5
6
+For more information you can reach out to the dev-infra team on #discuss-dev-infra.
0 commit comments