Skip to content
Snippets Groups Projects
Commit bff5ea36 authored by Rajab Natshah's avatar Rajab Natshah
Browse files

Issue #3194401: Switch to CircleCI as the default automated testing platform

parent 4b300acc
No related branches found
No related tags found
No related merge requests found
...@@ -96,10 +96,12 @@ jobs: ...@@ -96,10 +96,12 @@ jobs:
## Run selenium standalone server. ## Run selenium standalone server.
- run: - run:
name: Download Selenium name: Download Selenium
command: curl -O http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.1.jar command: if [[ ! -f /home/circleci/selenium-server-standalone-2.53.1.jar ]]; then wget -O /home/circleci/selenium-server-standalone-2.53.1.jar http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.1.jar; fi
- run: - run:
name: Start Selenium at the 4445 port name: Start Selenium at the 4445 port
command: java -jar selenium-server-standalone-2.53.1.jar -port 4445 > /dev/null 2>&1 & command: |
cd /home/circleci/
java -jar selenium-server-standalone-2.53.1.jar -port 4445 > /dev/null 2>&1 &
background: true background: true
## Update the composer ## Update the composer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment