Skip to content

Commit

Permalink
concourse: really fix the libxml-valgrind task
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
flavorjones committed Jan 23, 2017
1 parent 70334b1 commit 13b4c16
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions concourse/nokogiri.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
path: bash
args:
- "-c"
- >-
bundle install &&
rake test
- |
bundle install
bundle exec rake test

- name: "ruby-<%= ruby_version %>-valgrind"
public: true
Expand All @@ -54,11 +54,11 @@ jobs:
path: bash
args:
- "-c"
- >-
apt update &&
apt install -y valgrind &&
bundle install &&
rake test:valgrind
- |
apt update
apt install -y valgrind
bundle install
bundle exec rake test:valgrind

- name: "ruby-<%= ruby_version %>-libxmlruby"
public: true
Expand All @@ -81,10 +81,10 @@ jobs:
path: bash
args:
- "-c"
- >-
BUNDLE_GEMFILE="Gemfile-libxml-ruby"
bundle install &&
rake test:libxml-ruby
- |
export BUNDLE_GEMFILE="Gemfile-libxml-ruby"
bundle install
bundle exec rake test:libxml-ruby

- name: "ruby-<%= ruby_version %>-libxmlruby-valgrind"
public: true
Expand All @@ -107,12 +107,12 @@ jobs:
path: bash
args:
- "-c"
- >-
BUNDLE_GEMFILE="Gemfile-libxml-ruby"
apt update &&
apt install -y valgrind &&
bundle install &&
rake test:valgrind:libxml-ruby
- |
export BUNDLE_GEMFILE="Gemfile-libxml-ruby"
apt update
apt install -y valgrind
bundle install
bundle exec rake test:valgrind:libxml-ruby
<% end %>
<% for jruby_version in RUBIES[:jruby] %>
Expand All @@ -138,9 +138,9 @@ jobs:
path: bash
args:
- "-c"
- >-
bundle install &&
rake test
- |
bundle install
bundle exec rake test
<% end %>
<% for rbx_version in RUBIES[:rbx] %>
Expand All @@ -164,9 +164,9 @@ jobs:
path: bash
args:
- "-c"
- >-
apt update &&
apt install -y ca-certificates gcc &&
bundle install &&
rake test
- |
apt update
apt install -y ca-certificates gcc
bundle install
bundle exec rake test
<% end %>

0 comments on commit 13b4c16

Please sign in to comment.