aboutsummaryrefslogtreecommitdiffstats
path: root/.github/actions/build/action.yml
blob: dd8cffaba2d756b75969f636cc7ee9db8dc2da8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Build
description: Build YDB
inputs:
  sanitizer:
    required: false
    type: string
  ccache_remote_path:
    required: false
    description: "ccache remote storage definition"

runs:
  using: "composite"
  steps:
  - name: Configure for sanitizer
    shell: bash
    if: inputs.sanitizer
    run: |
      mkdir -p ../build
      patch -p1 < ydb/deploy/patches/0001-sanitizer-build.patch
      cd ../build
      rm -rf *
      export CC=/usr/bin/clang-12
      export CC_FOR_BUILD=$CC
      cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_C_COMPILER_LAUNCHER=/usr/local/bin/ccache -DCMAKE_CXX_COMPILER_LAUNCHER=/usr/local/bin/ccache \
        -DCMAKE_TOOLCHAIN_FILE=../ydb/clang.toolchain \
        -DCMAKE_CXX_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -fno-omit-frame-pointer -UNDEBUG" \
        -DCMAKE_C_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -fno-omit-frame-pointer -UNDEBUG" \
        ../ydb
  - name: Configure
    shell: bash
    if: ${{!inputs.sanitizer}}
    run: |
      mkdir -p ../build
      cd ../build
      rm -rf *
      export CONAN_USER_HOME=`pwd`
      export CC=/usr/bin/clang-12
      export CC_FOR_BUILD=$CC

      # FIXME: set DCMAKE_CXX_FLAGS_RELWITHDEBINFO and DCMAKE_CXX_FLAGS bacause of global_flags.cmake flags override.

      cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_C_COMPILER_LAUNCHER=/usr/local/bin/ccache -DCMAKE_CXX_COMPILER_LAUNCHER=/usr/local/bin/ccache \
        -DCMAKE_TOOLCHAIN_FILE=../ydb/clang.toolchain \
        -DCMAKE_C_FLAGS="-O2 -UNDEBUG" \
        -DCMAKE_CXX_FLAGS="-O2 -UNDEBUG" \
        -DCMAKE_C_FLAGS_RELEASE="-O2 -UNDEBUG" \
        -DCMAKE_CXX_FLAGS_RELEASE="-O2 -UNDEBUG" \
        ../ydb
  - name: Build
    shell: bash
    run: |
      ccache -z
      export CCACHE_BASEDIR=`realpath ..`
      export CCACHE_REMOTE_STORAGE="${{inputs.ccache_remote_path}}"
      export CCACHE_SLOPPINESS=locale
      export CCACHE_MAXSIZE=50G
      cd ../build
      ninja
      ccache -s
      df -h