The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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
Beginning on April 4th, we will be implementing push limits. This means that your push cannot be completed if it is over 3.5 GB. If you do attempt to complete a push that is over 3.5 GB, it will fail...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.