diff --git a/.github/workflows/diff.yaml b/.github/workflows/diff.yaml index 40ee3e7dd..fdc8b9586 100644 --- a/.github/workflows/diff.yaml +++ b/.github/workflows/diff.yaml @@ -43,7 +43,7 @@ jobs: # Build community binaries. cd build - cmake -DCMAKE_BUILD_TYPE=release -DMG_ENTERPRISE=OFF .. + cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DMG_ENTERPRISE=OFF .. make -j$THREADS - name: Run unit tests @@ -244,7 +244,7 @@ jobs: # Build release binaries. cd build - cmake -DCMAKE_BUILD_TYPE=release .. + cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. make -j$THREADS - name: Run GQL Behave tests @@ -351,7 +351,7 @@ jobs: ./init # Build only memgraph release binarie. cd build - cmake -DCMAKE_BUILD_TYPE=release .. + cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. make -j$THREADS memgraph - name: Run Jepsen tests diff --git a/.github/workflows/package_all.yaml b/.github/workflows/package_all.yaml index 4d3270de2..f1831616a 100644 --- a/.github/workflows/package_all.yaml +++ b/.github/workflows/package_all.yaml @@ -8,6 +8,13 @@ on: memgraph_version: description: "Memgraph version to upload as. If empty upload is skipped. Format: 'X.Y.Z'" required: false + build_type: + type: choice + description: "Memgraph Build type. Default value is Release." + default: 'Release' + options: + - Release + - RelWithDebInfo jobs: centos-7: @@ -20,7 +27,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package centos-7 + ./release/package/run.sh package centos-7 ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -37,7 +44,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package centos-9 + ./release/package/run.sh package centos-9 ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -54,7 +61,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package debian-10 + ./release/package/run.sh package debian-10 ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -71,7 +78,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package debian-11 + ./release/package/run.sh package debian-11 ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -89,7 +96,7 @@ jobs: - name: "Build package" run: | cd release/package - ./run.sh package debian-11 --for-docker + ./run.sh package debian-11 ${{ github.event.inputs.build_type }} --for-docker ./run.sh docker - name: "Upload package" uses: actions/upload-artifact@v3 @@ -107,7 +114,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package ubuntu-18.04 + ./release/package/run.sh package ubuntu-18.04 ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -124,7 +131,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package ubuntu-20.04 + ./release/package/run.sh package ubuntu-20.04 ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -141,7 +148,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package ubuntu-22.04 + ./release/package/run.sh package ubuntu-22.04 ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -158,7 +165,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package debian-11 --for-platform + ./release/package/run.sh package debian-11 ${{ github.event.inputs.build_type }} --for-platform - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -175,7 +182,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package fedora-36 + ./release/package/run.sh package fedora-36 ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -192,7 +199,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package amzn-2 + ./release/package/run.sh package amzn-2 ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -209,7 +216,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package debian-11-arm + ./release/package/run.sh package debian-11-arm ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: @@ -226,7 +233,7 @@ jobs: fetch-depth: 0 # Required because of release/get_version.py - name: "Build package" run: | - ./release/package/run.sh package ubuntu-22.04-arm + ./release/package/run.sh package ubuntu-22.04-arm ${{ github.event.inputs.build_type }} - name: "Upload package" uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/performance_benchmarks.yaml b/.github/workflows/performance_benchmarks.yaml index bccd0207d..a52d6d587 100644 --- a/.github/workflows/performance_benchmarks.yaml +++ b/.github/workflows/performance_benchmarks.yaml @@ -30,7 +30,7 @@ jobs: # Build only memgraph release binaries. cd build - cmake -DCMAKE_BUILD_TYPE=Release .. + cmake -DCMAKE_BUILD_TYPE=release .. make -j$THREADS - name: Get branch name (merge) diff --git a/.github/workflows/release_centos8.yaml b/.github/workflows/release_centos8.yaml index acf2cb813..a72a1c053 100644 --- a/.github/workflows/release_centos8.yaml +++ b/.github/workflows/release_centos8.yaml @@ -2,6 +2,15 @@ name: Release CentOS 8 on: workflow_dispatch: + inputs: + build_type: + type: choice + description: "Memgraph Build type. Default value is Release." + default: 'Release' + options: + - Release + - RelWithDebInfo + schedule: - cron: "0 22 * * *" @@ -33,7 +42,7 @@ jobs: # Build community binaries. cd build - cmake -DCMAKE_BUILD_TYPE=release -DMG_ENTERPRISE=OFF .. + cmake -DCMAKE_BUILD_TYPE=${{ github.event.inputs.build_type }} -DMG_ENTERPRISE=OFF .. make -j$THREADS - name: Run unit tests @@ -190,7 +199,7 @@ jobs: # Build release binaries. cd build - cmake -DCMAKE_BUILD_TYPE=release .. + cmake -DCMAKE_BUILD_TYPE=${{ github.event.inputs.build_type }} .. make -j$THREADS - name: Create enterprise RPM package diff --git a/.github/workflows/release_debian10.yaml b/.github/workflows/release_debian10.yaml index 28c8c1026..88d623b0e 100644 --- a/.github/workflows/release_debian10.yaml +++ b/.github/workflows/release_debian10.yaml @@ -2,6 +2,15 @@ name: Release Debian 10 on: workflow_dispatch: + inputs: + build_type: + type: choice + description: "Memgraph Build type. Default value is Release." + default: 'Release' + options: + - Release + - RelWithDebInfo + schedule: - cron: "0 22 * * *" @@ -33,7 +42,7 @@ jobs: # Build community binaries. cd build - cmake -DCMAKE_BUILD_TYPE=release -DMG_ENTERPRISE=OFF .. + cmake -DCMAKE_BUILD_TYPE=${{ github.event.inputs.build_type }} -DMG_ENTERPRISE=OFF .. make -j$THREADS - name: Run unit tests @@ -190,7 +199,7 @@ jobs: # Build release binaries. cd build - cmake -DCMAKE_BUILD_TYPE=release .. + cmake -DCMAKE_BUILD_TYPE=${{ github.event.inputs.build_type }} .. make -j$THREADS - name: Create enterprise DEB package @@ -322,7 +331,7 @@ jobs: ./init # Build only memgraph release binary. cd build - cmake -DCMAKE_BUILD_TYPE=release .. + cmake -DCMAKE_BUILD_TYPE=${{ github.event.inputs.build_type }} .. make -j$THREADS memgraph - name: Run Jepsen tests diff --git a/.github/workflows/release_ubuntu2004.yaml b/.github/workflows/release_ubuntu2004.yaml index fd1f76463..cb788e58e 100644 --- a/.github/workflows/release_ubuntu2004.yaml +++ b/.github/workflows/release_ubuntu2004.yaml @@ -2,6 +2,15 @@ name: Release Ubuntu 20.04 on: workflow_dispatch: + inputs: + build_type: + type: choice + description: "Memgraph Build type. Default value is Release." + default: 'Release' + options: + - Release + - RelWithDebInfo + schedule: - cron: "0 22 * * *" @@ -33,7 +42,7 @@ jobs: # Build community binaries. cd build - cmake -DCMAKE_BUILD_TYPE=release -DMG_ENTERPRISE=OFF .. + cmake -DCMAKE_BUILD_TYPE=${{ github.event.inputs.build_type }} -DMG_ENTERPRISE=OFF .. make -j$THREADS - name: Run unit tests @@ -190,7 +199,7 @@ jobs: # Build release binaries. cd build - cmake -DCMAKE_BUILD_TYPE=release .. + cmake -DCMAKE_BUILD_TYPE=${{ github.event.inputs.build_type }} .. make -j$THREADS - name: Create enterprise DEB package diff --git a/release/package/run.sh b/release/package/run.sh index 1e9395c50..41231c398 100755 --- a/release/package/run.sh +++ b/release/package/run.sh @@ -11,6 +11,12 @@ SUPPORTED_OS=( amzn-2 ) +SUPPORTED_BUILD_TYPES=( + Debug + Release + RelWithDebInfo +) + PROJECT_ROOT="$SCRIPT_DIR/../.." TOOLCHAIN_VERSION="toolchain-v4" ACTIVATE_TOOLCHAIN="source /opt/${TOOLCHAIN_VERSION}/activate" @@ -18,14 +24,16 @@ HOST_OUTPUT_DIR="$PROJECT_ROOT/build/output" print_help () { # TODO(gitbuda): Update the release/package/run.sh help - echo "$0 init|package|docker|test {os} [--for-docker|--for-platform]" + echo "$0 init|package|docker|test {os} {build_type} [--for-docker|--for-platform]" echo "" echo " OSs: ${SUPPORTED_OS[*]}" + echo " Build types: ${SUPPORTED_BUILD_TYPES[*]}" exit 1 } make_package () { os="$1" + build_type="$2" build_container="mgbuild_$os" echo "Building Memgraph for $os on $build_container..." @@ -44,10 +52,10 @@ make_package () { package_command=" cpack -G DEB --config ../CPackConfig.cmake " fi telemetry_id_override_flag="" - if [[ "$#" -gt 1 ]]; then - if [[ "$2" == "--for-docker" ]]; then + if [[ "$#" -gt 2 ]]; then + if [[ "$3" == "--for-docker" ]]; then telemetry_id_override_flag=" -DMG_TELEMETRY_ID_OVERRIDE=DOCKER " - elif [[ "$2" == "--for-platform" ]]; then + elif [[ "$3" == "--for-platform" ]]; then telemetry_id_override_flag=" -DMG_TELEMETRY_ID_OVERRIDE=DOCKER-PLATFORM" else print_help @@ -89,9 +97,9 @@ make_package () { docker exec "$build_container" bash -c "cd $container_build_dir && rm -rf ./*" # TODO(gitbuda): cmake fails locally if remote is clone via ssh because of the key -> FIX if [[ "$os" =~ "-arm" ]]; then - docker exec "$build_container" bash -c "cd $container_build_dir && $ACTIVATE_TOOLCHAIN && cmake -DCMAKE_BUILD_TYPE=release -DMG_ARCH="ARM64" $telemetry_id_override_flag .." + docker exec "$build_container" bash -c "cd $container_build_dir && $ACTIVATE_TOOLCHAIN && cmake -DCMAKE_BUILD_TYPE=$build_type -DMG_ARCH="ARM64" $telemetry_id_override_flag .." else - docker exec "$build_container" bash -c "cd $container_build_dir && $ACTIVATE_TOOLCHAIN && cmake -DCMAKE_BUILD_TYPE=release $telemetry_id_override_flag .." + docker exec "$build_container" bash -c "cd $container_build_dir && $ACTIVATE_TOOLCHAIN && cmake -DCMAKE_BUILD_TYPE=$build_type $telemetry_id_override_flag .." fi # ' is used instead of " because we need to run make within the allowed # container resources. @@ -141,20 +149,34 @@ case "$1" in package) shift 1 - if [[ "$#" -lt 1 ]]; then + if [[ "$#" -lt 2 ]]; then print_help fi os="$1" - shift 1 + build_type="$2" + shift 2 is_os_ok=false for supported_os in "${SUPPORTED_OS[@]}"; do if [[ "$supported_os" == "${os}" ]]; then is_os_ok=true + break fi done - if [[ "$is_os_ok" == true ]]; then - make_package "$os" "$@" + is_build_type_ok=false + for supported_build_type in "${SUPPORTED_BUILD_TYPES[@]}"; do + if [[ "$supported_build_type" == "${build_type}" ]]; then + is_build_type_ok=true + break + fi + done + if [[ "$is_os_ok" == true && "$is_build_type_ok" == true ]]; then + make_package "$os" "$build_type" "$@" else + if [[ "$is_os_ok" == false ]]; then + echo "Unsupported OS: $os" + elif [[ "$is_build_type_ok" == false ]]; then + echo "Unsupported build type: $build_type" + fi print_help fi ;; diff --git a/tools/setup b/tools/setup index 03c3add3b..f476038a1 100755 --- a/tools/setup +++ b/tools/setup @@ -1,5 +1,30 @@ #!/bin/bash -e +SUPPORTED_BUILD_TYPES=( + Debug + Release + RelWithDebInfo +) + +# Check if the script has one argument initialize build_type with it, otherwise set default value "release" +if [[ "$#" -eq 1 ]]; then + build_type="$1" +else + build_type="Release" +fi + +is_build_type_ok=false +for supported_build_type in "${SUPPORTED_BUILD_TYPES[@]}"; do + if [[ "$supported_build_type" == "${build_type}" ]]; then + is_build_type_ok=true + fi +done + +if [[ "$is_build_type_ok" == false ]]; then + echo "Unsupported build type: $build_type" + exit 1 +fi + # Builds the memgraph tools and installs them in this directory. script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" @@ -8,7 +33,7 @@ mkdir -p ${script_dir}/build cd ${script_dir}/build # Setup cmake -cmake -DCMAKE_BUILD_TYPE=Release \ +cmake -DCMAKE_BUILD_TYPE=$build_type \ -DTOOLS=ON \ -DCMAKE_INSTALL_PREFIX=${script_dir} \ ${script_dir}/..