Skip to content

Commit

Permalink
debug ci 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanitskiy committed Aug 30, 2023
1 parent 7fade66 commit 5fce3ac
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5fce3ac

Please sign in to comment.