File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ FROM gitpod/workspace-full
2
+
3
+ RUN brew install act
Original file line number Diff line number Diff line change 2
2
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
3
3
# and commit this file to your remote git repository to share the goodness with others.
4
4
5
+ image :
6
+ file : .gitpod.Dockerfile
7
+
5
8
jetbrains :
6
9
intellij :
7
10
plugins :
Original file line number Diff line number Diff line change 21
21
fi
22
22
23
23
if [[ ${MONGO_SHELL_COMMAND} != ' mongosh' ]]; then
24
- MONGO_SHELL_COMMAND=" ${MONGO_SHELL_COMMAND} --quiet"
24
+ MONGO_SHELL_COMMAND=" ${MONGO_SHELL_COMMAND} --quiet "
25
25
fi
26
26
27
27
echo " Waiting for MongoDB to accept connections"
28
28
sleep 1
29
29
TIMER=0
30
30
31
- until docker exec --tty mongodb /bin/bash -c " " $MONGO_SHELL_COMMAND --port 27017 --eval " db.serverStatus() &> /dev/null "
31
+ until docker exec --tty mongodb /bin/bash -c " $MONGO_SHELL_COMMAND --port 27017 --eval 'true' "
32
32
do
33
33
sleep 1
34
34
echo " ."
39
39
exit 2
40
40
fi
41
41
done
42
+
43
+ echo " Start you tests"
You can’t perform that action at this time.
0 commit comments