Skip to content

Commit cf68dda

Browse files
committed
try to install redis
1 parent d12b0a5 commit cf68dda

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pull_request.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
name: Unit tests
1616
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
1717
with:
18-
linux_pre_build_command: apt-get update -y && apt-get install redis -y && systemctl start redis-stack-server
18+
# since we don't have systemctl, we run the redis server manually in the background
19+
linux_pre_build_command: apt-get update -y && apt-get install redis -y && redis-server &
1920
linux_exclude_swift_versions: "[{\"swift_version\": \"5.8\"}]"
2021
linux_env_vars: REDIS_URL=redis
2122
enable_windows_checks: false

0 commit comments

Comments
 (0)