I made a bitbucket pipeline, relevant bit shown below. It fails with:
bash:envsubst: command not found
pipeline yaml:
pipelines:
default:
- step:
name: Cypress UI tests
caches:
- npm
- cypress
image: cypress/base:10
script:
# install dependencies
- npm install npm@latest -g
- npm install gettext
# configure test
- envsubst < cypress.env.json
Hi, @Paule Grow! Welcome to the community!
I tested it on a personal repository and confirmed that the commands you were running were not installing envsubst. In order to install it, you can run the following command:
apt-get update && apt-get install gettext-base
After adding this line to your bitbucket-pipelines.yml, everything should work as expected.
I hope this helps, but please let me know if you have any questions.
Kind regards,
Caroline
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.