-
Notifications
You must be signed in to change notification settings - Fork 26
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
Noetic binary builds failing on the buildfarm #54
Comments
Missing |
I believe so. Do you think that should solve the build issue? |
Only partially I believe. I can't find it right now, but I'm not sure when the buildfarm will consider Who would have to set Is there a reason you're not using vanilla CMake Edit: you could run a prerelease test to see whether your package builds successfully. The site should allow you to generate a command with multiple source repositories. |
It was more for convenience because if I have all the repositories in one workspace and set the ENABLE_TESTING it would build everything. This allow for easily building just a given repositories without having to manually specify all of the package in the command line. Though I could add both if where if either are set it builds the tests if that is preferred. |
Could be related: ros-infrastructure/ros_buildfarm#870 (but I remember other discussions about this). |
@gavanderhoorn I have a question related to to the build farm. I submitted a new version of ros_industrial_cmake_boilerplate and opw_kinematics with the changes to only enable code coverage when the compiler flag is set. Since both are submitted when they build on the buildfarm will opw_kinematics use the new version submitted or will it use the previously released version? |
The buildfarm starts builds for various reasons, one being new releases, but also new releases of dependencies. So even if |
@gavanderhoorn I just ran the pretest with the latest opw_kinematics and ros_industrial_cmake_boilerplate without any errors. Though it did not run any tests because you have to set OPW_ENABLE_TESTS. Should I update the enable test to be: |
Also it is still failing on the build farm but the pretest is passing. I believe it may be related to the build farm issue you provided, though I would have expected the pretest to also fail. Should I switch these depends to |
Thank you for the clarification. |
@gavanderhoorn Everything is now building when going through the pretest process. The ros_industrial_cmake_boilerplate has successfully build on Jenkins but it appears that opw_kinematics is still leveraging the old version of ros_industrial_cmake_poilerplate. I assume at some point it will get triggered to build with the new version. |
It looks like now it is failing due to compiler option -mno-avx on arm. I have a PR to disable this option. |
@gavanderhoorn I believe the issue may be resolved now but it is unclear how to best check this. Is there any documentation on how to track your packages progress when releasing on the buildfarm? One on the status page is still marked missing so I assume that is not a failure just that it has not been synced yet; is that correct? |
For Noetic the table basically states that there were successful source builds for the current version and the previous one, but the binary build only succeeded for the latest release. The last square is red because a sync is indeed needed to get the build artefacts from the last successful build into the main repositories. Edit: I don't know whether you'd call it documentation, but the ROSCon 2016 Seoul Day 2: The ROS build farm - what it can do for me (slides) presentation goes into some detail on how it all works. Slide 21 goes over the status page and the columsn there. |
@gavanderhoorn It looks like everything is green now. Should this be closed? |
Yes, seems like it's all resolved. thanks @Levi-Armstrong 👍 |
Looks like none of the binary builds have succeeded since this packages was released: Nbin_uF64__opw_kinematics__ubuntu_focal_amd64__binary. See also status_page/ros_noetic_default.html?q=opw.
Source build only succeeded since the
0.4.0
release: Nsrc_uF__opw_kinematics__ubuntu_focal__source. Not sure what changed there.Example log from the failed binary build:
From the trace, it seems
ros_industrial_cmake_boilerplate
is not findinglcov
and then bailing (which is probably because it's only listed as atest_depend
).Should
initialize_code_coverage()
only be called withinif (OPW_ENABLE_TESTING)
?The text was updated successfully, but these errors were encountered: