File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -126,15 +126,16 @@ jobs:
126126 if : ${{ runner.os == 'macOS' }}
127127 uses : XRPLF/actions/cleanup-workspace@cf0433aa74563aead044a1e395610c96d65a37cf
128128
129- - name : Restart colima (macOS)
129+ - name : Delete and start colima (macOS)
130+ # This is a temporary workaround for colima issues on macOS runners
130131 if : ${{ runner.os == 'macOS' }}
131132 run : |
132133 colima delete --force
133134 colima start
134135
135136 - name : Spin up scylladb (macOS)
136137 if : ${{ runner.os == 'macOS' }}
137- timeout-minutes : 3
138+ timeout-minutes : 1
138139 run : |
139140 docker run \
140141 --detach \
@@ -147,12 +148,12 @@ jobs:
147148 --memory 16G \
148149 scylladb/scylla
149150
150- - name : Wait for scylladb to be healthy (macOS)
151+ - name : Wait for scylladb container to be healthy (macOS)
151152 if : ${{ runner.os == 'macOS' }}
152- timeout-minutes : 3
153+ timeout-minutes : 1
153154 run : |
154155 until [ "$(docker inspect -f '{{.State.Health.Status}}' scylladb)" == "healthy" ]; do
155- sleep 5
156+ sleep 1
156157 done
157158
158159 - uses : actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
You can’t perform that action at this time.
0 commit comments