commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
10dbc2450532e03efc1c0d1c9fb346631ddb74ef
.travis.yml
.travis.yml
language: python python: - pypy - 2.6 - 2.7 env: SYNTAX=true install: "pip install -r requirements.txt" script: nosetests
language: python python: - pypy - pypy3 - 2.6 - 2.7 - 3.5 - 3.6 env: SYNTAX=true install: "pip install -r requirements.txt" script: nosetests
Add pypy3, 3.5 and 3.6
Add pypy3, 3.5 and 3.6
YAML
apache-2.0
devicehive/devicehive-python
91d5c8dd636512628550311ff2cbb4f5271cf9ac
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "7" cache: directories: - $HOME/.npm - $HOME/.yarn-cache - node_modules script: - npm run test:ci
language: node_js node_js: - "6" - "7" - "8" cache: directories: - $HOME/.npm - $HOME/.yarn-cache - node_modules script: - npm run test:ci
Add CI test for Node 8
Add CI test for Node 8
YAML
mit
viralganatra/react-scrolling-lock,viralganatra/react-scrolling-lock
1fa5add45b5ff259d15502102f9911ea64843de8
.travis.yml
.travis.yml
# .travis.yml language: node_js node_js: - 0.10 - 0.8 - 0.6 notifications: email: false
# .travis.yml language: node_js node_js: - 0.10 - 0.8 notifications: email: false
Remove 0.6 as a target for TravisCI
Remove 0.6 as a target for TravisCI
YAML
mit
tgriesser/checkit,rhys-vdw/checkit,tgriesser/checkit,Chubby-Chocobo/checkit,Chubby-Chocobo/checkit,rhys-vdw/checkit
39068a9b359bf3ff6244a4627496e274f814667b
.travis.yml
.travis.yml
dist: trusty language: scala scala: - 2.11.12 - 2.12.4 jdk: - oraclejdk8 - openjdk8 test: - sbt ++$TRAVIS_SCALA_VERSION test - sbt ++$TRAVIS_SCALA_VERSION scalastyle
--- language: scala scala: - 2.11.12 - 2.12.4 jdk: - oraclejdk8 - openjdk8 test: - sbt ++$TRAVIS_SCALA_VERSION test - sbt ++$TRAVIS_SCALA_VERSION scalastyle
Remove Travis configuration that matches default
Remove Travis configuration that matches default Trusty based container builds are the default as of August 2017.
YAML
mit
ASIDataScience/scala-plotly-client,ASIDataScience/scala-plotly-client
0bece0908f5080d8bc2047edb6522f3a77c44214
.travis.yml
.travis.yml
dist: trusty sudo: false language: cpp addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-6 - libboost-program-options-dev - libboost-regex-dev - libboost-system-dev - libpcap-dev script: - CXX=/usr/bin/g++-6 CC=/usr/bin/gcc-6 cmake . - cmake --build .
dist: trusty sudo: false language: cpp addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-6 - libboost-program-options-dev - libboost-regex-dev - libboost-system-dev - libpcap-dev - libpcre2-dev script: - CXX=/usr/bin/g++-6 CC=/usr/bin/gcc-6 cmake . - cmake --build .
Add libpcre2-dev to Travis CI addons
Add libpcre2-dev to Travis CI addons
YAML
apache-2.0
petabi/regexbench,petabi/regexbench,petabi/regexbench,petabi/regexbench
c3630b82f0972c6956a8a521c4f4d9e1ccbd4d69
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" - "0.11" - "0.10" sudo: false addons: code_climate: repo_token: efb7522eec30499991fe74d59051679a9ae2b5caf53fbb004b62ea83825cdc56 after_success: - node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info
language: node_js node_js: - "0.12" - "0.11" sudo: false addons: code_climate: repo_token: efb7522eec30499991fe74d59051679a9ae2b5caf53fbb004b62ea83825cdc56 after_success: - node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info
Drop support for old version of Node
Drop support for old version of Node
YAML
bsd-3-clause
garious/poochie,poochiejs/poochie
3d8d355cab61b8d6a5c47bebd311f6aa9201a494
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" install: pip install -r requirements.txt script: nosetests test_fakeredis.py:TestFakeRedis
language: python python: - "2.6" - "2.7" install: pip install -r requirements.txt script: nosetests test_fakeredis.py:TestFakeRedis notifications: email: - [email protected]
Add explicit email address for CI notifications
Add explicit email address for CI notifications
YAML
bsd-3-clause
ze-phyr-us/fakeredis,Tinche/fakeredis,pindia/fakeredis,fatelei/fakeredis,OnBeep/fakeredis,sam-untapt/fakeredis
925382eefec943a44924d3a5b750eb4392de08f0
.travis.yml
.travis.yml
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-stable-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
Use the pre-release builds of chefdk
Use the pre-release builds of chefdk
YAML
apache-2.0
chef-cookbooks/pkgutil,chef-cookbooks/pkgutil
fb59e7a22ddd9fb2ab81f9d5162008f41f6f2bb5
.travis.yml
.travis.yml
language: go go: - 1.x - 1.6 - 1.7.x - 1.8.x - master
language: go go: - 1.x - 1.7.x - 1.8.x - master
Drop support of Go 1.6
Drop support of Go 1.6
YAML
bsd-2-clause
dgryski/carbonapi,errx/carbonapi,errx/carbonapi
18ab28e10081bd86b3da5ebf18ebe71a8230fe3f
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - 7.3 - 7.4 - nightly before_script: composer install -n --dev script: - vendor/bin/phpcs - vendor/bin/phpunit --coverage-text allow_failures: - php: nightly
language: php php: - 7.1 - 7.2 - 7.3 - 7.4 before_script: composer install -n --dev script: - vendor/bin/phpcs - vendor/bin/phpunit --coverage-text
Remove nightly PHP from Travis because dependencies don't support it
Remove nightly PHP from Travis because dependencies don't support it
YAML
mit
javer/JaverSphinxBundle
9423eb327d2c9eacad087aab9c383417b53ba7f0
.travis.yml
.travis.yml
language: ruby script: 'bundle exec rake' gemfile: - gemfiles/Gemfile.activesupport-3.x - gemfiles/Gemfile.activesupport-4.x - gemfiles/Gemfile.activesupport-5.x rvm: - 1.9.3 - 2.0.0 - 2.1.5 - 2.2.4 - 2.3.0 - ruby-head - rbx-19mode - jruby-19mode - jruby-head services: - redis-server matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head - rvm: 1.9.3 gemfile: gemfiles/Gemfile.activesupport-5.x - rvm: 2.0.0 gemfile: gemfiles/Gemfile.activesupport-5.x - rvm: 2.1.5 gemfile: gemfiles/Gemfile.activesupport-5.x - rvm: rbx-19mode gemfile: gemfiles/Gemfile.activesupport-5.x - rvm: jruby-19mode gemfile: gemfiles/Gemfile.activesupport-5.x
language: ruby script: 'bundle exec rake' gemfile: - gemfiles/Gemfile.activesupport-3.x - gemfiles/Gemfile.activesupport-4.x - gemfiles/Gemfile.activesupport-5.x rvm: - 1.9.3 - 2.0.0 - 2.1.5 - 2.2.4 - 2.3.0 - ruby-head - jruby-head services: - redis-server matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head - rvm: 1.9.3 gemfile: gemfiles/Gemfile.activesupport-5.x - rvm: 2.0.0 gemfile: gemfiles/Gemfile.activesupport-5.x - rvm: 2.1.5 gemfile: gemfiles/Gemfile.activesupport-5.x - rvm: rbx-19mode gemfile: gemfiles/Gemfile.activesupport-5.x - rvm: jruby-19mode gemfile: gemfiles/Gemfile.activesupport-5.x
Drop support for v1.9 mode of both juby and rubinius
Drop support for v1.9 mode of both juby and rubinius
YAML
mit
redis-store/redis-activesupport
4737e031df5eac270e02df4d26f04b2498e900b2
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo add-apt-repository ppa:h-rayflood/llvm -y - sudo apt-get update -qq install: - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.7; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi - if [ "$CXX" = "clang++" ]; then sudo apt-get install -qq --allow-unauthenticated clang-3.4; fi - if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.4" CC="clang-3.4"; fi - wget "https://googlemock.googlecode.com/files/gmock-1.7.0.zip" - unzip gmock-1.7.0.zip - sudo apt-get install valgrind script: - autoconf - ./configure --with-gmock=gmock-1.7.0 - make - make test
language: cpp compiler: - gcc - clang install: - if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi - wget "https://googlemock.googlecode.com/files/gmock-1.7.0.zip" - unzip gmock-1.7.0.zip - sudo apt-get install valgrind script: - autoconf - ./configure --with-gmock=gmock-1.7.0 - make - make test addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.7 - g++-4.7
Install compilers through Travis Apt-addon.
Install compilers through Travis Apt-addon.
YAML
bsd-2-clause
offa/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,offa/seasocks,mattgodbolt/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks
8b6dc387327d8308fc5780cd8f64b0900e91336a
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.2 before_install: gem install bundler -v 1.10.5
language: ruby rvm: - 2.2.2 before_install: gem install bundler -v 1.10.5 env: secure: cuFj0+Ca3vL9/SE+FLm8gfaKOFyGVjY3zFcx7zqJ4dl1AiGM8mbl0SzV0tG+7Zvtrg+MnEl0I1TGaAyfGzNAbt+akue46h/fahhHGAMaR1Xi/3cwgjvderfZfRkDi57Vp8A+UD9PkNvFZRmpCpbBL/LpEBdRW4vWkIxENoCurJeKwIzLaaP/pHPA207eqbePUN8OF4WRHRBGXdAFAZq3SpuNZws4JE4yCPPivQh3p29eIcURPvgbB76tS+GfiAkfFqakuMBW/2EFA5RnZ0VqN5ORKgA2G7hjMDQfv+nx4bYrju+VG/c0gPMFOJfC3oezsEzWT6HjYRRBqtcmJ4xDoVVVXm6XOshhg9ukoPEpxgBNSmk3v6v8lbxHFMxNNFR6EyGHzEKHK0Ng/dfDlnu2v8jLhDGW0nNbZX4bxhjOtMcQmqe0SMWktYtHleKRk1DHPDwWYFsa/Kw808UPM2NK0asqowDxE8DdKLnPkZpXVl+f1hobPhodH3oX4DPFu/gyIvEzwYgGvOLEmNYXEZfpA58AKfe9yUm2Bvg2+LYLR2xIVkn7FAIJ+8s9kbIgr+19i234xspi9ZyO1JxAo1c8pVY6k1MmzembgulqfuiJSutEOXuAopVszUgOZtVD7O9yonFgyeNxlCTB1X8n2EC35JG73RNHLTwRcA0LTBq0PtQ=
Add (encrypted) environment, for testing.
Add (encrypted) environment, for testing.
YAML
mit
mdub/fake-aws-sdk-s3
7be5933eebdb8f0270bb1bc6b2249c0398be536c
.travis.yml
.travis.yml
language: php php: - '5.5' - '5.6' - '7.0' - hhvm - nightly
language: php php: - '5.5' - '5.6' - '7.0' - hhvm - nightly before_script: - composer dump-autoload
Make Travis do the right thing.
Make Travis do the right thing.
YAML
mit
joseph-walker/vector,joseph-walker/vector
2eb5cb50c69f7286730f97a6a7c9963bc89dcb12
.travis.yml
.travis.yml
language: node_js before_install: - sudo apt-get install build-essential - curl -sL https://github.com/Itseez/opencv/archive/2.4.6.2.zip > opencv.zip - unzip opencv.zip - rm opencv.zip - mkdir opencv-build - cd opencv-build/ - cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DWITH_OPENEXR=OFF ../opencv-2.4.6.2/ - sudo make install - cd ..
language: node_js before_install: - sudo apt-get install build-essential - curl -sL https://github.com/Itseez/opencv/archive/2.4.6.2.zip > opencv.zip - unzip opencv.zip - rm opencv.zip - mkdir opencv-build - cd opencv-build/ - cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_opencv_java=OFF -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DWITH_OPENEXR=OFF -DBUILD_PNG=ON -DWITH_PNG=ON -DWITH_TIFF=OFF -DWITH_WEBP=OFF -DWITH_JPEG=ON -DBUILD_JPEG=ON ../opencv-2.4.6.2/ - sudo make install - cd ..
Disable WebP, TIFF, Java, Jasper, 3rd party libs like zlib, PNG and JPEG codecs will be build from scratch
Disable WebP, TIFF, Java, Jasper, 3rd party libs like zlib, PNG and JPEG codecs will be build from scratch
YAML
bsd-3-clause
BloodAxe/CloudCVBackend,BloodAxe/CloudCVBackend,BloodAxe/CloudCVBackend
a753f953b242d115868fcf5d3815a99c2fb25db9
.travis.yml
.travis.yml
language: scala scala: - 2.11.7 sudo: false script: sbt "+ test" -Dloglevel=debug jdk: - oraclejdk8 - oraclejdk7 branches: only: - develop
language: scala scala: - 2.11.8 sudo: false script: sbt "+ test" -Dloglevel=debug jdk: - oraclejdk8 - oraclejdk7 branches: only: - develop addons: apt: packages: - oracle-java8-installer
Use the latest jdk8 in TravisCI
Use the latest jdk8 in TravisCI
YAML
apache-2.0
xerial/larray,xerial/larray,xerial/larray,xerial/larray,xerial/larray
85646e3cc06508b45c3ab35f73cc4f1067141bca
.travis.yml
.travis.yml
language: java sudo: false # Triggers an update of the OracleJDK distribution. Travis is currently running v8u31 which # exposes problems with the instrumentation of invokedynamic call sites. addons: apt: packages: - oracle-java8-installer branches: only: - master jdk: - oraclejdk8 - oraclejdk7 - openjdk7 - openjdk6 matrix: include: - jdk: oraclejdk8 env: TARGET=-Pjava8 - jdk: oraclejdk7 env: TARGET=-Pjava7 script: mvn verify $TARGET -Pintegration after_success: - mvn clean cobertura:cobertura coveralls:report -Pintegration
language: java sudo: false # Triggers an update of the OracleJDK distribution. Travis is currently running v8u31 which # exposes problems with the instrumentation of invokedynamic call sites. addons: apt: packages: - oracle-java8-installer branches: only: - master jdk: - oraclejdk8 - oraclejdk7 - openjdk6 matrix: include: - jdk: oraclejdk8 env: TARGET=-Pjava8 - jdk: oraclejdk7 env: TARGET=-Pjava7 script: mvn verify $TARGET -Pintegration after_success: - mvn clean cobertura:cobertura coveralls:report -Pintegration
Remove duplicate build for JDK 7 from Travis. Hope to free sufficient resources to not kill build.
Remove duplicate build for JDK 7 from Travis. Hope to free sufficient resources to not kill build.
YAML
apache-2.0
raphw/byte-buddy,DALDEI/byte-buddy,raphw/byte-buddy,raphw/byte-buddy,CodingFabian/byte-buddy,mches/byte-buddy
313c23361560318d794d1b1ffc06d71302f1281e
.travis.yml
.travis.yml
language: ruby bundler_args: --without development --deployment --jobs=3 --retry=10 cache: bundler rvm: - 2.1.5 - 2.2.4 - 2.3.0 script: - RAILS_ENV=test bin/setup - RAILS_ENV=test bundle exec rake --trace spec before_script: - psql -c 'create database fauna_development;' -U postgres - psql -c 'create database fauna_test;' -U postgres - cp config/database.yml.travis config/database.yml sudo: false
language: ruby bundler_args: --without development --deployment --jobs=3 --retry=10 cache: bundler rvm: - 2.1.5 - 2.2.4 - 2.3.0 script: - RAILS_ENV=test bin/setup - RAILS_ENV=test bundle exec rake --trace spec before_script: - psql -c 'create database fauna_development;' -U postgres - psql -c 'create database fauna_test;' -U postgres - cp config/database.yml.travis config/database.yml sudo: true dist: trusty
Use Ubuntu Trusty in Travis
Use Ubuntu Trusty in Travis
YAML
mit
initLab/fauna,user890104/fauna,initLab/fauna,initLab/fauna,user890104/fauna,user890104/fauna
278f8fad5ade6ccc542dc0975a430700d672cc79
.travis.yml
.travis.yml
sudo: false language: perl perl: - '5.26' - '5.24' - '5.22' - '5.20' - '5.18' - '5.16' - '5.14' before_script: - git clone https://github.com/exercism/problem-specifications.git - bin/fetch-configlet script: - bin/configlet . - prove -r exercises/
sudo: false language: perl perl: - '5.26' - '5.24' - '5.22' - '5.20' - '5.18' - '5.16' - '5.14' before_script: - git clone https://github.com/exercism/problem-specifications.git - bin/fetch-configlet script: - bin/configlet lint . - prove -r exercises/
Call configlet subcommand on CI
Call configlet subcommand on CI This changes configlet to pass a subcommand. For now, we've released a version of configlet which handles both the old command: configlet path/to/track as well as the new command: configlet lint path/to/track This will let us update all the travis files to include the subcommand before we release the version of configlet that requires the subcommand.
YAML
mit
exercism/xperl5,exercism/xperl5,exercism/xperl5
6dccf7730041e07b583b56f7027402e3edf5c91f
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8.2 node_js: - "6" before_script: - npm install -g swiftx script: - ./scripts/build.sh after_success: - ./scripts/execute-on-packages.sh swiftx update-build-config - ./scripts/execute-on-packages.sh swiftx update-dependency-graph - ./scripts/execute-on-packages.sh swiftx trigger-downstream-builds after_failure: - ./scripts/execute-on-packages.sh swiftx trigger-downstream-builds --force
language: objective-c osx_image: xcode8.2 node_js: - "6" before_script: - npm install -g swiftx script: - ./scripts/build.sh after_success: - ./scripts/exec-on-packages.sh swiftx update-build-config - ./scripts/exec-on-packages.sh swiftx update-dependency-graph - ./scripts/exec-on-packages.sh swiftx trigger-downstream-builds after_failure: - ./scripts/exec-on-packages.sh swiftx trigger-downstream-builds --force
Use the correct script name, maybe.
Use the correct script name, maybe.
YAML
mit
randymarsh77/amethyst,randymarsh77/amethyst,randymarsh77/amethyst,randymarsh77/amethyst
477e1f5fb979221a01eb156f5ed8c3043c58f4a9
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.1.8 - 2.2.4 - 2.3.0 cache: bundler script: "bundle exec rake test"
sudo: false language: ruby rvm: - 2.1.9 - 2.2.4 - 2.3.0 cache: bundler script: "bundle exec rake test"
Update Travis RVM targets for 2.1.9
Update Travis RVM targets for 2.1.9
YAML
mit
scour/feedjira-podcast,scour/feedjira-podcast
6a7d1782826c002cd1f01066443c545e0b250927
.travis.yml
.travis.yml
--- language: ruby bundler_args: --without system_tests --jobs 3 --retry 3 script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'" sudo: false matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.6.0" - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.7.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" notifications: email: false
--- language: ruby bundler_args: --without system_tests --jobs 3 --retry 3 script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'" sudo: false matrix: fast_finish: true include: - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes" notifications: email: false
Remove support for Puppet 2.7
Remove support for Puppet 2.7
YAML
apache-2.0
dhoppe/puppet-openvpn,dhoppe/puppet-openvpn
b00a2b0d4f1cf2849c5e23b8c2c2814689cdbc9b
.travis.yml
.travis.yml
language: objective-c xcode_project: DBNetworkStack+Sourcing.xcodeproj # path to your xcodeproj folder xcode_scheme: DBNetworkStackSourcing osx_image: xcode8.2 before_install: - export SNAPSHOT_FORCE_DELETE=1 - fastlane snapshot reset_simulators install: - carthage update --platform ios script: - set -o pipefail && xcodebuild -scheme DBNetworkStackSourcing -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone SE,OS=latest' ONLY_ACTIVE_ARCH=NO -enableCodeCoverage YES clean build test | xcpretty after_success: - bash <(curl -s https://codecov.io/bash)
language: objective-c xcode_project: DBNetworkStack+Sourcing.xcodeproj # path to your xcodeproj folder xcode_scheme: DBNetworkStackSourcing osx_image: xcode8.2 before_install: - export SNAPSHOT_FORCE_DELETE=1 - fastlane snapshot reset_simulators install: - carthage update --platform ios —no-use-binaries script: - set -o pipefail && xcodebuild -scheme DBNetworkStackSourcing -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone SE,OS=latest' ONLY_ACTIVE_ARCH=NO -enableCodeCoverage YES clean build test | xcpretty after_success: - bash <(curl -s https://codecov.io/bash)
Disable binary load of carthage
Disable binary load of carthage
YAML
mit
dbsystel/DBNetworkStack-Sourcing
fa629e7c54927ddb7e51b8ed3fd9f11e081a2a13
.travis.yml
.travis.yml
language: php php: - 5.6 - 5.5 - 5.4 - hhvm before_script: composer install --dev
language: php php: - 5.6 - 5.5 - 5.4 - hhvm before_script: composer install --dev script: php vendor/phpunit/phpunit/phpunit.php --log-tap report.tap after_script: curl -X POST --data-binary @report.tap http://dox.rtens.org/projects/watoki-stores/reports
Send test report to dox
Send test report to dox
YAML
mit
watoki/stores
3529659932f48a0d7abb0d502716cd0f316c7327
.travis.yml
.travis.yml
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" services: docker env: matrix: - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - script: - /opt/chefdk/bin/chef exec delivery local all env: UNIT_AND_LINT=1
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" services: docker env: matrix: - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
Simplify Travis config and fix ChefDK 2.0 failures
Simplify Travis config and fix ChefDK 2.0 failures
YAML
apache-2.0
tas50/hubot
cc6ba84fafab0aacb0097834ac02a315e0af5484
.travis.yml
.travis.yml
language: ruby bundler_args: --without development rvm: - 1.9.3 - 2.0.0 - ruby-head
language: ruby bundler_args: --without development rvm: - 1.9.3 - 2.0.0
Remove ruby-head from Travis matrix
Remove ruby-head from Travis matrix
YAML
mit
springboardretail/springboard-client-ruby
7e1dc7d29d3b030140e35bbe2d143411b9205c18
.travis.yml
.travis.yml
language: rust sudo: false rust: - stable - beta - nightly matrix: include: - rust: 1.32.0 before_script: | set -e if [[ $TRAVIS_RUST_VERSION = 'stable' ]]; then rustup component add rustfmt clippy fi script: | set -e cargo build cargo test ci/check-no-std.sh cargo test --all-features if [[ $TRAVIS_RUST_VERSION = 'stable' ]]; then cargo fmt --all -- --check cargo clippy --all-targets --all-features -- -D warnings fi
language: rust sudo: false rust: - stable - beta - nightly matrix: include: - rust: 1.36.0 before_script: | set -e if [[ $TRAVIS_RUST_VERSION = 'stable' ]]; then rustup component add rustfmt clippy fi script: | set -e cargo build cargo test ci/check-no-std.sh cargo test --all-features if [[ $TRAVIS_RUST_VERSION = 'stable' ]]; then cargo fmt --all -- --check cargo clippy --all-targets --all-features -- -D warnings fi
Update minimum required Rust to 1.36
Update minimum required Rust to 1.36 This is about a year old, so that seems fine.
YAML
mit
shepmaster/twox-hash
127047f407ebc84af0a38a81d42e6e12b698fe5a
kubernetes/jenkins/jenkins.yaml
kubernetes/jenkins/jenkins.yaml
apiVersion: v1 kind: Service metadata: name: jenkins-master labels: app: jenkins namespace: ci spec: ports: - port: 80 targetPort: 8080 protocol: TCP selector: app: jenkins type: LoadBalancer --- apiVersion: v1 kind: ReplicationController metadata: name: jenkins-master labels: app: jenkins namespace: ci spec: replicas: 1 template: metadata: labels: app: jenkins spec: containers: - name: jenkins image: 192.168.64.1:5000/sondabar/jenkins-master:latest ports: - containerPort: 8080 hostPort: 8090 - containerPort: 50000 hostPort: 50000 volumeMounts: - mountPath: /var/jenkins-home name: jenkins-master-volume volumes: - name: jenkins-master-volume emptyDir: {}
apiVersion: v1 kind: Service metadata: name: jenkins-master labels: app: jenkins namespace: ci spec: ports: - port: 80 targetPort: 8080 protocol: TCP name: http - port: 50000 targetPort: 50000 protocol: TCP name: jnlp selector: app: jenkins type: LoadBalancer --- apiVersion: v1 kind: ReplicationController metadata: name: jenkins-master labels: app: jenkins namespace: ci spec: replicas: 1 template: metadata: labels: app: jenkins spec: containers: - name: jenkins image: sondabar/jenkins-master:latest ports: - containerPort: 8080 hostPort: 8090 - containerPort: 50000 hostPort: 50000 volumeMounts: - mountPath: /var/jenkins-home name: jenkins-master-volume volumes: - name: jenkins-master-volume emptyDir: {}
Add jnlp port to service
Add jnlp port to service
YAML
mit
sondabar/kubernetes-playground
2cc6d6c01816a2a1cedc1bd3b6777d67722360d3
.travis.yml
.travis.yml
sudo: required dist: trusty language: python python: - '2.7' - '3.3' - '3.4' - '3.5' matrix: allow_failures: - python: '2.7' addons: apt: packages: - libattr1-dev - libfuse2 - libfuse-dev - python-dev - python3-dev install: - pip install --upgrade pip - pip --version - pip install 3to2 future - pip install -e .[all] script: ./testall.sh
sudo: required dist: trusty language: python python: - '2.6' - '2.7' - '3.2' - '3.3' - '3.4' - '3.5' - '3.5-dev' - 'nightly' - 'pypy' - 'pypy3' matrix: allow_failures: - python: '2.6' - python: '3.2' - python: '3.5-dev' - python: 'nightly' - python: 'pypy' - python: 'pypy3' addons: apt: packages: - libattr1-dev - libfuse2 - libfuse-dev - python-dev - python3-dev install: - pip install --upgrade pip - pip --version - pip install 3to2 future - pip install -e .[all] script: ./testall.sh
Add other python implementations as allowed failers and unallow 2.7
Travis: Add other python implementations as allowed failers and unallow 2.7
YAML
mit
JelteF/easyfuse,JelteF/easyfuse
fb43f6838853f2a9f1bbe5fde5ba31f1f00c028c
.travis.yml
.travis.yml
language: cpp compiler: - clang - gcc env: - BUILD_TYPE=Debug - BUILD_TYPE=Release before_install: install: - mkdir build - cd build - cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_TESTS=on .. - make - cd .. script: - cd build - ctest -V
language: cpp compiler: - clang - gcc env: - BUILD_TYPE=Debug - BUILD_TYPE=Release before_install: install: - mkdir build - cd build - cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_TESTS=on -DFIND_DEPEND=off .. - make - cd .. script: - cd build - ctest -V
Switch off FIND_DEPEND option in Travis script.
Switch off FIND_DEPEND option in Travis script.
YAML
mit
kartikkumar/cppbase,ennehekma/enne-stage,ennehekma/enne-stage,abhi-agrawal/ATOM_ADR,kartikkumar/cpp-project,kartikkumar/cpp-project,ennehekma/enne-stage,abhi-agrawal/ATOM_ADR,abhi-agrawal/TestAtomProject,abhi-agrawal/TestAtomProject
327cfc495b9daa0412bad09c59d380e730428eed
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.1 - 1.9.2 - 1.9.3
rvm: - 1.9.2 - 1.9.3
Revert "Testing the build on 1.8.7 and 1.9.1"
Revert "Testing the build on 1.8.7 and 1.9.1" This reverts commit d3dbfb2b0d5d95d1354a990a22a54146bd3d0ba0.
YAML
mit
mikesmayer/recommendable,AndyObtiva/recommendable,balmbees/recommendable,davidcelis/recommendable
a551213eae097d35a336bcaf51eebe00290baa50
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.1 - ruby-head env: - "RAILS_VERSION=3.1.0" - "RAILS_VERSION=3.2.0" - "RAILS_VERSION=4.0.0" - "RAILS_VERSION=master" matrix: allow_failures: - env: "RAILS_VERSION=master" - rvm: ruby-head
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.1 - ruby-head env: - "RAILS_VERSION=3.1.0" - "RAILS_VERSION=3.2.0" - "RAILS_VERSION=4.0.0" - "RAILS_VERSION=master" matrix: allow_failures: - env: "RAILS_VERSION=master" - rvm: ruby-head
Update ruby versions in Travis matrix
Update ruby versions in Travis matrix
YAML
mit
jhnvz/retina_rails,testzugang/retina_rails
e441fbcc5fdf0af0460d7b8ac210af3d96546287
.travis.yml
.travis.yml
language: c env: - SMVERSION=1.5 - SMVERSION=1.6 - SMVERSION=1.7 before_install: - sudo apt-get update - sudo apt-get install gcc-multilib - sudo apt-get install lynx before_script: - SMPATTERN="http:.*sourcemod-.*-linux.*" - SMURL="http://www.sourcemod.net/smdrop/$SMVERSION/" - SMPACKAGE=`lynx -dump "$SMURL" | egrep -o "$SMPATTERN" | tail -1` - wget $SMPACKAGE - tar -xzf $(basename "$SMPACKAGE") - cd addons/sourcemod/scripting/ - chmod +x spcomp script: - ./spcomp jetpack_plus.sp - ./spcomp jetpack_bling.sp after_script: - ls *.smx notifications: email: false
language: c env: - SMVERSION=1.5 - SMVERSION=1.6 - SMVERSION=1.7 matrix: fast_finish: true allow_failures: - env: SMVERSION=1.7 before_install: - sudo apt-get update - sudo apt-get install gcc-multilib - sudo apt-get install lynx before_script: - SMPATTERN="http:.*sourcemod-.*-linux.*" - SMURL="http://www.sourcemod.net/smdrop/$SMVERSION/" - SMPACKAGE=`lynx -dump "$SMURL" | egrep -o "$SMPATTERN" | tail -1` - wget $SMPACKAGE - tar -xzf $(basename "$SMPACKAGE") - cd addons/sourcemod/scripting/ - chmod +x spcomp script: - ./spcomp jetpack_plus.sp - ./spcomp jetpack_bling.sp after_script: - ls *.smx notifications: email: false
Allow failures for sourcemod 1.7 build
Allow failures for sourcemod 1.7 build
YAML
mit
CrimsonTautology/sm_jetpack_plus
be07c68123c5bb49202b10f2511de00b403563ec
.travis.yml
.travis.yml
language: php php: - '5.4' - '5.5' - '5.6' - '7.0' - hhvm - nightly sudo: true addons: mariadb: 10.1 before_install: - mysql --version - mysql -u root -e "create database if not exists test_audit character set = 'utf8' collate='utf8_general_ci';" - mysql -u root -e "create database if not exists test_data character set = 'utf8' collate='utf8_general_ci';" - mysql -u root -e "create user 'test'@'localhost' identified by 'test';" - mysql -u root -e "grant all on test_audit.* to 'test'@'localhost';" - mysql -u root -e "grant all on test_data.* to 'test'@'localhost';" - mysql -u root -e "set global binlog_format = 'row';" - mysql -u root -e "set global log_bin_trust_function_creators = 1;" - mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -e install: - composer self-update - composer update script: - ./bin/phing unit
language: php php: - '5.4' - '5.5' - '5.6' - '7.0' - hhvm - nightly sudo: true addons: mariadb: 10.1 before_install: - mysql --version - mysql -u root -e "create database if not exists test_audit character set = 'utf8' collate='utf8_general_ci';" - mysql -u root -e "create database if not exists test_data character set = 'utf8' collate='utf8_general_ci';" - mysql -u root -e "create user 'test'@'localhost' identified by 'test';" - mysql -u root -e "grant all on test_audit.* to 'test'@'localhost';" - mysql -u root -e "grant all on test_data.* to 'test'@'localhost';" - mysql -u root -e "set global binlog_format = 'row';" - mysql -u root -e "set global log_bin_trust_function_creators = 1;" - mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root install: - composer self-update - composer update script: - ./bin/phing unit
Load all time zones into MySQL.
Load all time zones into MySQL.
YAML
mit
SetBased/php-audit
6cefa343510687bd95adb49cbf7b8c5c82677ce4
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - ree - 1.9.3
language: ruby rvm: - 1.8.7 - ree - 1.9.2 - 1.9.3
Revert "1.9.2 is not supported"
Revert "1.9.2 is not supported" This reverts commit 24ebeeee6aa76332ca73b74c27d3f5741597aacd.
YAML
mit
yakovenkodenis/statsd-instrument,Shopify/statsd-instrument
1a459240de9a100bc195b7b4e7eb470067bb24d7
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "5" after_script: "./node_modules/.bin/codecov" branches: only: - master before_script: - wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.0.tgz -O /tmp/mongodb.tgz - tar -xvf /tmp/mongodb.tgz - mkdir /tmp/data - ${PWD}/mongodb-linux-x86_64-3.2.0/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --port 27017 &> /dev/null &
language: node_js node_js: - "4" - "5" - "6" after_script: "./node_modules/.bin/codecov" branches: only: - master before_script: - wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.0.tgz -O /tmp/mongodb.tgz - tar -xvf /tmp/mongodb.tgz - mkdir /tmp/data - ${PWD}/mongodb-linux-x86_64-3.2.0/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --port 27017 &> /dev/null &
Build against all recent node releases
Build against all recent node releases
YAML
agpl-3.0
gw2efficiency/gw2-api.com
3fd86b4ea7da7aed6aecf9545a970174f05619f8
.travis.yml
.travis.yml
# Travis CI Configuration language: node_js node_js: - "10" - "9" - "8" # Installing rsvg-brunch requires a C++11 compiler and librsvg addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - librsvg2-dev env: - CXX=g++-4.8 install: - npm install - npm install coveralls script: - npm run lint - npm run coverage after_success: - nyc report --reporter=text-lcov | coveralls
# Travis CI Configuration language: node_js node_js: - "9" - "8" - "7" - "6" # Installing rsvg-brunch requires a C++11 compiler and librsvg addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - librsvg2-dev env: - CXX=g++-4.8 install: - npm install - npm install coveralls script: - npm run lint - npm run coverage after_success: - nyc report --reporter=text-lcov | coveralls
Replace Node 10 with Node 6 & 7
Replace Node 10 with Node 6 & 7
YAML
mit
caleb531/rsvg-brunch
0064c2ce31b1b9a816ee95a1fbe87f2d9a4a62a2
.travis.yml
.travis.yml
language: rust script: - cargo build - cargo test notifications: email: recipients: - [email protected] on_success: never
language: rust env: global: - secure: dmKHeOySluuwyXckc3YKl9wyfZSr1d8hMSDh4739MW6f1n5xYVXHKECPTnFSUPBjVNQ8Qahw48w2tnezGO1DvOOxYqPe69PGtpaLX3CoOZOvyCOoBgkH+MA8cjz3Ymk8uoPc97OZQdwQ+5XvW0BKsGxbUfnfX29kHewc3Hc+tkM= script: - cargo build --verbose - cargo test --verbose - cargo doc --verbose after_script: - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh notifications: email: recipients: - [email protected] on_success: never
Enable documentation upload for rust-ci.
Enable documentation upload for rust-ci.
YAML
mit
FranklinChen/rust-tau
c542acd8a3e98209a7ccb66d8ca56245016ad541
.travis.yml
.travis.yml
language: go go: - 1.7.x services: - rabbitmq env: - AMQP_USERNAME=guest AMQP_PASSWORD=guest AMQP_DEFAULT_PORT=5672 before_install: - go get github.com/streadway/amqp - go get github.com/joho/godotenv - go get -v github.com/golang/lint/golint script: go test -v -cover -tags integration ./... -x
language: go go: - 1.7.x services: - rabbitmq env: - AMQP_USERNAME=guest AMQP_PASSWORD=guest AMQP_DEFAULT_PORT=5672 before_install: - go get github.com/streadway/amqp - go get github.com/joho/godotenv - go get -v github.com/golang/lint/golint script: go test -v -cover -tags integration ./exchange ./indices ./connector ./slice
Revert "Modifies script to run tests and build test binary"
Revert "Modifies script to run tests and build test binary" This reverts commit d1ff3c2f028c397697c51cd969129ef3cc3eaa68.
YAML
mit
docStonehenge/exchange_fetcher
076a559dfa50fdb883c4e71af4f39ac3b4870d4c
.travis.yml
.travis.yml
language: python sudo: false python: - "3.5" - "3.6" - "nightly" matrix: allow_failures: - python: "nightly" env: - INJECTOR_VERSION="<0.13" FLASK_VERSION=">0.11" - INJECTOR_VERSION=">=0.13" FLASK_VERSION=">0.11" - INJECTOR_VERSION="<0.13" FLASK_VERSION=">0.11,<1.0" - INJECTOR_VERSION=">=0.13" FLASK_VERSION=">0.11,<1.0" install: - pip install flake8 nose==1.3.0 flask$FLASK_VERSION flask_restful flask_restplus injector$INJECTOR_VERSION flask_sqlalchemy eventlet typing mypy typed_ast script: - make test
language: python sudo: false python: - "3.5" - "3.6" - "nightly" matrix: allow_failures: - python: "nightly" include: - { python: "3.7", dist: xenial, sudo: true } env: - INJECTOR_VERSION="<0.13" FLASK_VERSION=">0.11" - INJECTOR_VERSION=">=0.13" FLASK_VERSION=">0.11" - INJECTOR_VERSION="<0.13" FLASK_VERSION=">0.11,<1.0" - INJECTOR_VERSION=">=0.13" FLASK_VERSION=">0.11,<1.0" install: - pip install flake8 nose==1.3.0 flask$FLASK_VERSION flask_restful flask_restplus injector$INJECTOR_VERSION flask_sqlalchemy eventlet typing mypy typed_ast script: - make test
Add Python 3.7 to Travis CI configuration
Add Python 3.7 to Travis CI configuration
YAML
bsd-3-clause
alecthomas/flask_injector
4be2444f15681db7481de4589a23e39f5c1018f5
.travis.yml
.travis.yml
language: ruby cache: bundler env: - CPLUS_INCLUDE_PATH=/usr/include/atlas C_INCLUDE_PATH=/usr/include/atlas rvm: - "1.9.2" - "1.9.3" - "2.0.0" - "2.1.0" before_install: - sudo apt-get update -qq - sudo apt-get install -qq libatlas-base-dev script: bundle exec rake compile && bundle exec rake spec
language: ruby cache: bundler env: - CPLUS_INCLUDE_PATH=/usr/include/atlas C_INCLUDE_PATH=/usr/include/atlas rvm: - "1.9.2" - "1.9.3" - "2.0.0" - "2.1.0" before_install: - sudo apt-get update -qq - sudo apt-get install -qq libatlas-base-dev script: bundle exec rake compile && bundle exec rake spec notifications: irc: "chat.freenode.net#sciruby"
Add IRC notifications to Travis
Add IRC notifications to Travis According to Travis' documentation[1], this change should add build results notifications to the #sciruby channel. [1]: http://docs.travis-ci.com/user/notifications/#IRC-notification
YAML
bsd-2-clause
thisMagpie/nmatrix,janusnic/nmatrix,wlevine/nmatrix,wlevine/nmatrix,agisga/nmatrix,johnmarinelli/nmatrix,johnmarinelli/nmatrix,johnmarinelli/nmatrix,wlevine/nmatrix,agisga/nmatrix,thisMagpie/nmatrix,thisMagpie/nmatrix,janusnic/nmatrix,johnmarinelli/nmatrix,janusnic/nmatrix,wlevine/nmatrix,agisga/nmatrix,janusnic/nmatrix,agisga/nmatrix,thisMagpie/nmatrix
7585d36a494f7b1461c97047216ddaba965b8e5d
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '12' - '14' - '15' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
sudo: false language: node_js node_js: - '12' - '14' - '16' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
Build with Node.js 16 on Travis CI.
Build with Node.js 16 on Travis CI.
YAML
mit
bigeasy/eject,bigeasy/eject
cffa04239fd64f687a13b1c6352d6c4fc43e879a
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 2.1.8 - 2.2.4 # install: 'gem install rake -v 10.5 && bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}' # script: bundle exec rake matrix: include: - rvm: 2.3.0 before_install: - rvm reinstall ruby-2.3.0
language: ruby cache: bundler rvm: - 2.1.8 - 2.2.4 - 2.3.0 matrix: allow_failures: - rvm: 2.3.0
Allow ruby 2.3.0 to fail
Allow ruby 2.3.0 to fail Travis keeps erroring out on ruby-2.3.0 with `cannot load such file -- rake`. This is a placeholder until I can figure out how to get travis to test this code properly with 2.3.
YAML
mit
thejandroman/jira_dependency_visualizer
acde669281501242ae922dfa30271a2aaf4292d5
.travis.yml
.travis.yml
language: haskell before_install: # Uncomment whenever hackage is down. # - mkdir -p ~/.cabal && cp config ~/.cabal/config && cabal update # Try installing some of the build-deps with apt-get for speed. - ./travis-cabal-apt-install --only-dependencies --force-reinstall $mode install: - cabal configure $mode - cabal build script: - $script notifications: irc: channels: - "irc.freenode.org#haskell-lens" skip_join: true template: - "\x0313lens\x03/\x0306%{branch}\x03 \x0314%{commit}\x03 %{build_url} %{message}" env: - mode="--enable-tests" script="cabal test" # - mode="--enable-tests -fsafe" script="cabal test" # - mode="--enable-tests -fdump-splices" script="cabal test --show-details=always" # - mode="--enable-benchmarks -fdump-splices" script="cabal bench"
language: haskell before_install: # Uncomment whenever hackage is down. - mkdir -p ~/.cabal && cp config ~/.cabal/config && cabal update # Try installing some of the build-deps with apt-get for speed. - ./travis-cabal-apt-install --only-dependencies --force-reinstall $mode install: - cabal configure $mode - cabal build script: - $script notifications: irc: channels: - "irc.freenode.org#haskell-lens" skip_join: true template: - "\x0313lens\x03/\x0306%{branch}\x03 \x0314%{commit}\x03 %{build_url} %{message}" env: - mode="--enable-tests" script="cabal test" # - mode="--enable-tests -fsafe" script="cabal test" # - mode="--enable-tests -fdump-splices" script="cabal test --show-details=always" # - mode="--enable-benchmarks -fdump-splices" script="cabal bench"
Add a workaround for the hackage outage
Add a workaround for the hackage outage
YAML
bsd-3-clause
omefire/lens,hvr/lens,rpglover64/lens,cchalmers/lens,cdepillabout/lens,Fuuzetsu/lens,Icelandjack/lens,ddssff/lens,timjb/lens,hvr/lens,Gabriel439/lens,danidiaz/lens
e9418b761033ac1e250a86a7b4a15a55d6469692
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.4" env: - DJANGO_VERSION="django>=1.7,<1.8" - DJANGO_VERSION="django>=1.8,<1.9" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install $DJANGO_VERSION --use-mirrors - python setup.py install - pip install -r test_requirements.txt - pip install coveralls # command to run tests, e.g. python setup.py test script: - "coverage run manage.py test" - "coverage report -m" after_success: - coveralls
sudo: false language: python python: - "2.7" - "3.4" env: - DJANGO_VERSION="django>=1.7,<1.8" - DJANGO_VERSION="django>=1.8,<1.9" - DJANGO_VERSION="django>=1.9,<1.10" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install $DJANGO_VERSION --use-mirrors - python setup.py install - pip install -r test_requirements.txt - pip install coveralls # command to run tests, e.g. python setup.py test script: - "coverage run manage.py test" - "coverage report -m" after_success: - coveralls
Add Django 1.9.x to the test matrix
Add Django 1.9.x to the test matrix
YAML
bsd-3-clause
matthiask/django-admin-sso,matthiask/django-admin-sso,diegobz/django-admin-sso,diegobz/django-admin-sso
394f8ac3fe38a65bc7b514de5a3ecd1d5d5b695b
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.1 before_script: gem install jekyll script: bundle exec jekyll build exclude: [vendor] sudo: false deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard local_dir: _site repo: alexis-hassler/alexis-hassler.github.io target_branch: master
language: ruby rvm: - 2.3.1 before_script: gem install jekyll script: bundle exec jekyll build exclude: [vendor] sudo: false deploy: provider: pages skip_cleanup: true github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard local_dir: _site repo: alexis-hassler/alexis-hassler.github.io target_branch: master fqdn: blog.alexis-hassler.com
Support du custom domain dans Travis
Support du custom domain dans Travis
YAML
mit
alexis-hassler/blog,alexis-hassler/blog
86e9902dd883461fa9df10df8a0e93a945251564
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - "0.8" - "0.6"
language: node_js node_js: - "0.11" - "0.10" - "0.8"
Remove nodejs 0.6 from Travis config
Remove nodejs 0.6 from Travis config
YAML
mit
dubejf/js-quantities,dubejf/js-quantities,mickeyreiss/js-quantities,dubejf/js-quantities,mickeyreiss/js-quantities,gentooboontoo/js-quantities,gentooboontoo/js-quantities,jhericks/js-quantities,mickeyreiss/js-quantities,dubejf/js-quantities,gentooboontoo/js-quantities,jhericks/js-quantities,jhericks/js-quantities,jhericks/js-quantities,mickeyreiss/js-quantities,glassbead0/js-quantities,glassbead0/js-quantities,glassbead0/js-quantities,gentooboontoo/js-quantities,glassbead0/js-quantities
4abb710af7bcc2bc81a15755ba3fabaf6507668d
.travis.yml
.travis.yml
matrix: include: - os: osx osx_image: xcode8.3 language: generic - os: osx osx_image: xcode8.2 language: generic - os: osx osx_image: xcode8.1 language: generic - os: osx osx_image: xcode8 language: generic - os: osx osx_image: xcode7.3 language: generic script: - brew install Formula/ocrmypdf.rb
matrix: include: - os: osx osx_image: xcode8.3 language: generic - os: osx osx_image: xcode8.2 language: generic - os: osx osx_image: xcode8.1 language: generic - os: osx osx_image: xcode8 language: generic - os: osx osx_image: xcode7.3 language: generic script: - brew install Formula/ocrmypdf.rb - ocrmypdf --version
Check that --version works too
Check that --version works too
YAML
mit
jbarlow83/homebrew-ocrmypdf
2c31fc69fb852ccb519d423ff99d8fcc11812256
.travis.yml
.travis.yml
language: node_js node_js: - '0.10'
language: node_js node_js: - '0.10' before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start
Configure CI for virtual screen
Configure CI for virtual screen
YAML
mit
dscout/osteo.js,dscout/immunid,dscout/immunid
5f74557bc005dc8aea2167fed285a6f97f6dab81
.travis.yml
.travis.yml
branches: only: - master - staging - trying sudo: false language: python cache: directories: - "$HOME/.cache/pip" matrix: include: - env: TOXENV=py27 - env: TOXENV=pypy install: - pip install -U pip setuptools wheel - pip install tox codecov - | if [ "${TOXENV}" == "pypy" ]; then git clone --depth 1 https://github.com/yyuu/pyenv.git ~/.pyenv PYENV_ROOT="$HOME/.pyenv" PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)" pyenv install pypy2.7-5.8.0 pyenv global pypy2.7-5.8.0 fi script: - tox after_success: - codecov notifications: email: false slack: secure: lqGRJQkQSBw9zX/AXqaPXVShw00TNncVvMAAj6q7jsLn17aCPmL5N0wmKWO6Oibdmu2EuehosCCN5JQ00tQ2zfi9sCGFtA5AC7Uxl2bi9rgBaW/HWSTc2q0ghi4v0MMCuxadOWOgjhRMKYNg37tIAuUYvJeB3kG8NFZgHKsxg0I=
branches: only: - master - staging - trying sudo: false dist: trusty language: python cache: directories: - "$HOME/.cache/pip" matrix: include: - env: TOXENV=py27 python: 2.7.13 - env: TOXENV=pypy python: pypy2.7-5.8.0 install: - pip install -U pip setuptools wheel - pip install tox codecov script: - tox after_success: - codecov notifications: email: false slack: secure: lqGRJQkQSBw9zX/AXqaPXVShw00TNncVvMAAj6q7jsLn17aCPmL5N0wmKWO6Oibdmu2EuehosCCN5JQ00tQ2zfi9sCGFtA5AC7Uxl2bi9rgBaW/HWSTc2q0ghi4v0MMCuxadOWOgjhRMKYNg37tIAuUYvJeB3kG8NFZgHKsxg0I=
Remove our own pyenv junk.
Remove our own pyenv junk.
YAML
mit
fusionapp/entropy
1983bdc551e51703eb9671b5e25c6dadaa9f4665
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: - 2.2 - 2.1 - 2.0.0 - jruby - rbx-2 gemfile: - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-4.1.x - test/gemfiles/Gemfile.rails-4.2.x matrix: allow_failures: - rvm: jruby - rvm: rbx-2 fast_finish: true script: "bundle exec rake submodules test"
sudo: false language: ruby cache: bundler rvm: - 2.3 - 2.2 - 2.1 - 2.0.0 - jruby - rbx-2 gemfile: - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-4.1.x - test/gemfiles/Gemfile.rails-4.2.x matrix: allow_failures: - rvm: jruby - rvm: rbx-2 fast_finish: true script: "bundle exec rake submodules test"
Add ruby 2.3 to test matrix
Add ruby 2.3 to test matrix
YAML
mit
haml/haml,haml/haml,haml/haml,haml/haml
2ebd1d76bd473699d2a06b84c668302d46240cc0
.travis.yml
.travis.yml
# Use container-based infrastructure sudo: false language: ruby # Travis bug, see https://github.com/bundler/bundler/pull/3559 before_install: gem update bundler cache: bundler rvm: - ruby-head - 2.3.3 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361 - 2.2 - 2.1 - 2.0.0 - 1.9.3 - 1.9.2 - 1.8.7 - ree - jruby-head - jruby-19mode - jruby-18mode - rbx-2 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: jruby-18mode # until we figure out failure in `bundle exec`, which is not our problem fast_finish: true
# Use container-based infrastructure sudo: false language: ruby # Travis bug, see https://github.com/bundler/bundler/pull/3559 before_install: gem update bundler cache: bundler rvm: - ruby-head - 2.3.3 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361 - 2.2 - 2.1 - 2.0.0 - 1.9.3 - 1.9.2 - 1.8.7 - ree - jruby-head - jruby-19mode - jruby-18mode - rbx-2 - rbx - rbx-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: jruby-18mode # until we figure out failure in `bundle exec`, which is not our problem - rvm: rbx-2 # until Travis fixes Rubinius again - rvm: rbx - rvm: rbx-head fast_finish: true
Test more Rubinius versions, but allow to fail
Test more Rubinius versions, but allow to fail Travis appears to not be able to even install rbx-2 right now. Just want to keep an eye on the situation and eventually get tests passing again, once Travis gets sorted out.
YAML
mit
ms-ati/docile
f54ff1c74eede62a0495765716eb1524d377e12a
.travis.yml
.travis.yml
dist: xenial language: rust cache: cargo rust: - stable - nightly script: - cargo build --verbose - cargo test --verbose - cargo run -- --version
language: rust cache: cargo os: - linux - osx - windows dist: xenial rust: - stable - nightly script: - cargo build --verbose - cargo test --verbose - cargo run -- --version
Enable Travis CI to run on Windows and macOS.
Enable Travis CI to run on Windows and macOS.
YAML
mit
google/rrg
6b6b6b3cbb34c7ace06793cf358912928e3aff1e
.travis.yml
.travis.yml
sudo: required dist: trusty addons: apt: sources: - chef-stable-precise packages: - chefdk env: global: - KITCHEN_LOCAL_YAML=.kitchen.docker.yml install: echo "skip bundle install" before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" - chef gem install test-kitchen - chef gem install kitchen-docker - chef gem install chefstyle script: chef exec rake quick notifications: slack: email: false secure: S/tClOuaGnhxdCkyc3WT0kWy9fP4a9dI7Ha0Pk0sjC0Fy1+0V/AShxwfgzJdGlzvbsRlCXmkE8W4BEQmZ0HjiPZgrvOx9mxv1krbBaO+eZDiSJIv2NgkgbwcxfraD+V3s4Mo8q3/FtS27diBOOUip4xqETsAIx0X86ZjHcb21ew=
sudo: required dist: trusty addons: apt: sources: - chef-stable-precise packages: - chefdk env: global: - KITCHEN_LOCAL_YAML=.kitchen.docker.yml install: echo "skip bundle install" before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" - chef gem install test-kitchen - chef gem install kitchen-docker - chef gem install chefstyle - chef gem install stove script: chef exec rake quick notifications: slack: email: false secure: S/tClOuaGnhxdCkyc3WT0kWy9fP4a9dI7Ha0Pk0sjC0Fy1+0V/AShxwfgzJdGlzvbsRlCXmkE8W4BEQmZ0HjiPZgrvOx9mxv1krbBaO+eZDiSJIv2NgkgbwcxfraD+V3s4Mo8q3/FtS27diBOOUip4xqETsAIx0X86ZjHcb21ew=
Add missing stove gem to fix the build
Add missing stove gem to fix the build
YAML
apache-2.0
aetrion/chef-dnsimple,aetrion/chef-dnsimple,dnsimple/chef-dnsimple
f96b612759c498916fecb649bc995cf38b189dd0
.travis.yml
.travis.yml
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=tinydns-ubuntu-1404 - INSTANCE=dbndns-ubuntu-1404 - INSTANCE=source-ubuntu-1404 - INSTANCE=tinydns-ubuntu-1604 - INSTANCE=dbndns-ubuntu-1604 - INSTANCE=source-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - script: - /opt/chefdk/bin/chef exec delivery local all env: UNIT_AND_LINT=1
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=tinydns-ubuntu-1404 - INSTANCE=dbndns-ubuntu-1404 - INSTANCE=source-ubuntu-1404 - INSTANCE=tinydns-ubuntu-1604 - INSTANCE=dbndns-ubuntu-1604 - INSTANCE=source-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
Simplify Travis config and fix ChefDK 2.0 failures
Simplify Travis config and fix ChefDK 2.0 failures
YAML
apache-2.0
jtimberman/djbdns,jtimberman/djbdns,jtimberman/djbdns
c97437d9eb8f08de56cb3f8647a192788ead12ca
.travis.yml
.travis.yml
sudo: required dist: trusty language: cpp before_install: - sudo apt-get update -qq # Install ZeroMQ - sudo apt-get install -y libzmq3-dev libzmq3 # Install Boost - sudo apt-get install -y libboost-all-dev # Install yaml-cpp - sudo apt-get install -y libyaml-cpp0.5 libyaml-cpp-dev # Install libcURL - sudo apt-get install -y libcurl4-gnutls-dev # Install libarchive (to avoid compiling it) - sudo apt-get install -y libarchive-dev # Install libcap for isolate - sudo apt-get install -y libcap-dev # Install isolate - git clone https://github.com/ioi/isolate.git - cd isolate - make isolate - sudo make install - cd .. - rm -rf isolate # Install coveralls uploader - pip install --user cpp-coveralls script: - mkdir build - cd build - cmake .. - make - ctest -E tool_ --output-on-failure after_success: - ctest -R tool_ --output-on-failure || true - cd ${TRAVIS_BUILD_DIR} - coveralls -i src --gcov-options '\-lp'
sudo: required dist: trusty language: cpp before_install: - sudo apt-get update -qq # Install ZeroMQ - sudo apt-get install -y libzmq3-dev libzmq3 # Install Boost - sudo apt-get install -y libboost-all-dev # Install yaml-cpp - sudo apt-get install -y libyaml-cpp0.5 libyaml-cpp-dev # Install libcURL - sudo apt-get install -y libcurl4-gnutls-dev # Install libarchive (to avoid compiling it) - sudo apt-get install -y libarchive-dev # Install libcap for isolate - sudo apt-get install -y libcap-dev # Install isolate - git clone https://github.com/ioi/isolate.git - cd isolate - make isolate - sudo make install - cd .. - rm -rf isolate # Install coveralls uploader - pip install --user cpp-coveralls script: - mkdir build - cd build - cmake .. - make - ctest -E tool_ --output-on-failure after_success: - ctest -R tool_ --output-on-failure || true - cd ${TRAVIS_BUILD_DIR} - coveralls -i src --gcov-options '\-lp' > /dev/null
Discard output of coveralls uploader
Discard output of coveralls uploader
YAML
mit
ReCodEx/worker,ReCodEx/worker,ReCodEx/worker
fdb0076faad70b4440764dd05194c4ef1bfbe6ed
.travis.yml
.travis.yml
language: haxe before_script: - npm install haxe: - "3.2.0" hxml: - test/travis.hxml
language: haxe sudo: false before_script: - npm install haxe: - "3.2.0" hxml: - test/travis.hxml
Disable sudo for faster container-based builds
Disable sudo for faster container-based builds
YAML
mit
dionjwa/haxe-json-rpc,dionjwa/haxe-json-rpc
cd991e637091cbb3452919f12ad6037b27a391ee
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm - hhvm-nightly branches: except: - v0.5 - v0.6 - php5.2_backport - documentation services: redis-server before_script: - composer self-update - composer install --no-interaction --prefer-source --dev script: - vendor/bin/phpunit -c phpunit.xml.travisci matrix: allow_failures: - php: hhvm - php: hhvm-nightly fast_finish: true
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm branches: except: - v0.5 - v0.6 - php5.2_backport - documentation services: redis-server before_script: - composer self-update - composer install --no-interaction --prefer-source --dev script: - vendor/bin/phpunit -c phpunit.xml.travisci matrix: allow_failures: - php: hhvm fast_finish: true
Remove hhvm-nightly from Travis CI configuration.
[tests] Remove hhvm-nightly from Travis CI configuration. See https://github.com/travis-ci/travis-ci/issues/3788 for details.
YAML
mit
gopalindians/predis,gencer/predis,CloudSide/predis,zhangyancoder/predis,nguyenthaihan/predis,dzung2t/predis,protomouse/predis,moria/predis,WalterShe/predis,quangnguyen90/predis,mrkeng/predis,RudyJessop/predis,lvbaosong/predis,SecureCloud-biz/predis
539938a6681d84f1cf85788ff43beb4919058bef
.travis.yml
.travis.yml
sudo: false language: go go: - 1.4 - 1.5 - 1.6 - tip script: go test -v -cover -race notifications: email: - [email protected]
sudo: false language: go go: - 1.5 - 1.6 - tip script: go test -v -cover -race notifications: email: - [email protected]
Remove stupid 1.4 for CI
Remove stupid 1.4 for CI
YAML
apache-2.0
go-macaron/macaron,go-macaron/macaron
bc096d9a44db11e49a5605ded4994eec5d7be104
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" - "0.11" - "0.12" - "4.0" - "4.1" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
sudo: false language: node_js node_js: - "0.11" - "0.12" - "4.1" - "4.2" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Update Travis config to latest. Add v4.2, drop v4.0 .
Update Travis config to latest. Add v4.2, drop v4.0 .
YAML
mit
cliffano/sapi
9425a03640e294561b8eb5f192af46584e5339b4
.travis.yml
.travis.yml
dist: trusty sudo: false language: go go: - 1.8 install: - go get github.com/gwenn/yacr - go get -tags all github.com/gwenn/gosqlite before_script: - go get github.com/bmizerany/assert script: # - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite - GODEBUG=cgocheck=0 go test -v -tags all github.com/gwenn/gosqlite
dist: trusty sudo: false language: go go: - 1.9 install: - go get github.com/gwenn/yacr - go get -tags all github.com/gwenn/gosqlite before_script: - go get github.com/bmizerany/assert script: # - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite - GODEBUG=cgocheck=0 go test -v -tags all github.com/gwenn/gosqlite
Upgrade Travis build to Go 1.9
Upgrade Travis build to Go 1.9
YAML
bsd-3-clause
gwenn/gosqlite,gwenn/gosqlite
ca24167eb1c982e8c159cbd392f12885405b9588
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5.1' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Test with latest Node.js 5 on Travis CI.
Test with latest Node.js 5 on Travis CI.
YAML
mit
bigeasy/wildmap
b5ea8fdbbf2d2a3b4cc0350f0414449cfd51d542
.travis.yml
.travis.yml
language: python python: 2.7 branches: only: - src env: global: secure: gZYVTY9bdudw6cJSj0IR5reYvkoAeOrOx5t+1H/t3ZHVhcVUhFwBpBkbc0iDFIdAFa43W76FymP5a0MAKrTaTcnEHRpKRVBdEDr7et5hWntGFaCKYN34qFuDsVVftBkPLhWkYufaOsX2f8NF04hC+E7NdzHKaDTXL4PjmayTydI= install: - pip install -r requirements.txt before_script: - git config --global user.name "Travis CI" script: - make publish github
language: python python: 2.7 notifications: email: false branches: only: - src env: global: secure: gZYVTY9bdudw6cJSj0IR5reYvkoAeOrOx5t+1H/t3ZHVhcVUhFwBpBkbc0iDFIdAFa43W76FymP5a0MAKrTaTcnEHRpKRVBdEDr7et5hWntGFaCKYN34qFuDsVVftBkPLhWkYufaOsX2f8NF04hC+E7NdzHKaDTXL4PjmayTydI= install: - pip install -r requirements.txt before_script: - git config --global user.name "Travis CI" - git clone https://github.com/getpelican/pelican-plugins plugins script: - make publish github
Clone Pelican plugins and disable notifications
Clone Pelican plugins and disable notifications
YAML
mit
iKevinY/iKevinY.github.io,iKevinY/iKevinY.github.io,iKevinY/iKevinY.github.io
dedc088b3c5befe8e7730e6b0efb3de7fbea8c05
.travis.yml
.travis.yml
language: groovy jdk: - openjdk7 install: - sudo apt-get install pandoc texlive-latex-base texlive-luatex - ./gradlew -I gradle/travis-init.gradle ciPrepare script: ./gradlew -I gradle/travis-init.gradle ciBuild after_success: - ./gradlew -I gradle/travis-init.gradle ciPostBuild env: global: - DEPLOY_USER=travis - secure: cUGqhBVQMOeKco9NdwlTXOLFUWGtlqNBtVATigGAKXYPqlYwb17DSdM28p7+nKZUFSOXDEAa4JrAXWOpBTC7qY06cDTt7Zoj0Fcd0DuK/pXyDnqh7QMRRvrtnEFq/utbws4Yhm9hTdUosN5bz49CK9v5ZVAtPAe8/rwp6Y1ksMM=
language: groovy jdk: - openjdk7 install: - sudo apt-get install pandoc texlive-latex-base texlive-luatex r-base-core - ./gradlew -I gradle/travis-init.gradle ciPrepare script: ./gradlew -I gradle/travis-init.gradle ciBuild after_success: - ./gradlew -I gradle/travis-init.gradle ciPostBuild env: global: - DEPLOY_USER=travis - secure: cUGqhBVQMOeKco9NdwlTXOLFUWGtlqNBtVATigGAKXYPqlYwb17DSdM28p7+nKZUFSOXDEAa4JrAXWOpBTC7qY06cDTt7Zoj0Fcd0DuK/pXyDnqh7QMRRvrtnEFq/utbws4Yhm9hTdUosN5bz49CK9v5ZVAtPAe8/rwp6Y1ksMM=
Install Rscript for integration tests
Install Rscript for integration tests
YAML
bsd-3-clause
mdekstrand/gradle-plugins,mdekstrand/gradle-plugins
94b785b8ae2efd7e013941d42361e050e02326a9
.travis.yml
.travis.yml
language: python - "3.2" - "3.4" - "3.5" - "3.6" addons: apt: packages: - python3-scipy - python3-nose - python3-coverage before_install: - pip install codecov rednose nose coverage toolz nose-parameterized codeclimate-test-reporter cache: pip sudo: false script: nosetests3 dist: trusty after_success: - codeclimate-test-reporter --token 71eb68ef3ba1f85d8e92407d03e43df51deb6f14a870ada23e8530a16d438eae - codecov --token=e3a3e622-b5b4-40a0-b0be-f427bbb23449
language: python - "3.2" - "3.4" - "3.5" - "3.6" addons: apt: packages: - python3-scipy - python3-nose - python3-coverage before_install: - pip install codecov rednose nose coverage toolz nose-parameterized codeclimate-test-reporter cache: pip sudo: false script: nosetests dist: trusty after_success: - codeclimate-test-reporter --token 71eb68ef3ba1f85d8e92407d03e43df51deb6f14a870ada23e8530a16d438eae - codecov --token=e3a3e622-b5b4-40a0-b0be-f427bbb23449
Use nosetests instead of nosetests3
Use nosetests instead of nosetests3
YAML
apache-2.0
ulikoehler/UliEngineering
5757bb3250767db98ab375592f350d552f1421a2
.travis.yml
.travis.yml
--- bundler_args: --without development language: ruby cache: bundler rvm: - 2.2.0 sudo: false before_script: - mysql -e 'create database elmo_test;' - "for f in $(find -name '*.example'); do cp \"$f\" \"${f%.example}\"; done" - "sed -ri 's/user: elmo/user: travis/; /password:/d' config/database.yml" - bundle exec rake ts:index ts:start db:setup script: bundle exec rake env: global: # Set reCAPTCHA keys to dummy values - RECAPTCHA_PUBLIC_KEY=6Lc6BAAAAAAAAChqRbQZcn_yyyyyyyyyyyyyyyyy - RECAPTCHA_PRIVATE_KEY=6Lc6BAAAAAAAAKN3DRm6VA_xxxxxxxxxxxxxxxxx
--- bundler_args: --without development language: ruby cache: bundler rvm: - 2.2.0 sudo: false before_script: - mysql -e 'create database elmo_test;' - "for f in $(find -name '*.example'); do cp \"$f\" \"${f%.example}\"; done" - "sed -ri 's/user: elmo/user: travis/; /password:/d' config/database.yml" - "sed -ri '/config\.(public|private)_key = nil/d' config/initializers/local_config.rb" - bundle exec rake ts:index ts:start db:setup script: bundle exec rake env: global: # Set reCAPTCHA keys to dummy values - RECAPTCHA_PUBLIC_KEY=6Lc6BAAAAAAAAChqRbQZcn_yyyyyyyyyyyyyyyyy - RECAPTCHA_PRIVATE_KEY=6Lc6BAAAAAAAAKN3DRm6VA_xxxxxxxxxxxxxxxxx
Remove reCAPTCHA lines from local_config.rb
2372: Remove reCAPTCHA lines from local_config.rb These seem to be stopping the environment variables from being used
YAML
apache-2.0
thecartercenter/elmo,thecartercenter/elmo,thecartercenter/elmo
182e213fbb59414cfbc218fd8dcde9fc501d74f5
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - rbx-19mode - ruby-head script: - RAILS_ENV=test bundle exec rake --trace db:migrate - bundle exec rake db:test:prepare - bundle exec rake test
language: ruby rvm: - 1.9.3 - rbx-19mode - ruby-head - jruby-19mode script: - RAILS_ENV=test bundle exec rake --trace db:migrate - bundle exec rake db:test:prepare - bundle exec rake test
Add jruby-19mode to Travis rubies
Add jruby-19mode to Travis rubies
YAML
mit
skyshaper/satq,skyshaper/satq,skyshaper/satq,skyshaper/satq
2b6c6d0f6ba2e638fd9f9cfc7f83954344a2943e
.travis.yml
.travis.yml
language: node_js before_script: - "git submodule update --init --recursive" notifications: irc: channels: - "irc.freenode.org#patterns" on_success: change on_failure: always template: - "%{branch}/%{commit} %{author} %{message}" - "Build details: %{build_url}"
language: node_js node_js: - 0.8 before_script: - "git submodule update --init --recursive" - "npm install grunt-cli" notifications: irc: channels: - "irc.freenode.org#patterns" on_success: change on_failure: always template: - "%{branch}/%{commit} %{author} %{message}" - "Build details: %{build_url}"
Use node_js 0.8 and install grunt-cli"
Use node_js 0.8 and install grunt-cli"
YAML
bsd-3-clause
Patternslib/require-experimental-build
d64543861c18632dc1f5fd4b4ab2bf8be29bc889
.travis.yml
.travis.yml
dist: xenial language: python python: - "2.7" - "3.5" - "3.6" - "3.7" install: - pip install -r requirements.txt - pip install nose flexmock script: nosetests
dist: xenial language: python python: - "2.7" - "3.5" - "3.6" - "3.7" - "3.8" - "3.9" - "3.10-dev" install: - pip install -r requirements.txt - pip install nose flexmock script: nosetests
Add new Pythons to the CI config
Add new Pythons to the CI config
YAML
bsd-3-clause
bkabrda/flask-whooshee
2ffcef7d89fb37379051580852e8a01da6b88d70
.travis.yml
.travis.yml
language: python python: - 3.3 - 3.4 install: - pip install -e .[tests] - pip install pytest-cov flake8 coveralls script: - py.test -v --cov cliche --durations=20 - hooks/pre-commit after_success: - coveralls notifications: irc: channels: - "irc.ozinger.org#cliche.io" on_success: change on_failure: always
language: python python: - 3.3 - 3.4 addons: postgresql: "9.3" install: - pip install -e .[tests] - pip install pytest-cov flake8 coveralls before_script: - createdb -U postgres cliche_test script: - py.test -v --cov cliche --durations=20 --database-url='postgresql:///cliche_test?user=postgres' - py.test -v --durations=20 - hooks/pre-commit after_success: - coveralls notifications: irc: channels: - "irc.ozinger.org#cliche.io" on_success: change on_failure: always
Test on PostgreSQL as well
Test on PostgreSQL as well
YAML
mit
clicheio/cliche,item4/cliche,clicheio/cliche,item4/cliche,clicheio/cliche
6d8417d6da7f27097cd3c29d1b39ab36097843db
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" addons: apt: packages: - ttf-dejavu install: - pip install pytest flake8 -e . - mkdir -p ~/.fonts - wget http://www.w3.org/Style/CSS/Test/Fonts/Ahem/AHEM____.TTF -O ~/.fonts/Ahem.ttf script: - py.test -s - flake8 weasyprint sudo: false
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" addons: apt: packages: - ttf-dejavu install: - pip install pytest flake8 -e . - mkdir -p ~/.fonts - wget "https://github.com/Kozea/Ahem/blob/master/Ahem.ttf?raw=true" -O ~/.fonts/Ahem.ttf script: - py.test -s - flake8 weasyprint sudo: false
Fix the link used to download Ahem
Fix the link used to download Ahem The w3.org servers like to reject Travis' requests.
YAML
bsd-3-clause
Kozea/WeasyPrint,Kozea/WeasyPrint
35daabcc53c84ea65b2cf8d9d5fd7f83db42906e
.travis.yml
.travis.yml
language: ruby dist: trusty sudo: required cache: bundler services: - postgresql - mysql bundler_args: --without yard guard benchmarks tools before_script: - psql -c 'create database rom_sql;' -U postgres - mysql -u root -e 'create database rom_sql;' - rvm get master after_success: - '[ -d coverage ] && bundle exec codeclimate-test-reporter' script: "bundle exec rake ci" rvm: - 2.2.7 - 2.3.4 - 2.4.1 - jruby-9.1.8.0 env: global: - CODECLIMATE_REPO_TOKEN=03d7f66589572702b12426d2bc71c4de6281a96139e33b335b894264b1f8f0b0 - JRUBY_OPTS='--dev -J-Xmx1024M' - COVERAGE='true' notifications: webhooks: urls: - https://webhooks.gitter.im/e/39e1225f489f38b0bd09 on_success: change on_failure: always on_start: false addons: postgresql: 9.5 apt: packages: - mysql-server-5.6 - mysql-client-core-5.6 - mysql-client-5.6
language: ruby dist: trusty sudo: required cache: bundler services: - postgresql - mysql bundler_args: --without yard guard benchmarks tools before_script: - psql -c 'create database rom_sql;' -U postgres - mysql -u root -e 'create database rom_sql;' - rvm get master after_success: - '[ -d coverage ] && bundle exec codeclimate-test-reporter' script: "bundle exec rake ci" rvm: - 2.2.7 - 2.3.4 - 2.4.1 - jruby-9.1.12.0 env: global: - CODECLIMATE_REPO_TOKEN=03d7f66589572702b12426d2bc71c4de6281a96139e33b335b894264b1f8f0b0 - JRUBY_OPTS='--dev -J-Xmx1024M' - COVERAGE='true' notifications: webhooks: urls: - https://webhooks.gitter.im/e/39e1225f489f38b0bd09 on_success: change on_failure: always on_start: false addons: postgresql: 9.5 apt: packages: - mysql-server-5.6 - mysql-client-core-5.6 - mysql-client-5.6
Use latest JRuby on Travis
Use latest JRuby on Travis
YAML
mit
rom-rb/rom-sql,rom-rb/rom-sql
af7c479bec8dbe475d646fc32bc7b0e5881c24dc
.travis.yml
.travis.yml
language: node_js node_js: - '0.12' - '4' - '5'
language: node_js node_js: - '0.12' - '4' - '5' script: "npm run test" # Send coverage data to Coveralls after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
Add test and coverall configuration
Add test and coverall configuration
YAML
mit
ospatil/string-search
bf4232b60f71e48c3634a0c8abfe25c643175a36
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 1.9.3 - 2.0.0 - jruby-19mode-1.7.4 - rbx-19mode
Use JRuby 1.7.4 for CI. Update DOAP file for N-Triples. Change deprecated RSpec mock to double.
Use JRuby 1.7.4 for CI. Update DOAP file for N-Triples. Change deprecated RSpec mock to double.
YAML
unlicense
ruby-rdf/rdf-turtle
14739212f41c77a469d8792ebcc9ef9e911a7274
.travis.yml
.travis.yml
sudo: false addons: apt: sources: - deadsnakes - ubuntu-toolchain-r-test packages: - python3.5 - python3.5-dev - python-pip - python-virtualenv - gcc-4.9 - g++-4.9 # Needed for ARM gcc - lib32bz2-1.0 - lib32ncurses5 - lib32z1 language: cpp matrix: include: - compiler: clang env: BUILD_TYPE="tests" - compiler: gcc env: BUILD_TYPE="tests" - compiler: clang env: BUILD_TYPE="client-tests" - compiler: gcc env: BUILD_TYPE="build" PLATFORM="motor-board-v1" - compiler: gcc env: BUILD_TYPE="build" PLATFORM="rc-board-v1" - compiler: gcc env: BUILD_TYPE="build" PLATFORM="olimex-e407" - compiler: gcc env: BUILD_TYPE="build" PLATFORM="can-io-board" before_install: - if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi install: - ci/install.sh script: - ci/build.sh
sudo: false addons: apt: sources: - deadsnakes - ubuntu-toolchain-r-test packages: - python3.5 - python3.5-dev - python-pip - python-virtualenv - gcc-4.9 - g++-4.9 # Needed for ARM gcc - lib32bz2-1.0 - lib32ncurses5 - lib32z1 language: cpp matrix: include: - compiler: clang env: BUILD_TYPE="tests" - compiler: gcc env: BUILD_TYPE="tests" - compiler: clang env: BUILD_TYPE="client-tests" - compiler: gcc env: BUILD_TYPE="build" PLATFORM="motor-board-v1" - compiler: gcc env: BUILD_TYPE="build" PLATFORM="rc-board-v1" - compiler: gcc env: BUILD_TYPE="build" PLATFORM="olimex-e407" - compiler: gcc env: BUILD_TYPE="build" PLATFORM="can-io-board" - compiler: gcc env: BUILD_TYPE="build" PLATFORM="nucleo-board-stm32f103rb" before_install: - if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi install: - ci/install.sh script: - ci/build.sh
Add CI for Nucleo STM32F103 platform
Add CI for Nucleo STM32F103 platform
YAML
bsd-2-clause
cvra/can-bootloader,cvra/can-bootloader,cvra/can-bootloader,cvra/can-bootloader
d4200c66df3c3a9bfa540b4873fb8575c9778f8a
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 install: "pip install Django==$DJANGO_VERSION --use-mirrors" script: ./runtests.py env: - DJANGO_VERSION=1.4.5 - DJANGO_VERSION=1.5
language: python python: - 2.6 - 2.7 - 3.3 install: "pip install Django==$DJANGO_VERSION --use-mirrors" script: ./runtests.py env: - DJANGO_VERSION=1.4.5 - DJANGO_VERSION=1.5 matrix: exclude: - python: 3.3 env: DJANGO_VERSION=1.4.5
Add Python 3 tests to Travis CI
Add Python 3 tests to Travis CI
YAML
bsd-3-clause
jarcoal/django-loginas,intellisense/django-loginas,stochastic-technologies/django-loginas,stochastic-technologies/django-loginas,skorokithakis/django-loginas,topletal/django-loginas,jarcoal/django-loginas,topletal/django-loginas,skorokithakis/django-loginas,intellisense/django-loginas
adb33c68e95f67cdeac15ddf2e7e12dd4eb32a5f
.travis.yml
.travis.yml
language: go go: - 1.12 env: - GO111MODULE=on script: # Fail on first non 0 exit code - set -e # Check if Go source code is unformatted - UNFMT_LIST=$(gofmt -l $(find . -iname '*.go' -type f)) - if [ "${UNFMT_LIST}" ]; then echo "${UNFMT_LIST}"; exit 1; fi # Run tests - make test # Linter for Go source code #- go get -u golang.org/x/lint/golint #- golint -set_exit_status ./... # Vet examines Go source code and reports suspicious constructs - go vet ./... # Can app be built? - go build
language: go go: - 1.12 env: - GO111MODULE=on script: # Fail on first non 0 exit code - set -e # Check if Go source code is unformatted - UNFMT_LIST=$(gofmt -l $(find . -iname '*.go' -type f)) - if [ "${UNFMT_LIST}" ]; then echo "${UNFMT_LIST}"; exit 1; fi # Run tests - go test -race -coverprofile=coverage.txt -covermode=atomic ./... # Linter for Go source code #- go get -u golang.org/x/lint/golint #- golint -set_exit_status ./... # Vet examines Go source code and reports suspicious constructs - go vet ./... # Can app be built? - go build after_success: - bash <(curl -s https://codecov.io/bash)
Add CodeCov to Travis stack
Add CodeCov to Travis stack
YAML
mit
Glavic/8xIO,Glavic/8xIO,Glavic/8xIO
26c7a9adf5d07c503108cf396b25440050782f92
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" - "0.12" - "iojs"
sudo: false language: node_js node_js: - "0.10" - "0.12" - "4"
Test Node.js 4 instead of io.js
Test Node.js 4 instead of io.js See jadejs/jade#2083.
YAML
mit
pugjs/jade-lexer,jadejs/jade-lexer,xdissent/jade-lexer,pugjs/pug-lexer,pugjs/pug-lexer,xdissent/jade-lexer
bdc916837dde4d41a5501dba177b5599774fa4f2
tasks/configuration.yml
tasks/configuration.yml
--- - name: Ensure the PowerDNS configuration directory exists file: name={{pdns_rec_config_dir | default('/etc/powerdns')}} state=directory owner="root" group="root" - name: grab pdns_recursor version shell: "pdns_recursor --version 2>&1 | awk '/PowerDNS Recursor/ { print $6 }'" register: pdns_recursor_version_result - set_fact: pdns_recursor_version="{{ pdns_recursor_version_result.stdout }}" - name: Add configuration for the PowerDNS Recursor template: src=recursor.conf.j2 dest={{pdns_rec_config_dir | default('/etc/powerdns')}}/recursor.conf notify: Restart PowerDNS Recursor
--- - name: Ensure the PowerDNS configuration directory exists file: name={{pdns_rec_config_dir | default('/etc/powerdns')}} state=directory owner="root" group="root" - name: grab pdns_recursor version shell: "pdns_recursor --version 2>&1 | awk '/PowerDNS Recursor/ { print $6 }'" register: pdns_recursor_version_result changed_when: false - set_fact: pdns_recursor_version="{{ pdns_recursor_version_result.stdout }}" - name: Add configuration for the PowerDNS Recursor template: src=recursor.conf.j2 dest={{pdns_rec_config_dir | default('/etc/powerdns')}}/recursor.conf notify: Restart PowerDNS Recursor
Mark a task a never changing
Mark a task a never changing
YAML
mit
PowerDNS/pdns_recursor-ansible
8103d591881810ee8355cff2fa796eb8ef2efe45
docker-compose.yml
docker-compose.yml
version: '2' services: init: image: koding/base working_dir: /opt/koding entrypoint: scripts/bootstrap-container command: configure env_file: .env-docker-compose volumes: - .:/opt/koding backend: image: koding/base entrypoint: /opt/koding/scripts/bootstrap-container command: build env_file: .env-docker-compose volumes: - .:/opt/koding ports: - 8090:8090 links: - mongo - postgres - rabbitmq - redis mongo: image: koding/mongo postgres: image: koding/postgres rabbitmq: image: rabbitmq:3-management redis: image: redis
version: '2' services: init: image: koding/base working_dir: /opt/koding entrypoint: scripts/bootstrap-container command: configure env_file: .env-docker-compose volumes: - .:/opt/koding backend: image: koding/base working_dir: /opt/koding entrypoint: scripts/bootstrap-container command: build env_file: .env-docker-compose volumes: - .:/opt/koding ports: - 8090:8090 links: - mongo - postgres - rabbitmq - redis mongo: image: koding/mongo postgres: image: koding/postgres rabbitmq: image: rabbitmq:3-management redis: image: redis
Set working directory for backend service container
Set working directory for backend service container Signed-off-by: Sonmez Kartal <[email protected]>
YAML
agpl-3.0
sinan/koding,jack89129/koding,acbodine/koding,alex-ionochkin/koding,mertaytore/koding,andrewjcasal/koding,drewsetski/koding,alex-ionochkin/koding,rjeczalik/koding,kwagdy/koding-1,jack89129/koding,sinan/koding,acbodine/koding,gokmen/koding,gokmen/koding,cihangir/koding,cihangir/koding,cihangir/koding,alex-ionochkin/koding,drewsetski/koding,cihangir/koding,alex-ionochkin/koding,usirin/koding,usirin/koding,szkl/koding,drewsetski/koding,kwagdy/koding-1,usirin/koding,koding/koding,sinan/koding,usirin/koding,koding/koding,rjeczalik/koding,usirin/koding,mertaytore/koding,alex-ionochkin/koding,mertaytore/koding,cihangir/koding,cihangir/koding,acbodine/koding,koding/koding,andrewjcasal/koding,gokmen/koding,koding/koding,szkl/koding,sinan/koding,drewsetski/koding,kwagdy/koding-1,cihangir/koding,kwagdy/koding-1,rjeczalik/koding,koding/koding,jack89129/koding,acbodine/koding,andrewjcasal/koding,andrewjcasal/koding,drewsetski/koding,rjeczalik/koding,acbodine/koding,sinan/koding,drewsetski/koding,koding/koding,szkl/koding,alex-ionochkin/koding,andrewjcasal/koding,szkl/koding,alex-ionochkin/koding,gokmen/koding,usirin/koding,szkl/koding,acbodine/koding,mertaytore/koding,cihangir/koding,jack89129/koding,jack89129/koding,kwagdy/koding-1,mertaytore/koding,acbodine/koding,mertaytore/koding,jack89129/koding,gokmen/koding,gokmen/koding,kwagdy/koding-1,kwagdy/koding-1,koding/koding,mertaytore/koding,szkl/koding,acbodine/koding,szkl/koding,rjeczalik/koding,usirin/koding,gokmen/koding,sinan/koding,sinan/koding,rjeczalik/koding,andrewjcasal/koding,alex-ionochkin/koding,szkl/koding,koding/koding,gokmen/koding,kwagdy/koding-1,andrewjcasal/koding,drewsetski/koding,jack89129/koding,jack89129/koding,mertaytore/koding,andrewjcasal/koding,usirin/koding,drewsetski/koding,sinan/koding,rjeczalik/koding,rjeczalik/koding
0d8d9ea0db7a7988df032f74e7a12b962fc23e3d
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm install: - composer install -n script: - phpunit --coverage-clover=coverage.clover - wget https://scrutinizer-ci.com/ocular.phar - if [[ "$(phpenv version-name)" != "7.0" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm install: - composer install -n script: - phpunit --coverage-clover=coverage.clover - wget https://scrutinizer-ci.com/ocular.phar - if [[ "$(phpenv version-name)" != "7.0" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
Remove PHP 5.3 build from Travis config
Remove PHP 5.3 build from Travis config
YAML
mit
arodygin/php-linode-api3,arodygin/linode-api-php
7e665937488d581c6a5b4e41a8977990d2b4b1b2
docker-compose.yml
docker-compose.yml
feeder: build: . volumes: - .:/app container_name: feeder-web env_file: - .env links: - db ports: - "3000:3000" command: web worker: image: feederprxorg_feeder volumes: - .:/app container_name: feeder-worker env_file: - .env links: - db command: worker db: image: postgres env_file: - .env ports: - "5432:5432"
feeder: build: . volumes: - .:/app env_file: - .env links: - db ports: - "3000:3000" command: web environment: VIRTUAL_HOST: feeder.docker worker: image: feederprxorg_feeder volumes: - .:/app env_file: - .env links: - db command: worker db: image: postgres env_file: - .env ports: - "5432:5432"
Use feeder for base image name, map 3k to 3k, but use a virtual host to enable dinghy http proxy
Use feeder for base image name, map 3k to 3k, but use a virtual host to enable dinghy http proxy
YAML
agpl-3.0
PRX/feeder.prx.org,PRX/feeder.prx.org,PRX/feeder.prx.org
1de6100fbe51fb9973f4d2a188e0077eefafe593
docker-compose.yml
docker-compose.yml
db: image: postgres web: build: . command: bundle exec rails s -p 3000 -b '0.0.0.0' ports: - "3000:3000" links: - db env_file: .env
db: image: postgres web: build: . command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'" ports: - "3000:3000" links: - db env_file: .env
Fix pidfile error when docker container is killed
Fix pidfile error when docker container is killed
YAML
mit
palcu/infoeducatie-api,palcu/infoeducatie-api,infoeducatie/infoeducatie-api,infoeducatie/infoeducatie-api,palcu/infoeducatie-api,infoeducatie/infoeducatie-api
3ee9d1cc6fc45062aa527124265619d6236686ab
docker-compose.yml
docker-compose.yml
version: '2' services: init: image: koding/base working_dir: /opt/koding entrypoint: scripts/bootstrap-container command: configure env_file: .env-docker-compose volumes: - .:/opt/koding backend: image: koding/base working_dir: /opt/koding entrypoint: scripts/bootstrap-container command: run backend env_file: .env-docker-compose volumes: - .:/opt/koding ports: - 8090:8090 links: - mongo - postgres - rabbitmq - redis mongo: image: koding/mongo postgres: image: koding/postgres rabbitmq: image: rabbitmq:3-management redis: image: redis
version: '2' services: init: image: koding/base working_dir: /opt/koding entrypoint: scripts/bootstrap-container command: configure env_file: .env-docker-compose volumes: - .:/opt/koding backend: image: koding/base working_dir: /opt/koding entrypoint: scripts/bootstrap-container command: run backend env_file: .env-docker-compose volumes: - .:/opt/koding ports: - 8090:8090 links: - mongo - postgres - rabbitmq - redis client: image: koding/base working_dir: /opt/koding entrypoint: scripts/bootstrap-container is_ready command: make -C client development env_file: .env-docker-compose volumes: - .:/opt/koding mongo: image: koding/mongo postgres: image: koding/postgres rabbitmq: image: rabbitmq:3-management redis: image: redis
Add client build service container
Add client build service container Signed-off-by: Sonmez Kartal <[email protected]>
YAML
agpl-3.0
usirin/koding,kwagdy/koding-1,drewsetski/koding,rjeczalik/koding,koding/koding,cihangir/koding,koding/koding,acbodine/koding,sinan/koding,usirin/koding,drewsetski/koding,gokmen/koding,jack89129/koding,drewsetski/koding,szkl/koding,andrewjcasal/koding,drewsetski/koding,rjeczalik/koding,mertaytore/koding,drewsetski/koding,alex-ionochkin/koding,cihangir/koding,andrewjcasal/koding,kwagdy/koding-1,acbodine/koding,jack89129/koding,rjeczalik/koding,sinan/koding,cihangir/koding,alex-ionochkin/koding,usirin/koding,andrewjcasal/koding,kwagdy/koding-1,rjeczalik/koding,jack89129/koding,szkl/koding,drewsetski/koding,jack89129/koding,drewsetski/koding,usirin/koding,gokmen/koding,jack89129/koding,cihangir/koding,mertaytore/koding,cihangir/koding,alex-ionochkin/koding,szkl/koding,acbodine/koding,andrewjcasal/koding,mertaytore/koding,alex-ionochkin/koding,kwagdy/koding-1,acbodine/koding,andrewjcasal/koding,jack89129/koding,mertaytore/koding,koding/koding,koding/koding,koding/koding,szkl/koding,gokmen/koding,jack89129/koding,szkl/koding,andrewjcasal/koding,sinan/koding,sinan/koding,sinan/koding,szkl/koding,acbodine/koding,usirin/koding,mertaytore/koding,jack89129/koding,alex-ionochkin/koding,sinan/koding,mertaytore/koding,usirin/koding,kwagdy/koding-1,alex-ionochkin/koding,sinan/koding,kwagdy/koding-1,cihangir/koding,mertaytore/koding,sinan/koding,szkl/koding,gokmen/koding,kwagdy/koding-1,koding/koding,alex-ionochkin/koding,gokmen/koding,szkl/koding,gokmen/koding,koding/koding,drewsetski/koding,gokmen/koding,cihangir/koding,rjeczalik/koding,mertaytore/koding,gokmen/koding,usirin/koding,acbodine/koding,cihangir/koding,acbodine/koding,kwagdy/koding-1,acbodine/koding,andrewjcasal/koding,usirin/koding,rjeczalik/koding,rjeczalik/koding,rjeczalik/koding,andrewjcasal/koding,koding/koding,alex-ionochkin/koding
2e00995df02ec7befb38989d20141c3c3b10f45a
.travis.yml
.travis.yml
language: objective-c script: - xctool -project TestsAndSample/TestsAndSample.xcodeproj -scheme Tests64 test - xctool -project TestsAndSample/TestsAndSample.xcodeproj -scheme Tests32 test
language: objective-c osx_image: xcode7.2 script: - xctool -project TestsAndSample/TestsAndSample.xcodeproj -scheme Tests64 test - xctool -project TestsAndSample/TestsAndSample.xcodeproj -scheme Tests32 test
Use Swift 2.1 on Travis for tests.
Use Swift 2.1 on Travis for tests.
YAML
mit
seivan/ScalarArithmetic
37c2deeb728179af67bb6ba64b826ed6ad7fec2c
docker-compose.yml
docker-compose.yml
version: '3' networks: keycloak-network: volumes: keycloak-postgres-data: keycloak-nginx-ssl: services: postgres: image: postgres:9.6-alpine container_name: postgres networks: - keycloak-network volumes: - keycloak-postgres-data:/var/lib/postgresql/data environment: - POSTGRES_DB=keycloak - POSTGRES_USER=keycloak - POSTGRES_PASSWORD=password keycloak: image: jboss/keycloak-postgres container_name: keycloak links: - postgres networks: - keycloak-network depends_on: - postgres environment: - POSTGRES_DATABASE=keycloak - POSTGRES_USER=keycloak - POSTGRES_PASSWORD=password - PROXY_ADDRESS_FORWARDING=true - KEYCLOAK_USER=admin - KEYCLOAK_PASSWORD=admin - POSTGRES_JDBC_VERSION=42.1.4 # JBoss is using legacy linking environment variables - POSTGRES_PORT_5432_TCP_ADDR=postgres - POSTGRES_PORT_5432_TCP_PORT=5432 nginx: image: ernsheong/keycloak-nginx container_name: nginx networks: - keycloak-network depends_on: - keycloak volumes: - keycloak-nginx-ssl:/etc/nginx/ssl environment: - KEYCLOAK_HOST=keycloak - KEYCLOAK_PORT=8080 ports: - "443:443"
version: '3' networks: keycloak-network: volumes: keycloak-postgres-data: keycloak-nginx-ssl: services: postgres: image: postgres:9.6-alpine container_name: postgres networks: - keycloak-network volumes: - keycloak-postgres-data:/var/lib/postgresql/data environment: - POSTGRES_DB=keycloak - POSTGRES_USER=keycloak - POSTGRES_PASSWORD=password keycloak: image: ernsheong/keycloak-postgres container_name: keycloak links: - postgres networks: - keycloak-network depends_on: - postgres environment: - POSTGRES_DATABASE=keycloak - POSTGRES_USER=keycloak - POSTGRES_PASSWORD=password - PROXY_ADDRESS_FORWARDING=true - KEYCLOAK_USER=admin - KEYCLOAK_PASSWORD=admin - POSTGRES_JDBC_VERSION=42.1.4 # JBoss is using legacy linking environment variables - POSTGRES_PORT_5432_TCP_ADDR=postgres - POSTGRES_PORT_5432_TCP_PORT=5432 nginx: image: ernsheong/keycloak-nginx container_name: nginx networks: - keycloak-network depends_on: - keycloak volumes: - keycloak-nginx-ssl:/etc/nginx/ssl environment: - KEYCLOAK_HOST=keycloak - KEYCLOAK_PORT=8080 ports: - "443:443"
Switch to keycloak-postgres with curl fix
Switch to keycloak-postgres with curl fix
YAML
mit
ernsheong/keycloak-postgres-nginx
e9fbc33afdcb59fb7513e02285b76897596e5c66
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.2 - 2.3 - 2.4 - 2.5 - jruby - jruby-9.0.5.0 env: - RAILS_VERSION="~>4.2.0" - RAILS_VERSION="~>5.0.0" matrix: exclude: - env: RAILS_VERSION="~>5.0.0" rvm: 2.0 - env: RAILS_VERSION="~>5.0.0" rvm: 2.1 before_install: - gem install bundler --version 1.17.3 notifications: email: recipients: - [email protected] on_success: change on_failure: change
language: ruby sudo: false rvm: - 2.2 - 2.3 - 2.4 - 2.5 - jruby - jruby-9.0.5.0 env: - RAILS_VERSION="~>4.2.0" - RAILS_VERSION="~>5.0.0" matrix: exclude: - env: RAILS_VERSION="~>4.2.0" rvm: 2.3 - env: RAILS_VERSION="~>4.2.0" rvm: jruby before_install: - gem install bundler --version 1.17.3 notifications: email: recipients: - [email protected] on_success: change on_failure: change
Disable combinations that are failing due to bundler2-rails-rvm interaction
Disable combinations that are failing due to bundler2-rails-rvm interaction This is temporary. I'll probably switch us over to circleci 2 to get away from rvm gemsets.
YAML
apache-2.0
googleapis/google-api-ruby-client,googleapis/google-api-ruby-client
d5bd8f32b74a1193c43eedb8217f64eea864f6ff
.travis.yml
.travis.yml
language: ruby env: - TEST_SUITE=test:unit - secure: "d/fE2Iuyrf5mfvQPe2nl++a06hpy82mEM5jbmXmS1ttQgMpf955GWTmZ+16VBZa9MU2pJLBXoBXy53tp8P9ADysE4R7YCeI68yE0CZ/OuU+FVADZ9/F6i4nlUESjNNQnlC0mTIjDMO5WI9HbVQiS07HqDHzr6bcS51ZvBzItcn4=" rvm: - 1.9.3 - 2.1.0 - ruby-head before_install: - gem update --system - gem update bundler before_script: - cp spec/data/.gooddata ~/ script: rake $TEST_SUITE
language: ruby env: - secure: "d/fE2Iuyrf5mfvQPe2nl++a06hpy82mEM5jbmXmS1ttQgMpf955GWTmZ+16VBZa9MU2pJLBXoBXy53tp8P9ADysE4R7YCeI68yE0CZ/OuU+FVADZ9/F6i4nlUESjNNQnlC0mTIjDMO5WI9HbVQiS07HqDHzr6bcS51ZvBzItcn4=" rvm: - 1.9.3 - 2.1.0 - ruby-head before_install: - gem update --system - gem update bundler before_script: - cp spec/data/.gooddata ~/ script: rake ci
Use rake ci for testing
Use rake ci for testing
YAML
bsd-3-clause
fluke777/gooddata-ruby,fluke777/gooddata-ruby,vhtien/gooddata-ruby,lubosvesely/gooddata-ruby,vhtien/gooddata-ruby,lubosvesely/gooddata-ruby,lubosvesely/gooddata-ruby,Seikitsu/gooddata-ruby,korczis/gooddata-ruby,fluke777/gooddata-ruby,korczis/gooddata-ruby,Seikitsu/gooddata-ruby,Seikitsu/gooddata-ruby,vhtien/gooddata-ruby
5100c8a171bb080627d45e0f273d9ba8feafda33
.travis.yml
.travis.yml
language: node_js node_js: - node cache: yarn: true directories: - node_modules before_install: - yarn global add yarn before_deploy: - yarn global add now deploy: - provider: script script: - cd packages/api.literally.deals - now --token $NOW_TOKEN on: all_branches: true master: false - provider: script script: - cd packages/literally.deals - now --token $NOW_TOKEN on: all_branches: true master: false - provider: script script: - cd packages/api.literally.deals - now --token $NOW_TOKEN - now alias --token $NOW_TOKEN on: master: true - provider: script script: - cd packages/literally.deals - now --token $NOW_TOKEN - now alias --token $NOW_TOKEN on: master: true
language: node_js node_js: - node cache: yarn: true directories: - node_modules before_install: - yarn global add yarn - export PATH="$HOME/.yarn/bin:$PATH" before_deploy: - yarn global add now deploy: - provider: script script: - cd packages/api.literally.deals - now --token $NOW_TOKEN on: all_branches: true master: false - provider: script script: - cd packages/literally.deals - now --token $NOW_TOKEN on: all_branches: true master: false - provider: script script: - cd packages/api.literally.deals - now --token $NOW_TOKEN - now alias --token $NOW_TOKEN on: master: true - provider: script script: - cd packages/literally.deals - now --token $NOW_TOKEN - now alias --token $NOW_TOKEN on: master: true
Adjust again for Yarn on Travis
Adjust again for Yarn on Travis
YAML
mit
crooked-ventures/literally.deals,crooked-ventures/literally.deals,crooked-ventures/literally.deals
56cb061c2eba00ad9146036aa154b0225adf10c2
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 cache: bundler
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 cache: bundler notifications: email: on_success: change on_failure: always
Reduce Travis CI email notifications.
Reduce Travis CI email notifications.
YAML
mit
IvyApp/ivy-serializers
a52dbd5cf1727f3d33cd8711f30fcc8cdac9968e
.travis.yml
.travis.yml
language: haskell sudo: required services: - docker dist: trusty cache: directories: - $HOME/.ghc - $HOME/.cabal - $HOME/.stack before_script: - pwd - docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" - ./scripts/bootstrap.sh
# Use dummy language to suppress Haskell-specific, automatic build steps # (will be done inside dev container) language: cpp sudo: required services: - docker dist: trusty cache: directories: - $HOME/.ghc - $HOME/.cabal - $HOME/.stack before_script: - pwd - docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" - ./scripts/bootstrap.sh
Disable redundant Haskell build actions
Disable redundant Haskell build actions
YAML
mit
bbiskup/cilia
0803f36fb5359945fbf332081da6ef951b73277d
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "4" - "5" - "6" - "7" before_install: - travis_retry npm install -g [email protected] - travis_retry npm install script: - npm test
sudo: false language: node_js node_js: - "4" - "5" - "6" - "7" before_install: - travis_retry npm install script: - npm test
Remove npm install npm line
Remove npm install npm line Travis provides this out of the box
YAML
mit
wolfsilver/http-server,wolfsilver/http-server,danielweck/http-server,indexzero/http-server,indexzero/http-server,danielweck/http-server
c36f0e01c7b5bd37649c08d2648347a8cc2ada64
.travis.yml
.travis.yml
language: c++ before_install: - sudo apt-add-repository -y ppa:nelhage/livegrep - sudo apt-get -qq update - sudo apt-get -y install libgflags-dev libgit2-dev libjson0-dev libboost-system-dev libboost-filesystem-dev libsparsehash-dev script: make test
language: c++ before_install: - sudo apt-add-repository -y ppa:nelhage/livegrep - sudo apt-get -qq update - sudo apt-get -y install libgflags-dev libgit2-dev libjson0-dev libboost-system-dev libboost-filesystem-dev libsparsehash-dev script: make test env: - CXX=g++ - CXX=clang++
Test against both g++ and clang++
Test against both g++ and clang++
YAML
bsd-2-clause
paulproteus/livegrep,wfxiang08/livegrep,wfxiang08/livegrep,lekkas/livegrep,lekkas/livegrep,paulproteus/livegrep,paulproteus/livegrep,lekkas/livegrep,wfxiang08/livegrep,paulproteus/livegrep,wfxiang08/livegrep,wfxiang08/livegrep,lekkas/livegrep,wfxiang08/livegrep,paulproteus/livegrep,lekkas/livegrep,lekkas/livegrep,paulproteus/livegrep
7285af9139ebc8a11c6ea758d583ddeb5eb7c8c4
.travis.yml
.travis.yml
language: python sudo: false python: - "2.7" before_script: - flake8 remo before_install: - mysql -e 'create database remo character set utf8;' - git submodule update --init --recursive install: - pip install -r requirements/dev.txt script: - python manage.py test --with-coverage --cover-erase --cover-package=remo after_success: - pip install coveralls - coveralls
language: python sudo: false python: - "2.7" before_script: - flake8 remo before_install: - mysql -e 'create database remo character set utf8; SET @@GLOBAL.wait_timeout=28800;' - git submodule update --init --recursive install: - pip install -r requirements/dev.txt script: - python manage.py test --with-coverage --cover-erase --cover-package=remo after_success: - pip install coveralls - coveralls
Fix MySQL has gone away error.
Fix MySQL has gone away error.
YAML
bsd-3-clause
akatsoulas/remo,akatsoulas/remo,mozilla/remo,mozilla/remo,Mte90/remo,tsmrachel/remo,tsmrachel/remo,Mte90/remo,Mte90/remo,tsmrachel/remo,flamingspaz/remo,flamingspaz/remo,flamingspaz/remo,mozilla/remo,flamingspaz/remo,mozilla/remo,akatsoulas/remo,akatsoulas/remo,tsmrachel/remo,Mte90/remo
8e2de32c92845e681b5f5bba6e725974ad850805
.travis.yml
.travis.yml
language: java jdk: oraclejdk8 services: mongodb before_script: - sleep 15 - mongo centromere-test --eval 'db.addUser("centromere", "centromere");' script: - cd centromere-core - mvn clean install -DskipTests - mvn test notifications: email: recipients: - [email protected] on_success: change on_failure: always
language: java jdk: oraclejdk8 services: mongodb before_script: - sleep 15 - mongo centromere-test --eval 'db.addUser("centromere", "centromere");' script: - cd centromere-parent - mvn clean install -DskipTests - mvn test notifications: email: recipients: - [email protected] on_success: change on_failure: always
Split core into extra modules. Updating documentation.
Split core into extra modules. Updating documentation.
YAML
apache-2.0
blueprintmedicines/centromere,oncoblocks/centromere
893b5ca14b476a2cccbb0931050840e1ae10d21d
.travis.yml
.travis.yml
language: python dist: xenial python: - 2.7 - 3.6 - 3.7 - 3.8 matrix: include: - dist: trusty python: 2.6 addons: apt: packages: - scons cache: pip: true directories: - $HOME/perl5 install: - sudo apt-get -qq update - sudo apt-get install -y libtest-exception-perl libtest-output-perl libdevel-cover-perl acl cpanminus - pip install codecov flask pytest-cov pytest-pep8 - sudo cpanm --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov script: - scons python=$(which python) test - py.test --cov=account/account --cov-branch --pep8 account after_success: - coverage combine - codecov - cd test/frontend && cover -report codecov
language: python dist: bionic python: - 2.7 - 3.6 - 3.7 - 3.8 matrix: include: - dist: trusty python: 2.6 addons: apt: packages: - scons cache: pip: true directories: - $HOME/perl5 install: - sudo apt-get -qq update - sudo apt-get install -y libtest-exception-perl libtest-output-perl libdevel-cover-perl acl cpanminus - pip install codecov flask pytest-cov pytest-pep8 - sudo cpanm --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov script: - scons python=$(which python) test - py.test --cov=account/account --cov-branch --pep8 account after_success: - coverage combine - codecov - cd test/frontend && cover -report codecov
Update to latest Ubuntu image
Update to latest Ubuntu image
YAML
lgpl-2.1
salilab/saliweb,salilab/saliweb,salilab/saliweb,salilab/saliweb,salilab/saliweb
8d5a4dce53aac2d4cd99165426f6302430642cc2
.travis.yml
.travis.yml
language: c sudo: false addons: apt: sources: - kalakris-cmake packages: - cmake os: - linux # - osx env: global: - LUAROCKS=2.3.0 matrix: - LUA=lua5.1 - LUA=lua5.2 - LUA=lua5.3 - LUA=luajit # latest stable version (2.0.4) # - LUA=luajit2.0 # current head of 2.0 branch # - LUA=luajit2.1 # current head of 2.1 branch before_install: - source .travis/setenv_lua.sh - luarocks install luv - luarocks install luabitop - luarocks install --server=http://luarocks.org/dev luaffi - curl -L https://github.com/luvit/lit/raw/master/get-lit.sh | sh - ./lit install luvit/pretty-print script: - lua test.lua notifications: email: on_success: change on_failure: always
language: c sudo: false addons: apt: sources: - kalakris-cmake packages: - cmake os: - linux # - osx env: global: - LUAROCKS=2.3.0 matrix: - LUA=lua5.1 - LUA=lua5.2 - LUA=lua5.3 - LUA=luajit # latest stable version (2.0.4) # - LUA=luajit2.0 # current head of 2.0 branch # - LUA=luajit2.1 # current head of 2.1 branch before_install: - source .travis/setenv_lua.sh - luarocks install luv - luarocks install luabitop - luarocks install --server=http://luarocks.org/dev luaffi - curl -L https://github.com/luvit/lit/raw/master/get-lit.sh | sh && mv lit $HOME/.local/bin/ script: - ./lit install luvit/pretty-print - lua test.lua notifications: email: on_success: change on_failure: always
Install pretty-print to the right place
Install pretty-print to the right place
YAML
mit
super-agent/msgpack
3a64cfda1aeb1785aec2acb425ffd454c1d56366
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '6' - '7' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '4' - '6' - '7' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Drop support for Node.js 0.
Drop support for Node.js 0.
YAML
mit
bigeasy/subordinate,bigeasy/subordinate
4590dba49aa88e93e7b526b98cdb90cc6bb898b3
.travis.yml
.travis.yml
language: php php: - "5.6" - "5.5" - "5.3" script: - find . -name '*.php' -print0 | xargs -0 -L 1 -P 8 php -l notifications: irc: channels: - "chat.freenode.net##krinkle"
language: php php: - "5.6" - "5.5" - "5.4" - "5.3" script: - find . -name '*.php' -print0 | xargs -0 -L 1 -P 8 php -l notifications: irc: channels: - "chat.freenode.net##krinkle"
Add test for php 5.4
Add test for php 5.4 This adds test for php 5.4
YAML
mit
Krinkle/mw-tool-snapshots,paladox/mw-tool-snapshots,Krinkle/mw-tool-snapshots,paladox/mw-tool-snapshots
e06f5a6a0341cbb8a80cca4eb89bde4e6093e730
.travis.yml
.travis.yml
language: csharp solution: "./Extension Library/Extension Library.sln" dotnet: 1.0.1 dist: trusty sudo: required install: - nuget restore "./Extension Library/Extension Library.sln" - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner script: - xbuild /p:Configuration=Release "./Extension Library/Extension Library.sln" - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "./Extension Library/ArrayExtensionTests/bin/Release/ArrayExtensionTests.dll" - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../EnumerableExtensionTests/bin/Release/EnumerableExtensionTests.dll" - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../../StringExtensionTests/bin/Release/StringExtensionTests.dll" branches: only: - master
language: csharp solution: "./Extension Library/Extension Library.sln" #dotnet: 1.0.1 dist: trusty sudo: required install: - nuget restore "./Extension Library/Extension Library.sln" # - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner # script: # - xbuild /p:Configuration=Release "./Extension Library/Extension Library.sln" # - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "./Extension Library/ArrayExtensionTests/bin/Release/ArrayExtensionTests.dll" # - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../EnumerableExtensionTests/bin/Release/EnumerableExtensionTests.dll" # - mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "../../../../StringExtensionTests/bin/Release/StringExtensionTests.dll" branches: only: - master
Update build script for Travis CI
Update build script for Travis CI
YAML
mit
gh0stter/CSharp-Extension-Library