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
c06cf069274033b429afd5a7a799404bc97beb29
.travis.yml
.travis.yml
language: csharp solution: "./Extension Library/Extension Library.sln" dotnet: 1.0.1 mono: latest 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=Re...
language: csharp solution: "./Extension Library/Extension Library.sln" dotnet: 1.0.1 mono: latest dist: trusty sudo: required target: "Clean;Build" # install: # - nuget restore "./Extension Library/Extension Library.sln" # - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner # script: # - xbui...
Update build script for Travis CI
Update build script for Travis CI
YAML
mit
gh0stter/CSharp-Extension-Library
035ae5aec5a68a96f7e4f667d964939590e0c614
.travis.yml
.travis.yml
language: erlang otp_release: - 17.0 - 17.1 - 17.3 sudo: false script: "make compile && rm -rf .git && make test" notifications: irc: "irc.freenode.org#elixir-lang" recipients: - jose.valim@plataformatec.com.br - eric.meadows.jonsson@gmail.com
language: erlang otp_release: - 17.0 - 17.3 sudo: false script: "make compile && rm -rf .git && make test" notifications: irc: "irc.freenode.org#elixir-lang" recipients: - jose.valim@plataformatec.com.br - eric.meadows.jonsson@gmail.com
Remove 17.1 which has a bug in its filelib:wildcard check
Remove 17.1 which has a bug in its filelib:wildcard check
YAML
apache-2.0
kimshrier/elixir,gfvcastro/elixir,kelvinst/elixir,pedrosnk/elixir,antipax/elixir,kimshrier/elixir,antipax/elixir,ggcampinho/elixir,joshprice/elixir,lexmag/elixir,elixir-lang/elixir,lexmag/elixir,beedub/elixir,michalmuskala/elixir,gfvcastro/elixir,beedub/elixir,pedrosnk/elixir,kelvinst/elixir,ggcampinho/elixir
b20ffcddfbbc906285ac39e3e1e57a1f4ecb081b
.travis.yml
.travis.yml
sudo: false language: python python: - "2.6" - "2.7" - "3.4" - "3.5" install: - pip install . - pip install -r test_requirements.txt script: - nosetests
sudo: false language: python python: - "2.6" - "2.7" - "3.4" - "3.5" - "3.6" - "3.6-dev" - "3.7-dev" - "nightly" install: - pip install . - pip install -r test_requirements.txt script: - nosetests
Add most recent Python versions in Travis CI
Add most recent Python versions in Travis CI Add more recent Python versions including development branches and nightly build.
YAML
bsd-3-clause
koenbok/Cactus,eudicots/Cactus,eudicots/Cactus,koenbok/Cactus,eudicots/Cactus,koenbok/Cactus
f045c0309dd4fd0b88d7bde9169395d76b3eaec3
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.9 - 2.2.5 - 2.3.1 - jruby-19mode - jruby-head - rbx-2 before_install: # bundler installation needed for jruby-head # https://github.com/travis-ci/travis-ci/issues/5861 - gem install bundler env: - JRUBY_OPTS="-Xcli.debug=true --debug"
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.5 - 2.3.1 - jruby-19mode - jruby-head - rbx-2 before_install: # bundler installation needed for jruby-head # https://github.com/travis-ci/travis-ci/issues/5861 - gem install bundler env: - JRUBY_OPTS="-Xcli.debug=true --debug"
Test against latest version of MRI 2.1
Test against latest version of MRI 2.1
YAML
agpl-3.0
lasso/racket-registry
09d608f64b7a0877d2f4604a126137be6b495d3f
.travis.yml
.travis.yml
language: go go: - 1.7 - 1.8 - tip matrix: allow_failures: - go: tip # don't wait for tip tests to finish, since they're allowed to fail fast_finish: true notifications: email: false before_script: - GO_FILES=$(find . -iname '*.go' | grep -v /vendor/) - PKGS=$(go list ./... | grep -v /vendor/)...
language: go go: - 1.7 - 1.8 - tip matrix: allow_failures: - go: tip # don't wait for tip tests to finish, since they're allowed to fail fast_finish: true notifications: email: false before_script: - GO_FILES=$(find . -iname '*.go' | grep -v /vendor/) - PKGS=$(go list ./... | grep -v /vendor/)...
Replace staticcheck, gosimple, unused with megacheck
Replace staticcheck, gosimple, unused with megacheck megacheck combines staticcheck, gosimple, and unused. It's significantly faster than running all three separately because it reuses some of the work.
YAML
mit
y0ssar1an/q,y0ssar1an/qq,y0ssar1an/qq
67e1f259565dfbbf9b32edd69ccebc0b50d25ef5
.travis.yml
.travis.yml
language: node_js node_js: - "4.0" - "iojs" - "0.12" - "0.11" - "0.10" - "0.8" before_install: - npm install -g npm@~1.4.6
language: node_js node_js: - '4' - '0.12' - '0.10' - '0.8' before_install: - npm install -g npm@~1.4.6
Reduce amount of Node versions tested
Reduce amount of Node versions tested
YAML
mit
watson/stackman
bc18429045e3440ec851d254321d43bebe90bb28
.travis.yml
.travis.yml
language: python install: pip install flake8 script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
language: python python: - 2.7 - 3.8 install: pip install flake8 script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
Test on both Python and legacy Python
Test on both Python and legacy Python
YAML
bsd-3-clause
wifiphisher/roguehostapd,wifiphisher/roguehostapd,wifiphisher/roguehostapd,wifiphisher/roguehostapd
5a91db9bb4009775ed26d5cbd4d8340946347327
.travis.yml
.travis.yml
language: node_js node_js: - "0.10"
language: node_js node_js: - iojs - "0.12" - "0.10"
Add node 0.12 and iojs
Add node 0.12 and iojs
YAML
mit
silas/hapi-bunyan
35b6ae77f1577f4feec78f667ac211f74c1f5fe2
.travis.yml
.travis.yml
sudo: false language: java jdk: - oraclejdk7 before_script: - git submodule update --init --recursive script: - ./gradlew check integrationTest --info branches: only: - /^(develop|hotfix\/.*|feature\/.*|release\/.*)$/ notifications: slack: secure: IAA4d9O2Dw1hkpY9cwxJz++VMjkgbV3EuaS09DGFujvHl2eQtpKTloE0...
sudo: false language: java jdk: - oraclejdk7 before_script: - git submodule update --init --recursive script: - ./gradlew check integrationTest --info --stacktrace branches: only: - /^(develop|hotfix\/.*|feature\/.*|release\/.*)$/ notifications: slack: secure: IAA4d9O2Dw1hkpY9cwxJz++VMjkgbV3EuaS09DGFujv...
Add stacktrace output to CI build
Add stacktrace output to CI build
YAML
apache-2.0
doctales/dita-ot,robander/dita-ot,robander/dita-ot,Hasimir/dita-ot,robander/dita-ot,shaneataylor/dita-ot,drmacro/dita-ot,shaneataylor/dita-ot,dita-ot/dita-ot,eerohele/dita-ot,robander/dita-ot,infotexture/dita-ot,robander/dita-ot,eerohele/dita-ot,doctales/dita-ot,Hasimir/dita-ot,drmacro/dita-ot,shaneataylor/dita-ot,drma...
57d969e0fc1823880c451eee81de2ee20a728467
.travis.yml
.travis.yml
language: java script: - ./gradlew clean build check notifications: email: false sudo: false cache: directories: - $HOME/.gradle
language: java jdk: - oraclejdk8 script: - ./gradlew clean build check notifications: email: false sudo: false cache: directories: - $HOME/.gradle
Make Kotlin happy on Travis by building with Java 8.
Make Kotlin happy on Travis by building with Java 8.
YAML
apache-2.0
Naturally-Being/G-Rex,Gridstone/RxStore,Gridstone/RxStore,Gridstone/G-Rex
7c9b4045ad171966e9812520a8f4f5e75b980a0f
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.5 - 2.3.3 - 2.4.0 - 2.4.1 gemfile: - test/gemfiles/rails-4.0 - test/gemfiles/rails-4.1 - test/gemfiles/rails-4.2 - test/gemfiles/rails-5.0 - test/gemfiles/rails-5.1 - test/gemfiles/rails-5.2 matrix: exclude: - rvm: 2.4.0 gemfile: test/gemfiles/rails-4.0 - rvm: 2.4...
language: ruby rvm: - 2.2.5 - 2.3.3 - 2.4.0 - 2.4.1 gemfile: - test/gemfiles/rails-4.1 - test/gemfiles/rails-4.2 - test/gemfiles/rails-5.0 - test/gemfiles/rails-5.1 - test/gemfiles/rails-5.2 matrix: exclude: - rvm: 2.4.0 gemfile: test/gemfiles/rails-4.1 - rvm: 2.4.1 gemfile: test/gemfile...
Remove coverage for Rails 4.0.
Remove coverage for Rails 4.0.
YAML
mit
cedric/custom_counter_cache
446c6791da2671b6ad4d05908b51e16b762943ef
.travis.yml
.travis.yml
language: java sudo: false dist: trusty matrix: include: - jdk: oraclejdk8 addons: {apt: {packages: [oracle-java8-installer]}} - jdk: oraclejdk9 install: - cd .. - wget http://download.java.net/java/jdk9/archive/172/binaries/jdk-9-ea+172_linux-x64_bin.tar.gz - tar -xzf jdk...
language: java sudo: false dist: trusty matrix: include: - jdk: oraclejdk8 addons: {apt: {packages: [oracle-java8-installer]}} - jdk: oraclejdk9 before_install: - cd ~ - wget http://download.java.net/java/jdk9/archive/174/binaries/jdk-9-ea+174_linux-x64_bin.tar.gz - tar -x...
Upgrade to jdk-9-ea+174 and cleanup Travis CI build script
Upgrade to jdk-9-ea+174 and cleanup Travis CI build script
YAML
epl-1.0
junit-team/junit-lambda,sbrannen/junit-lambda
1f78944cb34b0b996a4adf37b9a06ab5c2f84dbc
.travis.yml
.travis.yml
language: ruby script: "bundle exec rspec" bundler_args: "--without extras" rvm: - "1.9.3" - "jruby-19mode" - "rbx-19mode"
language: ruby script: "bundle exec rspec" bundler_args: "--without extras" rvm: - "1.9.3" - "jruby-19mode"
Stop running CI on RBX
Stop running CI on RBX
YAML
bsd-3-clause
quintel/turbine
5cc9ec7375f36910e14fc9b245fc03a4fddadae8
.travis.yml
.travis.yml
language: csharp sudo: required dist: trusty addons: apt: packages: - gettext - libcurl4-openssl-dev - libicu-dev - libssl-dev - libunwind8 - zlib1g env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 - SIGNALR_TESTS_VERBOSE: 1 - TRAVIS...
language: csharp sudo: false dist: trusty env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 - SIGNALR_TESTS_VERBOSE: 1 - TRAVIS_NODE_VERSION: 6.9.1 mono: none python: - "2.7" os: - linux - osx osx_image: xcode8.2 branches: only: - master - release ...
Update Travis to macOS Sierra
Update Travis to macOS Sierra [skip appveyor]
YAML
apache-2.0
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
77aac4362e74c53c8e0485311ae4eaa9895aa796
.travis.yml
.travis.yml
language: java jdk: - openjdk7 - oraclejdk7 services: postgresql before_script: - sudo apt-get update - sudo apt-get install ivy checkstyle - export CHECKSTYLE_HOME="/usr/share/java" #Probably need to mess around with user/pass #Probably need findbugs/ivy/checkstyles script: ant full -lib /usr/share/java
language: java jdk: - openjdk7 - oraclejdk7 services: postgresql before_script: - sudo apt-get update - sudo apt-get install ivy checkstyle r-base - export CHECKSTYLE_HOME="/usr/share/java" #Probably need to mess around with user/pass #Probably need findbugs/ivy/checkstyles script: ant full -lib /usr/share/ja...
Add R for integration tests
Add R for integration tests
YAML
apache-2.0
SEEG-Oxford/ABRAID-MP,SEEG-Oxford/ABRAID-MP,SEEG-Oxford/ABRAID-MP,SEEG-Oxford/ABRAID-MP,SEEG-Oxford/ABRAID-MP,SEEG-Oxford/ABRAID-MP
14c2647a1558203386a1d55338009d4838af19ac
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 before_script: - wget https://github.com/nicolasff/phpredis/archive/2.2.3.zip -O php-redis.zip - unzip php-redis.zip - cd phpredis-2.2.3/ - phpize - ./configure - make && make install - echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/et...
language: php php: - 5.3 - 5.4 - 5.5 services: redis before_script: - wget https://github.com/nicolasff/phpredis/archive/2.2.3.zip -O php-redis.zip - unzip php-redis.zip - cd phpredis-2.2.3/ - phpize - ./configure - make && make install - echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv...
Add redis service to Travis CI
Add redis service to Travis CI
YAML
mit
wa0x6e/ResqueBoard,kamisama/ResqueBoard,wa0x6e/ResqueBoard,nosun/ResqueBoard,nosun/ResqueBoard,kamisama/ResqueBoard,nosun/ResqueBoard
ef2b480723f3e76de68f9ebc2c0165f5bda80dcf
.travis.yml
.travis.yml
language: scala sudo: false scala: - 2.10.5 - 2.11.6 jdk: - openjdk7 - oraclejdk7 - oraclejdk8 script: "sbt -sbt-version 0.13.8 ++$TRAVIS_SCALA_VERSION clean coverage test coveralls scalastyle"
language: scala sudo: false scala: - 2.10.5 - 2.11.6 jdk: - openjdk7 - oraclejdk7 - oraclejdk8 script: sbt ++$TRAVIS_SCALA_VERSION clean coverage test scalastyle after_success: sbt ++$TRAVIS_SCALA_VERSION coveralls
Clean up Travis CI config
Clean up Travis CI config
YAML
apache-2.0
rpless/finch,finagle/finch
297063bae959443471ef66cd092a04f990264d24
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7 xcode_workspace: ReactiveBeaver.xcworkspace #xcode_scheme: ReactiveBeaverTests xcode_scheme: ReactiveBeaver xcode_sdk: iphonesimulator9.0
language: objective-c osx_image: xcode7 xcode_workspace: ReactiveBeaver.xcworkspace xcode_scheme: ReactiveBeaveriOS xcode_scheme: ReactiveBeaverOSX xcode_sdk: iphonesimulator9.0
Update of the Travis schemes
Update of the Travis schemes
YAML
mit
skyylex/ReactiveBeaver,skyylex/SKEPParser,skyylex/ReactiveBeaver
9aae9d147e295f847a2988ad6a171caadef9dbe6
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - 0.8 - 0.6 before_install: "npm install -g bob" script: "bob build"
language: node_js node_js: - "0.11" - "0.10" - 0.8 before_install: "npm install -g bob" script: "bob build"
Drop 0.6 CI run for dox-foundation.
Drop 0.6 CI run for dox-foundation.
YAML
mit
cliffano/couchpenter
23ee10ec5033db2f090219ceb6ce408c4e24d242
.travis.yml
.travis.yml
language: python dist: xenial python: - "3.6" - "3.7" - "3.7-dev" - "3.8-dev" - "nightly" - "pypy3" matrix: allow_failures: - python: 'pypy3.5' - python: '3.8-dev' - python: 'nightly' services: - redis-server - postgresql addons: postgresql: "10" install: - pip install -r requirements.txt -r re...
language: python dist: xenial python: - "3.6" - "3.7" - "3.7-dev" - "3.8-dev" - "nightly" - "pypy3" matrix: allow_failures: - python: 'pypy3' - python: '3.8-dev' - python: 'nightly' services: - redis-server - postgresql addons: postgresql: "10" install: - pip install -r requirements.txt -r requ...
Allow test failures for pypy3
Allow test failures for pypy3
YAML
agpl-3.0
gpodder/mygpo,gpodder/mygpo,gpodder/mygpo,gpodder/mygpo
cdd23f8f731721cad57cfb5817568280b9368597
.travis.yml
.travis.yml
sudo: false language: python python: - "3.5" env: global: - COVERAGE=1 RUNTEST_ARGS="-v --noinput" matrix: # Quality checks - TOXENV=flake8 # Supported python/django versions - TOXENV=py27-django-18 - TOXENV=py27-django-19 - TOXENV=py27-django-110 - TOXENV=py34-django-18 - TOXE...
sudo: false language: python python: - "3.5" env: global: - COVERAGE=1 RUNTEST_ARGS="-v --noinput" matrix: # Quality checks - TOXENV=flake8 # Supported python/django versions - TOXENV=py27-django-18 - TOXENV=py27-django-19 - TOXENV=py27-django-110 - TOXENV=py35-django-18 - TOXE...
Remove python 3.4 tests from Travis.
Remove python 3.4 tests from Travis.
YAML
bsd-3-clause
muccg/django-iprestrict,muccg/django-iprestrict,muccg/django-iprestrict
fad3734d390bf22ee5fda8d0520c6a5554b1df28
.travis.yml
.travis.yml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.3.1 install: - rvm use 2.3.1 - gem install bundler - bundle install script: buildr clean package git: depth: 10
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - rvm use 2.3.1 - gem install bundler - bundle install script: buildr clean package git: depth: 10
Update the version of ruby used to build project in TravisCI.
Update the version of ruby used to build project in TravisCI.
YAML
apache-2.0
realityforge/gwt-cache-filter,realityforge/gwt-cache-filter,realityforge/gwt-cache-filter
65298ec8f82eee058fc3d3ce33595c4d49833c2b
.travis.yml
.travis.yml
dist: xenial language: python python: - 2.7 - 3.5 - &latest_py3 3.7 jobs: fast_finish: true include: - stage: deploy if: tag IS present python: *latest_py3 before_script: skip script: tox -e release cache: pip install: - pip install tox tox-venv before_script: # Disable IPv6. Ref travis-ci/...
dist: xenial language: python python: - 2.7 - 3.6 - &latest_py3 3.8 jobs: fast_finish: true include: - stage: deploy if: tag IS present python: *latest_py3 before_script: skip script: tox -e release cache: pip install: - pip install tox tox-venv before_script: # Disable IPv6. Ref travis-ci/...
Test on Python 3.6+ to avoid the degrading Python 3.5 environments.
Test on Python 3.6+ to avoid the degrading Python 3.5 environments.
YAML
mit
jaraco/zipp
4374e8d87aa296bec6a65cbed5f16b5c06dd9fef
.travis.yml
.travis.yml
language: node_js node_js: - 5.0 - 4.2 script: - node --harmony node_modules/jest-cli/bin/jest.js --runInBand --verbose deploy: provider: npm email: ${NPM_EMAIL} api_key: ${NPM_APIKEY} skip_cleanup: true
language: node_js node_js: - 5.2 - 4.2 script: - node --harmony node_modules/jest-cli/bin/jest.js --runInBand --verbose deploy: provider: npm email: ${NPM_EMAIL} api_key: ${NPM_APIKEY} skip_cleanup: true
Update Travis CI node version
Update Travis CI node version
YAML
mit
ukatama/dice3d,ukatama/dice3d
47aba8da7d0f7ff04cabde4dcd0b940ce6f4e291
.travis.yml
.travis.yml
os: - linux - osx language: bash before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install mairix...
os: - linux - osx language: bash before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi -...
Revert "Try Travis without brew update (times out)"
Revert "Try Travis without brew update (times out)" This reverts commit 8c681bb3a6cdf5fdba4bceac9d954c6af4329219.
YAML
unlicense
weisslj/muttjump
711b6ca585fe742017754e40855d5d944ac0196a
.travis.yml
.travis.yml
language: node_js node_js: - '12.0' - '11.0' - '10.0' - '9.0' - '8.0' - '6.0' install: - npm install - npm run-script build script: - npm test jobs: include: - stage: coverage node_js: '10.0' script: jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls...
language: node_js node_js: - '16.0' - '14.0' - '12.0' - '10.0' install: - npm install - npm run-script build script: - npm test jobs: include: - stage: coverage node_js: '10.0' script: jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
Remove old Node version from CI target
Remove old Node version from CI target
YAML
mit
smikitky/node-multi-integer-range,smikitky/node-multi-integer-range
f76a96e2432d675a9671f77cdda2687c849a9e6c
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.4" - "3.5" install: - pip install . script: pytest
language: python python: - "2.7" - "3.4" - "3.5" install: - pip install . script: py.test notifications: email: recipients: - gliese.q@gmail.com - kotaimen.c@gmail.com
Use py.test instead of pytest.
Use py.test instead of pytest.
YAML
mit
Kotaimen/awscfncli,Kotaimen/awscfncli
74716e02b359e1ac64b8a738fc5d1d909ef31d0c
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - rbx-19mode - jruby-19mode script: "rake"
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - rbx-19mode script: "rake"
Remove JRuby from Travis config :(
Remove JRuby from Travis config :( Aruba/childprocess is crapping out and trying to fix it is hindering my progress. Will replace when the issue is fixed.
YAML
mit
joecorcoran/pannier
c33351e5bd4ae43d1064c524c282facf00b39375
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" matrix: allow_failures: - node_js: "0.11" install: - npm install -g grunt-cli@0.1.9 - npm install - bundle install notifications: email: false cache: bundler: true directories: - node_modules
language: node_js node_js: - "0.11" - "0.10" matrix: allow_failures: - node_js: "0.11" before_install: - gem install bundler install: - npm install -g grunt-cli@0.1.9 - npm install - bundle install notifications: email: false cache: bundler: true directories: - node_modules
Make sure bundler is installed
Make sure bundler is installed Travis seems to have forgotten about installing bundler in our latest builds, causing them to fail. We should probably just ensure it has always been installed before we start trying to install gems. This shouldn't affect the build if Travis decides to reinstate bundler.
YAML
mit
tijmenb/spotlight,keithiopia/spotlight,alphagov/spotlight,tijmenb/spotlight,alphagov/spotlight,keithiopia/spotlight,alphagov/spotlight,tijmenb/spotlight,keithiopia/spotlight
3bdd99e194f90dac2a4b8d07ddfbdeea5038adef
.travis.yml
.travis.yml
language: python python: - "3.3" script: python saxo test notifications: irc: channels: "chat.freenode.net#swhack" on_success: change
language: python python: - "3.3" script: python saxo test notifications: irc: channels: "chat.freenode.net#swhack" on_success: change skip_join: true
Fix Travis CI IRC behaviour
Fix Travis CI IRC behaviour
YAML
apache-2.0
AmaanC/saxo,lizardhq/EmmyNoether,sbp/saxo,sbp/saxo,AmaanC/saxo,lizardhq/EmmyNoether
0d95fb09cc5523d250e992a725edc5698590ed06
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm sudo: false env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update - composer update $COMPOSER_OPTS before_script: - gem install --quiet mailcatcher - mailcatcher script: - phpunit tests - ./tests/lint.sh git: ...
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm sudo: false env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update - composer update $COMPOSER_OPTS before_script: - gem install --quiet mailcatcher - mailcatcher script: - phpunit tests - ./tests/lint.s...
Add support for php 7.0 using Travis
Add support for php 7.0 using Travis
YAML
apache-2.0
duncan3dc/swiftmailer,duncan3dc/swiftmailer,duncan3dc/swiftmailer
6c191dff7faa110636498f0793fa2767e2ee68d8
.travis.yml
.travis.yml
language: julia os: - linux - osx julia: - release - nightly notifications: email: false script: - julia -e 'Pkg.clone(pwd()); Pkg.build("Julimaps")' - julia -e 'Pkg.test("Julimaps", coverage=true)' after_success: - julia -e 'cd(Pkg.dir("Julimaps")); Pkg.add("Coverage"); using Coverage; Codecov.subm...
language: julia os: - linux - osx julia: - release - nightly notifications: email: false after_success: - julia -e 'cd(Pkg.dir("Julimaps")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
Update yml for Travis CI
Update yml for Travis CI
YAML
mit
seung-lab/Julimaps,seung-lab/Julimaps
5fa494b9752fc8312a56f726b5412cfebed59c28
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.7" env: - DJANGO_VERSION=1.8 - DJANGO_VERSION=1.11 - DJANGO_VERSION=2.2 matrix: exclude: - python: '2.7' env: 'DJANGO_VERSION=2.2' install: - pip install -U Django==$DJANGO_VERSION - pip install -r requirements.txt script: - DJANGO_SETTINGS_MODULE=testp...
language: python python: - "2.7" - "3.7" env: - DJANGO_VERSION=1.8 - DJANGO_VERSION=1.11 - DJANGO_VERSION=2.2 matrix: exclude: - python: '2.7' env: 'DJANGO_VERSION=2.2' install: - pip install -U Django==$DJANGO_VERSION - pip install -r requirements.txt script: - manage.py test
Use `manage.py` to run tests
Use `manage.py` to run tests
YAML
bsd-2-clause
dabapps/django-log-request-id
8b01e9c860a654577bb951e7be4feee9b726ead3
.travis.yml
.travis.yml
language: go go: - 1.5 - 1.6 - 1.7 - 1.8 install: - export PATH=$PATH:$HOME/gopath/bin script: - go test
language: go go: - 1.5 - 1.6 - 1.7 - 1.8 - 1.9 install: - export PATH=$PATH:$HOME/gopath/bin script: - go test
Add Go 1.9 support in Travis
Add Go 1.9 support in Travis
YAML
mit
logpacker/PayPal-Go-SDK,logpacker/paypalsdk,logpacker/paypalsdk
172c2de1a0c83b1bf3d5b241df70d231fabd3874
.travis.yml
.travis.yml
before_install: - git config --global user.email "deploy@travis-ci.org" - git config --global user.name "Travis CI Deployment Bot" script: - ./build.sh clean - ./build.sh build after_success: - cd build/ - git push -f https://ustc-zzzz:$GITHUB_TOKEN@github.com/ustc-zzzz/fmltutor master:master
before_install: - git config --global user.email "deploy@travis-ci.org" - git config --global user.name "Travis CI Deployment Bot" script: - ./build.sh clean - ./build.sh build after_success: - cd build/ - git push -f -q https://ustc-zzzz:$GITHUB_TOKEN@github.com/ustc-zzzz/fmltutor master:master
Make it quite when pushing to master for security
Make it quite when pushing to master for security
YAML
mit
ustc-zzzz/fmltutor,ustc-zzzz/fmltutor
04d32374ce41f413cdd4cec8fe599919a2df4a81
.travis.yml
.travis.yml
language: python os: - linux install: - pip install virtualenv tox coveralls script: - tox after_success: - coveralls jobs: include: - python: 3.5 - python: 3.6 - python: 3.7 - python: 3.8 - python: nightly allow_failures: - python: nightly fast_finish: true
language: python os: - linux install: - pip install virtualenv tox coveralls script: - tox after_success: - coveralls jobs: include: - python: 3.6 - python: 3.7 - python: 3.8 - python: nightly allow_failures: - python: nightly fast_finish: true
Exclude Python 3.5 from tests.
Exclude Python 3.5 from tests.
YAML
mit
KenKundert/quantiphy,KenKundert/quantiphy
db1c383f0f42cf5451aa3a7957e863257ac75ada
.travis.yml
.travis.yml
language: php php: - 5.3.3 - 5.3 - 5.4 env: - CASSANDRA_VERSION=1.1 - CASSANDRA_VERSION=1.0 - CASSANDRA_VERSION=0.8 services: - cassandra
language: php php: - 5.3.3 - 5.3 - 5.4 before_install: - sudo apt-get install libjna-java - sudo ln -s /usr/share/java/jna.jar /usr/local/cassandra/lib/ - sudo service cassandra start - sleep 3 - sudo service cassandra status
Update TravisCI config for new Cassandra service config
Update TravisCI config for new Cassandra service config
YAML
mit
idio/phpcassa,idio/phpcassa,thobbs/phpcassa,idio/phpcassa,idio/phpcassa,thobbs/phpcassa,thobbs/phpcassa,idio/phpcassa,thobbs/phpcassa
e3e9d8352f48e7c3ec12542b867a21b5193a5724
.travis.yml
.travis.yml
sudo: required services: - docker language: bash before_install: - openssl aes-256-cbc -K $encrypted_5e05b97fa0d4_key -iv $encrypted_5e05b97fa0d4_iv -in .dm.enc -out .dm -d - sudo apt-get -qq update - curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - - sudo apt-get install -y nodejs npm - sudo git clone ...
sudo: required services: - docker language: bash before_install: - openssl aes-256-cbc -K $encrypted_5e05b97fa0d4_key -iv $encrypted_5e05b97fa0d4_iv -in .dm.enc -out .dm -d - sudo apt-get -qq update - curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - - sudo apt-get install -y nodejs - sudo git clone http...
Install nodejs instead of npm
Install nodejs instead of npm
YAML
apache-2.0
sofwerx/synthetic-target-area-of-interest,sofwerx/synthetic-target-area-of-interest
f5bd6ff5fd0fc01ff2344a36a20d7ed5b3a29462
.travis.yml
.travis.yml
language: "node_js" node_js: - "0.4" - "0.6" - "0.8" - "0.10" before_install: - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-coverage-to-coveralls"
language: "node_js" node_js: - "0.4" - "0.6" - "0.8" - "0.10" - "0.12" - "4.0" - "4.1" before_install: - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-coverage-to-coveralls"
Add node.js versions for Travis-ci
Add node.js versions for Travis-ci
YAML
mit
jaredhanson/utils-merge
b5ebacd901210454d412ffb02c4609d2845e0c37
.travis.yml
.travis.yml
language: node_js node_js: - 4.7 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - bluez sudo: require install: - if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi - $CXX --version - npm install --unsafe-perm - npm install
language: node_js node_js: - 6.12 - 8.9 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - bluez sudo: require install: - if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi - $CXX --version - npm install --unsafe-perm - npm install
Modify the supported Node.js versions
Modify the supported Node.js versions
YAML
mit
Robotma-com/node-red-contrib-asakusa_giken,CANDY-LINE/node-red-contrib-asakusa_giken,Robotma-com/node-red-contrib-asakusa_giken,CANDY-LINE/node-red-contrib-asakusa_giken
7b2244a3b4eb34421fe7e89abd1922c37279152b
.travis.yml
.travis.yml
sudo: false language: rust rust: - nightly - stable - 1.15.1 - beta script: - cargo test
sudo: false language: rust rust: - stable - 1.15.1 - beta script: - cargo test matrix: include: - rust: nightly script: - cargo test - cargo update -Z minimal-versions && cargo build
Build minimal versions in Travis
Build minimal versions in Travis
YAML
apache-2.0
dtolnay/quote
a7884a314b1ca791c04103c16836e9a8acded0c9
.travis.yml
.travis.yml
language: php php: - 5.6 - 7.1 before_script: - composer self-update || true - composer install - | cat << 'EOF' > _ss_environment.php <?php define('SS_ENVIRONMENT_TYPE', 'dev'); define('SS_DATABASE_CLASS', 'MySQLDatabase'); define('SS_DATABASE_SERVER', '127.0.0.1'); defi...
language: php php: - 7.1 before_script: - composer self-update || true - composer install - | cat << 'EOF' > _ss_environment.php <?php define('SS_ENVIRONMENT_TYPE', 'dev'); define('SS_DATABASE_CLASS', 'MySQLDatabase'); define('SS_DATABASE_SERVER', '127.0.0.1'); define('SS_D...
Remove extraneous PHP 5.6 build from Travis config
Remove extraneous PHP 5.6 build from Travis config
YAML
bsd-3-clause
silverstripe/addons.silverstripe.org,silverstripe/addons.silverstripe.org,silverstripe/addons.silverstripe.org
93f45b8c65bfaa755a99fee937f8556ef854f7ec
.travis.yml
.travis.yml
script: "rake db:drop db:create db:migrate test" rvm: - 1.8.7 - 1.9.2 - ree
script: "rake db:drop db:create db:migrate test" rvm: - 1.8.7 - 1.9.2 - rbx - ree
Add Rubinius to the CI matrix
Add Rubinius to the CI matrix
YAML
mit
fxposter/travis-ci,flores/travis-ci,openeducation/travis-ci,flores/travis-ci,openeducation/travis-ci,fxposter/travis-ci,openeducation/travis-ci,flores/travis-ci,fxposter/travis-ci
e363b24f838d27d0bc9949ceb0ff4acff910b8c5
.travis.yml
.travis.yml
language: objective-c env: global: - EnableNuGetPackageRestore=true - secure: "m+Kz51SNkKIpEFdmRZ4Zxgpow7R2gWVz3M9u0iinZTam0KV0ju9TvcnLF4ny\nSTLYKD04C4LoPqYfdEJ/qwv5H0ch254MbRMh2rt5X36PS11VfGL2yfKrdW8T\n/e8iTmGLWq+nn72P1927ZLOs9wkJvAAvUpC71OxYPB553wIYJXw=" before_install: # Make sure mono is installed, ...
language: objective-c env: global: - EnableNuGetPackageRestore=true matrix: - MONO_VER="3.1.1" before_install: # Make sure mono is installed, - wget "http://download.mono-project.com/archive/${MONO_VER}/macos-10-x86/MonoFramework-MDK-${MONO_VER}.macos10.xamarin.x86.dmg" - hdid "MonoFramework-MDK-${MO...
Update Travis to Mono 3.1.1
Update Travis to Mono 3.1.1
YAML
apache-2.0
jbtule/PclUnit,jbtule/PclUnit
b13582733af9903711307a79822d396bb912b7ba
.travis.yml
.travis.yml
sudo: required os: osx cache: ccache: true pip: true directories: - $HOME/Library/Caches/Homebrew - $HOME/Library/Caches/pip - /usr/local/Cellar - /usr/local/Caskroom - /usr/local/opt - /Applications/ env: - TRAVIS=1 branches: only: - osx before_install: - brew update instal...
sudo: required os: osx cache: ccache: true pip: true directories: - $HOME/Library/Caches/Homebrew - $HOME/Library/Caches/pip - /usr/local/Cellar - /usr/local/Caskroom - /usr/local/opt env: - TRAVIS=1 branches: only: - osx before_install: - brew update install: - brew install a...
Remove OSX's /Application directory from Travi's cache system
Test: Remove OSX's /Application directory from Travi's cache system
YAML
mit
benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles,benmezger/dotfiles
ee8d51402c9a9644d5836cbd4bdab39959016261
.travis.yml
.travis.yml
branches: only: - test-file_type language: python python: - '2.7' - '3.3' - '3.4' - '3.5' install: - pip install . - pip install coveralls script: coverage run --source pushbullet -m py.test env: - PUSHBULLET_API_KEY=RrFnc1xaeQXnRrr2auoGA1e8pQ8MWmMF deploy: provider: pypi user: randomchars on: tags: tr...
language: python python: - '2.7' - '3.3' - '3.4' - '3.5' install: - pip install . - pip install coveralls script: coverage run --source pushbullet -m py.test env: - PUSHBULLET_API_KEY=RrFnc1xaeQXnRrr2auoGA1e8pQ8MWmMF deploy: provider: pypi user: randomchars on: tags: true all_branches: true python: '3...
Revert "run tests for test-file_type branch"
Revert "run tests for test-file_type branch" This reverts commit a06a0fc96288adc7aa0ac9d3d3c2da1f61d071fe.
YAML
mit
Saturn/pushbullet.py,randomchars/pushbullet.py,kovacsbalu/pushbullet.py
dfbeada028e93f4302bd4271679790c796af356d
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls uglify-js
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls uglify-js
Build with Node.js on Travis CI.
Build with Node.js on Travis CI.
YAML
mit
bigeasy/cadence,bigeasy/cadence
f47fd89bb7475c3f7af4ce4e81247cb44d1e2b1f
.travis.yml
.travis.yml
language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly
language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: stable - rust: beta # stables and betas are allowed to fail because the project used #![feature]
Allow stables and betas to fail the build
Allow stables and betas to fail the build
YAML
bsd-3-clause
hch12907/wiz
2ca752effb16fcd0cf5fc5ce8156f65af5f2934c
.travis.yml
.travis.yml
language: python python: - '3.6' - '2.7' install: - pip install keras==2.1.3 - pip install opencv-python>=3.3.0 - pip install pillow - pip install tensorflow - pip install git+https://github.com/broadinstitute/keras-resnet - pip install pytest-pep8 - pip install cython - pip inst...
language: python python: - '3.6' - '2.7' install: - pip install numpy==1.14.0 - pip install keras==2.1.3 - pip install opencv-python>=3.3.0 - pip install pillow - pip install tensorflow - pip install git+https://github.com/broadinstitute/keras-resnet - pip install pytest-pep8 - p...
Make sure numpy 1.14 is installed (required by tensorflow from pypi)
Make sure numpy 1.14 is installed (required by tensorflow from pypi)
YAML
apache-2.0
delftrobotics/keras-retinanet
805f950e03f9459868c3157bd85af7306074e4e3
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 include: - php: 5.4 env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"' before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefe...
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm sudo: false matrix: allow_failures: - php: 7.0 include: - php: 5.4 env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"' before_script: - travis_retry composer self-update - travis_retry composer update ${COMPOSER_FLAGS} --no-intera...
Add sudo false to Travis config
Add sudo false to Travis config
YAML
mit
aptarus/promClientPhp,cakeoven/CakeMap,axxilius/larepo,cakeoven/CakeTwitterBootstrap,jrdnhannah/skeleton,gmponos/CakeTwitterBootstrap,hexogen/kdtree,andela-araimi/potato-orm,andela-womokoro/naija_emojis,LaravelToolKit/simple_pack,juliankoehn/codeswholesale,bcrowe/skeleton,codescheme/uk-postcodes,Northys/opengraph-tags,...
89058ed6ebfd2701f4c16f8777ea48212b94371e
.travis.yml
.travis.yml
language: node_js before_script: - ./prebuild.sh - gem install sass -v 3.4.25 env: global: - GH_REPO="laraconfbrasil/website" script: docpad generate deploy: provider: script script: docpad deploy-ghpages --env static on: all_branches: true
language: node_js before_script: - ./prebuild.sh - gem install sass -v 3.4.25 env: global: - GH_REPO="laraconfbrasil/website" script: docpad generate deploy: skip_cleanup: true provider: script script: docpad deploy-ghpages --env static on: all_branches: true
Add skip cleanup to deploy
Add skip cleanup to deploy
YAML
mit
laraconfbrasil/website,laraconfbrasil/website,laraconfbrasil/website
4b8380261b63e0758877ab9cfe7ed1652cca4f88
.travis.yml
.travis.yml
language: rust matrix: include: - rust: nightly script: - cargo test - cargo test --features preserve_order - cargo test --features arbitrary_precision - cargo test --features raw_value - cargo test --features unbounded_depth - rust: 1.27.0 script: ...
language: rust matrix: include: - rust: nightly script: - cargo test - cargo test --features preserve_order - cargo test --features arbitrary_precision - cargo test --features raw_value - cargo test --features unbounded_depth - rust: 1.30.0 script: ...
Drop support for rustc <1.30
Drop support for rustc <1.30
YAML
apache-2.0
serde-rs/json,google/serde_json_lenient,bolinfest/serde-jsonrc
7adc4912921ae5dd91747b3aa7c7bc0e8bd969c0
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "7" - "6" - "5" script: - make test before_deploy: - make build notifications: slack: dalee:URO6M9J02if0wyOxB0kV5geu deploy: skip_cleanup: true email: topdev@dalee.ru provider: npm api_key: "LiSpuUF8zqLFz6IiuYKxnEjcBN6sPv9irAAlJl/Xdy+7dhr3Gz2dliRrg2q/GtI...
language: node_js sudo: false node_js: - "7" - "6" - "5" script: - make test before_deploy: - make build
Drop autopublish, it doesn't work anyway
Drop autopublish, it doesn't work anyway
YAML
mit
Dalee/node-logger
2d86e314e00dd3618613a2e1928573669144b603
.travis.yml
.travis.yml
language: node_js node_js: - 'stable' before_install: - npm install -g broccoli-cli
language: node_js node_js: - 'stable'
Remove obsolete "npm install -g broccoli-cli" command
CI: Remove obsolete "npm install -g broccoli-cli" command
YAML
mit
jonathanKingston/broccoli-lint-eslint
eb89c60227b135640e7b302066a58c5cf91e9506
.travis.yml
.travis.yml
language: rust rust: - stable - beta - nightly - 1.18.0
language: rust rust: - stable - beta - nightly script: cargo test matrix: include: - rust: 1.18.0 script: cargo build
Test only compilation on rust 1.18
Test only compilation on rust 1.18 This is bincode's current minimum supported Rust version but we have dev-dependencies that require a newer version.
YAML
mit
TyOverby/bincode,servo/bincode
f935049b6d47b2866eb10798c5e20f87a9dde557
.travis.yml
.travis.yml
os: linux dist: focal language: python python: - 3.6 - 3.7 - 3.8 - 3.9 - 3.10 - 3.11-dev - pypy3.6 - pypy3.7 install: - pip install --upgrade nose coveralls coverage - if [[ $TRAVIS_PYTHON_VERSION == 'pypy'* ]]; then export TRAVIS_WAIT=45; else export TRAVIS_WAIT=20; fi script: travis_wait "...
os: linux dist: focal language: python python: - 3.6 - 3.7 - 3.8 - 3.9 - 3.10 - 3.11-dev - pypy3.6-7.3.3 - pypy3.7-7.3.5 install: - pip install --upgrade nose coveralls coverage - if [[ $TRAVIS_PYTHON_VERSION == 'pypy'* ]]; then export TRAVIS_WAIT=45; else export TRAVIS_WAIT=20; fi script: t...
Replace nose with pytest for Travis runs.
Replace nose with pytest for Travis runs.
YAML
bsd-3-clause
CodeReclaimers/neat-python
15cd8d811ec4c1b948ed083d6680b1eca8cc37d5
.travis.yml
.travis.yml
language: java jdk: openjdk11 sudo: true install: - wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar -O BuildTools.jar - java -jar BuildTools.jar --rev 1.13.1 - wget https://www.robindebaets.be/LeaderHeadsAPI.jar - mvn install:install-file -Dfile=LeaderHea...
language: java jdk: openjdk11 sudo: true install: - wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar -O BuildTools.jar - java -jar BuildTools.jar --rev 1.13.2 - wget https://www.robindebaets.be/LeaderHeadsAPI.jar - mvn install:install-file -Dfile=LeaderHea...
Build MiniNBT with Java 8
Build MiniNBT with Java 8 Try building MiniNBT with Java 8 instead of Java 11, since Java 11 is giving errors.
YAML
unlicense
stefvanschie/buildinggame
149945401ac560ef2cd8fb6bea9864e898658ba7
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head - jruby-head before_script: git checkout master script: bundle exec rake ci:metrics -t
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head - jruby-head allow_failures: - ruby-head before_script: git checkout master script: bundle exec rake ci:metrics -t
Allow CI failures for ruby-head
Allow CI failures for ruby-head
YAML
unlicense
lgierth/promise.rb
984002c0a6afa1aa6c68969027a1821b095ab11b
.travis.yml
.travis.yml
language: bash sudo: false install: - nvm install 6 - nvm use 6 - npm install -g purescript@0.11.6 pulp@12.0.1 bower script: - bin/fetch-configlet - bin/configlet lint . - bin/check-bower.sh - bin/test.sh cache: directories: - $HOME/.cache/bower/
language: bash sudo: false install: - nvm install 6 - nvm use 6 - npm install -g purescript@0.11.6 pulp@12.0.1 bower script: - bin/fetch-configlet - bin/configlet --track-id purescript lint . - bin/check-bower.sh - bin/test.sh cache: directories: - $HOME/.cache/bower/
Add track ID to configlet
Add track ID to configlet See https://github.com/exercism/configlet/issues/80 for more details.
YAML
mit
icyrockcom/xpurescript,icyrockcom/xpurescript
bb36dacc3f0f038b952117d64cccaef7a4539afe
.travis.yml
.travis.yml
language: cpp #compiler: # - gcc # - clang before_script: # Get a recent GCC. # - echo "\n" | sudo add-apt-repository ppa:ubuntu-toolchain-r/test # - sudo apt-get update # - sudo apt-get install gcc-4.7 - sudo apt-get install g++-4.7 - g++ --version - g++-4.7 --version - export CXX=g++-4.7 - export CC=...
language: cpp #compiler: # - gcc # - clang before_script: # Get a recent GCC. - echo "\n" | sudo add-apt-repository ppa:ubuntu-toolchain-r/test - sudo apt-get update - sudo apt-get install g++-4.7 - g++ --version - g++-4.7 --version - export CXX=g++-4.7 - export CC=gcc-4.7 # Boost #- apt-get insta...
Use external source for g++-4.7.
Use external source for g++-4.7.
YAML
bsd-3-clause
vast-io/vast,pmos69/vast,mavam/vast,pmos69/vast,vast-io/vast,mavam/vast,mavam/vast,mavam/vast,pmos69/vast,pmos69/vast,vast-io/vast,vast-io/vast,vast-io/vast
555281a2bce7d423af5d44661645c9ce6bc1cd86
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8 xcode_sdk: iphonesimulator10.0 xcode_project: CurriculaTable.xcodeproj xcode_scheme: CurriculaTableDemo
language: objective-c osx_image: xcode8 script: set -o pipefail && xcodebuild -project CurriculaTable.xcodeproj -scheme CurriculaTableDemo -sdk iphonesimulator10.0 | xcpretty
Use xcodebuild instead of xctool
Use xcodebuild instead of xctool
YAML
mit
yzyzsun/CurriculaTable,yzyzsun/CurriculaTable
8ba04de38f86a9e550a41c93713d850a46754322
.travis.yml
.travis.yml
language: go go: - 1.6 - 1.7 install: - pip install behave script: - behave
language: go go: - 1.6 - 1.7 install: - pip install --user behave script: - behave
Install behave in user directory
Install behave in user directory
YAML
apache-2.0
martin-helmich/prometheus-nginxlog-exporter,martin-helmich/prometheus-nginxlog-exporter,martin-helmich/prometheus-nginxlog-exporter
bc6e518157c88b0d28d28cb0474117d1ee8353dc
.travis.yml
.travis.yml
language: node_js node_js: - '5' - '4' - '0.12'
language: node_js node_js: - 'node' - '5' - '4' - '0.12'
Test on recent Node, just in case
Test on recent Node, just in case
YAML
mit
dsblv/string-replace-async
8f512c3d9100853c94ca68e5ce5e42eb5251fea4
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" git: depth: 1 env: global: - secure: "hXNhTinvLDlfiIWxNgnxDFtL1zOnPd1TMyUkLLjqTRBbcuVinlMLISRgYV9g\nIIvLPG5S424ybNtU1X7X9MlypDmvis3/+G8gBo2q+7IRTAKw1C2J9/6RhIaG\nnD4aV9YZKmyz8pH1DZj6AMFIqY+2+W4Wte3oyL8IqbFRMfhdmzE=" before_install: - pip install -Iv https://bitbuck...
language: python python: - "2.7" - "3.3" git: depth: 1 env: global: - secure: "hXNhTinvLDlfiIWxNgnxDFtL1zOnPd1TMyUkLLjqTRBbcuVinlMLISRgYV9g\nIIvLPG5S424ybNtU1X7X9MlypDmvis3/+G8gBo2q+7IRTAKw1C2J9/6RhIaG\nnD4aV9YZKmyz8pH1DZj6AMFIqY+2+W4Wte3oyL8IqbFRMfhdmzE=" before_install: - pip install -Iv https://bitbuck...
Add py3k branch to testing.
Add py3k branch to testing. Former-commit-id: eefeaec224f0b3b6c3e40e40d6cfa1b90822f423 [formerly 39671e4db1d7c7c21f15952a5dabb3094418f57b] Former-commit-id: 81ade95ac16d2f9defc1d80599448c32eb719672
YAML
mit
nisse3000/pymatgen,xhqu1981/pymatgen,czhengsci/pymatgen,gVallverdu/pymatgen,Bismarrck/pymatgen,gmatteo/pymatgen,davidwaroquiers/pymatgen,fraricci/pymatgen,ndardenne/pymatgen,tschaume/pymatgen,dongsenfo/pymatgen,davidwaroquiers/pymatgen,mbkumar/pymatgen,blondegeek/pymatgen,tschaume/pymatgen,davidwaroquiers/pymatgen,matk...
4fc5296a65460385623fb8f9ff1d30f4c6cffb2a
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 before_script: - composer update - mysql -e 'create database selective_test;' script: phpunit --configuration phpunit.xml --coverage-clover ./build/logs/clover.xml after_script: php vendor/bin/coveralls -v
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 before_script: - composer update - mysql -e 'create database selective_test;' script: phpunit --configuration phpunit.xml --coverage-clover ./build/logs/clover.xml after_script: php vendor/bin/coveralls -v
Test on PHP 5.3 to 5.6
Test on PHP 5.3 to 5.6
YAML
mit
jamend/selective-orm
2c5322ebbfe9f3834d91f7752b6b42da07a05049
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" env: - DJANGO=Django==1.4.2 - DJANGO=Django==1.5.0 - DJANGO=https://github.com/django/django/tarball/stable/1.6.x install: - pip install --use-mirrors $DJANGO - pip install --use-mirrors coverage coveralls script: coverage run setup.py test ...
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 env: - DJANGO=Django==1.4.2 - DJANGO=Django==1.5.0 - DJANGO=https://github.com/django/django/tarball/stable/1.6.x install: - pip install --use-mirrors $DJANGO - pip install --use-mirrors coverage coveralls script: coverage run setup.py test after_s...
Fix Python versions in Travis configuration file
Fix Python versions in Travis configuration file
YAML
mit
treyhunner/django-relatives,treyhunner/django-relatives
871be9b7c52650eaf107e49e7c88ebb5b98461bd
.travis.yml
.travis.yml
language: php php: - 7.0 env: - ENCRYPTION_KEY=test before_script: - composer self-update - composer install - composer dump-autoload -o script: vendor/bin/phpunit --verbose notifications: email: - dbyoung2@gmail.com sudo: false matrix: fast_finish: true
language: php php: - 7.0 env: - ENCRYPTION_KEY=48ca7483a0bb52c4d26e9ced9b436552a27ff44e821203104f571bbaff5a394d before_script: - composer self-update - composer install - composer dump-autoload -o script: vendor/bin/phpunit --verbose notifications: email: - dbyoung2@gmail.com sudo: false matrix: ...
Set a proper encryption key for Travis
Set a proper encryption key for Travis
YAML
mit
opulencephp/Project,ramblingsofadev/Project
c96fa1b64ab85e856ad9cdd9d455e5c9ec04b769
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.5" env: - CONDA=true install: - lsb_release -a - source auto_version/travis_install_conda.sh numpy scipy matplotlib numba pip pytest h5py; - conda config --add channels moble - conda install fftw quaternion spinsfast spherical_functions - python setu...
sudo: false language: python python: - "2.7" - "3.5" env: - CONDA=true install: - lsb_release -a - source auto_version/travis_install_conda.sh numpy scipy matplotlib numba pip pytest h5py; - conda config --add channels moble - conda install fftw quaternion spinsfast spherical_functions - python setu...
Correct the conda version before building
Correct the conda version before building
YAML
mit
moble/scri
4f2491e9dff71946c1a49232d9bb7ba35c1fadd6
.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...
sudo: required dist: trusty addons: apt: sources: - chef-stable-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin...
Switch to trusty for testing
Switch to trusty for testing Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
YAML
apache-2.0
chef-cookbooks/dmg,opscode-cookbooks/dmg
1e5a92f448c4a751a77adc8f66bca4abdb47ee43
.travis.yml
.travis.yml
os: - linux - osx dist: trusty sudo: required language: bash before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ...
os: - linux - osx dist: trusty sudo: required language: bash before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ...
Install nmzmail on Mac OS X in Travis CI
Install nmzmail on Mac OS X in Travis CI
YAML
unlicense
weisslj/muttjump
683e05e9ceca3bc9ec198c16b045e4e6fce627bf
.travis.yml
.travis.yml
language: python python: - "3.4" install: - python setup.py script: - python common/shapp.py - python common/sheventhandler.py - python common/shutil.py - python common/shregistry.py - python engine/restinterface.py - python engine/memorymanager.py - python feed/feed.home.tracer.py --help - python f...
language: python python: - "3.4" install: - python setup.py script: - python common/shapp.py - python common/sheventhandler.py - python common/shutil.py - python common/shregistry.py - python engine/restinterface.py - python engine/memorymanager.py - python feed/feed.home.tracer.py --help - python f...
Add zillow feed to Travis CI
Add zillow feed to Travis CI
YAML
apache-2.0
fxstein/SentientHome
d8d1fa3b88924692fd6e407b402404f3ba8f6c8e
.travis.yml
.travis.yml
language: perl perl: - "5.8" - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - cpanm --quiet --notest Devel::Cover::Repo...
language: perl perl: - "5.8" - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - cpanm --...
Fix whitespace in YAML: tabs no longer allowed
Fix whitespace in YAML: tabs no longer allowed
YAML
artistic-2.0
briandfoy/Math-NoCarry,briandfoy/Math-NoCarry
57203f6aa3637f8e4b29ef5ae4e78ca942e935c3
.travis.yml
.travis.yml
language: ruby bundler_args: --without development script: "bundle exec rake spec" rvm: - 1.9.2 - 1.9.3 - 2.0.0
language: ruby bundler_args: --without development script: "bundle exec rake spec" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.1
Test with more Ruby versions
Test with more Ruby versions
YAML
mit
balanced/balanced-ruby
57620f0adfb92934d7a04255498d996bd860f8d8
config/locales/lyb_devise_admin.yml
config/locales/lyb_devise_admin.yml
de: activerecord: models: attributes: user: email: E-Mail password: Passwort password_confirmation: Passwort Bestätigung current_password: Aktuelles Passwort remember_me: An...
de: activerecord: models: user: Benutzer attributes: user: email: E-Mail password: Passwort password_confirmation: Passwort Bestätigung current_password: Aktuelles Pass...
Add some translations to de locale.
Add some translations to de locale.
YAML
mit
huerlisi/lyb_devise_admin,huerlisi/lyb_devise_admin,huerlisi/lyb_devise_admin
57bf5471ea5e41e1672986b346730a9271de1491
tasks/runit_module.yml
tasks/runit_module.yml
--- - name: Make sure sssd service is enabled runit: name: sssd enabled: yes environment: "{{ runit_env }}" tags: - sssd_config - name: Make sure sssd service is running runit: name: sssd state: started environment: "{{ runit_env }}" register: sssd_service_started tags: - sssd_con...
--- - name: Make sure sssd service is enabled runit: name: sssd enabled: yes environment: "{{ runit_env }}" tags: - sssd_config - name: Give runsv some time to start sssd wait_for: path=/var/lib/sss/pipes/private/sbus-monitor state=present timeout=5 tags: - sssd_config - name: Make sure sssd...
Add wait_for between enabling and checking status for runit services, to give runsv time to actually start the service
Add wait_for between enabling and checking status for runit services, to give runsv time to actually start the service
YAML
mit
lejonet/ansible-sssd
6dd1a61f38b55e8c5ed8113a6f2262936c22692f
hnakamur.ruby/defaults/main.yml
hnakamur.ruby/defaults/main.yml
--- ruby_version: 2.1.3 ruby_install_dir: /usr/local/ruby-{{ ruby_version }} ruby_link_dir: /usr/local/ruby ruby_switch_link: True ruby_build_dir: /usr/local/src/ruby-build ruby_global_gems: - bundler - compass ruby_bin_dir: "{{ ruby_install_dir }}/bin"
--- ruby_version: 2.1.4 ruby_install_dir: /usr/local/ruby-{{ ruby_version }} ruby_link_dir: /usr/local/ruby ruby_switch_link: True ruby_build_dir: /usr/local/src/ruby-build ruby_global_gems: - bundler - compass ruby_bin_dir: "{{ ruby_install_dir }}/bin"
Upgrade ruby version to 2.1.4
Upgrade ruby version to 2.1.4
YAML
mit
hnakamur/macbook_setup,hnakamur/macbook_setup,hnakamur/macbook_setup
17618ad360dde6d852f850a038d3877ead0a77d9
.github/workflows/publish-on-pub.yaml
.github/workflows/publish-on-pub.yaml
name: Publish package to pub.dev on: push: tags: - v* jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: subosito/flutter-action@v1 with: channel: 'stable' - run: flutter pub get - run: flutter pub run tool/publish/comment_depen...
name: Publish package to pub.dev on: push: tags: - v* jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: subosito/flutter-action@v1 with: channel: 'stable' - run: flutter pub get - run: flutter pub run tool/publish/comment_depen...
Use pub-cache in Flutter root
Use pub-cache in Flutter root
YAML
mit
xvrh/lottie-flutter,xvrh/lottie-flutter,xvrh/lottie-flutter,xvrh/lottie-flutter,xvrh/lottie-flutter,xvrh/lottie-flutter,xvrh/lottie-flutter
f382f7fc6cf61b43511d3b26e289a4c601a997c2
.github/workflows/publish-package.yml
.github/workflows/publish-package.yml
name: Publish Package on: push: branches: - 'master' paths-ignore: - 'docs/**' env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 jobs: publish: runs-on: 'windows-latest' steps: - uses: actions/checkout@v1 - name: Set up .NET 6.0 uses: actions...
name: Publish Package on: push: branches: - 'master' paths-ignore: - 'docs/**' env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 jobs: publish: runs-on: 'windows-latest' steps: - uses: actions/checkout@v1 - name: Set up .NET 6.0 uses: actions...
Use 'gpr push' to push packages recursively.
Use 'gpr push' to push packages recursively.
YAML
mit
mysql-net/MySqlConnector,mysql-net/MySqlConnector
4aa38e7112fa47abfd7d62d26b0b2bb5d46d8f23
.github/workflows/publish-release.yml
.github/workflows/publish-release.yml
name: Publish Release on: workflow_dispatch: {} push: branches: - develop pull_request: branches: - develop jobs: say_hello: runs-on: ubuntu-latest steps: - run: | echo "Hello 123!" echo "- in 234!"
name: Publish Release on: workflow_dispatch: {} push: branches: - main pull_request: branches: - main jobs: say_hello: runs-on: ubuntu-latest steps: - run: | echo "Hello 123!" echo "- in 234!"
Change branch name to main.
Change branch name to main.
YAML
bsd-3-clause
DataBiosphere/terra-cli,DataBiosphere/terra-cli
5593267d7821d6a19e20f8fe347cc884a4fda38e
.github/workflows/update-gh-pages.yml
.github/workflows/update-gh-pages.yml
name: Update Documentation on: push: branches: - develop jobs: build-and-deploy: runs-on: ubuntu-latest steps: - name: Checkout 🛎️ uses: actions/checkout@v2.3.1 - name: Setup ffmpeg uses: FedericoCarboni/setup-ffmpeg@v1 id: setup-ffmpeg - name...
name: Update Documentation on: push: branches: - develop jobs: build-and-deploy: runs-on: ubuntu-latest steps: - name: Checkout 🛎️ uses: actions/checkout@v2.3.1 - name: Setup ffmpeg uses: FedericoCarboni/setup-ffmpeg@v1 id: setup-ffmpeg - name...
Revert to latest Matplotlib on GitHub Actions
[ci] Revert to latest Matplotlib on GitHub Actions
YAML
mit
tum-pbs/PhiFlow,tum-pbs/PhiFlow
fd3c0181f4c249e061348bdf01a7d7f36aed41fa
.github/workflows/update-news-www.yml
.github/workflows/update-news-www.yml
name: "Update news on owasp-juice.shop" on: release: types: [ published ] jobs: UpdateNewsOnWebsite: runs-on: ubuntu-latest steps: - name: Check out Git repository uses: actions/checkout@v2 with: token: ${{ secrets.BOT_TOKEN }} repository: OWASP/www-project-juice-shop ...
name: "Update news on owasp-juice.shop" on: release: types: [ published ] jobs: UpdateNewsOnWebsite: runs-on: ubuntu-latest steps: - name: Check out Git repository uses: actions/checkout@v2 with: token: ${{ secrets.BOT_TOKEN }} repository: OWASP/www-project-juice-shop ...
Replace reference with tag name from event
Replace reference with tag name from event (to avoid `sed` command failing from slashes in ref)
YAML
mit
bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop
25b16bd04cf543fe07d9f67a4f030a61983b68f8
Magic/src/examples/sandbox/mobs.yml
Magic/src/examples/sandbox/mobs.yml
npc_reload: name: Reload configs type: villager invulnerable: true persist: true ai: false gravity: false triggers: interact: commands: - magic load npc_day: name: Reload configs type: villager invulnerable: true persist: true ai: false gravity: false triggers: interac...
npc_reload: name: Reload configs type: villager invulnerable: true persist: true ai: false gravity: false triggers: interact: commands: - magic load npc_day: name: Daytime type: villager invulnerable: true persist: true ai: false gravity: false triggers: interact: ...
Fix name of sandbox daytime NPC
Fix name of sandbox daytime NPC
YAML
mit
elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicPlugin
6b87ab226bf3a800b8a7b46d9ed09f589033cb50
docker-compose.yml
docker-compose.yml
version: "3" services: apache: image: httpd:alpine links: - phpfpm - db volumes: - ./public_html:/usr/local/apache2/htdocs/ - ./docker/httpd.conf:/usr/local/apache2/conf/httpd.conf environment: - FASTCGI=fcgi://phpfpm:9000 hostname: "${HOSTNAME}" networks: ...
version: "3" services: apache: image: httpd:alpine links: - phpfpm - db volumes: - ./public_html:/usr/local/apache2/htdocs/ - ./docker/httpd.conf:/usr/local/apache2/conf/httpd.conf environment: - FASTCGI=fcgi://phpfpm:9000 hostname: "${HOSTNAME}" networks: ...
Fix broken link to configuration
Fix broken link to configuration
YAML
unlicense
euismod2336/docker,euismod2336/docker,euismod2336/docker
300f62e6e54be0bcf9085d0d46101d6a13d86e4e
docker-compose.yml
docker-compose.yml
version: '2' services: tests: image: buildkite/plugin-tester:latest@sha256:3353aad77c88b7cd3ed59423a1bc72c56e034a00623378c36c443f6dba1b3722 volumes: - ".:/plugin:ro"
version: '2' services: tests: image: buildkite/plugin-tester:latest@sha256:4fa79343710021d300556f57f16721e5cb3859b4bad09ba437d006f5c38efe8e volumes: - ".:/plugin:ro"
Update buildkite/plugin-tester:latest Docker digest to 4fa793
Update buildkite/plugin-tester:latest Docker digest to 4fa793
YAML
mit
buildkite-plugins/ecr-buildkite-plugin
c1a6394d30f3d44fba7272a2076401dcab0544be
docker-compose.yml
docker-compose.yml
data: image: busybox volumes: - /var/lib/postgresql/data command: /bin/true postgres: build: 9.4-2.1-2.0/. #image: turistforeningen/pgrouting volumes_from: - data psql: build: 9.4-2.1-2.0/. links: - postgres command: psql -U postgres -h postgres
postgres: build: 9.4-2.1-2.0/. psql: build: 9.4-2.1-2.0/. links: - postgres command: psql -U postgres -h postgres
Clean up Docker Compose config
Clean up Docker Compose config
YAML
mit
Starefossen/docker-pgrouting
9f82b0ee280d29cf4810d42a2c28aee0b33934af
docker-compose.yml
docker-compose.yml
crawler: build: . links: - redis - influxdb command: /app/crawler -depth 3 -seed-url 'https://www.youtube.com/watch?v=zNdkrtfZP8I' -search='^.*\/watch\?v=[a-zA-Z0-9\-]+' -crawlers 10 redis: image: redis:latest ports: - 6379:6379 influxdb: image: tutum/influxdb:latest ...
crawler: build: . links: - redis - influxdb command: /app/crawler -depth 3 -seed-url 'https://www.youtube.com/watch?v=zNdkrtfZP8I' -search='^.*\/watch\?v=[a-zA-Z0-9\-]+' -crawlers 50 environment: - INFLUXDB_NAME="root" - INFLUXDB_PASSWORD="temppwd" redis: image: redi...
Use tutum/influx again, add influx username and pass as env vars
Use tutum/influx again, add influx username and pass as env vars
YAML
mit
cpurta/go-crawler,cpurta/go-crawler
9bcff94078f25c50c480eb6b439496d4eeb8e5eb
docker-compose.yml
docker-compose.yml
version: '3' services: bot1: image: mahjong_bot volumes: - ./project/:/app command: pypy3 main.py -s bot_1_settings restart: always logging: driver: json-file options: max-size: '10m' max-file: '5' bot2: image: mahjong_bot volumes: - ./project/:/a...
version: '3' services: bot1: image: mahjong_bot volumes: - ./project/:/app command: pypy3 main.py -s bot_1_settings restart: always logging: driver: json-file options: max-size: '10m' max-file: '5' bot2: image: mahjong_bot volumes: - ./project/:/a...
Disable bot 5 for now
Disable bot 5 for now
YAML
mit
MahjongRepository/tenhou-python-bot,MahjongRepository/tenhou-python-bot
dad51b0b1cdc85ea9bff52944895cb678d5de79c
docker-compose.yml
docker-compose.yml
app: build: . volumes: - .:/app env_file: - .env ports: - "3000:3000" command: start-dev environment: VIRTUAL_HOST: publish.prx.docker
app: build: . volumes: - .:/app env_file: - .env ports: - "3001:3000" command: start-dev environment: VIRTUAL_HOST: publish.prx.docker
Change port to avoid conflict with cms.prx.docker
Change port to avoid conflict with cms.prx.docker
YAML
agpl-3.0
PRX/publish.prx.org,PRX/publish.prx.org,PRX/publish.prx.org,PRX/publish.prx.org
bc974c005369ae1a8611c2d9ff2cee7fee812b70
docs/backend-api.yml
docs/backend-api.yml
swagger: '2.0' info: version: "1.0.0" title: senic.nuimo_hub API basePath: /- paths: /: get: description: | The main entry point for all clients. responses: 200: description: Returns all entry points and other information for bootstrapping clients. schema: ...
swagger: '2.0' info: version: "1.0.0" title: senic.nuimo_hub API basePath: /- produces: - application/json paths: /: get: description: | The main entry point for all clients. responses: 200: description: Returns all entry points and other information for bootstrapping c...
Document the resources for bootstrapping the wifi
Document the resources for bootstrapping the wifi
YAML
mit
grunskis/senic-hub,grunskis/nuimo-hub-backend,grunskis/senic-hub,grunskis/nuimo-hub-backend,grunskis/nuimo-hub-backend,getsenic/senic-hub,grunskis/nuimo-hub-backend,grunskis/senic-hub,getsenic/senic-hub,grunskis/senic-hub,grunskis/senic-hub,grunskis/nuimo-hub-backend,grunskis/senic-hub
ba19d7fc980b68082a1e0b184a5ded79cf61f4a1
.gitlab-ci.yml
.gitlab-ci.yml
stages: - build - test - verify build: stage: build script: - mvn compile only: - master tags: - linux cobertura: stage: test script: - mvn test only: - master tags: - linux findbugs: stage: verify script: - mvn findbugs:check tags: - linux checkstyle: s...
stages: - build - test - verify build: stage: build script: - mvn compile only: - master tags: - linux test: stage: test script: - mvn test only: - master tags: - linux findbugs: stage: verify script: - mvn findbugs:check tags: - linux checkstyle: stage:...
Rename cobuerta job to test
Rename cobuerta job to test
YAML
agpl-3.0
stefanoberdoerfer/exmatrikulator,stefanoberdoerfer/exmatrikulator,stefanoberdoerfer/exmatrikulator,stefanoberdoerfer/exmatrikulator,stefanoberdoerfer/exmatrikulator
be23b95c6ad0f8110d1b4bc2d267d15cc1d14bd8
docker-compose.yml
docker-compose.yml
version: '2' services: gem: build: context: . dockerfile: Dockerfile links: - rabbit rabbit: image: rabbitmq:3 ports: - 5672:5672 janus: build: context: ./.travis dockerfile: Dockerfile.janus links: - rabbit
version: '2' services: gem: build: context: . dockerfile: Dockerfile links: - rabbit rabbit: image: rabbitmq ports: - 5672:5672 janus: build: context: ./.travis dockerfile: Dockerfile.janus links: - rabbit
Use latest version to rabbitmq
Use latest version to rabbitmq
YAML
mit
dazzl-tv/ruby-rabbitmq-janus
1c7ef491a29a685f566874d3e8e4fb4275f151c1
docker-compose.yml
docker-compose.yml
version: '2' services: tests: image: buildkite/plugin-tester:latest@sha256:4fa79343710021d300556f57f16721e5cb3859b4bad09ba437d006f5c38efe8e volumes: - ".:/plugin"
version: '2' services: tests: image: buildkite/plugin-tester:latest@sha256:973f078d7d648c88cd211dbaf6edcd17bd18778a6fda0aa9e00a7cf8fba32006 volumes: - ".:/plugin"
Update buildkite/plugin-tester:latest Docker digest to 973f07
Update buildkite/plugin-tester:latest Docker digest to 973f07
YAML
mit
buildkite-plugins/docker-compose,buildkite/docker-compose-buildkite-plugin,buildkite-plugins/docker-compose-buildkite-plugin
c8c772e1585fe735db0c290849c76a4987ba3263
docker-compose.yml
docker-compose.yml
# Run docker-compose build # Run docker-compose up # Visit http://localhost # Live long and prosper version: '3.9' services: nginx: container_name: nginx-angular-jumpstart image: nginx-angular-jumpstart build: context: . dockerfile: .docker/nginx.dockerfile ports: - "80:80" ...
# Run docker-compose build # Run docker-compose up # Visit http://localhost # Live long and prosper version: '3.7' services: nginx: container_name: nginx-angular-jumpstart image: nginx-angular-jumpstart build: context: . dockerfile: .docker/nginx.dockerfile ports: - "80:80" ...
Change from 3.9 to 3.7 due to Kompose limitation
Change from 3.9 to 3.7 due to Kompose limitation
YAML
mit
DanWahlin/Angular-JumpStart,DanWahlin/Angular-JumpStart,DanWahlin/Angular-JumpStart
daf2c48249d9452ddec373115b40f86286baae99
docker-compose.yml
docker-compose.yml
version: '3.0' services: lib: &default build: context: . dockerfile: Dockerfile volumes: - .:/usr/src/app - registry:/root/.cargo/registry env_file: .secrets volumes: registry: driver: local
version: '3.0' services: lib: &default build: context: . dockerfile: Dockerfile command: cargo test -- --nocapture volumes: - .:/usr/src/app - registry:/root/.cargo/registry env_file: .secrets volumes: registry: driver: local
Set `cargo test` to be the compose command
Set `cargo test` to be the compose command Running tests by default in development, setting the `--nocapture` flag so that inline messages to `stdout` are shown in the console
YAML
mit
blankenshipz/oanda-rs
3c3b2c3cbe5f00a1a8aeeec85e8544e390aab6e1
docker-compose.yml
docker-compose.yml
version: '3.5' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:7.5.1 environment: discovery.type: single-node xpack.security.enabled: 'false' ES_JAVA_OPTS: -Xms512m -Xmx512m ports: - 9200:9200 - 9300:9300 networks: - foundatio kiban...
version: '3.5' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:7.6.0 environment: discovery.type: single-node xpack.security.enabled: 'false' ES_JAVA_OPTS: -Xms512m -Xmx512m ports: - 9200:9200 - 9300:9300 networks: - foundatio kiban...
Update to use ES 7.6 for tests
Update to use ES 7.6 for tests
YAML
apache-2.0
exceptionless/Foundatio.Parsers,exceptionless/Exceptionless.LuceneQueryParser
4af781292150b4a78324fa620e2e61f7740e7e58
data/transition-sites/innovateuk.yml
data/transition-sites/innovateuk.yml
--- site: innovateuk whitehall_slug: innovate-uk homepage: https://www.gov.uk/government/organisations/innovate-uk tna_timestamp: 20140827133341 host: www.innovateuk.org homepage_furl: www.gov.uk/innovateuk aliases: - innovateuk.org - www.innovateuk.org.uk - innovateuk.org.uk
--- site: innovateuk whitehall_slug: innovate-uk homepage: https://www.gov.uk/government/organisations/innovate-uk tna_timestamp: 20140827133341 host: www.innovateuk.org homepage_furl: www.gov.uk/innovateuk aliases: - innovateuk.org - www.innovateuk.org.uk - innovateuk.org.uk - beta.innovateuk.org
Add alias to InnovateUK site
Add alias to InnovateUK site
YAML
mit
alphagov/transition-config,alphagov/transition-config
4c89fb389376a76abb0c8f9d8e0d5b9d28d7b89d
db/data/sample/project_questions.yml
db/data/sample/project_questions.yml
--- - _assoc: period question: Period of performance help_text: in months required: true options: [] field_type: 2 - _assoc: cc question: Project Charge Code required: true options: [] field_type: 2 - _assoc: maint question: Maintenance Day required: true options: [] field_type: 3 - _assoc: do...
--- - _assoc: period question: Period of performance help_text: in months required: true options: [] field_type: 2 - _assoc: cc question: Project Charge Code required: true options: [] field_type: 2 - _assoc: maint question: Maintenance Day required: true options: [] field_type: 3 - _assoc: do...
Add dev and test product questions
Add dev and test product questions Reworded production question to align with dev and test.
YAML
apache-2.0
AllenBW/api,boozallen/projectjellyfish,projectjellyfish/api,sreekantch/JellyFish,sonejah21/api,sreekantch/JellyFish,sonejah21/api,projectjellyfish/api,boozallen/projectjellyfish,mafernando/api,sonejah21/api,boozallen/projectjellyfish,mafernando/api,AllenBW/api,stackus/api,stackus/api,stackus/api,mafernando/api,projectj...
1149ee8fcf5b0889fc5f743e0d2cb5ae60ba64ed
_config.yml
_config.yml
# Site settings title: Root314 header-img: img/home-bg.jpg email: hello@root314.com copyright_name: Root314 description: "Software Defined Engineer - Cloud, OpenStack, Network" baseurl: "" #url: "http://yourdomain.com" twitter: username: Miouge github_username: Miouge1 linkedin_username: maximeguyot #facebook_usern...
# Site settings title: Root314 header-img: img/home-bg.jpg email: hello@root314.com copyright_name: Root314 description: "Software Defined Engineer - Cloud, OpenStack, Network" baseurl: "" #url: "http://yourdomain.com" twitter: username: Miouge github_username: Miouge1 linkedin_username: maximeguyot #facebook_usern...
Fix output and enable reveal
Fix output and enable reveal
YAML
mit
Miouge1/root314,Miouge1/root314,Miouge1/root314,Miouge1/root314
72b9f2866212da7c2f4901b0cf7701d73663f852
_config.yml
_config.yml
# Site settings title: frippz email: fredrik@frippz.se description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site descrip...
# Site settings title: frippz email: contact@frippz.se description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site descrip...
Update config and remove unused properties
Update config and remove unused properties
YAML
mit
frippz/frippz.se,frippz/frippz.se,frippz/frippz.se
d5822835a5d870b62849af309e94ae1ef9045fbe
_config.yml
_config.yml
sass: style: compressed # Site settings title: Jelly description: An example site # Build settings markdown: kramdown baseurl: http://aylestoneallotments.github.io/website permalink: pretty # Timezone timezone: GB # Custom Collections collections: events: output: true permalink: /events/:year/:month/...
sass: style: compressed # Site settings title: Jelly description: An example site # Build settings markdown: kramdown url: http://aylestoneallotments.github.io baseurl: /website permalink: pretty # Timezone timezone: GB # Custom Collections collections: events: output: true permalink: /events/:year/:...
Add url to fix feeds.xml
Add url to fix feeds.xml
YAML
mit
aylestoneallotments/www.aylestoneallotments.co.uk,aylestoneallotments/website,aylestoneallotments/www.aylestoneallotments.co.uk,aylestoneallotments/website,aylestoneallotments/website,aylestoneallotments/www.aylestoneallotments.co.uk