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 configure a Command task in a bamboo.yaml file

Our organization is using bamboo.yaml files to configure our CI/CD environment.

We have several dotnet projects, and we are building them using a combination of msbuild and dotnet build.

We are able to manually create a build plan using a Command task that executes dotnet.exe passing in the build parameters.

We would like to configure this build plan and job with a bamboo.yaml file, but I'm not seeing any documentation explaining how to configure a Command task in yaml. The Java Specs configuration is below. Is there a yaml equivalent?

new CommandTask()
.description("dotnet publish")
.executable("dotnet")
.argument("publish -o \".\\bin\""))))

 

 

1 answer

You can use the below example YAML commands to execute, Let me know if it works for you.

 

---
version: 2
plan:
  project-key: TEC
  key: ROCKET
  name: Application  for build
stages:
  - Build Stage:
    - Build   Build:
  tasks:
  - clean
  - script:
      - cd C:\Windows\Microsoft.NET\Framework64\v4.0.30319
      - dir
      - msbuild C:\Users\user\bamboo-agent-home\xml-data\build-dir\TEC-ROCKET-JOB1\bamboo-specs\ABC.sln /t:Rebuild /p:Configuration=Debug

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events