Skip to content

Commit

Permalink
reduce noise
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-merzky committed Dec 12, 2024
1 parent e6cc57f commit 8f69f49
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@ jobs:
CLIENTNAME="analytics_client_$SIDCLIENT"
AGENTNAME="analytics_agent_$SIDCLIENT"
mkdir sessions_analytics
# tar cvfj $CLIENTNAME.tar.bz2 $SIDCLIENT
tar cvfj $CLIENTNAME.tar.bz2 `find $SIDCLIENT -type d -print`
# tar cfj $CLIENTNAME.tar.bz2 $SIDCLIENT
tar cfj $CLIENTNAME.tar.bz2 `find $SIDCLIENT -type d -print`
cp -R $CLIENTNAME.tar.bz2 sessions_analytics
if [ -d "$SIDAGENT" ]; then
tar cvfj $AGENTNAME.tar.bz2 `find $SIDAGENT -type d -print`
tar cfj $AGENTNAME.tar.bz2 `find $SIDAGENT -type d -print`
cp -R $AGENTNAME.tar.bz2 sessions_analytics
fi
- name: Upload artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-rp-notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ jobs:
echo "CLIENTNAME : $CLIENTNAME"
echo "AGENTNAME : $AGENTNAME"
mkdir sessions_notebooks
tar cvfj $CLIENTNAME.tar.bz2 $SIDCLIENT
tar cfj $CLIENTNAME.tar.bz2 $SIDCLIENT
cp -R $CLIENTNAME.tar.bz2 sessions_notebooks
if [ -d "$SIDAGENT" ]; then
tar cvfj $AGENTNAME.tar.bz2 $SIDAGENT
tar cfj $AGENTNAME.tar.bz2 $SIDAGENT
cp -R $AGENTNAME.tar.bz2 sessions_notebooks
fi
- name: Upload sessions
Expand Down

0 comments on commit 8f69f49

Please sign in to comment.