Welcome to mirror list, hosted at ThFree Co, Russian Federation.

circle.yml - github.com/mapsme/twine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afce15fa57c933c159be644946c260d337abbcb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
machine:
  environment:
    BUNDLE_INSTALL_PATH: "./vendor/bundle" # circle caches this by default
    TEST_RUBIES: "system 2.1 2.2 2.3"
  xcode:
    version: "8.2"

dependencies:
  override:
    - >
      for v in $TEST_RUBIES; do
        echo
        echo "****************************************"
        echo "Installing gems on Ruby version: $v"
        echo "****************************************"
        chruby-exec $v -- bundle install --path $BUNDLE_INSTALL_PATH
      done

test:
  override:
    - >
      for v in $TEST_RUBIES; do
        echo
        echo "*******************************"
        echo "Testing on Ruby version: $v"
        echo "********************************"
        chruby-exec $v -- bundle exec rake test TESTOPTS="--ci-dir=$CIRCLE_TEST_REPORTS/reports"
      done