2023-06-16 11:05:47 +00:00
|
|
|
name: Build and test
|
2023-05-04 19:15:20 +00:00
|
|
|
|
2023-05-30 09:57:58 +00:00
|
|
|
#on: push
|
2023-05-04 19:15:20 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "master" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "master" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
|
|
|
BUILD_TYPE: Release
|
2023-06-16 11:05:47 +00:00
|
|
|
COVERALLS_PULL_REQUEST: ${{ github.event.number }}
|
2023-06-14 07:13:04 +00:00
|
|
|
#COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
2023-05-04 19:15:20 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
|
|
|
|
# You can convert this to a matrix build if you need cross-platform coverage.
|
|
|
|
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
2023-05-30 09:57:58 +00:00
|
|
|
fail-fast: true
|
2023-05-04 19:15:20 +00:00
|
|
|
matrix:
|
|
|
|
os: [ ubuntu-latest, ubuntu-20.04,
|
2023-05-30 09:57:58 +00:00
|
|
|
macos-latest, macos-11,
|
|
|
|
windows-latest
|
2023-05-04 19:15:20 +00:00
|
|
|
]
|
2023-05-30 09:57:58 +00:00
|
|
|
# ubuntu-18.04 does not work due to compile error on asio
|
|
|
|
# windows-2019 not included to spare free minutes
|
2023-05-04 19:15:20 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Prepare dependencies
|
|
|
|
run: |
|
|
|
|
if [ "$RUNNER_OS" == "Linux" ]; then
|
|
|
|
sudo apt-get update && \
|
|
|
|
sudo apt-get install -yq \
|
|
|
|
libasio-dev \
|
2023-05-30 09:57:58 +00:00
|
|
|
cmake
|
2023-05-04 19:15:20 +00:00
|
|
|
elif [ "$RUNNER_OS" == "Windows" ]; then
|
2023-05-30 09:57:58 +00:00
|
|
|
VCPKG_DEFAULT_TRIPLET=x64-windows vcpkg install
|
2023-05-04 19:15:20 +00:00
|
|
|
elif [ "$RUNNER_OS" == "macOS" ]; then
|
2023-05-30 09:57:58 +00:00
|
|
|
brew install asio
|
2023-05-04 19:15:20 +00:00
|
|
|
else
|
|
|
|
echo "$RUNNER_OS not supported"
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-06-16 11:21:03 +00:00
|
|
|
shell: bash
|
2023-05-04 19:15:20 +00:00
|
|
|
|
|
|
|
- name: Configure CMake
|
|
|
|
run: |
|
2023-06-16 11:21:03 +00:00
|
|
|
if [ "$RUNNER_OS" == "Windows" ]; then
|
2023-06-12 13:51:28 +00:00
|
|
|
cmake \
|
|
|
|
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake \
|
|
|
|
-DCROW_FEATURES="ssl;compression" \
|
|
|
|
-DCROW_AMALGAMATE=ON \
|
|
|
|
-B build
|
2023-06-16 11:21:03 +00:00
|
|
|
else
|
2023-05-04 19:15:20 +00:00
|
|
|
cmake -B build
|
2023-05-30 09:57:58 +00:00
|
|
|
fi
|
2023-06-13 03:56:48 +00:00
|
|
|
shell: bash
|
2023-06-16 11:21:03 +00:00
|
|
|
|
2023-05-04 19:15:20 +00:00
|
|
|
- name: Build
|
|
|
|
# Build your program with the given configuration
|
|
|
|
run: cmake --build build --config ${{env.BUILD_TYPE}}
|
2023-06-13 03:56:48 +00:00
|
|
|
shell: bash
|
2023-05-04 19:15:20 +00:00
|
|
|
|
|
|
|
- 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 --output-on-failure -C ${{env.BUILD_TYPE}}
|
|
|
|
|
2023-06-16 11:05:47 +00:00
|
|
|
- name: Generate coverage report
|
2023-06-16 11:09:30 +00:00
|
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
run: |
|
|
|
|
export CI_BRANCH=${GITHUB_BASE_REF:-${GITHUB_REF#refs/heads/}}
|
|
|
|
echo "CI_BRANCH=$CI_BRANCH" >> $GITHUB_ENV && \
|
|
|
|
export TRAVIS_JOB_ID=$GITHUB_RUN_NUMBER && \
|
|
|
|
git clone https://github.com/CrowCpp/cpp-coveralls.git && \
|
|
|
|
cd cpp-coveralls && \
|
|
|
|
pip3 install . --no-input && \
|
|
|
|
cd .. && \
|
|
|
|
coveralls --verbose --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp --dump coveralls.json
|
|
|
|
shell: bash
|
|
|
|
|
2023-06-16 11:05:47 +00:00
|
|
|
|
2023-06-16 11:21:03 +00:00
|
|
|
- name: Save report
|
|
|
|
uses: actions/upload-artifact@v3
|
2023-06-16 11:09:30 +00:00
|
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
with:
|
|
|
|
name: coveralls.json
|
|
|
|
path: coveralls.json
|
2023-06-16 11:05:47 +00:00
|
|
|
|
2023-06-13 03:56:48 +00:00
|
|
|
|
2023-05-04 19:15:20 +00:00
|
|
|
#- name: Package
|
|
|
|
# working-directory: ${{github.workspace}}/build
|
|
|
|
# run: |
|
|
|
|
# cmake --build . --target ALL_BUILD && \
|
|
|
|
# cmake --build . --target doc && \
|
|
|
|
# cmake --build . --target package && \
|
|
|
|
# cpack --config CPackSourceConfig.cmake
|