Merge branch 'master' into v13 branch #904
This file contains hidden or 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
| name: Build and test | ||
|
Check failure on line 1 in .github/workflows/build_and_test.yml
|
||
| on: | ||
| push: | ||
| branches: [ "v1.3" ] | ||
| env: | ||
| BUILD_TYPE: Release | ||
| COVERALLS_PULL_REQUEST: ${{ github.event.number }} | ||
| GIT_REF: ${{github.ref}} | ||
| GIT_EVENT_REF: ${{github.event.ref}} | ||
| GIT_EVENT_TYPE: ${{github.event.type}} | ||
| 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: | ||
| - name: Output Infos | ||
| run: | | ||
| echo $GIT_REF | ||
| echo $GIT_EVENT_REF | ||
| echo $GIT_EVENT_TYPE | ||
| - 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 coreutils | ||
| else | ||
| echo "$RUNNER_OS not supported" | ||
| exit 1 | ||
| fi | ||
| shell: bash | ||
| - name: Install NSIS | ||
| if: matrix.os == 'windows-latest' | ||
| uses: repolevedavaj/install-nsis@v1.1.0 | ||
| 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/openssl@1.1/lib" | ||
| export CPPFLAGS="-I/usr/local/opt/openssl@1.1/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/heads/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 && \ | ||
| echo gitref= {{github.ref}} && \ | ||
| 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@v6 | ||
| 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 | ||
| 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 | ||
| ls | ||
| shell: bash | ||
| - name: Upload Linux packages | ||
| - uses: actions/upload-artifact@v6 | ||
| 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 | ||
| overwrite: true | ||
| path: | | ||
| ${{github.workspace}}/build/Crow-* | ||
| ${{github.workspace}}/build/crow_all.h | ||
| ${{github.workspace}}/build/crow_all.h.* | ||
| - name: Upload Mac OS packages | ||
| uses: actions/upload-artifact@v6 | ||
| if: matrix.os == 'macos-latest' && matrix.compiler == 'clang' && matrix.cxx_stdlib == 'libstdc++' && startsWith(github.ref, 'refs/heads/v') | ||
| with: | ||
| name: packages | ||
| overwrite: true | ||
| path: | | ||
| ${{github.workspace}}/build/Crow-* | ||
| - name: Upload Windows packages | ||
| uses: actions/upload-artifact@v6 | ||
| if: matrix.os == 'windows-latest' && matrix.compiler == 'msvc' && matrix.cxx_stdlib == 'msvc' && startsWith(github.ref, 'refs/heads/v') | ||
| with: | ||
| name: packages | ||
| overwrite: true | ||
| path: | | ||
| ${{github.workspace}}/build/Crow-* | ||