Skip to content

Commit

Permalink
Business as usual
Browse files Browse the repository at this point in the history
  • Loading branch information
fidel committed Jan 3, 2025
1 parent 8487543 commit 9ee0290
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ruby_event_store-outbox_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,3 @@ jobs:
}
"
working-directory: "${{ env.WORKING_DIRECTORY }}"
- uses: actions/upload-artifact@v3
if: always()
with:
name: redis-logs
path: /home/runner/_temp/redis.log
10 changes: 2 additions & 8 deletions support/nix/redis.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,17 @@ mkShell {
LANG = "en_US.UTF-8"
LC_ALL = "en_US.UTF-8"
mkdir -p /home/runner/_temp/kakadudu
touch /home/runner/_temp/redis.log
TMP=/home/runner/_temp/kakadudu
TMP=$(mktemp -d)
SOCKET=$TMP/redis.sock
PIDFILE=$TMP/redis.pid
LOGFILE=/home/runner/_temp/redis.log
redis-server \
--protected-mode no \
--port 0 \
--unixsocket $SOCKET \
--save "" \
--daemonize yes \
--pidfile $PIDFILE \
--loglevel verbose \
--logfile $LOGFILE
--pidfile $PIDFILE
export REDIS_URL="unix://$SOCKET"
Expand Down

0 comments on commit 9ee0290

Please sign in to comment.