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
Run cmake -E make_directory "${BUILD_DIR}"
-- Found Git: /opt/homebrew/bin/git (found version "2.47.0")
fatal: No names found, cannot describe anything.
-- Get version from file
-- CADET version: 4.4.0
Steps to Reproduce the Problem
Check any CI log
The text was updated successfully, but these errors were encountered:
The same message appears in the logs of win and linux builds as well.
It is caused by running the command
git describe --abbrev=0 HEAD
This should return the highest / most recent / latest version tag.
However, the repos are only checked out in shallow mode to save time and space. Hence, no tags are downloaded and this is way the command fails.
As a backup, the version is loaded from file version.txt in this case. This way, we can still have the correct version baked into the binaries (provided that version.txt is correct).
Actual Behavior
Build log on MacOS works but prints this log:
Steps to Reproduce the Problem
The text was updated successfully, but these errors were encountered: