45
45
- name : Store generated code
46
46
uses : actions/upload-artifact@v4
47
47
with :
48
- name : generated-code
49
- path : /tmp/generated.tar.gz
48
+ name : generated-code
49
+ path : /tmp/generated.tar.gz
50
50
51
51
- name : Build Spark direct-access client
52
52
working-directory : clients/hadoopfs
@@ -179,6 +179,7 @@ jobs:
179
179
- 1.49.1
180
180
- 1.50.0
181
181
- 1.51.0
182
+ - 1.52.0
182
183
runs-on : ubuntu-22.04
183
184
env :
184
185
TAG : ${{ matrix.lakefs_version }}
@@ -202,7 +203,7 @@ jobs:
202
203
uses : actions/setup-python@v4
203
204
with :
204
205
python-version : 3.11
205
- cache : ' pip'
206
+ cache : " pip"
206
207
- run : pip install -r ./test/spark/requirements.txt
207
208
208
209
- name : Generate uniquifying value
@@ -254,7 +255,7 @@ jobs:
254
255
matrix :
255
256
# Removing a version from this list means the current lakeFS is no longer compatible with
256
257
# that Hadoop lakeFS client version.
257
- client_version : [ 0.1.10, 0.1.11, 0.1.12, 0.1.13, 0.1.14, 0.1.15, 0.2.1 ]
258
+ client_version : [0.1.10, 0.1.11, 0.1.12, 0.1.13, 0.1.14, 0.1.15, 0.2.1]
258
259
runs-on : ubuntu-22.04
259
260
env :
260
261
CLIENT_VERSION : ${{ matrix.client_version }}
@@ -292,7 +293,7 @@ jobs:
292
293
uses : actions/setup-python@v4
293
294
with :
294
295
python-version : 3.11
295
- cache : ' pip'
296
+ cache : " pip"
296
297
- run : pip install -r ./test/spark/requirements.txt
297
298
298
299
- name : Generate uniquifying value
@@ -337,13 +338,13 @@ jobs:
337
338
runs-on : ubuntu-22.04
338
339
if : ${{ always() && contains(needs.*.result, 'failure') }}
339
340
steps :
340
- - name : slack-send
341
- uses : slackapi/slack-github-action@v1.23.0
342
- env :
343
- SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
344
- with :
345
- payload : |
346
- {
347
- "mrkdwn": true,
348
- "text": "Compatibility tests failure in master branch: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
349
- }
341
+ - name : slack-send
342
+ uses : slackapi/slack-github-action@v1.23.0
343
+ env :
344
+ SLACK_WEBHOOK_URL : ${{ secrets.SLACK_WEBHOOK_URL }}
345
+ with :
346
+ payload : |
347
+ {
348
+ "mrkdwn": true,
349
+ "text": "Compatibility tests failure in master branch: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
350
+ }
0 commit comments