-
Notifications
You must be signed in to change notification settings - Fork 71
101 lines (87 loc) · 3.17 KB
/
build.yml
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Copyright 2021-Present Couchbase, Inc.
#
# Use of this software is governed by the Business Source License included in
# the file licenses/BSL-Couchbase.txt. As of the Change Date specified in that
# file, in accordance with the Business Source License, use of this software
# will be governed by the Apache License, Version 2.0, included in the file
# licenses/APL2.txt.
name: Build And Test
on:
push:
branches:
- master
- dev
- 'release/*'
pull_request:
branches:
- '**'
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
# NOTE: If we decide to archive the build products we should build with RelWithDebInfo instead.
BUILD_TYPE: Debug
jobs:
build:
# Build/test on Ubuntu Linux + GCC, macOS + Apple Clang, Windows + MSVC.
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
#### BUILD
- name: Create Build Environment
# Create a build directory, as our working directory for all subsequent commands
working-directory: ${{github.workspace}}
run: cmake -E make_directory ${{github.workspace}}/build
- name: Configure CMake
# "Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12"
if: runner.os != 'Windows'
working-directory: ${{github.workspace}}/build
run: cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DLITECORE_SANITIZE=ON
- name: Configure CMake (Windows)
# "Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12"
if: runner.os == 'Windows'
working-directory: ${{github.workspace}}/build
run: cmake .. -A x64
- name: Build
# Use cmake to build -- this will invoke `make` on Linux/Mac, Visual Studio on Windows.
working-directory: ${{github.workspace}}/build
run: cmake --build . --config $env:BUILD_TYPE
#### TEST
- name: Install French Locale On Linux
if: runner.os == 'Linux'
shell: bash
# One of the Fleece tests needs the French locale installed.
run: sudo localedef -v -c -i fr_FR -f UTF-8 fr_FR
- name: Test
if: runner.os != 'Windows'
working-directory: ${{github.workspace}}/build
shell: bash
run: |
pushd LiteCore/tests
./CppTests -r quiet
popd
echo "\n\n"
pushd C/tests
./C4Tests -r quiet
popd
- name: Test On Windows
if: runner.os == 'Windows'
working-directory: ${{github.workspace}}/build
shell: bash
run: |
mkdir -p /c/tmp
pushd LiteCore/tests/$BUILD_TYPE
./CppTests.exe -r quiet
popd
echo "\n\n"
pushd C/tests/$BUILD_TYPE
./C4Tests.exe -r quiet
popd