-
-
Notifications
You must be signed in to change notification settings - Fork 58
49 lines (46 loc) · 1.33 KB
/
blank.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: CI
on:
push:
branches:
- develop
- master
- dev
- ci
pull_request:
branches:
- master
schedule:
- cron: '0 0 * * 0'
jobs:
my_job:
name: test Nginx-ee
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
steps:
- uses: actions/checkout@v4
- name: Prepare VM
run: sudo bash tests.sh
- name: Mainline build
run: sudo bash nginx-build.sh --travis || cat /tmp/nginx-ee.log
- name : Nginx check Mainline build
run: sudo nginx -V || cat /tmp/nginx-ee.log
- name: Stable build
run: sudo bash nginx-build.sh --travis --stable
- name : Nginx check Stable build
run: sudo nginx -V
- name: Full build stable
run: sudo bash nginx-build.sh --travis --full --stable
- name : Nginx check Full build stable
run: sudo nginx -V
- name: Mainline naxsi
run: sudo bash nginx-build.sh --naxsi --travis || cat /tmp/nginx-ee.log
- name : Nginx check Mainline naxsi
run: sudo nginx -V
- name: libressl build
run: sudo bash nginx-build.sh --libressl --travis || cat /tmp/nginx-ee.log
- name : Nginx check libressl build
run: sudo nginx -V
- name: dynamic build
run: sudo bash nginx-build.sh --dynamic --travis || cat /tmp/nginx-ee.log