Skip to content

Commit 56bfcef

Browse files
committed
PHPC-128: Start the nodes using MO
1 parent ad03df9 commit 56bfcef

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ before_script:
3030
- ulimit -a
3131
- ulimit -c unlimited || true
3232
- "./.travis.scripts/compile.sh"
33-
- make composer
33+
- make test-bootstrap composer
3434

3535
notifications:
3636
email:

scripts/start-servers.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ function lap() {
2424
$res = $orch->start("standalone.json");
2525
printf("Standalone running on:\t\t\t(took: %.2f secs)\t%s\n", lap(), $res);
2626

27+
if (getenv("TRAVIS")) {
28+
echo "Skipping special nodes on travis\n";
29+
exit;
30+
}
2731
$res = $orch->start("standalone-ssl.json");
2832
printf("Standalone SSL running on:\t\t(took: %.2f secs)\t%s\n", lap(), $res);
2933

0 commit comments

Comments
 (0)