Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: db75dd195c68
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 48e81ef7f090
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jan 27, 2015

  1. Copy the full SHA
    b08d19c View commit details
  2. Added start of Travis deploy.

    brixen committed Jan 27, 2015
    Copy the full SHA
    48e81ef View commit details
Showing with 16 additions and 5 deletions.
  1. +11 −4 .travis.yml
  2. +1 −1 Gemfile.lock
  3. +4 −0 rakelib/deploy.rake
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
language: cpp

compiler:
- gcc
- clang

before_install:
- echo $LANG
- echo $LC_ALL
@@ -10,15 +12,17 @@ before_install:
- rvm use $RVM --install --binary --fuzzy
- gem update --system
- gem --version

before_script:
- travis_retry bundle
- if [ $TRAVIS_OS_NAME == linux ]; then travis_retry ./configure --llvm-config llvm-config-3.4; fi
- if [ $TRAVIS_OS_NAME == osx ]; then travis_retry ./configure --llvm-config /usr/local/opt/llvm/bin/llvm-config; fi

script: rake
branches:
only:
- master
- 1.8.7

after_success:
- if [ $TRAVIS_BRANCH == master ]; then rake deploy; fi

notifications:
email: false
irc:
@@ -32,9 +36,12 @@ notifications:
on_success: change
on_failure: always
on_start: false

env:
- RVM=2.0.0 LANG="en_US.UTF-8"

os:
- linux
- osx

osx_image: xcode61
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ GEM
rubinius-processor (~> 2.0)
rubinius-toolset (~> 2.0)
rubinius-compiler (2.3.0)
rubinius-melbourne (2.3.0.0)
rubinius-melbourne (2.3.1.0)
rubinius-processor (2.3.0)
rubinius-toolset (2.3.1)

4 changes: 4 additions & 0 deletions rakelib/deploy.rake
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
desc "Deploy a Rubinius release"
task :deploy do
puts "Deploying #{ENV["TRAVIS_TAG"]}..."
end