Compare commits

...

7 Commits

Author SHA1 Message Date
Alex Jarmoszuk
a0ee87984d
Fixing the module finding 2024-04-13 17:36:33 +02:00
Alex Jarmoszuk
89f1faf86d
Trying again to fix the workflow 2024-04-13 17:33:42 +02:00
Alex Jarmoszuk
471bda71c9
Build process updated 2024-04-13 17:31:00 +02:00
Alex Jarmoszuk
6603028541
Update nginx-module-build.yml 2024-04-13 17:24:11 +02:00
Alex Jarmoszuk
4eb32c8af8
Update nginx-module-build.yml 2024-04-13 17:23:32 +02:00
Alex Jarmoszuk
dfb7bdf695
Update nginx-module-build.yml 2024-04-13 17:20:37 +02:00
Alex Jarmoszuk
fe542d30ba
Create nginx-module-build.yml 2024-04-13 17:19:20 +02:00

View File

@ -0,0 +1,52 @@
name: Build NGINX Module
on:
push:
branches:
- master # Ensure this matches your main branch name
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y nginx gcc make
- name: Download and extract NGINX source
run: |
wget https://nginx.org/download/nginx-1.25.4.tar.gz
tar -xvzf nginx-1.25.4.tar.gz
echo "NGINX_PATH=$(pwd)/nginx-1.25.4" >> $GITHUB_ENV
- name: Run build script
run: |
chmod +x build.sh
./build.sh
- name: List modules
run: |
ls ${NGINX_PATH}/objs
- name: Package module
run: |
find ${NGINX_PATH}/objs -name "*.so" -exec tar -czvf ngx_http_js_challenge_module.tar.gz -C ${NGINX_PATH}/objs {} +
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ngx_http_js_challenge_module
path: ngx_http_js_challenge_module.tar.gz
- name: Check module output
run: |
ls ${NGINX_PATH}/objs/*.so