-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI:add new builds #449
base: main
Are you sure you want to change the base?
CI:add new builds #449
Conversation
Signed-off-by: Raluca Groza <[email protected]>
Signed-off-by: Raluca Groza <[email protected]>
azure-pipelines.yml
Outdated
@@ -117,6 +117,10 @@ stages: | |||
image: tfcollins/libiio_ubuntu_18_04-ci-arm-ppc:latest | |||
arch: aarch64 | |||
artifactName: 'Ubuntu-arm64v8' | |||
bullseye: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you change name to have the same format: "debian_bullseye_arm64v8"?
And I think you can add a build for 32bit image just by specifying "arch: arm"
azure-pipelines.yml
Outdated
source: 'specific' | ||
project: '$(System.TeamProjectId)' | ||
pipeline: $(libiioPipelineId) | ||
artifact: 'Ubuntu-arm32v7' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -94,6 +94,63 @@ stages: | |||
|
|||
####################################### | |||
|
|||
- job: RPIBuilds | |||
pool: | |||
name: Default |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it ok to let the agent connected to "Default" pool?
I'm mean, if there are other jobs that are using "Default Pool" for building things, but without specifying an explicit agent, the build may go on this.
- script: | | ||
mkdir build && cd build | ||
cmake ../ | ||
make -j9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RPI do not have 9 CPU cores. This kind of builds will just kill it (freeze it) for at least few minutes.
Please check how many cores its CPU has and set make command to use maximum threads.
- task: PublishPipelineArtifact@1 | ||
inputs: | ||
targetPath: '$(Build.ArtifactStagingDirectory)' | ||
artifactName: 'RPI4-Bullseye' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add also architecture in the name of artifacts(armhf).
31f85b0
to
18defb4
Compare
Signed-off-by: Raluca Groza <[email protected]>
18defb4
to
d27fa75
Compare
Signed-off-by: Raluca Groza <[email protected]>
Add bullseye and rpi4 builds on Azure CI.