-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy path.cirrus.yml
33 lines (33 loc) · 998 Bytes
/
.cirrus.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
task:
name: macOS
osx_instance:
matrix:
- image: monterey-base
env:
matrix:
- PACKAGE: postgresql-common
- PACKAGE: postgresql@16
- PACKAGE: postgresql@15
- PACKAGE: postgresql@14
- PACKAGE: postgresql@13
- PACKAGE: postgresql@12
- PACKAGE: postgresql@11
- PACKAGE: postgresql@10
- PACKAGE: [email protected]
- PACKAGE: [email protected]
- PACKAGE: [email protected]
install_opt: '--HEAD'
- PACKAGE: [email protected]
install_opt: '--HEAD'
- PACKAGE: [email protected]
install_opt: '--HEAD'
setup_script:
- brew update
- mkdir -p $(brew --repo)/Library/Taps/cirrus
- ln -s $PWD $(brew --repo)/Library/Taps/cirrus/homebrew-testtap
- brew tap --repair
build_script:
- brew install -v $install_opt cirrus/testtap/$PACKAGE
- brew postinstall cirrus/testtap/$PACKAGE
- brew audit --except=file,specs cirrus/testtap/$PACKAGE
- brew test cirrus/testtap/$PACKAGE