You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 19, 2018. It is now read-only.
- if [[ "$DRIVER" == "google-chrome" ]]; then wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -; fi
10
+
- if [[ "$DRIVER" == "google-chrome" ]]; then echo "deb http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list; fi
11
+
- if [[ "$DRIVER" == "google-chrome" ]]; then sudo apt-get update -qq && sudo apt-get install -qq -y google-chrome-stable; fi
12
+
- sudo apt-get install -qq -y fonts-liberation
12
13
- gem install bundler
13
14
before_script:
14
15
- cd spec/test_app
15
-
- bundle update
16
-
- rails db:setup
16
+
- bundle install --jobs=3 --retry=3
17
+
- bundle exec rails db:setup
17
18
- cd ../../
18
-
- chromedriver-update
19
-
- ls -lR ~/.chromedriver-helper/
19
+
- if [[ "$DRIVER" == "google-chrome" ]]; then chromedriver-update; fi
20
+
- if [[ "$DRIVER" == "google-chrome" ]]; then ls -lR ~/.chromedriver-helper/; fi
21
+
- if [[ "$DRIVER" == "google-chrome" ]]; then chromedriver --version; fi
22
+
- if [[ "$DRIVER" == "google-chrome" ]]; then google-chrome --version; fi
23
+
- if [[ "$DRIVER" == "google-chrome" ]]; then which chromedriver; fi
24
+
- if [[ "$DRIVER" == "google-chrome" ]]; then which google-chrome; fi
0 commit comments