Subversion Repositories tpanel

Rev

Rev 363 | Rev 469 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 363 Rev 383
Line 3... Line 3...
3
set -o pipefail
3
set -o pipefail
4
# determine script directory
4
# determine script directory
5
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
5
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
6
ROOT_DIR="${SCRIPT_DIR}/.."
6
ROOT_DIR="${SCRIPT_DIR}/.."
7
LOG_FILE="${ROOT_DIR}/workflow.log"
7
LOG_FILE="${ROOT_DIR}/workflow.log"
8
export QT_DIR="/opt/Qt/6.5.2/gcc_64"
8
export QT_DIR="/opt/Qt/6.6.0/gcc_64"
9
export CMAKE_PREFIX_PATH="${QT_DIR}/lib/cmake"
9
export CMAKE_PREFIX_PATH="${QT_DIR}/lib/cmake"
10
 
10
 
11
# the first parameter is the branch, that is currently being built
11
# the first parameter is the branch, that is currently being built
12
BRANCH="$1"
12
BRANCH="$1"
13
 
13