diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-04-27 13:45:54 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-04-27 13:45:54 +0200 |
commit | 51d779256c74cc541da306db5629ed510df5a944 (patch) | |
tree | ec23431d0b9b3dac2a2a8ac8f7201e9da9c58632 /deps/cpp-httplib/.github | |
parent | da307fb4c6b5028d50c09dec7265ce8715e035d5 (diff) |
Switched from slow blocking cpp-httplib to libevent2.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'deps/cpp-httplib/.github')
-rw-r--r-- | deps/cpp-httplib/.github/workflows/test.yaml | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/deps/cpp-httplib/.github/workflows/test.yaml b/deps/cpp-httplib/.github/workflows/test.yaml deleted file mode 100644 index 37d2fdf..0000000 --- a/deps/cpp-httplib/.github/workflows/test.yaml +++ /dev/null @@ -1,41 +0,0 @@ -name: test - -on: [push, pull_request] - -jobs: - build: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [macOS-latest, ubuntu-latest, windows-latest] - - steps: - - name: prepare git for checkout on windows - if: matrix.os == 'windows-latest' - run: | - git config --global core.autocrlf false - git config --global core.eol lf - - name: checkout - uses: actions/checkout@v2 - - name: install brotli library on ubuntu - if: matrix.os == 'ubuntu-latest' - run: sudo apt update && sudo apt-get install -y libbrotli-dev - - name: install brotli library on macOS - if: matrix.os == 'macOS-latest' - run: brew install brotli - - name: make - if: matrix.os != 'windows-latest' - run: cd test && make - - name: check fuzz test target - if: matrix.os == 'ubuntu-latest' - run: cd test && make -f Makefile.fuzz_test - - name: setup msbuild on windows - if: matrix.os == 'windows-latest' - uses: microsoft/setup-msbuild@v1.0.2 - - name: make-windows - if: matrix.os == 'windows-latest' - run: | - cd test - msbuild.exe test.sln /verbosity:minimal /t:Build "/p:Configuration=Release;Platform=x64" - x64\Release\test.exe |