Skip to content

Commit 3b000d7

Browse files
committed
Adding debugging statements
1 parent 7514b26 commit 3b000d7

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/build_test_push.yaml

+8-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,14 @@ jobs:
3131
3232
- name: Download RonDB
3333
run: |
34-
wget $RONDB_TARBALL_URI -O ./temp_tarball.tar.gz \
35-
&& tar xfz ./temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1 \
36-
&& rm ./temp_tarball.tar.gz
34+
set -x
35+
wget $RONDB_TARBALL_URI -O ./temp_tarball.tar.gz
36+
ls -la ./**
37+
ls -la /tmp/**
38+
tar xfz ./temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1
39+
ls -la ./**
40+
ls -la /tmp/**
41+
rm ./temp_tarball.tar.gz
3742
3843
- name: Build and Run RonDB Service
3944
run: |

0 commit comments

Comments
 (0)