-
-
Notifications
You must be signed in to change notification settings - Fork 439
39 lines (35 loc) · 1.11 KB
/
linux_release_fetchcontent.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
# Copyright (c) 2020 ETH Zurich
#
# SPDX-License-Identifier: BSL-1.0
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
name: Linux CI (Release, FetchContent)
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
container: stellargroup/build_env:14
steps:
- uses: actions/checkout@v4
- name: Configure
shell: bash
run: |
cmake \
tests/unit/build/fetchcontent \
-Bbuild \
-GNinja \
-DCMAKE_BUILD_TYPE=Release \
-DHPX_WITH_MALLOC=system \
-DHPX_WITH_FETCH_ASIO=ON \
-DHPX_WITH_APEX=ON \
-DHPX_WITH_FETCH_APEX=ON \
-DHPX_WITH_EXAMPLES=ON \
-DHPX_WITH_TESTS=OFF \
-DHPX_REPOSITORY="file:////$(pwd)" \
-DHPX_TAG="$GITHUB_SHA" \
-DHPX_WITH_CHECK_MODULE_DEPENDENCIES=On
- name: Build
shell: bash
run: |
cmake --build build --target all
cmake --build build --target examples