kind: pipeline type: docker name: amd64-pull platform: os: linux arch: amd64 steps: - name: build-and-test image: ubuntu:focal environment: COVERALLS_REPO_TOKEN: from_secret: coveralls_token commands: - export DEBIAN_FRONTEND=noninteractive - export TRAVIS_BRANCH=$DRONE_BRANCH - export TRAVIS_JOB_ID=$DRONE_BUILD_NUMBER - apt-get -y update - apt-get -y install libboost-all-dev doxygen mkdocs graphviz zlib1g-dev gcc clang make cmake python3 python3-pip git openssl libssl-dev - pip3 install mkdocs-material pyyaml --no-input - git clone https://github.com/CrowCpp/cpp-coveralls.git - cd cpp-coveralls - pip3 install . --no-input - cd .. - export CC=/usr/bin/gcc - export CXX=/usr/bin/g++ - mkdir build - cd build - cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON -DCROW_AMALGAMATE=ON - make -j4 - ctest -V -j4 - cd .. - coveralls --verbose --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp --exclude-pattern .*/query_string.h - export CC=/usr/bin/clang - export CXX=/usr/bin/clang++ - mkdir build-clang - cd build-clang - cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON -DCROW_AMALGAMATE=ON - make -j4 - ctest -V -j4 trigger: branch: - master event: - pull_request --- kind: pipeline type: docker name: arm64-pull platform: os: linux arch: arm64 steps: - name: build-and-test image: ubuntu:focal commands: - export DEBIAN_FRONTEND=noninteractive - apt-get -y update - apt-get -y install libboost-all-dev zlib1g-dev gcc clang make cmake python3 openssl libssl-dev - mkdir build - cd build - cmake --version - cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON -DCROW_AMALGAMATE=ON - make -j4 - ctest -V -j4 - cd .. - export CC=/usr/bin/clang - export CXX=/usr/bin/clang++ - mkdir build-clang - cd build-clang - cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON -DCROW_AMALGAMATE=ON - make -j4 - ctest -V -j4 trigger: branch: - master event: - pull_request --- kind: pipeline type: docker name: amd64-master platform: os: linux arch: amd64 steps: - name: build-and-test image: ubuntu:focal environment: COVERALLS_REPO_TOKEN: from_secret: coveralls_token GH_REPO_TOKEN: from_secret: repo_token GH_REPO_NAME: crow GH_REPO_REF: github.com/crowcpp/crow.git THEME_REPO_REF: github.com/crowcpp/darxygen.git commands: - export DRONE_BUILD_DIR=$PWD - export DEBIAN_FRONTEND=noninteractive - export DOXYFILE=$DRONE_BUILD_DIR/Doxyfile - export TRAVIS_BRANCH=$DRONE_REPO_BRANCH - export TRAVIS_JOB_ID=$DRONE_BUILD_NUMBER - apt-get -y update - apt-get -y install libboost-all-dev doxygen mkdocs graphviz zlib1g-dev gcc clang make cmake python3 python3-pip git openssl libssl-dev - pip3 install mkdocs-material pyyaml --no-input - git clone https://github.com/CrowCpp/cpp-coveralls.git - cd cpp-coveralls - pip3 install . --no-input - cd .. - export CC=/usr/bin/gcc - export CXX=/usr/bin/g++ - mkdir build - cd build - cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON -DCROW_AMALGAMATE=ON - make -j4 - ctest -V -j4 - cd .. - coveralls --verbose --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp --exclude-pattern .*/query_string.h - export CC=/usr/bin/clang - export CXX=/usr/bin/clang++ - mkdir build-clang - cd build-clang - cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON -DCROW_AMALGAMATE=ON - make -j4 - ctest -V -j4 - cd .. - chmod +x scripts/generateDocumentationAndDeploy.sh - ./scripts/generateDocumentationAndDeploy.sh trigger: branch: - master event: - push --- kind: pipeline type: docker name: arm64-master platform: os: linux arch: arm64 steps: - name: build-and-test image: ubuntu:focal commands: - export DEBIAN_FRONTEND=noninteractive - apt-get -y update - apt-get -y install libboost-all-dev zlib1g-dev gcc clang make cmake python3 openssl libssl-dev - mkdir build - cd build - cmake --version - cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON -DCROW_AMALGAMATE=ON - make -j4 - ctest -V -j4 - cd .. - export CC=/usr/bin/clang - export CXX=/usr/bin/clang++ - mkdir build-clang - cd build-clang - cmake .. -DCROW_ENABLE_COMPRESSION=ON -DCROW_ENABLE_SSL=ON -DCROW_AMALGAMATE=ON - make -j4 - ctest -V -j4 trigger: branch: - master event: - push