Hi 👋 trying to run a machine executor. Clojure is clearly stated as pre-installed software but I cannot find it. Do I need to install it via apt-get?
hrm, where does it say clojure is installed, and which image are you using?
https://circleci.com/docs/2.0/docker-to-machine/?section=executors-and-images#pre-installed-software
Was using ubuntu-2004:202101-01
benchmark:
machine:
image: ubuntu-2004:202101-01
environment:
TIMBRE_LEVEL: ":warn"
steps:
- attach_workspace:
at: /home/circleci
- run: clojure -M:benchmark --db-server-url ${DB_URL} --db-name ${DB_NAME} --db-token ${DB_TOKEN} --tag ${CIRCLE_SHA1}
#!/bin/bash -eo pipefail
clojure -M:benchmark --db-server-url ${DB_URL} --db-name ${DB_NAME} --db-token ${DB_TOKEN} --tag ${CIRCLE_SHA1}
/bin/bash: clojure: command not found
Exited with code exit status 127
CircleCI received exit code 127
ah, looks like what we actually mean is that we install leiningen
i’ll feed back to the images/docs team
ok, thanks