Greetings!
I've just started playing with Bitbucket's Pipelines, and cannot seem to get a pipeline to actually fire off with a push. I've started with a very simple bitbucket-pipelines.yml file, just to try and scope out what is available in the build environment:
pipelines:
branches:
main:
- step:
name: Show Build Environment Info
script:
- echo "Build environment: `uname -a`"
- echo "Current working directory: `pwd`"
- echo "Path to python3.11: `which python3.11`"
After pushing that and verifying that it exists with the Pipelines --> Review Pipeline button, if I try to use the Run initial pipeline button, I get a very brief pop-up, lasting just long enough that I can click the link to the Pipelines --> Settings page for the repo (if I'm very quick). The messaging there says that pipelines can be enabled by an admin (I am the only one for that repo), implying that they aren't enabled? But the Pipelines --> Settings page looks like it shows that pipelines are enabled: the Enable Pipelines toggle is green and checked.
If I let things progress, I get the Run Pipeline pop-up, and it'll let me select a Branch (main), but after a brief spinner appearance in the Pipeline selector, it doesn't resolve anything, and I cannot progress any further.
What am I missing?
Thanks in advance!
Never mind, after deleting and waiting for the Pipeline application to reinstall, I seem to be good.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.