Skip to content

Commit

Permalink
Adjusted debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
olapiv committed Oct 25, 2024
1 parent c0f4ad5 commit 568bc96
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build_test_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,12 @@ jobs:
- name: Download RonDB
run: |
set -x
wget $RONDB_TARBALL_URI -O ./temp_tarball.tar.gz
(set +e; ls -la ./**)
(set +e; ls -la /tmp/**)
tar xfz ./temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1
(set +e; ls -la ./**)
(set +e; ls -la /tmp/**)
rm ./temp_tarball.tar.gz
wget $RONDB_TARBALL_URI -O /tmp/temp_tarball.tar.gz
(set +e; ls -la /tmp)
tar xfz /tmp/temp_tarball.tar.gz -C $RONDB_PATH --strip-components=1
(set +e; ls -la /tmp)
(set +e; ls -la $RONDB_PATH)
rm /tmp/temp_tarball.tar.gz
- name: Build and Run RonDB Service
run: |
Expand Down

0 comments on commit 568bc96

Please sign in to comment.