Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

How to pass bitbucket-pipelines variables to windows runner pipeline

Hello, 

I am having an issue with setting up a build in a self hosted windows runner. This is what we have described in bitbucket-pypelines.yml

- step:
runs-on:
- self.hosted
- windows
name: Build
script:
- $version = (Get-Date).ToString("MM-dd") + "." + $BITBUCKET_BUILD_NUMBER + "-demo-" + $BITBUCKET_BRANCH
- Write-Output $version

 The output for version is:

06-09.-demo-

when we expect to get something like this:

06-09.150-demo-BRANCH-10 

 The default Bitbucket variables are not passed and thus are empty.

We have also tried writing the script like, but it also did not work:

- $version = (Get-Date).ToString("MM-dd") + "." + ${BITBUCKET_BUILD_NUMBER} + "-demo-" + ${BITBUCKET_BRANCH}

Is there a proper way on how to pass those pipelines variables, and if yes, how can I do that?

1 answer

1 vote
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jun 15, 2022

Hi @Julius Sirutis,

Windows Runners run directly on Powershell so you need to use different syntax for referencing variables.

I have tested the following and it seems to work ok:

- $version = (Get-Date).ToString("MM-dd") + "." + $env:BITBUCKET_BUILD_NUMBER + "-demo-" + $env:BITBUCKET_BRANCH

Could you give it a try and let me know if it works for you as well?

Kind regards,
Theodora

Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jun 21, 2023

Hi Steve,

I'm glad this was helpful. I have raised this with the team that maintains the documentation.

Kind regards,
Theodora

Like Steve Hills likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events