-
Notifications
You must be signed in to change notification settings - Fork 5
77 lines (75 loc) · 2.11 KB
/
install-test.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
name: 'install-test'
on:
schedule:
- cron: "30 22 * * *"
push:
branches:
- master
jobs:
install-php-x86:
runs-on: macos-13
steps:
- uses: actions/checkout@v1
- name: Install php services
run: |
brew update || true
brew upgrade $(brew outdated --formula -q) || true
brew tap valet-sh/core
brew install vsh-php56
brew install vsh-php70
brew install vsh-php71
brew install vsh-php72
brew install vsh-php73
brew install vsh-php74
brew install vsh-php80
brew install vsh-php81
brew install vsh-php82
brew install vsh-php83
install-elasticsearch-x86:
runs-on: macos-13
steps:
- uses: actions/checkout@v1
- name: Install elasticsearch services
run: |
brew update || true
brew upgrade $(brew outdated --formula -q) || true
brew tap valet-sh/core
brew install vsh-elasticsearch1
brew install vsh-elasticsearch2
brew install vsh-elasticsearch5
brew install vsh-elasticsearch6
brew install vsh-elasticsearch7
brew install vsh-elasticsearch8
install-opensearch-x86:
runs-on: macos-13
steps:
- uses: actions/checkout@v1
- name: Install opensearch services
run: |
brew update || true
brew upgrade $(brew outdated --formula -q) || true
brew tap valet-sh/core
brew install vsh-opensearch1
brew install vsh-opensearch2
install-mysql-x86:
runs-on: macos-13
steps:
- uses: actions/checkout@v1
- name: Install mysql services
run: |
brew update || true
brew upgrade $(brew outdated --formula -q) || true
brew tap valet-sh/core
brew install vsh-mysql57
brew install vsh-mysql80
install-mariadb-x86:
runs-on: macos-13
steps:
- uses: actions/checkout@v1
- name: Install mariadb services
run: |
brew update || true
brew upgrade $(brew outdated --formula -q) || true
brew tap valet-sh/core
brew install vsh-mariadb104
brew install vsh-mariadb106