blob: 85a05bbfa16d04dac6a693848eae9a1a355d22d1 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
name: Build
description: Build YDB
inputs:
sanitizer:
required: false
type: string
ccache_remote_path:
required: false
description: "ccache remote storage definition"
extra_compile_flags:
required: false
default: ""
description: "extra compile flags will be added to the end of C_FLAGS and CXX_FLAGS"
ninja_target:
required: false
type: string
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-14
export CC_FOR_BUILD=$CC
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
-DCCACHE_PATH=/usr/local/bin/ccache \
-DCMAKE_TOOLCHAIN_FILE=../ydb/clang.toolchain \
-DCMAKE_CXX_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -gsplit-dwarf -gz -fno-omit-frame-pointer ${{ inputs.extra_compile_flags }}" \
-DCMAKE_C_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -gsplit-dwarf -gz -fno-omit-frame-pointer ${{ inputs.extra_compile_flags }}" \
../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-14
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 \
-DCCACHE_PATH=/usr/local/bin/ccache \
-DCMAKE_TOOLCHAIN_FILE=../ydb/clang.toolchain \
-DCMAKE_C_FLAGS="${{ inputs.extra_compile_flags }}" \
-DCMAKE_CXX_FLAGS="${{ inputs.extra_compile_flags }}" \
../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 ${{ inputs.ninja_target }}
ccache -s
df -h
- name: report Build failed
if: ${{ failure() }}
shell: bash
run: |
echo "# Build failed" >> $GITHUB_STEP_SUMMARY
- name: report Build cancelled
if: ${{ cancelled() }}
shell: bash
run: |
echo "# Build cancelled" >> $GITHUB_STEP_SUMMARY
|