Checking whether a given commit is included in a weekly build

Having trouble installing or compiling FreeCAD? Get help here.
Forum rules
Be nice to others! Respect the FreeCAD code of conduct!
Post Reply
User avatar
NewJoker
Veteran
Posts: 3089
Joined: Sun Oct 11, 2020 7:49 pm

Checking whether a given commit is included in a weekly build

Post by NewJoker »

Hi,

I would like to know how to find out whether a particular commit is included in a weekly build. I've found this thread: https://forum.freecadweb.org/viewtopic. ... 10&t=52274 but it seems to be outdated since now revision numbers are included in About FreeCAD and even in the name of the package published here: https://github.com/FreeCAD/FreeCAD-Bund ... kly-builds

So exactly how should I proceed if I want to check for example whether git commit c5a263bdd8 is available in the 30922 Windows build ?
User avatar
adrianinsaval
Veteran
Posts: 5553
Joined: Thu Apr 05, 2018 5:15 pm

Re: Checking whether a given commit is included in a weekly build

Post by adrianinsaval »

if you want to check using github's ui you can go in the commit page and first check if it is actually included in the branch corresponding to the release you have:
Captura de pantalla 2022-11-15 093645.png
Captura de pantalla 2022-11-15 093645.png (7.86 KiB) Viewed 663 times
master for the weekly builds, the corresponding releases/FreeCAD-*-* branch for the stable releases, development/toponaming for the toponaming beta
then click the "browse files" button and check the commit number:
Captura de pantalla 2022-11-15 093455.png
Captura de pantalla 2022-11-15 093455.png (9.04 KiB) Viewed 663 times
if the commit is in the corresponding branch for the version of freecad you have and that number is bellow or equal to the revision number of your version then it is included
NewJoker wrote: Tue Nov 15, 2022 10:29 am https://forum.freecadweb.org/viewtopic. ... 10&t=52274 but it seems to be outdated since now revision numbers are included in About FreeCAD and even in the name of the package published here: https://github.com/FreeCAD/FreeCAD-Bund ... kly-builds
that problem AFAIK was never about the appimage, it is the ubuntu and debian packages that don't get that info because they are built from snapshots of the source, not from a full git clone.
User avatar
NewJoker
Veteran
Posts: 3089
Joined: Sun Oct 11, 2020 7:49 pm

Re: Checking whether a given commit is included in a weekly build

Post by NewJoker »

adrianinsaval wrote: Tue Nov 15, 2022 12:42 pm that number is bellow or equal to the revision number of your version then it is included
Thank you, I didn't know that it's so straightforward.

I was trying to find this data when accessing commits from https://github.com/FreeCAD/FreeCAD/pull ... s%3Aclosed but it seems that it's necessary to go to https://github.com/FreeCAD/FreeCAD/commits instead.
Post Reply