diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2ff70e2..590e997 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -160,7 +160,27 @@ jobs: toolchain: stable override: true components: rustfmt, clippy - - run: cargo clippy -- -D warnings + - name: run clippy + continue-on-error: true + run: cargo clippy -- -D warnings + - name: compile nnginx in ci + run: | + cd /home/runner/work/ngx-rust/ngx-rust/.cache/src/linux-x86_64/nginx-1.23.3 + ls -la + ./configure \ + --prefix=/home/runner/work/ngx-rust/ngx-rust/.cache/nginx/1.23.3/linux-x86_64 \ + --with-file-aio --with-cc-opt=-g -fstack-protector-strong -Wformat \ + -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC --with-ld-opt=-Wl,-Bsymbolic-functions \ + -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -pie --with-compat --with-http_addition_module \ + --with-http_auth_request_module --with-http_flv_module --with-http_gunzip_module \ + --with-http_gzip_static_module --with-http_random_index_module --with-http_realip_module \ + --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module \ + --with-http_stub_status_module --with-http_sub_module --with-http_v2_module \ + --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module \ + --with-stream --with-threads \ + --with-zlib=/home/runner/work/ngx-rust/ngx-rust/.cache/src/linux-x86_64/zlib-1.3 \ + --with-pcre=/home/runner/work/ngx-rust/ngx-rust/.cache/src/linux-x86_64/pcre2-10.42 \ + --with-openssl=/home/runner/work/ngx-rust/ngx-rust/.cache/src/linux-x86_64/openssl-3.0.7 # - uses: actions-rs/cargo@v1 # with: # command: clippy