-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
1,257 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
##====================================================================================================================== | ||
## RABERU - Fancy Parameters Library | ||
## Copyright : RABERU Contributors & Maintainers | ||
## SPDX-License-Identifier: BSL-1.0 | ||
##====================================================================================================================== | ||
name: RABERU Integration Tests | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
concurrency: | ||
group: raberu-integration-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
install: | ||
runs-on: [ubuntu-latest] | ||
container: | ||
image: ghcr.io/jfalcou/compilers:v6 | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Fetch current branch | ||
uses: actions/checkout@v3 | ||
- name: Install RABERU from checkout | ||
run: | | ||
mkdir build && cd build | ||
cmake -G Ninja .. -DRABERU_BUILD_TEST=OFF -DCMAKE_CXX_COMPILER=clang++ | ||
ninja install | ||
- name: Run Sample CMake | ||
run: | | ||
mkdir install && cd install | ||
cmake ../test/integration/install-test -G Ninja | ||
ninja && ctest --verbose | ||
fetch-content: | ||
env: | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
runs-on: [ubuntu-latest] | ||
container: | ||
image: ghcr.io/jfalcou/compilers:v6 | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Fetch current branch | ||
uses: actions/checkout@v3 | ||
- name: Compile using FetchContent | ||
run: | | ||
git config --global --add safe.directory /__w/raberu/raberu | ||
mkdir install && cd install | ||
cmake ../test/integration/fetch-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} -DRABERU_BUILD_TEST=OFF -DCMAKE_CXX_COMPILER=clang++ | ||
ninja && ctest --verbose | ||
cpm: | ||
env: | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
runs-on: [ubuntu-latest] | ||
container: | ||
image: ghcr.io/jfalcou/compilers:v6 | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Fetch current branch | ||
uses: actions/checkout@v3 | ||
- name: Compile using CPM | ||
run: | | ||
git config --global --add safe.directory /__w/raberu/raberu | ||
mkdir install && cd install | ||
cmake ../test/integration/cpm-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} -DCMAKE_CXX_COMPILER=clang++ -DRABERU_BUILD_TEST=OFF | ||
ninja && ctest --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
##====================================================================================================================== | ||
## RABERU - Fancy Named Parameter Library | ||
## Copyright : RABERU Project Contributors | ||
## SPDX-License-Identifier: BSL-1.0 | ||
##====================================================================================================================== | ||
cmake_minimum_required(VERSION 3.18) | ||
project(raberu-cpm-test LANGUAGES CXX) | ||
enable_testing() | ||
|
||
message(STATUS "Testing CPM for branch ${GIT_BRANCH}") | ||
|
||
# Setup CPM | ||
include(cpm.cmake) | ||
|
||
# Add dependencies | ||
CPMAddPackage ( NAME raberu | ||
GIT_REPOSITORY "https://github.com/jfalcou/raberu.git" | ||
GIT_TAG "${GIT_BRANCH}" | ||
OPTIONS "RABERU_BUILD_TEST OFF" | ||
) | ||
|
||
# Use RABERU | ||
add_executable(test_raberu ../main.cpp) | ||
target_link_libraries(test_raberu PUBLIC raberu::raberu) | ||
add_test(NAME test_raberu COMMAND test_raberu) |
Oops, something went wrong.