I'm not sure how useful it is, but I found this: http://stackoverflow.com/questions/20185268/how-to-remove-warning-link-res-contains-output-sections-did-you-forget-t
apparently its a well known issue; it's even in the pascal faq - http://www.freepascal.org/faq.var#unix-ld219
From your comment ,"did you forget -T?" isn't the point that output failed.
Do the Bitbucket pipeline can output files(e.g: execution file......) and storage somewhere?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
it's an open feature request currently: https://bitbucket.org/site/master/issues/13114/provide-a-way-to-store-view-artifacts
there's some integrations such as our S3 example that might be useful to you ![]()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can S3 storage execution file after finishing pipeline?
I have tried other and it just storage the docs(or text) from pushing ,not execution file after finishing pipeline.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes S3 is just a storage.
I'm not sure exactly what your project does or produces. If the output of lazbuild is executable you can just run multiple commands eg.
pipelines:
default:
- step:
script:
- lazbuild project1.lpr
- echo "Printing contents of working directory"
- ls -hal
- echo "Executing command"
- ./project1if your project needs to be deployed to a PaaS or similar, https://bitbucket.org/account/user/awslabs/projects/BP and https://github.com/GoogleCloudPlatform/continuous-deployment-bitbucket might be helpful ![]()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Wow,I use your eg. and get some message
1486087563969.jpg
cannot open display
c
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if your project requires a display/X-server you wont be able to run it within Bitbucket Pipelines. You'll have to upload it to S3, or an appropriate PaaS like AWS or Google cloud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Claire, I've not had much experience with lazarus/lazbuild, does lazbuild just write founds to the current directory?
Do you have any more details what that error message means?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.