You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
So we have a build pipeline that builds a Linux kernel, and we use Microsoft Teams for project files. The artifact we end up with is 1.3GB, which is over the 1GB limit to be available in the pipeline GUI. We'd like to put the file into the Teams folder the project team is using, which leverages OneDrive on the backend. Has anyone had luck getting files from Bitbucket over to OneDrive? Or even uploading files from a linux container or build server to OneDrive programmatically?
Hey Phil!
Whilst Bitbucket Cloud does not formally support OneDrive, and providing assistance with scripting is outside of our support scope, here are some possible things that you can try:
pipelines:
default:
- step:
script:
- apt-get update
- apt-get -qq install zip curl
- mkdir $FOLDERNAME
- cp folderpath/filepath.extension $FOLDERNAME/
- zip -r $FOLDERNAME.zip $FOLDERNAME/
- curl INSERTAPICOMMANDHERE
Hope this helps to steer you in the right direction.
Cheers!
- Ben (Bitbucket Cloud Support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.