-
Notifications
You must be signed in to change notification settings - Fork 3
/
ideas.yml
78 lines (67 loc) · 1.53 KB
/
ideas.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
# parcel.yml
# done: choco, scoop, ps-gallery, brew, docker
# yes: yum, apt-get, nuget, win-features, script
# maybe: git, npm, yarn, bower (all global)
# others: windows-appx (win-store), snap
# PACKAGE [<name> - <version> - <provider>]
# > [updated|installed|uninstalled]
#needed in classes:
#
#[bool] TestProvider()
#[scriptblock] GetInstallProviderScriptBlock()
#
#[string] GetInstallScript()
#[string] GetUninstallScript()
#[bool] TestInstalled()
#[bool] TestUninstalled()
#[bool] TestExitCode([int]$_code, [string]$_output, [string]$_action)
---
providers:
scoops:
sources:
- name: my-bucket
url: http:/buck.com
choco:
sources:
- name: my-repo
url: something
scripts: # pre/post everything
pre:
install: #script
uninstall: #script
post:
install: #script
uninstall: #script
packages:
- name: 7zip
provider: choco #self-install
version: 1.6.7
source: custom-source
pre:
install: #script
uninstall: #script
post:
install: #script
uninstall: #script
- name: 7zip
provider: scoop # < self-install the provider
version: 1.6.7
- name: 7zip
provider: auto # < this will choose the best provider based on the os
version: 1.6.7
- name: 7zip
provider: script
script: |
sudo yum install zip
os: linux
when: ($parcel.os -ieq 'linux')
- name: 7zip
provider: yum #only on linux - also supports: apt-get
- name: pester
provider: psgallery
version: 5.1.0
environment: dev
- name: pester
provider: psgallery
version: 5.1.0
source: private-gallery