blob: 04871860840e6e111f36f247a93b466c98ac808b (
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
|
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 *
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_TOOLCHAIN_FILE=../ydb/clang.toolchain \
-DCMAKE_CXX_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -fno-omit-frame-pointer" \
-DCMAKE_C_FLAGS="-fsanitize=${{ inputs.sanitizer }} -g -fno-omit-frame-pointer" \
../ydb
- name: Configure
shell: bash
if: ${{!inputs.sanitizer}}
run: |
mkdir -p ../build
cd ../build
rm -rf *
export CONAN_USER_HOME=`realpath .`
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="-g" \
-DCMAKE_C_FLAGS="-g" \
../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
|