-
Notifications
You must be signed in to change notification settings - Fork 1
86 lines (73 loc) · 2.65 KB
/
PR.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
name: PR Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build-macos:
runs-on: macos-latest
strategy:
matrix:
shared: ["ON", "OFF"]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install LLVM and Clang
run: |
brew update || true
brew install llvm@17 || true
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-07-07
profile: minimal
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: |
eval "$(brew shellenv)"
cmake -B ${{github.workspace}}/build \
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
-DCMAKE_TOOLCHAIN_FILE=toolchain.cmake \
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON \
-DBUILD_SHARED_LIBS=${{ matrix.shared }}
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --parallel 4 --config ${{env.BUILD_TYPE}} --verbose
- name: Test
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -C ${{env.BUILD_TYPE}} --output-on-failure
- name: Install
run: sudo cmake --install build --config Release
- name: Test Linking
working-directory: ${{github.workspace}}/tests/test_find_package
run: |
eval "$(brew shellenv)"
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release
./build/helloworld_server &
SERVER_PID=$!
# Give the server time to start
sleep 1
rsp=$(curl http://127.0.0.1:49999)
kill $SERVER_PID
if [[ "$rsp" == "Hello, world" ]]; then
echo "Test passed"
exit 0
else
echo "Test failed"
exit 1
fi
- name: Test Build Examples
working-directory: ${{github.workspace}}/examples/echo_server
run: |
eval "$(brew shellenv)"
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release