Skip to content

Commit 7ad9b23

Browse files
authored
Implement support for custom build script inside CI Action on Github Part 2 (Command line) #458 (#459)
* Implement support for custom build script inside CI Action on Github #451 * Implement support for custom build script inside CI Action on Github Part 2 (Command line) #458
1 parent 4bd1698 commit 7ad9b23

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

docker/release_distribution_scripts/utbot_run_system.sh

+20-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222
# Check if arguments are correct
2323
if [ "$1" != "cli" ] && [ "$1" != "server" ] && [ "$1" != "test" ]
2424
then
25-
echo "Wrong UTBOT_MODE: expected cli|server|test"
25+
echo "Wrong execution mode: expected cli|server|test"
2626
exit 1
2727
fi
2828

@@ -102,7 +102,6 @@ source $COMMON_FUNCTIONS_SCRIPT_PATH
102102

103103
if [ "$1" = "server" ]
104104
then
105-
UTBOT_MODE=server
106105
if [ -z "$2" ]
107106
then
108107
export UTBOT_PORT=2121
@@ -112,7 +111,7 @@ then
112111

113112
#Server-specific parameters
114113
UTBOT_EXECUTABLE_PATH=$UTBOT_BINARIES_FOLDER/$UTBOT_PROCESS_PATTERN
115-
UTBOT_SERVER_OPTIONS="$UTBOT_MODE --port $UTBOT_PORT --log=$UTBOT_LOGS_FOLDER"
114+
UTBOT_SERVER_OPTIONS="server --port $UTBOT_PORT --log=$UTBOT_LOGS_FOLDER"
116115
UTBOT_STDOUT_LOG_FILE=$UTBOT_LOGS_FOLDER/logs/"latest.log"
117116

118117
log "Starting a new server process; logs are written into [$UTBOT_LOGS_FOLDER] folder"
@@ -126,14 +125,30 @@ then
126125
#Online-cli-specific parameters
127126
UTBOT_EXECUTABLE_PATH=$UTBOT_BINARIES_FOLDER/$UTBOT_PROCESS_PATTERN
128127
UTBOT_CLI_OPTIONS="${@:2}"
128+
UTBOT_BUILD_SCRIPT="utbot_build.sh"
129+
UTBOT_BUILD_SCRIPT_RUNNER="utbot_configure.sh"
129130

130131
if [ "$2" == "generate" ]
131132
then
132133
PROJECT_PATH=$4
133134
mkdir -p $PROJECT_PATH/build
134135
cd $PROJECT_PATH/build || exit
135-
cmake ..
136-
bear make
136+
137+
if [ -f "../$UTBOT_BUILD_SCRIPT" ]
138+
then
139+
echo "Trying to run '$UTBOT_BUILD_SCRIPT'!"
140+
echo "#!/bin/bash
141+
# This file is automatically generated by UnitTestBot. For further information see https://www.utbot.org
142+
cd ..
143+
./$UTBOT_BUILD_SCRIPT" > $UTBOT_BUILD_SCRIPT_RUNNER
144+
chmod +x $UTBOT_BUILD_SCRIPT_RUNNER
145+
bear "./$UTBOT_BUILD_SCRIPT_RUNNER"
146+
else
147+
echo "Trying to run 'cmake' and 'make'!"
148+
cmake ..
149+
bear make
150+
fi
151+
137152
cd $CURRENT_FOLDER || exit
138153
fi
139154

0 commit comments

Comments
 (0)