Skip to content

Fix comparison of crow::json::rvalue and add tests #869

Fix comparison of crow::json::rvalue and add tests

Fix comparison of crow::json::rvalue and add tests #869

Workflow file for this run

name: Build and test
on:
push:
branches: [ "master" ]
tags:
- "v*"
pull_request:
branches: [ "master" ]
env:
BUILD_TYPE: Release
COVERALLS_PULL_REQUEST: ${{ github.event.number }}
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
include:
- { os: ubuntu-latest, compiler: gcc, cxx_stdlib: libstdc++, asio_type: boost }
- { os: ubuntu-latest, compiler: gcc, cxx_stdlib: libstdc++, asio_type: standalone }
- { os: ubuntu-latest, compiler: clang, cxx_stdlib: libstdc++, asio_type: boost }
- { os: ubuntu-latest, compiler: clang, cxx_stdlib: libstdc++, asio_type: standalone }
- { os: ubuntu-latest, compiler: clang, cxx_stdlib: libc++, asio_type: boost }
- { os: ubuntu-latest, compiler: clang, cxx_stdlib: libc++, asio_type: standalone }
- { os: ubuntu-22.04, compiler: gcc, cxx_stdlib: libstdc++ }
- { os: macos-latest, compiler: clang, cxx_stdlib: libstdc++ }
- { os: macos-latest, compiler: clang, cxx_stdlib: libc++ }
- { os: macos-14, compiler: clang, cxx_stdlib: libc++ }
- { os: windows-latest, compiler: msvc, cxx_stdlib: msvc }
steps:
- uses: actions/checkout@v6
- name: Prepare dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
if [ "${{ matrix.asio_type || 'standalone' }}" == "boost" ]; then
sudo apt-get install -yq \
libboost-all-dev \
libssl-dev zlib1g-dev \
cmake \
g++ clang
else
sudo apt-get install -yq \
libasio-dev \
libssl-dev zlib1g-dev \
cmake \
g++ clang
fi
elif [ "$RUNNER_OS" == "Windows" ]; then
VCPKG_DEFAULT_TRIPLET=x64-windows vcpkg install
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install asio openssl zlib
else
echo "$RUNNER_OS not supported"
exit 1
fi
shell: bash
- name: Install NSIS
if: matrix.os == 'windows-latest'
uses: repolevedavaj/[email protected]
with:
nsis-version: '3.10'
- name: Configure CMake
run: |
cmake_flags=""
if [ "$RUNNER_OS" == "Windows" ]; then
cmake_flags="-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake"
elif [ "$RUNNER_OS" == "macOS" ]; then
export LDFLAGS="-L/usr/local/opt/[email protected]/lib"
export CPPFLAGS="-I/usr/local/opt/[email protected]/include"
if [ "${{ matrix.compiler }}" == "clang" ] && [ "${{ matrix.cxx_stdlib }}" == "libc++" ]; then
cmake_flags="-DCMAKE_CXX_FLAGS='-stdlib=libc++'"
fi
elif [ "$RUNNER_OS" == "Linux" ]; then
if [ "${{ matrix.compiler }}" == "clang" ] && [ "${{ matrix.cxx_stdlib }}" == "libc++" ]; then
cmake_flags="-DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_FLAGS='-stdlib=libc++'"
sudo apt-get install libc++-dev libc++abi-dev -y
elif [ "${{ matrix.compiler }}" == "clang" ]; then
cmake_flags="-DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_FLAGS='-stdlib=libstdc++'"
else
cmake_flags="-DCMAKE_CXX_COMPILER=g++"
fi
if [ "${{ matrix.asio_type || 'standalone' }}" == "boost" ]; then
cmake_flags="${cmake_flags} -DCROW_USE_BOOST=ON"
else
cmake_flags="${cmake_flags} -DCROW_USE_BOOST=OFF"
fi
fi
cmake \
${cmake_flags} \
-DCROW_ENABLE_SSL=ON \
-DCROW_ENABLE_COMPRESSION=ON \
-DCROW_AMALGAMATE=ON \
-DCROW_BUILD_TESTS=ON \
-B build
shell: bash
- name: Build
# Build your program with the given configuration
run: cmake --build build --config ${{env.BUILD_TYPE}}
shell: bash
- 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}}
shell: bash
- name: Generate coverage report
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && !startsWith(github.ref, 'refs/tags/v')
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
- name: Save report
uses: actions/upload-artifact@v5
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && !startsWith(github.ref, 'refs/tags/v')
with:
name: coveralls.json
path: coveralls.json
- name: Package
working-directory: ${{github.workspace}}/build
run: cmake --build . --target package
- name: Generate checksums
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && startsWith(github.ref, 'refs/tags/v')
working-directory: ${{github.workspace}}/build
run: |
for f in Crow-* crow_all.h; do
[ -f "$f" ] || continue
sha256sum "$f" | awk '{print $1}' > "$f".sha256
md5sum "$f" | awk '{print $1}' > "$f".md5
done
- uses: actions/upload-artifact@v5
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && startsWith(github.ref, 'refs/tags/v')
with:
name: packages
path: |
${{github.workspace}}/build/Crow-*
${{github.workspace}}/build/crow_all.h
${{github.workspace}}/build/crow_all.h.*