You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmake is finding the 64 bit version of the Expat library instead of the 32 bit version.
During the CI migration to Github Actions, a bug was introduced such that Mason cmake is not being added to the PATH environment variable correctly, so it defaults to the cmake installed in the OS environment. This was recently auto-updated to version 3.22 in the Ubuntu Focal workers, leading to the regression in unrelated changes such as #6162
Fixing the use of Mason cmake also fails as it requires libssl 1.0 as a dependency, whilst the Ubuntu Focal runners are on the newer libssl 1.1
So the options to fix CI are to:
Understand the change in cmake 3.22 that leads to 32 bit libraries not being detected correctly and correct our CMakeLists.txt
Install libssl 1.0 on the Ubuntu CI workers
Add libssl 1.1 support to Mason cmake
1 seems like the preferred choice here.
The text was updated successfully, but these errors were encountered:
https://github.com/Project-OSRM/osrm-backend/runs/4360200799?check_suite_focus=true
cmake
is finding the 64 bit version of the Expat library instead of the 32 bit version.During the CI migration to Github Actions, a bug was introduced such that Mason
cmake
is not being added to thePATH
environment variable correctly, so it defaults to thecmake
installed in the OS environment. This was recently auto-updated to version3.22
in the Ubuntu Focal workers, leading to the regression in unrelated changes such as #6162Fixing the use of Mason
cmake
also fails as it requires libssl 1.0 as a dependency, whilst the Ubuntu Focal runners are on the newer libssl 1.1So the options to fix CI are to:
1 seems like the preferred choice here.
The text was updated successfully, but these errors were encountered: