-
Notifications
You must be signed in to change notification settings - Fork 10
233 lines (176 loc) · 5.58 KB
/
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
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
229
230
231
232
233
name: test
on:
pull_request:
types: [opened, synchronize]
push:
branches: [main]
workflow_dispatch:
jobs:
action_with_defaults:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4
with:
path: ./setup-cli
- uses: ./setup-cli
- run: databricks version
shell: bash
- run: ./setup-cli/assert/version.sh $(cat ./setup-cli/VERSION)
shell: bash
- run: ./setup-cli/assert/clean.sh
shell: bash
action_with_version:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4
with:
path: ./setup-cli
- uses: ./setup-cli
with:
version: 0.200.0
- run: databricks version
shell: bash
- run: ./setup-cli/assert/version.sh 0.200.0
shell: bash
- run: ./setup-cli/assert/clean.sh
shell: bash
install:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4
with:
path: ./setup-cli
- run: env
shell: bash
- name: Assert databricks CLI is not already installed
run: ./setup-cli/assert/not-installed.sh
shell: bash
- run: ./setup-cli/install.sh
shell: bash
- run: databricks version
shell: bash
- name: Assert the version of the CLI installed
run: ./setup-cli/assert/version.sh $(cat ./setup-cli/VERSION)
shell: bash
- name: Assert installation path is /usr/local/bin for non-windows platforms
run: ./setup-cli/assert/path.sh /usr/local/bin/databricks
if: matrix.os != 'windows-latest'
shell: bash
- name: Assert installation path is /c/Windows for windows platforms
if: matrix.os == 'windows-latest'
run: ./setup-cli/assert/path.sh /c/Windows/databricks
install-dbr:
# All DBR images are built on top of Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: ./setup-cli
# When run on DBR, the installation scripts installs the CLI to ~/bin. Add
# it to $PATH to make assertions work.
- run: echo "$HOME/bin" >> $GITHUB_PATH
- name: Assert databricks CLI is not already installed
run: ./setup-cli/assert/not-installed.sh
shell: bash
- name: Install the CLI
run: ./setup-cli/install.sh
shell: bash
env:
DATABRICKS_RUNTIME_VERSION: value-does-not-matter
- name: Run the CLI
run: databricks version
shell: bash
- name: Assert the version of the CLI installed
run: ./setup-cli/assert/version.sh $(cat ./setup-cli/VERSION)
shell: bash
- name: Assert installation path is ~/bin
run: ./setup-cli/assert/path.sh ~/bin/databricks
shell: bash
curl:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4
with:
path: ./setup-cli
- name: Assert databricks CLI is not already installed
run: ./setup-cli/assert/not-installed.sh
shell: bash
- run: curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/${{ github.sha }}/install.sh | sh
shell: bash
- run: databricks version
shell: bash
- name: Assert the version of the CLI installed
run: ./setup-cli/assert/version.sh $(cat ./setup-cli/VERSION)
shell: bash
- name: Assert installation path is /usr/local/bin for non-windows platforms
run: ./setup-cli/assert/path.sh /usr/local/bin/databricks
if: matrix.os != 'windows-latest'
shell: bash
- name: Assert installation path is /c/Windows for windows platforms
if: matrix.os == 'windows-latest'
run: ./setup-cli/assert/path.sh /c/Windows/databricks
curl-dbr:
# All DBR images are built on top of Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: ./setup-cli
# When run on DBR, the installation scripts installs the CLI to ~/bin. Add
# it to $PATH to make assertions work.
- run: echo "$HOME/bin" >> $GITHUB_PATH
- name: Assert databricks CLI is not already installed
run: ./setup-cli/assert/not-installed.sh
shell: bash
- run: curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/${{ github.sha }}/install.sh | sh
shell: bash
env:
DATABRICKS_RUNTIME_VERSION: value-does-not-matter
- run: databricks version
shell: bash
- name: Assert the version of the CLI installed
run: ./setup-cli/assert/version.sh $(cat ./setup-cli/VERSION)
shell: bash
- name: Assert installation path is ~/bin
run: ./setup-cli/assert/path.sh ~/bin/databricks
shell: bash
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: ./setup-cli
- name: Install shellcheck
run: sudo apt-get install shellcheck
shell: bash
- name: Run shellcheck
run: shellcheck ./setup-cli/*.sh
shell: bash