File tree Expand file tree Collapse file tree 3 files changed +829
-770
lines changed
.github/actions/fuse_compat Expand file tree Collapse file tree 3 files changed +829
-770
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,6 @@ inputs:
12
12
runs :
13
13
using : " composite"
14
14
steps :
15
- - name : Setup Build Tool
16
- uses : ./.github/actions/setup_build_tool
17
-
18
15
- name : Download artifact
19
16
uses : ./.github/actions/artifact_download
20
17
with :
26
23
- name : Test compatibility
27
24
shell : bash
28
25
run : |
29
- build-tool bash ./tests/fuse-compat/test-fuse-compat.sh 0.7.150
30
- build-tool bash ./tests/fuse-compat/test-fuse-compat.sh 0.7.151
26
+ docker run --rm --tty --net=host \
27
+ --user $(id -u):$(id -g) \
28
+ --env BUILD_PROFILE \
29
+ --volume "${PWD}:/workspace" \
30
+ --workdir "/workspace" \
31
+ datafuselabs/build-tool:sqllogic \
32
+ bash ./tests/fuse-compat/test-fuse-compat.sh 0.7.150
33
+ docker run --rm --tty --net=host \
34
+ --user $(id -u):$(id -g) \
35
+ --env BUILD_PROFILE \
36
+ --volume "${PWD}:/workspace" \
37
+ --workdir "/workspace" \
38
+ datafuselabs/build-tool:sqllogic \
39
+ bash ./tests/fuse-compat/test-fuse-compat.sh 0.7.151
31
40
32
41
- name : Upload failure
33
42
if : failure()
You can’t perform that action at this time.
0 commit comments