Skip to content

Commit c8262ce

Browse files
committed
Change how nginx builds for the action
1 parent 9ee27b5 commit c8262ce

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/nginx.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,18 @@ jobs:
3737
run: |
3838
sudo cpan -iT Proc::Find Net::SSLeay IO::Socket::SSL
3939
40-
- name: Build nginx
41-
uses: wolfSSL/actions-build-autotools-project@v1
40+
- name: Checkout nginx
41+
uses: actions/checkout@v4
4242
with:
4343
repository: nginx/nginx
4444
path: nginx
4545
ref: release-1.27.4
46-
configure: --with-http_ssl_module --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-http_v2_module --with-mail --with-mail_ssl_module
47-
check: false
46+
47+
- name: Build nginx
48+
working_directory: nginx
49+
run: |
50+
./auto/configure --with-http_ssl_module --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-http_v2_module --with-mail --with-mail_ssl_module
51+
make -j
4852
4953
- name: Checkout nginx-tests
5054
uses: actions/checkout@v4

0 commit comments

Comments
 (0)