Skip to content

Commit

Permalink
To revert: authorize only Ninja generator to validate that current ci…
Browse files Browse the repository at this point in the history
… processes are not modified by this PR and still use Ninja generator.
  • Loading branch information
Algiane committed Aug 9, 2024
1 parent 1ad85c2 commit 66ed037
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions scripts/ci_build_and_test_in_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,8 @@ do
shift;;
--cmake-build-type) CMAKE_BUILD_TYPE=$2; shift 2;;
--build-generator)
if [[ -z "$2" || "Unix Makefiles" == "$2" ]] ; then
BUILD_GENERATOR=""
elif [[ "Eclipse CDT4 - Unix Makefiles" == "$2" ]] ; then
BUILD_GENERATOR="--eclipse"
elif [[ "Ninja" == "$2" ]] ; then
if [[ "Ninja" == "$2" ]] ; then
BUILD_GENERATOR="--ninja"
elif [[ "Xcode" == "$2" ]] ; then
BUILD_GENERATOR="--xcode"
else
echo "Unexpected generator passed to '--build-generator' option."
exit 1
Expand Down

0 comments on commit 66ed037

Please sign in to comment.