Skip to content

Commit

Permalink
Try harder
Browse files Browse the repository at this point in the history
  • Loading branch information
fidel committed Jan 3, 2025
1 parent 1649d0d commit 9beb9f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby_event_store-outbox_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@ jobs:
if: always()
with:
name: redis-logs
path: "{{ env.REDIS_LOG_FILE }}"
path: /home/runner/_temp/kakadudu/redis.log
5 changes: 3 additions & 2 deletions support/nix/redis.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ mkShell {
shellHook = ''
${builtins.readFile ./pushtrap.sh}
TMP=$(mktemp -d)
# TMP=$(mktemp -d)
mkdir -p /home/runner/_temp/kakadudu
TMP=/home/runner/_temp/kakadudu/
SOCKET=$TMP/redis.sock
PIDFILE=$TMP/redis.pid
LOGFILE=$TMP/redis.log
Expand All @@ -21,7 +23,6 @@ mkShell {
--loglevel verbose \
--logfile $LOGFILE
export REDIS_LOG_FILE=$LOGFILE
export REDIS_URL="unix://$SOCKET"
pushtrap "kill -9 $(cat $PIDFILE);rm -rf $TMP" EXIT
Expand Down

0 comments on commit 9beb9f8

Please sign in to comment.