forked from slalom/dataops-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (56 loc) · 1.46 KB
/
installer_checks.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
name: Windows Installer Tests
on:
push:
paths:
- .github/workflows/*.yml
- "**Dockerfile"
- "**.bat"
jobs:
test_setup_min:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- name: Test setup script
run: ./choco_min.bat
- uses: actions/upload-artifact@master
if: always()
with:
name: choco_min.bat.log
path: C:\ProgramData\chocolatey\logs\chocolatey.log
test_mac_installs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Test brew script
run: |
chmod 777 ./brew_install.sh
./brew_install.sh
- name: Test brew installs
run: |
brew install \
awscli cask docker terraform
- name: Test brew installs (upgrade)
run: |
brew upgrade \
azure-cli git python3
- name: Test cask installs
run: |
brew cask install --force \
anaconda dbeaver-community github google-chrome \
microsoft-teams r visual-studio-code
test_setup_full:
runs-on: windows-2019
steps:
- uses: actions/checkout@v1
- name: Test setup script
run: ./choco_devops.bat
- uses: actions/upload-artifact@master
if: always()
with:
name: choco_devops.bat.log
path: C:\ProgramData\chocolatey\logs\chocolatey.log
print_debug_info:
runs-on: windows-2019
steps:
- name: Print available Windows features
run: Dism /online /Get-Features