mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 14:29:10 -07:00
Fix GitHub Actions errors
This commit is contained in:
parent
ee4eb8deaa
commit
4c2a608a0c
3 changed files with 4 additions and 4 deletions
4
.github/workflows/test.yaml
vendored
4
.github/workflows/test.yaml
vendored
|
@ -8,8 +8,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: install brotli
|
- name: install libraries
|
||||||
run: sudo apt-get update && sudo apt-get install -y libbrotli-dev
|
run: sudo apt-get update && sudo apt-get install -y libbrotli-dev libcurl4-openssl-dev
|
||||||
- name: build and run tests
|
- name: build and run tests
|
||||||
run: cd test && make -j4
|
run: cd test && make -j4
|
||||||
- name: run fuzz test target
|
- name: run fuzz test target
|
||||||
|
|
|
@ -18,7 +18,7 @@ ZLIB_SUPPORT = -DCPPHTTPLIB_ZLIB_SUPPORT -lz
|
||||||
BROTLI_DIR = $(PREFIX)/opt/brotli
|
BROTLI_DIR = $(PREFIX)/opt/brotli
|
||||||
BROTLI_SUPPORT = -DCPPHTTPLIB_BROTLI_SUPPORT -I$(BROTLI_DIR)/include -L$(BROTLI_DIR)/lib -lbrotlicommon -lbrotlienc -lbrotlidec
|
BROTLI_SUPPORT = -DCPPHTTPLIB_BROTLI_SUPPORT -I$(BROTLI_DIR)/include -L$(BROTLI_DIR)/lib -lbrotlicommon -lbrotlienc -lbrotlidec
|
||||||
|
|
||||||
TEST_ARGS = gtest/gtest-all.cc gtest/gtest_main.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT) -pthread
|
TEST_ARGS = gtest/gtest-all.cc gtest/gtest_main.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT) -pthread -lcurl
|
||||||
|
|
||||||
# By default, use standalone_fuzz_target_runner.
|
# By default, use standalone_fuzz_target_runner.
|
||||||
# This runner does no fuzzing, but simply executes the inputs
|
# This runner does no fuzzing, but simply executes the inputs
|
||||||
|
|
|
@ -7614,7 +7614,7 @@ TEST(Expect100ContinueTest, ServerClosesConnection) {
|
||||||
|
|
||||||
Server svr;
|
Server svr;
|
||||||
|
|
||||||
svr.set_expect_100_continue_handler([](const Request &req, Response &res) {
|
svr.set_expect_100_continue_handler([](const Request &/*req*/, Response &res) {
|
||||||
res.status = StatusCode::Unauthorized_401;
|
res.status = StatusCode::Unauthorized_401;
|
||||||
res.set_content(reject, "text/plain");
|
res.set_content(reject, "text/plain");
|
||||||
return res.status;
|
return res.status;
|
||||||
|
|
Loading…
Reference in a new issue