-
Notifications
You must be signed in to change notification settings - Fork 17
155 lines (138 loc) · 3.77 KB
/
manual.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: Rebuild everything
on:
schedule:
- cron: '30 0 * * Mon'
workflow_dispatch:
jobs:
test-bot:
name: Check syntax
runs-on: ubuntu-24.04
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
with:
core: true
- run: brew test-bot --only-cleanup-before
- run: brew test-bot --only-setup
- run: brew test-bot --only-tap-syntax
build-unit:
name: Build Unit
needs: test-bot
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macOS-13, macOS-14, macOS-15]
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
with:
core: true
- name: Build Unit
run:
brew install --build-from-source unit
build-unit-perl:
name: Build Unit Perl module
needs: build-unit
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macOS-13, macOS-14, macOS-15]
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
with:
core: true
- name: Build Unit Perl module
run: |
brew install --build-from-source perl
brew install --build-from-source Formula/unit-perl.rb
build-unit-python3:
name: Build Unit Python 3 module
needs: build-unit
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macOS-13, macOS-14, macOS-15]
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
with:
core: true
- name: Build Unit Python 3 module
run:
brew install --build-from-source Formula/unit-python3.rb
build-unit-java:
name: Build Unit Java module
needs: build-unit
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macOS-12, macOS-13, macOS-14]
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
with:
core: true
- name: Build Unit Java module
run:
brew install --build-from-source Formula/unit-java.rb
build-unit-ruby:
name: Build Unit Ruby module
needs: build-unit
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macOS-12, macOS-13, macOS-14]
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
with:
core: true
- name: Build Unit Ruby module
run:
brew install --build-from-source Formula/unit-ruby.rb
build-unit-php:
name: Build Unit PHP module
needs: build-unit
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macOS-12, macOS-13, macOS-14]
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
with:
core: true
- name: Build Unit PHP module
run:
brew install --build-from-source Formula/unit-php.rb
build-unit-wasm:
name: Build Unit WASM module
needs: build-unit
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macOS-12, macOS-13, macOS-14]
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
with:
core: true
- name: Build Unit WASM module
run:
brew install --build-from-source Formula/unit-wasm.rb