#!/usr/bin/env bash cd "$(dirname $0)/../" project_name="__build_teaclient" source ../scripts/build_helper.sh function install_npm() { begin_task "${project_name}_update" "Installing NPM" npm install check_err_exit ${project_name} "Failed to install nodejs files!" npm update check_err_exit ${project_name} "Failed to update nodejs files!" end_task "${project_name}_update" "NPM installed" } function compile_scripts() { begin_task "${project_name}_tsc_sass" "Compiling TypeScript & SASS" ./build_declarations.sh check_err_exit ${project_name} "Failed to build shared ui import declarations!" npm run compile-tsc -- -p modules/tsconfig_main.json npm run compile-tsc -- -p modules/tsconfig_renderer.json npm run compile-tsc -- -p installer/tsconfig_linux.json check_err_exit ${project_name} "Failed to compile typescript files!" npm run compile-sass check_err_exit ${project_name} "Failed to compile sass files!" end_task "${project_name}_tsc_sass" "TypeScript & SASS compiled" echo "" } function compile_native() { begin_task "${project_name}_native" "Compiling native extensions" local build_path="native/out/${build_os_type}_${build_os_arch}/" [[ -d ${build_path} ]] && rm -r ${build_path} mkdir -p ${build_path} check_err_exit ${project_name} "Failed to create build directory!" cd ${build_path} check_err_exit ${project_name} "Failed to enter build directory!" local _arguments="" [[ ! -z "$tearoot_cmake_module" ]] && _arguments="${_arguments} -DCMAKE_MODULE_PATH=\"$tearoot_cmake_module\"" [[ ! -z "$tearoot_cmake_config" ]] && _arguments="${_arguments} -DCMAKE_PLATFORM_INCLUDE=\"$tearoot_cmake_config\"" [[ ! -z "$traroot_library" ]] && _arguments="${_arguments} -DLIBRARY_PATH=\"$traroot_library\"" _command="cmake ../../ -DCMAKE_BUILD_TYPE=RelWithDebInfo ${_arguments}" echo "Executing cmake command $_command" eval ${_command} check_err_exit ${project_name} "Failed create build targets!" cmake --build `pwd` --target teaclient_connection -- -j 12 check_err_exit ${project_name} "Failed build teaclient connection!" cmake --build `pwd` --target teaclient_crash_handler -- -j 12 check_err_exit ${project_name} "Failed build teaclient crash handler!" cmake --build `pwd` --target teaclient_ppt -- -j 12 check_err_exit ${project_name} "Failed build teaclient ppt!" end_task "${project_name}_native" "Native extensions compiled" } function package_client() { begin_task "${project_name}_package" "Packaging client" npm run build-linux-64 check_err_exit ${project_name} "Failed to package client!" end_task "${project_name}_package" "Client package created" } function deploy_client() { begin_task "${project_name}_package" "Deploying client" [[ -z ${teaclient_deploy_secret} ]] && { echo "Missing deploy secret. Dont deploy client!" return 0 } [[ -z ${teaclient_deploy_channel} ]] && { echo "Missing deploy channel. Dont deploy client!" return 0 } npm run package-linux-64 ${teaclient_deploy_channel} check_err_exit ${project_name} "Failed to deploying client!" end_task "${project_name}_package" "Client successfully deployed!" } install_npm compile_scripts compile_native package_client deploy_client