Skip to content

Commit c0f4ad5

Browse files
committed
Don't fail
1 parent 3b000d7 commit c0f4ad5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_test_push.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
run: |
3434
set -x
3535
wget $RONDB_TARBALL_URI -O ./temp_tarball.tar.gz
36-
ls -la ./**
37-
ls -la /tmp/**
36+
(set +e; ls -la ./**)
37+
(set +e; ls -la /tmp/**)
3838
tar xfz ./temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1
39-
ls -la ./**
40-
ls -la /tmp/**
39+
(set +e; ls -la ./**)
40+
(set +e; ls -la /tmp/**)
4141
rm ./temp_tarball.tar.gz
4242
4343
- name: Build and Run RonDB Service

0 commit comments

Comments
 (0)