-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.yaml
228 lines (205 loc) · 6.34 KB
/
tools.yaml
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
ecosystems:
nodejs:
check_ecosystem: "command -v node >/dev/null 2>&1"
tools:
- name: "npm"
executable: "npm"
env:
NPM_CONFIG_UPDATE_NOTIFIER: "false"
commands:
- "npm config set update-notifier false"
install_for_testing: "npm install -g npm@latest"
skip: false
- name: "pnpm"
executable: "pnpm"
env: {}
commands:
- "pnpm config set notify false"
install_for_testing: "npm install -g pnpm@latest"
skip: false
- name: "yarn"
executable: "yarn"
env:
YARN_IGNORE_PATH: "1"
commands:
- "yarn config set enableTelemetry 0"
- "yarn config set enableGlobalCache 1"
install_for_testing: "npm install -g yarn@latest"
skip: false
cloud:
check_ecosystem: "command -v aws >/dev/null 2>&1 || command -v gcloud >/dev/null 2>&1 || command -v az >/dev/null 2>&1"
tools:
- name: "vercel"
executable: "vercel"
env:
VERCEL_CLI_SKIP_PROMPTS: "1"
commands: []
skip: false
- name: "netlify"
executable: "netlify"
env:
NETLIFY_CLI_DISABLE_VERSION_CHECK: "true"
commands: []
skip: false
- name: "amplify"
executable: "amplify"
env:
AMPLIFY_NO_UPDATE_NOTIFIER: "true"
commands:
- "amplify configure project --yes"
install_for_testing: "npm install -g @aws-amplify/cli"
skip: false
database:
check_ecosystem: "command -v prisma >/dev/null 2>&1"
tools:
- name: "prisma"
executable: "prisma"
env:
PRISMA_HIDE_UPDATE_MESSAGE: "true"
commands: []
skip: false
js_frameworks:
check_ecosystem: "command -v node_modules/.bin/next >/dev/null 2>&1 || command -v node_modules/.bin/gatsby >/dev/null 2>&1 || command -v node_modules/.bin/ng >/dev/null 2>&1"
tools:
- name: "next"
executable: "node_modules/.bin/next"
env:
NEXT_TELEMETRY_DISABLED: "1"
commands: []
skip: false
- name: "gatsby"
executable: "node_modules/.bin/gatsby"
env:
GATSBY_TELEMETRY_DISABLED: "1"
commands: []
skip: false
- name: "angular"
executable: "node_modules/.bin/ng"
env:
NG_CLI_ANALYTICS: "false"
commands:
- "ng analytics off"
install_for_testing: "npm install -g @angular/cli"
skip: false
python:
check_ecosystem: "command -v python3 >/dev/null 2>&1 || command -v python >/dev/null 2>&1"
tools:
- name: "pip"
executable: "pip"
env:
PIP_DISABLE_PIP_VERSION_CHECK: "1"
commands: []
skip: false
- name: "pipenv"
executable: "pipenv"
env:
PIPENV_VERBOSITY: "-1"
PIPENV_HIDE_EMOJIS: "1"
commands: []
skip: false
- name: "poetry"
executable: "poetry"
env: {}
commands:
- "poetry config experimental.new-installer false"
install_for_testing: "curl -sSL https://install.python-poetry.org | python3 -"
skip: false
- name: "conda"
executable: "conda"
env:
CONDA_AUTO_UPDATE_CONDA: "false"
commands:
- "conda config --set notify_outdated_conda false"
install_for_testing: "curl -L -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && bash Miniconda3-latest-Linux-x86_64.sh -b"
skip: false
ruby:
check_ecosystem: "command -v ruby >/dev/null 2>&1"
tools:
- name: "bundler"
executable: "bundle"
env: {}
commands:
- "bundle config set disable_version_check true"
- "bundle config set silence_root_warning true"
install_for_testing: "gem install bundler"
skip: false
php:
check_ecosystem: "command -v php >/dev/null 2>&1"
tools:
- name: "composer"
executable: "composer"
env:
COMPOSER_DISABLE_XDEBUG_WARN: "1"
commands:
- "composer config --global discard-changes true"
install_for_testing: "curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer"
skip: false
java:
check_ecosystem: "command -v java >/dev/null 2>&1"
tools:
- name: "gradle"
executable: "gradle"
env:
GRADLE_OPTS: "-Dorg.gradle.internal.launcher.welcomeMessageEnabled=false"
commands:
- "echo 'org.gradle.caching=false' >> gradle.properties"
- "echo 'org.gradle.logging.level=QUIET' >> gradle.properties"
install_for_testing: "sdk install gradle"
skip: false
- name: "maven"
executable: "mvn"
env:
MAVEN_OPTS: "-Djansi.force=false"
commands:
- "echo '<settings><interactiveMode>false</interactiveMode></settings>' > ~/.m2/settings.xml"
install_for_testing: "sdk install maven"
skip: false
dotnet:
check_ecosystem: "command -v dotnet >/dev/null 2>&1"
tools:
- name: "dotnet"
executable: "dotnet"
env:
DOTNET_CLI_TELEMETRY_OPTOUT: "1"
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "1"
commands: []
skip: false
rust:
check_ecosystem: "command -v cargo >/dev/null 2>&1"
tools:
- name: "cargo"
executable: "cargo"
env:
CARGO_TERM_PROGRESS_WHEN: "never"
commands: []
skip: false
cloud_providers:
check_ecosystem: "command -v aws >/dev/null 2>&1 || command -v gcloud >/dev/null 2>&1 || command -v az >/dev/null 2>&1"
tools:
- name: "aws"
executable: "aws"
env: {}
commands: []
skip: false
- name: "azure"
executable: "az"
env:
AZURE_CORE_COLLECT_TELEMETRY: "false"
commands: []
skip: false
- name: "gcloud"
executable: "gcloud"
env:
CLOUDSDK_CORE_DISABLE_USAGE_REPORTING: "true"
commands:
- "gcloud config set disable_usage_reporting true"
install_for_testing: "curl https://sdk.cloud.google.com | bash"
skip: false
devops:
tools:
- name: "terraform"
executable: "terraform"
env:
CHECKPOINT_DISABLE: "1"
commands: []
skip: false