Update build-nginx-windows.yml #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build NGINX on ubuntu-22.04 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 # Use a CentOS 8 runner | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y gcc make pcre-devel zlib-devel openssl-devel tar curl | |
- name: Download and build NGINX | |
run: | | |
curl -O http://nginx.org/download/nginx-1.20.1.tar.gz | |
tar -xvf nginx-1.20.1.tar.gz | |
cd nginx-1.20.1 | |
./configure --prefix=/usr --with-http_ssl_module --with-http_v2_module | |
make | |
make install DESTDIR=/nginx-install | |
cd /nginx-install | |
tar -czvf nginx-1.20.1.tar.gz . | |
- name: Upload NGINX tar.gz package | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nginx-tarball | |
path: nginx-install/nginx-1.20.1.tar.gz | |