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
1dee9af504025e8f58185a3a5fed5ec6166ee2f6
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.1 - ruby-head script: bundle exec rspec
language: ruby rvm: - 1.9.3 - 2.1.1 - ruby-head script: bundle exec rspec
Make backwards compatible with ruby 1.9.3.
Make backwards compatible with ruby 1.9.3.
YAML
mit
datapipe/swagger-blocks,fotinakis/swagger-blocks
397b2d9b25a110fa184b26ffac8423f7c2865c87
.travis.yml
.travis.yml
--- language: ruby rvm: - 2.1.2 before_script: - gem update bundler script: - bundle exec rspec --no-drb --format progress
--- language: ruby rvm: - 2.1.2 script: - bundle exec rspec --no-drb --format progress
Remove bundler update from Travis config
Remove bundler update from Travis config
YAML
mit
paulfioravanti/toy_robot
3d56d11d037c47f0795f1b99c6b613d570a7e5cd
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 install: - pip install Django==$DJANGO - pip install -e . - pip install -r tests/requirements.txt - pip install https://github.com/django/django/archive/${DJANGO}.zip#egg=django script: - export PYTHONPATH=. - flake8 --ignore=W801,E128,E501,W402 cab - coverage run `which django-admin.py` test --settings=tests.settings - coverage report env: - DJANGO=1.4.8 - DJANGO=1.5.4 # - DJANGO=stable/1.6.x
language: python python: - 2.6 - 2.7 install: - pip install Django==$DJANGO - pip install -e . - pip install -r tests/requirements.txt script: - export PYTHONPATH=. - flake8 --ignore=W801,E128,E501,W402 cab - coverage run `which django-admin.py` test --settings=tests.settings - coverage report env: - DJANGO=1.4.8 - DJANGO=1.5.4 # - DJANGO=stable/1.6.x
Remove no-longer used test requirement
Remove no-longer used test requirement
YAML
bsd-3-clause
django-de/djangosnippets.org,django/djangosnippets.org,django/djangosnippets.org,django/djangosnippets.org,django/djangosnippets.org,django-de/djangosnippets.org,django/djangosnippets.org,django-de/djangosnippets.org,django-de/djangosnippets.org
00fbdffe98973d031421e5e650b12a1f48a9fc97
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" services: mongodb
language: node_js node_js: - "0.10" before_install: npm install -g grunt-cli mocha services: mongodb
Install grunt and mocha before hand
Install grunt and mocha before hand
YAML
mit
will-weiss/mongoose-rest-endpoints,jraede/mongoose-rest-endpoints,enspencer/mongoose-rest-endpoints
86bc286a20e63e5e75590884c0b7c5a8b8123ab3
.travis.yml
.travis.yml
language: generic env: - EVM_EMACS=emacs-25.1-travis - EVM_EMACS=emacs-25.2-travis - EVM_EMACS=emacs-25.3-travis - EVM_EMACS=emacs-26.1-travis - EVM_EMACS=emacs-26.2-travis - EVM_EMACS=emacs-git-snapshot-travis install: - curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > travis.sh && source ./travis.sh - evm install $EVM_EMACS --use --skip script: - ./run_rust_emacs_tests.sh notifications: email: false
dist: trusty language: generic env: - EVM_EMACS=emacs-25.1-travis - EVM_EMACS=emacs-25.2-travis - EVM_EMACS=emacs-25.3-travis - EVM_EMACS=emacs-26.1-travis - EVM_EMACS=emacs-26.2-travis - EVM_EMACS=emacs-git-snapshot-travis install: - curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > travis.sh && source ./travis.sh - evm install $EVM_EMACS --use --skip script: - ./run_rust_emacs_tests.sh notifications: email: false
Add specific distribution for EVM
Add specific distribution for EVM https://github.com/rejeep/evm/issues/125
YAML
apache-2.0
rust-lang/rust-mode,rust-lang/rust-mode
8fe715b959652f354608a24972b555c6719c09e8
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4.2' - '5.3' 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.3' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Test with latest Node.js 4 on Travis CI.
Test with latest Node.js 4 on Travis CI.
YAML
mit
bigeasy/vizsla
37923df0387b68f6d94efe4e2e10e54651117c90
.travis.yml
.travis.yml
rvm: 2.2 sudo: required # install the pre-release chef-dk. Use chef-stable-precise to install the stable release addons: apt: sources: - chef-current-precise packages: - chefdk services: docker env: matrix: - INSTANCE=default-ubuntu-1204 - INSTANCE=default-ubuntu-1404 # Don't `bundle install` install: echo "skip bundle install" # Ensure we make ChefDK's Ruby the default before_script: # https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889 - 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 gem install kitchen-docker 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 - KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
sudo: required # install the pre-release chef-dk. Use chef-stable-precise to install the stable release addons: apt: sources: - chef-current-precise packages: - chefdk services: docker env: matrix: - INSTANCE=default-ubuntu-1204 - INSTANCE=default-ubuntu-1404 # Don't `bundle install` install: echo "skip bundle install" # Ensure we make ChefDK's Ruby the default before_script: # https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889 - 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 gem install kitchen-docker 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 - KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
Remove RVM from Travis since we use Ruby in ChefDK
Remove RVM from Travis since we use Ruby in ChefDK
YAML
apache-2.0
chef-cookbooks/jetty,chef-cookbooks/jetty,opscode-cookbooks/jetty,opscode-cookbooks/jetty
e881d7c42c8b3175f93031e7695a71e88062ea36
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" install: - pip install -U pip - pip install -r requirements/dev.txt script: nosetests --with-coverage --cover-package=stacktraces --cover-min-percentage=77 flake8 . notifications: email: - [email protected]
language: python python: - "2.7" - "3.4" - "3.5" install: - pip install -U pip - pip install -r requirements/dev.txt script: - nosetests --with-coverage --cover-package=stacktraces --cover-min-percentage=77 - flake8 . notifications: email: - [email protected]
Drop 3.3 for Travis SI, fix YAML foo
Drop 3.3 for Travis SI, fix YAML foo
YAML
apache-2.0
trawick/stacktraces.py,trawick/stacktraces.py
51e61658d43499de444f4d6195848c31a2ca9635
.travis.yml
.travis.yml
language: node_js node_js: - "13.5" install: - npm install script: - npm run build:static before_deploy: - source scripts/4660933598635778-openrc.sh - pip install python-swiftclient python-keystoneclient --user deploy: # deploy next to the staging environment - provider: script skip_cleanup: true script: bash scripts/deploy.sh on: branch: main # deploy next.seven23.io on github page - provider: pages skip_cleanup: true local_dir: dist/browser fqdn: https://develop.sebastienbarbier.com github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard on: branch: develop
language: node_js node_js: - "13.5" install: - npm install script: - npm run build:static before_deploy: - source scripts/4660933598635778-openrc.sh - pip install python-swiftclient python-keystoneclient --user deploy: # deploy next to the staging environment - provider: script skip_cleanup: true script: bash scripts/deploy.sh on: branch: main # deploy next.seven23.io on github page - provider: pages skip_cleanup: true local_dir: dist/en fqdn: https://develop.sebastienbarbier.com github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard on: branch: develop
Fix broken path to builded source
Fix broken path to builded source
YAML
mit
sebastienbarbier/sebastienbarbier.com,sebastienbarbier/sebastienbarbier.com,sebastienbarbier/sebastienbarbier.com,sebastienbarbier/sebastienbarbier.com
afc7a8c4f5659ace3e58debba3cac81c661d52f1
.travis.yml
.travis.yml
language: node_js node_js: - "8" - "7" - "6" - "5" - "4" os: - linux - osx before_deploy: - npm run build deploy: provider: npm email: "[email protected]" api_key: $NPM_PROJECT_TOKEN notifications: email: - "[email protected]" before_install: - npm install --global nyc - npm install --global codacy-coverage install: - npm install --only=production - npm install --only=development script: - nyc npm run test - nyc report --reporter=lcov after_success: - nyc report --reporter=lcov - cat ./coverage/lcov.info | codacy-coverage
language: node_js node_js: - "8" - "7" - "6" - "5" - "4" os: - linux - osx before_deploy: - npm run build deploy: provider: npm email: "[email protected]" api_key: $NPM_PROJECT_TOKEN notifications: email: - "[email protected]" before_install: - npm install --global nyc - npm install --global codacy-coverage install: - npm install --only=production - npm install --only=development script: - npm run check - nyc npm run test - nyc report --reporter=lcov after_success: - nyc report --reporter=lcov - cat ./coverage/lcov.info | codacy-coverage
Add code validation to the standardization
Add code validation to the standardization
YAML
mit
AncientSouls/Channels
35659d82ec7eb714c693c89836aadf932c04dbfc
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8 script: - xctool -scheme 'Then-iOS' -sdk iphonesimulator CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO test -parallelize - xctool -scheme 'Then-OSX' test -parallelize
language: objective-c osx_image: xcode8 script: - xcodebuild -scheme 'Then-iOS' -sdk iphonesimulator CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO test | xcpretty -c - xcodebuild -scheme 'Then-OSX' test | xcpretty -c
Use xcodebuild for xcode8 CI
Use xcodebuild for xcode8 CI
YAML
mit
devxoul/Then,devxoul/Then
23612197346202c5ef458a80d26fdede0d50a73d
.travis.yml
.travis.yml
language: php php: - '7.0' - '7.1' - nightly matrix: allow_failures: - php: 7.1 - php: nightly services: - postgresql addons: postgresql: "9.2" cache: directories: - $HOME/.composer/cache before_install: - phpenv config-rm xdebug.ini - echo "no" | pecl install apcu-5.1.3 script: - ./bin/test
language: php php: - '7.0' - '7.1' - nightly matrix: allow_failures: - php: 7.1 - php: nightly services: - postgresql addons: postgresql: "9.2" cache: directories: - $HOME/.composer/cache before_install: - phpenv config-rm xdebug.ini || true - echo "no" | pecl install apcu-5.1.3 script: - ./bin/test
Fix The command "phpenv config-rm xdebug.ini" failed and exited with 1 during .
Fix The command "phpenv config-rm xdebug.ini" failed and exited with 1 during .
YAML
mit
plachance/simple-time-tracker,plachance/simple-time-tracker,plachance/simple-time-tracker,plachance/simple-time-tracker
f62417c0fb672c9a6469419d1dd5afc7ea2db69e
.travis.yml
.travis.yml
language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools - platform-tools - tools # The BuildTools version used by your project - build-tools-23.0.3 # The SDK version used to compile your project - android-19 # Additional components - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository - addon-google_apis-google-19 # Specify at least one system image, # if you need to run emulator(s) during your tests - sys-img-armeabi-v7a-android-19 - sys-img-x86-android-17
language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools - platform-tools - tools # The BuildTools version used by your project - build-tools-23.0.3 # The SDK version used to compile your project - android-23 # Additional components - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository - addon-google_apis-google-19 # Specify at least one system image, # if you need to run emulator(s) during your tests - sys-img-armeabi-v7a-android-19 - sys-img-x86-android-17
Update sdk version in Travis CI config
Update sdk version in Travis CI config
YAML
apache-2.0
thedrover/android-integration-test-patterns
bcd97d85ed63e5da0937aa1472472099ed76fbaa
.travis.yml
.travis.yml
dist: trusty language: python python: '2.7' before_install: - sudo apt-get update -qq - sudo apt-get install -qq python-apt - mkdir -p ~/.ansible/vars - touch ~/.ansible/vars/toad_vars.yml - sudo docker pull projectatomic/dockerfile-lint install: - pip install ansible - pip install ansible-lint script: - ansible-galaxy install -r requirements.yml - ansible-playbook --syntax-check elk.yml - ansible-playbook --syntax-check jenkins.yml - ansible-playbook --syntax-check openstack.yml - ansible-playbook --syntax-check site.yml - ansible-lint --exclude=roles site.yml - sudo docker run -it --rm --privileged -v `pwd`:/root/ projectatomic/dockerfile-lint dockerfile_lint --permissive -f dockerfiles/*
--- env: DOCKER_COMPOSE_VERSION: 1.9.0 sudo: required language: python python: '2.7' services: - docker before_install: # perform updates - sudo apt-get update -qq - sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine # check for docker-compose version - docker-compose --version # update to a newer version of docker-compose - sudo rm /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin # revalidate version of docker-compose - docker-compose --version # install ansible - sudo apt-get install -qq python-apt - mkdir -p ~/.ansible/vars - touch ~/.ansible/vars/toad_vars.yml - sudo docker pull projectatomic/dockerfile-lint # instantiate our docker nodes - docker-compose up -d install: - pip install ansible - pip install ansible-lint script: - ansible-galaxy install -r requirements.yml - ansible-playbook --syntax-check elk.yml - ansible-playbook --syntax-check jenkins.yml - ansible-playbook --syntax-check openstack.yml - ansible-playbook --syntax-check site.yml - ansible-lint --exclude=roles site.yml - sudo docker run -it --rm --privileged -v `pwd`:/root/ projectatomic/dockerfile-lint dockerfile_lint --permissive -f dockerfiles/* - ansible-galaxy install -r requirements.yml - ansible-playbook site.yml -i hosts/containers -e use_openstack_deploy=false -e deploy_type='docker' --skip-tags jenkins_slave -c docker
Update CI infra to test Docker Compose deployment
Update CI infra to test Docker Compose deployment This commit enhances the CI environment (Travis-CI) to deploy Docker containers via our docker-compose scripts. We then deploy with Ansible against those containers in order to test our Ansible plays.
YAML
apache-2.0
redhat-nfvpe/ansible-cira,redhat-nfvpe/toad,leifmadsen/toad
e852aca6f26d98db55a72932a5d4f511e8c806fa
.travis.yml
.travis.yml
language: ruby dist: trusty rvm: - 2.1 - 2.2 - ruby-2.3.0 - jruby before_install: - rvm get head - gem install bundler script: - rake - rubocop
language: ruby dist: trusty rvm: - 2.1 - 2.2 - ruby-2.3.0 - jruby-20mode - jruby-21mode - jruby-9000 before_install: - gem install bundler script: - rake - rubocop
Add more specific jruby versions to build
Add more specific jruby versions to build
YAML
mit
waterlink/cars_api,waterlink/cars_api
96322ae1c9abd445da81f509e5cf2e42e66bb55f
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 script: bundle exec rspec
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode script: bundle exec rspec
Enable testing with JRuby and Rubinius on Travis CI
Enable testing with JRuby and Rubinius on Travis CI
YAML
mit
yujinakayama/guard-rubocop,backus/guard-rubocop,guard/guard-rubocop
f900674458482f745edcd7e7bc48877737b1950d
.travis.yml
.travis.yml
language: python python: - '2.7' env: - TOXENV=docs - TOXENV=py27 install: - pip install tox script: make test jobs: include: - stage: "Elasticsearch" env: - TOXENV=py27 ES_VERSION=7.0.0-rc1 install: - pip install tox - wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}-linux-x86_64.tar.gz - tar -xzf elasticsearch-${ES_VERSION}.tar.gz - ./elasticsearch-${ES_VERSION}/bin/elasticsearch & before_script: - sleep 10 script: make test deploy: provider: pypi user: yelplabs password: secure: TpSTlFu89tciZzboIfitHhU5NhAB1L1/rI35eQTXstiqzYg2mweOuip+MPNx9AlX3Swg7MhaFYnSUvRqPljuoLjLD0EQ7BHLVSBFl92ukkAMTeKvM6LbB9HnGOwzmAvTR5coegk8IHiegudODWvnhIj4hp7/0EA+gVX7E55kEAw= on: tags: true distributions: sdist bdist_wheel repo: Yelp/elastalert branch: master
language: python python: - '2.7' env: - TOXENV=docs - TOXENV=py27 install: - pip install tox script: make test jobs: include: - stage: "Elasticsearch" env: - TOXENV=py27 ES_VERSION=7.0.0-rc1 install: - pip install tox - wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}-linux-x86_64.tar.gz - tar -xzf elasticsearch-${ES_VERSION}-linux-x86_64.tar.gz - ./elasticsearch-${ES_VERSION}/bin/elasticsearch & script: - wget -q --waitretry=1 --retry-connrefused --tries=30 -O - http://127.0.0.1:9200 - make test deploy: provider: pypi user: yelplabs password: secure: TpSTlFu89tciZzboIfitHhU5NhAB1L1/rI35eQTXstiqzYg2mweOuip+MPNx9AlX3Swg7MhaFYnSUvRqPljuoLjLD0EQ7BHLVSBFl92ukkAMTeKvM6LbB9HnGOwzmAvTR5coegk8IHiegudODWvnhIj4hp7/0EA+gVX7E55kEAw= on: tags: true distributions: sdist bdist_wheel repo: Yelp/elastalert branch: master
Fix broken TravisCI Elasticsearch build stage
Fix broken TravisCI Elasticsearch build stage
YAML
apache-2.0
Yelp/elastalert
82250d288188ebb55477db713b6ab878f8cd9e3d
.travis.yml
.travis.yml
language: cpp matrix: include: - os: linux dist: trusty sudo: required compiler: gcc - os: linux dist: trusty sudo: required compiler: clang - os: osx osx_image: xcode7.3 compiler: gcc - os: osx osx_image: xcode7.3 compiler: clang - os: osx osx_image: xcode9 compiler: gcc - os: osx osx_image: xcode9 compiler: clang env: - EXT_CXX_FLAGS="-fsanitize=address,leak -DDEBUG_MAP_GC" ASAN_OPTIONS="detect_odr_violation=0" branches: only: - master - stage before_install: - if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update && sudo apt-get install -y libunittest++-dev; fi - if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install unittest-cpp && brew uninstall cmake && brew install cmake; fi - if [ $TRAVIS_OS_NAME == osx ]; then export UNITTEST_INCLUDE_DIRS=/usr/local/Cellar/unittest-cpp/; fi - g++ --version - clang++ --version - java -version install: cmake CMakeLists.txt script: make && build/unitTests after_script: rm -f *.hpl *.log
language: cpp matrix: include: - os: linux dist: trusty sudo: required compiler: gcc - os: linux dist: trusty sudo: required compiler: clang - os: osx osx_image: xcode7.3 compiler: gcc - os: osx osx_image: xcode7.3 compiler: clang - os: osx osx_image: xcode9 compiler: gcc - os: osx osx_image: xcode9 compiler: clang env: - EXT_CXX_FLAGS="-fsanitize=address -DDEBUG_MAP_GC" ASAN_OPTIONS="detect_odr_violation=0" branches: only: - master - stage before_install: - if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update && sudo apt-get install -y libunittest++-dev; fi - if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install unittest-cpp && brew uninstall cmake && brew install cmake; fi - if [ $TRAVIS_OS_NAME == osx ]; then export UNITTEST_INCLUDE_DIRS=/usr/local/Cellar/unittest-cpp/; fi - g++ --version - clang++ --version - java -version install: cmake CMakeLists.txt script: make && build/unitTests after_script: rm -f *.hpl *.log
Remove sanitizer's leak flag since it's only supported on certain versions of clang
Remove sanitizer's leak flag since it's only supported on certain versions of clang
YAML
mit
RichardWarburton/honest-profiler,RichardWarburton/honest-profiler,RichardWarburton/honest-profiler,RichardWarburton/honest-profiler,RichardWarburton/honest-profiler,jvm-profiling-tools/honest-profiler,jvm-profiling-tools/honest-profiler,RichardWarburton/honest-profiler,jvm-profiling-tools/honest-profiler,jvm-profiling-tools/honest-profiler
05bcaf1f4e0b7ad6231f9d607795da84057b0f8b
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" before_script: - psql -c 'create database travis_ci_test;' -U postgres - mysql -e 'create database travis_ci_test;' addons: postgresql: "9.3"
language: node_js node_js: - "iojs" - "0.12" - "0.10" before_script: - psql -c 'create database travis_ci_test;' -U postgres - mysql -e 'create database travis_ci_test;' addons: postgresql: "9.3"
Add iojs and node 0.12
Add iojs and node 0.12
YAML
isc
llambda/connect-session-knex
735c5cf2adaba6901dbaea226bd374e1ac9c2365
.travis.yml
.travis.yml
sudo: required services: - docker language: bash before_script: - echo '{"experimental":true}' | sudo tee /etc/docker/daemon.json - sudo service docker restart script: - docker build -t $DOCKER_USER/docker-magicmirror:amd64 . - docker run --rm --privileged multiarch/qemu-user-static:register --reset - docker build -t $DOCKER_USER/docker-magicmirror:arm . - docker manifest create $DOCKER_USER/docker-MagicMirror:latest $DOCKER_USER/docker-MagicMirror:arm $DOCKER_USER/docker-MagicMirror:amd64 - docker manifest annotate --arch arm $DOCKER_USER/docker-MagicMirror $DOCKER_USER/docker-MagicMirror:arm - docker manifest inspect $DOCKER_USER/docker-MagicMirror after_success: - > if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo "$DOCKER_PASS" | docker login -u $DOCKER_USER --password-stdin docker manifest push bastilimbach/docker-MagicMirror fi
sudo: required services: - docker language: bash addons: apt: packages: - docker-ce before_script: - echo '{"experimental":true}' | sudo tee /etc/docker/daemon.json - sudo service docker restart script: - docker build -t $DOCKER_USER/docker-magicmirror:amd64 . - docker run --rm --privileged multiarch/qemu-user-static:register --reset - docker build -t $DOCKER_USER/docker-magicmirror:arm . - docker manifest create $DOCKER_USER/docker-MagicMirror:latest $DOCKER_USER/docker-MagicMirror:arm $DOCKER_USER/docker-MagicMirror:amd64 - docker manifest annotate --arch arm $DOCKER_USER/docker-MagicMirror $DOCKER_USER/docker-MagicMirror:arm - docker manifest inspect $DOCKER_USER/docker-MagicMirror after_success: - > if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo "$DOCKER_PASS" | docker login -u $DOCKER_USER --password-stdin docker manifest push bastilimbach/docker-MagicMirror fi
Use the newest docker version
Use the newest docker version
YAML
mit
bastilimbach/docker-MagicMirror,bastilimbach/docker-MagicMirror
da9ad8a84cd105fe8a652b20027a5833a4056909
.travis.yml
.travis.yml
sudo: false language: node_js cache: directories: - node_modules notifications: email: false node_js: - 0.12 - 4 - 6 matrix: fast_finish: true allow_failures: env: global: - CXX=g++-4.8 script: "npm run travis" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm i -g npm@^2.0.0 before_script: - npm prune after_success: - 'curl -Lo travis_after_all.py https://git.io/travis_after_all' - python travis_after_all.py - export $(cat .to_export_back) &> /dev/null - npm run semantic-release
sudo: false language: node_js cache: directories: - node_modules notifications: email: false node_js: - 4 - 6 matrix: fast_finish: true allow_failures: env: global: - CXX=g++-4.8 script: "npm run travis" addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm i -g npm@^2.0.0 before_script: - npm prune after_success: - 'curl -Lo travis_after_all.py https://git.io/travis_after_all' - python travis_after_all.py - export $(cat .to_export_back) &> /dev/null - npm run semantic-release
Remove Node.js 0.12 from TravisCI
Remove Node.js 0.12 from TravisCI
YAML
mit
tadjik1/wof-admin-lookup,tadjik1/wof-admin-lookup
151182aae3d31a465acb7fc4850cf7f470239871
.travis.yml
.travis.yml
language: csharp solution: BuildAMation.sln matrix: include: - os: linux mono: latest script: - msbuild /p:Configuration=Release BuildAMation.sln && python codingtools/test_bam.py && python tests/runtests.py -k -c debug -t Test5 # DotNetCore axis removed as the referenced assemblies in the .sln # are incorrect for this #- os: linux # mono: none # dotnet: 2.1.4 # script: # - dotnet msbuild /p:Configuration=Release BuildAMation.sln # - python codingtools/test_bam.py
language: csharp solution: BuildAMation.sln matrix: include: - os: linux mono: latest script: - msbuild /p:Configuration=Release BuildAMation.sln && python codingtools/test_bam.py && source env.sh && python tests/runtests.py -k -c debug -t Test5 # DotNetCore axis removed as the referenced assemblies in the .sln # are incorrect for this #- os: linux # mono: none # dotnet: 2.1.4 # script: # - dotnet msbuild /p:Configuration=Release BuildAMation.sln # - python codingtools/test_bam.py
Add BAM to the PATH in order to test
[TravisCI] Add BAM to the PATH in order to test
YAML
bsd-3-clause
markfinal/BuildAMation,markfinal/BuildAMation,markfinal/BuildAMation,markfinal/BuildAMation,markfinal/BuildAMation
04a3b58aded8f415d4e1d6b83230f1d6bde75153
.travis.yml
.travis.yml
language: python python: 3.5 env: - TOXENV=flake8 - TOXENV=py27 - TOXENV=py34 - TOXENV=py35 matrix: fast_finish: true include: - python: 3.6 env: TOXENV=py36 - python: 3.7-dev env: TOXENV=py37 - python: pypy-5.4 env: TOXENV=pypy_54 allow_failures: - env: TOXENV=py37 - env: TOXENV=pypy_54 install: - pip install tox codecov script: - tox after_success: - codecov notifications: email: false
language: python cache: pip python: 3.5 env: - TOXENV=flake8 - TOXENV=py27 - TOXENV=py34 - TOXENV=py35 matrix: fast_finish: true include: - python: 3.6 env: TOXENV=py36 - python: 3.7-dev env: TOXENV=py37 - python: pypy-5.4 env: TOXENV=pypy_54 allow_failures: - env: TOXENV=py37 - env: TOXENV=pypy_54 install: - pip install tox codecov script: - tox after_success: - codecov notifications: email: false
Enable pip cache in Travis CI
Enable pip cache in Travis CI Can speed up builds and reduce load on PyPI servers. For more information, see: https://docs.travis-ci.com/user/caching/#pip-cache
YAML
bsd-3-clause
andialbrecht/sqlparse
7384b39bbb007feb566757f503941bf19e0ad33a
.travis.yml
.travis.yml
language: "perl" perl: - "5.10" sudo: required services: - docker install: - pushd scripts/docker-htcondor - docker build -t docker-htcondor . - popd - git clone --depth 1 --branch master https://github.com/Ensembl/ensembl-hive - env script: - docker run -v /home/travis:/home/travis docker-htcondor /home/travis/build/muffato/ensembl-hive-htcondor/travisci/setup_docker_and_run_tests.sh
language: "perl" perl: - "5.10" sudo: required services: - docker install: - docker pull muffato/docker-htcondor - git clone --depth 1 --branch master https://github.com/Ensembl/ensembl-hive - env script: - docker run -v /home/travis:/home/travis muffato/docker-htcondor /home/travis/build/muffato/ensembl-hive-htcondor/travisci/setup_docker_and_run_tests.sh
Use the image available on the docker hub to save time
Use the image available on the docker hub to save time
YAML
apache-2.0
muffato/ensembl-hive-htcondor,muffato/ensembl-hive-htcondor
2defed4d14c0184817e3a9f0d10753539a46fb0b
.travis.yml
.travis.yml
language: ruby cache: bundler: true directories: - bower_components sudo: false rvm: - 2.3.0 before_script: - npm install bower - bundle exec rake compile - bundle exec rake serve > /dev/null 2>&1 & - export PID=$! - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 5 # give xvfb some time to start script: - bundle exec rake spec after_failure: - bundle exec rake upload after_script: - kill -2 $PID - sleep 2 env: matrix: - "BROWSER=firefox TOLERANCE=0.000001" - "BROWSER=firefox TOLERANCE=0.000000" matrix: fast_finish: true allow_failures: - env: TOLERANCE=0.00 notifications: webhooks: urls: - https://webhooks.gitter.im/e/1184f6f283ba9823f662 on_success: change on_failure: always on_start: never
language: ruby cache: bundler: true directories: - bower_components sudo: false rvm: - 2.3.0 before_script: - npm install bower - bundle exec rake compile - bundle exec rake serve > /dev/null 2>&1 & - export PID=$! - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 5 # give xvfb some time to start script: - bundle exec rake spec after_failure: - bundle exec rake upload after_script: - kill -2 $PID - sleep 2 env: matrix: - "BROWSER=firefox TOLERANCE=0.000001" - "BROWSER=firefox TOLERANCE=0.000000" matrix: fast_finish: true allow_failures: - env: BROWSER=firefox TOLERANCE=0.000000 notifications: webhooks: urls: - https://webhooks.gitter.im/e/1184f6f283ba9823f662 on_success: change on_failure: always on_start: never
Allow zero-tolerance tests to fail
Allow zero-tolerance tests to fail
YAML
apache-2.0
skateman/patternfly-sass,patternfly/patternfly-sass,skateman/patternfly-sass,patternfly/patternfly-sass,patternfly/patternfly-sass,skateman/patternfly-sass
4e129a6759912284caf4b965a4143d016dc3bc44
.travis.yml
.travis.yml
# Copyright (c) 2014-2016 Software Architecture Group (Hasso Plattner Institute) language: smalltalk sudo: false smalltalk: - Squeak-trunk - Squeak-5.0 - Squeak-4.6 - Squeak-4.5
# Copyright (c) 2014-2016 Software Architecture Group (Hasso Plattner Institute) language: smalltalk sudo: false smalltalk: - Squeak-trunk - Squeak-5.1 - Squeak-5.0 - Squeak-4.6 - Squeak-4.5 matrix: allow_failures: - smalltalk: Squeak-5.0 - smalltalk: Squeak-4.6 - smalltalk: Squeak-4.5 fast_finish: true
Add 5.1, drop support for 4.5, 4.6, 5.0
Add 5.1, drop support for 4.5, 4.6, 5.0
YAML
mit
hpi-swa/signals
0d833caeeb53f5ff69aa1f084d8c15a8a2b66540
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1.2 - ruby-head - jruby-20mode # JRuby in 1.9 mode - rbx matrix: allow_failures: - rvm: ruby-head cache: bundler before_install: - sudo apt-get install haskell-platform - cabal update - cabal install texmath
language: ruby rvm: - 2.0.0 - 2.1.2 - ruby-head - jruby-20mode # JRuby in 1.9 mode - rbx matrix: allow_failures: - rvm: ruby-head cache: bundler before_install: - sudo apt-get install haskell-platform - cabal update - cabal install -fexecutable texmath
Install texmath executable on Travis CI
Install texmath executable on Travis CI
YAML
mit
hollingberry/texmath-ruby
b42a35fcf7e74126761c409a926631d24cf61c9a
.travis.yml
.travis.yml
language: objective-c notifications: email: on_success: always env: matrix: - MONO_VERSION="3.2.5" before_install: - wget "http://download.xamarin.com/MonoFrameworkMDK/Macx86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" - sudo installer -pkg MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg -target / - export EnableNuGetPackageRestore="true" script: - xbuild /target:test
language: c notifications: email: on_success: always before_install: - sudo apt-get update -qq - sudo apt-get install -qq mono-devel gtk-sharp2 script: "xbuild /target:test"
Revert " Upgrade to Mono 3.2.5 on Travis."
Revert " Upgrade to Mono 3.2.5 on Travis." This reverts commit fe1f2d4111b170f8e375e4e071323c2d6eb40178.
YAML
bsd-3-clause
ForNeVeR/Pash,WimObiwan/Pash,WimObiwan/Pash,sburnicki/Pash,WimObiwan/Pash,mrward/Pash,Jaykul/Pash,Jaykul/Pash,mrward/Pash,WimObiwan/Pash,mrward/Pash,ForNeVeR/Pash,ForNeVeR/Pash,ForNeVeR/Pash,sburnicki/Pash,sillvan/Pash,sillvan/Pash,Jaykul/Pash,Jaykul/Pash,sburnicki/Pash,sillvan/Pash,sburnicki/Pash,sillvan/Pash,mrward/Pash
1363b6fbc3de5aeba90b6e1052f1f87ac0aabf3a
vars/main.yml
vars/main.yml
--- # vars file for ansible-puppet hieradata: /etc/puppet/hieradata hieraenvironment: production copy_hieradata: False
--- # vars file for ansible-puppet hieradata: /etc/puppet/hieradata hieraenvironment: production
Remove copy_hieradata value from vars file
Remove copy_hieradata value from vars file Putting this here makes it not possible to specify the setting in our in-tree vars file. We also already account for it not being set in the role logic. Change-Id: I0e06b750a23b46c39ff675b5ac842e6a0d25bfff
YAML
apache-2.0
openstack-infra/ansible-puppet,nibalizer/ansible-puppet,nibalizer/ansible-puppet,openstack-infra/ansible-puppet
dd3b8ee4415e7b38b7a77d21bc0d55a3f3eacc6e
.travis.yml
.travis.yml
# Travis CI Configuration language: python python: - "3.6" - "3.7" - "3.8" install: - pip install -r requirements.txt - pip install coveralls script: - coverage run -m nose after_success: - coveralls
# Travis CI Configuration language: python python: - "3.7" - "3.8" - "3.9" install: - pip install -r requirements.txt - pip install coveralls script: - coverage run -m nose after_success: - coveralls
Replace Python 3.6 with 3.9 on Travis
Replace Python 3.6 with 3.9 on Travis
YAML
mit
caleb531/youversion-suggest,caleb531/youversion-suggest
629040340093ffa66adeb919d0218af48d35e874
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false jdk: - openjdk7 - oraclejdk8
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false jdk: - oraclejdk8
Update Java requirement from version 7 to 8.
DBCP-505: Update Java requirement from version 7 to 8. Travis CI: Remove Java 7
YAML
apache-2.0
apache/commons-dbcp,apache/commons-dbcp,apache/commons-dbcp
9aef47fa373180eef307fb7a568f178f36b176ed
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda/bin:$PATH - conda update --yes conda - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm - sudo apt-get update env: - WITH_NETCDF="yes" - WITH_NETCDF="no" install: - if [[ $WITH_NETCDF == "yes" ]]; then sudo apt-get install libnetcdf-dev netcdf-bin libhdf5-serial-dev; fi - conda install --yes python=$TRAVIS_PYTHON_VERSION scipy matplotlib astropy - if [[ $WITH_NETCDF == "yes" ]]; then travis_retry pip install netCDF4; fi - python setup.py install script: - python tests/utests.py
language: python python: - "2.7" - "3.3" - "3.4" before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda/bin:$PATH - conda update --yes conda - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm - sudo apt-get update env: - WITH_NETCDF="yes" - WITH_NETCDF="no" install: - if [[ $WITH_NETCDF == "yes" ]]; then sudo apt-get install libnetcdf-dev netcdf-bin libhdf5-serial-dev; fi - conda install --yes python=$TRAVIS_PYTHON_VERSION scipy matplotlib astropy - if [[ $WITH_NETCDF == "yes" ]]; then travis_retry pip install cython python-dateutil netCDF4; fi - python setup.py install script: - python tests/utests.py
Add cython and dateutil among dependencies of NetCDF4
Add cython and dateutil among dependencies of NetCDF4
YAML
bsd-3-clause
matteobachetti/MaLTPyNT
c6a7920e884ec96c2d803d136878ac2f92ebf83f
.coveralls.yml
.coveralls.yml
service_name: travis-ci repo_token: Hr7j4omnfY0n6awXlcKesg42djsYmmFBj
repo_token: Hr7j4omnfY0n6awXlcKesg42djsYmmFBj
Revert "add service name for coverall"
Revert "add service name for coverall" This reverts commit 641d1121d07aa0ea1e9cf171a68f5a811644c041.
YAML
mit
marcusg/foreign_key_validation
76ebd633b9308ecdf060c89a7f9b6efbc60b4550
.travis.yml
.travis.yml
language: ruby rvm: - "2.3" - "2.4" - "2.5" branches: only: - "master" env: global: - LC_ALL=en_US.UTF_8 LANG=en_US.UTF_8 jobs: include: - script: bundle exec rake rubocop env: JOB=rubocop rvm: "2.4" matrix: fast_finish: true include: - rvm: ruby-head - rvm: jruby-9.1.9.0 env: DISABLE_NOKOGIRI=1 allow_failures: - rvm: ruby-head - rvm: jruby-9.1.9.0 env: DISABLE_NOKOGIRI=1 script: - bundle exec rake test cache: bundler sudo: false git: depth: 10
language: ruby rvm: - "2.3" - "2.4" - "2.5" branches: only: - "master" env: global: - LC_ALL=en_US.UTF_8 LANG=en_US.UTF_8 jobs: include: - script: bundle exec rake rubocop env: JOB=rubocop rvm: "2.4" matrix: fast_finish: true include: - rvm: ruby-head - rvm: jruby-9.1.9.0 env: DISABLE_NOKOGIRI=1 allow_failures: - rvm: ruby-head - rvm: jruby-9.1.9.0 env: DISABLE_NOKOGIRI=1 before_install: - gem update --system - gem update bundler script: - bundle exec rake test cache: bundler sudo: false git: depth: 10
Upgrade Rubygems and Bundler before installing
Upgrade Rubygems and Bundler before installing
YAML
mit
nanoc/nanoc
18e998e1c68637ef9735bfc5e785b08b365882fd
.travis.yml
.travis.yml
matrix: include: - os: linux language: android sudo: false android: components: - build-tools-23.0.1 - android-23 - extra-google-m2repository - extra-android-m2repository env: TERM=dumb - os: osx language: objective-c osx_image: xcode7.3 install: script/install.sh script: script/ci.sh
matrix: include: - os: linux language: android sudo: false android: components: - build-tools-23.0.1 - android-23 - extra-google-m2repository - extra-android-m2repository env: TERM=dumb - os: osx language: objective-c osx_image: xcode7.3 install: scripts/install.sh script: scripts/ci.sh
Fix typo in script path
Fix typo in script path
YAML
mit
Zip753/react-native-lock,Zip753/react-native-lock,auth0/react-native-lock-ios,auth0/react-native-lock-ios,auth0/react-native-lock,Zip753/react-native-lock,auth0/react-native-lock,auth0/react-native-lock,Zip753/react-native-lock,auth0/react-native-lock,Zip753/react-native-lock,auth0/react-native-lock
0652211ced47a9505fe2a311dc037cfd107803bc
metadata/com.guillaumepayet.remotenumpad.yml
metadata/com.guillaumepayet.remotenumpad.yml
Categories: - System License: GPL-3.0-only AuthorName: Guillaume Payet AuthorEmail: [email protected] SourceCode: https://github.com/theolizard/remote-numpad IssueTracker: https://github.com/theolizard/remote-numpad/issues AutoName: Remote Numpad RepoType: git Repo: https://github.com/theolizard/remote-numpad Builds: - versionName: 1.6.2 versionCode: 25 commit: 1.6.2 subdir: app gradle: - yes - versionName: 1.6.3 versionCode: 26 commit: 1.6.3 subdir: app gradle: - yes - versionName: 1.6.4 versionCode: 27 commit: 1.6.4 subdir: app gradle: - yes - versionName: 1.7.0 versionCode: 28 commit: 1.7.0 subdir: app gradle: - yes - versionName: 1.7.1 versionCode: 29 commit: 1.7.1 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.7.1 CurrentVersionCode: 29
Categories: - System License: GPL-3.0-only AuthorName: Guillaume Payet AuthorEmail: [email protected] SourceCode: https://github.com/theolizard/remote-numpad IssueTracker: https://github.com/theolizard/remote-numpad/issues AutoName: Remote Numpad RepoType: git Repo: https://github.com/theolizard/remote-numpad Builds: - versionName: 1.6.2 versionCode: 25 commit: 1.6.2 subdir: app gradle: - yes - versionName: 1.6.3 versionCode: 26 commit: 1.6.3 subdir: app gradle: - yes - versionName: 1.6.4 versionCode: 27 commit: 1.6.4 subdir: app gradle: - yes - versionName: 1.7.0 versionCode: 28 commit: 1.7.0 subdir: app gradle: - yes - versionName: 1.7.1 versionCode: 29 commit: 1.7.1 subdir: app gradle: - yes - versionName: 1.8.0 versionCode: 30 commit: c2ecd961de4ee6ec72d46e75b6faa6a389d45230 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.8.0 CurrentVersionCode: 30
Update Remote Numpad to 1.8.0 (30)
Update Remote Numpad to 1.8.0 (30)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
5c191a1ff637f72a63ab77d808a37f134e000138
metadata/io.github.z3r0c00l_2k.aquadroid.yml
metadata/io.github.z3r0c00l_2k.aquadroid.yml
Categories: - Sports & Health License: GPL-3.0-only SourceCode: https://github.com/z3r0c00l-2k/AquaDroid IssueTracker: https://github.com/z3r0c00l-2k/AquaDroid/issues Changelog: https://github.com/z3r0c00l-2k/AquaDroid/releases AutoName: AquaDroid RepoType: git Repo: https://github.com/z3r0c00l-2k/AquaDroid Builds: - versionName: 1.1.1 versionCode: 3 commit: v1.1.1 subdir: app gradle: - yes - versionName: '1.2' versionCode: 4 commit: v1.2 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.2' CurrentVersionCode: 4
Categories: - Sports & Health License: GPL-3.0-only SourceCode: https://github.com/z3r0c00l-2k/AquaDroid IssueTracker: https://github.com/z3r0c00l-2k/AquaDroid/issues Changelog: https://github.com/z3r0c00l-2k/AquaDroid/releases AutoName: AquaDroid RepoType: git Repo: https://github.com/z3r0c00l-2k/AquaDroid Builds: - versionName: 1.1.1 versionCode: 3 commit: v1.1.1 subdir: app gradle: - yes - versionName: '1.2' versionCode: 4 commit: v1.2 subdir: app gradle: - yes - versionName: '1.3' versionCode: 5 commit: v1.3 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.3' CurrentVersionCode: 5
Update AquaDroid to 1.3 (5)
Update AquaDroid to 1.3 (5)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
4cd73069d71312ce4528532fd7574c3e06d5a9a3
.travis.yml
.travis.yml
branches: only: - master language: node_js os: - linux sudo: false services: - docker node_js: - "12" - "10" - "8" cache: directories: - node_modules matrix: fast_finish: true git: depth: 1 install: - npm install - npm install coveralls --save-dev before_script: - npm run build; script: - npm run nyc-ci after_success: - npm run coverage - npm pack - 'if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_NODE_VERSION" == "8" ]; then docker build -t rcjsuen/docker-langserver . || travis_terminate 1; docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" || travis_terminate 1; docker push rcjsuen/docker-langserver || travis_terminate 1; fi'
branches: only: - master language: node_js os: - linux sudo: false services: - docker node_js: - "12" - "10" cache: directories: - node_modules matrix: fast_finish: true git: depth: 1 install: - npm install - npm install coveralls --save-dev before_script: - npm run build; script: - npm run nyc-ci after_success: - npm run coverage - npm pack - 'if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_NODE_VERSION" == "8" ]; then docker build -t rcjsuen/docker-langserver . || travis_terminate 1; docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" || travis_terminate 1; docker push rcjsuen/docker-langserver || travis_terminate 1; fi'
Drop support of Node.js 8.x
Drop support of Node.js 8.x Signed-off-by: Remy Suen <[email protected]>
YAML
mit
rcjsuen/dockerfile-language-server-nodejs,rcjsuen/dockerfile-language-server-nodejs
af5a2f35cbbec478d6f7b34d0d672c55288f5e5e
src/fixtures/users.yaml
src/fixtures/users.yaml
- model: auth.User pk: 1 fields: first_name: admin last_name: admin username: admin email: [email protected] password: sha1$aaac6$37fae882af0912ced5577ed0f512b4014b9c8551 is_active: True is_superuser: True is_staff: True
- model: auth.User pk: 1 fields: first_name: admin last_name: admin username: admin email: [email protected] password: pbkdf2_sha256$30000$bbtXGlvNvGRV$KW3KAt9mRMw7vOAYI+GEoiu+aO8CMRA8vAWyKODxuxg= is_active: True is_superuser: True is_staff: True
Update default password (still "password")
Update default password (still "password")
YAML
mit
jscott1989/happening,jscott1989/happening,happeninghq/happening,jscott1989/happening,happeninghq/happening,happeninghq/happening,jscott1989/happening,happeninghq/happening
69f697fda9e1ca335a875aadaa1012deaadf6a94
docker-compose.yml
docker-compose.yml
version: '2' services: dhtbay: build: . image: dhtbay container_name: dhtbay links: - aria2 - mongo - redis ports: - "6881:6881/udp" aria2: image: flyersweb/aria2 container_name: dhtaria2 restart: always volumes: - ./torrent:/dataComplete - ./config/aria2:/etc/aria2 ports: - "6900:6800" mongo: image: mongo:3.0 container_name: mongo restart: always volumes: - ./data:/data/db redis: image: redis:3 container_name: redis restart: always
version: '2' services: dhtbay: build: . image: dhtbay container_name: dhtbay restart: always links: - aria2 - mongo - redis ports: - "6881:6881/udp" volumes: - ./torrent:/var/www/torrent aria2: image: flyersweb/aria2 container_name: dhtaria2 restart: always volumes: - ./torrent:/dataComplete - ./config/aria2:/etc/aria2 ports: - "6900:6800" mongo: image: mongo:3.0 container_name: mongo restart: always volumes: - ./data:/data/db redis: image: redis:3 container_name: redis restart: always
Add torrent folder as volume
Add torrent folder as volume
YAML
unlicense
FlyersWeb/dhtbay,FlyersWeb/dht-bay,FlyersWeb/dhtbay
ba848918fe4200458af4712ae2113fb5bfd1b3b6
.travis.yml
.travis.yml
language: python sudo: false script: ./scripts/travis.sh os: - linux python: - 3.5 - 3.6 matrix: include: - python: 3.7 dist: xenial sudo: true - python: 3.8 dist: xenial sudo: true - python: 3.9 dist: xenial sudo: true - python: 3.10 dist: focal sudo: true services: - memcached - redis-server
language: python sudo: false script: ./scripts/travis.sh os: - linux python: - "3.5" - "3.6" matrix: include: - python: "3.7" dist: "xenial" sudo: true - python: "3.8" dist: "xenial" sudo: true - python: "3.9" dist: "xenial" sudo: true - python: "3.10" dist: "focal" sudo: true services: - memcached - redis-server
Put 3.10 in Quotes for Travis
Put 3.10 in Quotes for Travis
YAML
bsd-3-clause
datafolklabs/cement,datafolklabs/cement,datafolklabs/cement
8ca5c21920aa767e41032d8bb780ada85990d1bd
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 env: - DB=postgresql script: - bundle exec rake spec before_script: - bundle exec rake db:create RAILS_ENV=test - bundle exec rake db:migrate - bundle exec rake db:test:prepare bundler_args: --binstubs=./bundler_stubs # uncomment this line if your project needs to run something other than `rake`: # script: bundle exec rspec spec
language: ruby cache: bundler rvm: - "2.0.0" env: - DB=postgresql script: - bundle exec rake spec before_script: - bundle exec rake db:create RAILS_ENV=test - bundle exec rake db:migrate - bundle exec rake db:test:prepare bundler_args: --binstubs=./bundler_stubs notifications: email: false # uncomment this line if your project needs to run something other than `rake`: # script: bundle exec rspec spec
Add few more config items
Add few more config items
YAML
mit
mccallumjack/sinder,mccallumjack/sinder,mccallumjack/sinder
399b06297f9036de5177b46a542e18c758db0334
.travis.yml
.travis.yml
language: python python: - "2.6" # command to install dependencies install: pip install -r rnacentral/requirements.txt # command to run tests script: python rnacentral/apiv1/tests.py --base_url=http://test.rnacentral.org # whitelist branches: only: - django
language: python python: - "2.6" # command to install dependencies install: pip install -r rnacentral/requirements.txt --allow-all-external # command to run tests script: python rnacentral/apiv1/tests.py --base_url=http://test.rnacentral.org # whitelist branches: only: - django
Allow external pip downloads in Travis
Allow external pip downloads in Travis
YAML
apache-2.0
RNAcentral/rnacentral-webcode,RNAcentral/rnacentral-webcode,RNAcentral/rnacentral-webcode,RNAcentral/rnacentral-webcode
40055eb8b8d0c56d5888dc485fd94e18e81732dc
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 2.0.0 - 2.1 - 2.2 branches: only: - master bundler_args: --jobs 7 --retry 3 gemfile: gemfiles/chefspec.gemfile env: - CHEF_VERSION=master - CHEF_VERSION=12.5.1 - CHEF_VERSION=12.4.3 - CHEF_VERSION=12.4.0 - CHEF_VERSION=12.3.0 - CHEF_VERSION=12.2.1 - CHEF_VERSION=12.1.2 - CHEF_VERSION=12.1.1 - CHEF_VERSION=12.1.0 - CHEF_VERSION=12.0.3 - CHEF_VERSION=11.18.6 - CHEF_VERSION=11.18.0 - CHEF_VERSION=11.16.4 - CHEF_VERSION=11.16.2 - CHEF_VERSION=11.16.0 - CHEF_VERSION=11.14.6 - CHEF_VERSION=11.14.2 matrix: fast_finish: true allow_failures: - env: CHEF_VERSION=master
language: ruby cache: bundler sudo: false rvm: - 2.0.0 - 2.1 - 2.2 branches: only: - master bundler_args: --jobs 7 --retry 3 gemfile: gemfiles/chefspec.gemfile env: - CHEF_VERSION=master - CHEF_VERSION=12.6.0 - CHEF_VERSION=12.5.1 - CHEF_VERSION=12.4.3 - CHEF_VERSION=12.4.0 - CHEF_VERSION=12.3.0 - CHEF_VERSION=12.2.1 - CHEF_VERSION=12.1.2 - CHEF_VERSION=12.1.1 - CHEF_VERSION=12.1.0 - CHEF_VERSION=12.0.3 - CHEF_VERSION=11.18.6 - CHEF_VERSION=11.18.0 - CHEF_VERSION=11.16.4 - CHEF_VERSION=11.16.2 - CHEF_VERSION=11.16.0 - CHEF_VERSION=11.14.6 - CHEF_VERSION=11.14.2 matrix: fast_finish: true allow_failures: - env: CHEF_VERSION=master
Add Chef 12.6.0 to the test matrix
Add Chef 12.6.0 to the test matrix
YAML
mit
chefspec/chefspec,mcoolive/chefspec,lamont-granquist/chefspec,mcoolive/chefspec,chefspec/chefspec,lamont-granquist/chefspec,sethvargo/chefspec,gsavage/chefspec,gsavage/chefspec,sethvargo/chefspec
acca7b5d8a857d42ff42f0f790be26a832d92c0e
.gitlab-ci.yml
.gitlab-ci.yml
before_script: - which angr-test && angr-test sync hard ### local angr: script: "angr-test angr" tags: [angr] lint: script: "angr-test lint" tags: [angr] ### first level fidget: script: "angr-test fidget" tags: [angr] angrop: script: "angr-test angrop" tags: [angr] topsecret: script: "angr-test top-secret" tags: [angr] driller: script: "angr-test driller" tags: [angr] tracer: script: "angr-test tracer" tags: [angr] rex: script: "angr-test rex" tags: [angr] pwnrex: script: "angr-test pwnrex" tags: [angr] patcherex: script: "angr-test patcherex" tags: [angr] docs: script: "angr-test docs" tags: [angr] ### Deploy stage build_images: only: ["master"] stage: deploy script: - angr-build angr - angr-build angr-ci - cgc-build worker tags: ["docker-builder"]
before_script: - which angr-test && angr-test sync hard ### local angr: script: "angr-test angr" tags: [angr] lint: script: "angr-test lint" tags: [angr] ### first level fidget: script: "angr-test fidget" tags: [angr] angrop: script: "angr-test angrop" tags: [angr] topsecret: script: "angr-test top-secret" tags: [angr] driller: script: "angr-test driller" tags: [angr] tracer: script: "angr-test tracer" tags: [angr] rex: script: "angr-test rex" tags: [angr] colorguard: script: "angr-test colorguard" tags: [angr] pwnrex: script: "angr-test pwnrex" tags: [angr] patcherex: script: "angr-test patcherex" tags: [angr] docs: script: "angr-test docs" tags: [angr] ### Deploy stage build_images: only: ["master"] stage: deploy script: - angr-build angr - angr-build angr-ci - cgc-build worker tags: ["docker-builder"]
Test colorguard on angr pushes
Test colorguard on angr pushes
YAML
bsd-2-clause
schieb/angr,f-prettyland/angr,f-prettyland/angr,iamahuman/angr,angr/angr,axt/angr,tyb0807/angr,axt/angr,tyb0807/angr,f-prettyland/angr,chubbymaggie/angr,iamahuman/angr,axt/angr,tyb0807/angr,iamahuman/angr,schieb/angr,chubbymaggie/angr,chubbymaggie/angr,schieb/angr,angr/angr,angr/angr
9c1649930a3b1bb87422b7ca8aae93409b7b4e4a
.github/workflows/php.yml
.github/workflows/php.yml
name: CI test suite on: pull_request: paths: - 'composer.*' - phpcs.xml - phpstan.neon - '**.php' push: paths: - 'composer.*' - phpcs.xml - phpstan.neon - '**.php' jobs: build: strategy: matrix: php-versions: ['8.0', '7.4', '7.3', '7.2'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up PHP versions uses: shivammathur/setup-php@v1 with: php-version: ${{ matrix.php-versions }} extension-csv: mbstring - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest --classmap-authoritative - name: Run CI test suite run: composer run-script ci
name: CI test suite on: pull_request: paths: - 'composer.*' - phpcs.xml - phpstan.neon - '**.php' push: paths: - 'composer.*' - phpcs.xml - phpstan.neon - '**.php' jobs: build: strategy: matrix: php-versions: ['7.4', '7.3', '7.2'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up PHP versions uses: shivammathur/setup-php@v1 with: php-version: ${{ matrix.php-versions }} extension-csv: mbstring - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest --classmap-authoritative - name: Run CI test suite run: composer run-script ci
Revert addition of PHP 8.0 to CI matrix
Revert addition of PHP 8.0 to CI matrix Hold on PHP 8 support for now.
YAML
unlicense
chesio/bc-security,chesio/bc-security,chesio/bc-security
54f4e83b443cc9bd997b119bb03ce87fd5e23462
.gitlab-ci.yml
.gitlab-ci.yml
stages: - build variables: REGISTRY: hub.alterway.fr .build_push_template: &build_push_definition stage: build only: - preprod - master script: - docker build --pull -t $REGISTRY/php:${CI_JOB_NAME:1} ${CI_JOB_NAME:1}/ >> /dev/null - docker push $REGISTRY/php:${CI_JOB_NAME:1} > /dev/null - docker tag $REGISTRY/php:${CI_JOB_NAME:1} $NAMESPACE/php:${CI_JOB_NAME:1} > /dev/null - docker push $NAMESPACE/php:${CI_JOB_NAME:1} > /dev/null - | if [[ "$CI_BUILD_REF_NAME" = "master" ]]; then docker tag $REGISTRY/php:${CI_JOB_NAME:1} $CI_REGISTRY_IMAGE:${CI_JOB_NAME:1} > /dev/null docker push $CI_REGISTRY_IMAGE:${CI_JOB_NAME:1} > /dev/null fi before_script: - if [[ "$CI_BUILD_REF_NAME" != master ]]; then REGISTRY="$REGISTRY/$CI_BUILD_REF_NAME"; fi - if [[ "$CI_BUILD_REF_NAME" = "master" ]]; then docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY; fi - NAMESPACE=$REGISTRY/library v5.7: <<: *build_push_definition v5.6: <<: *build_push_definition v5.5: <<: *build_push_definition
stages: - build .build_push_template: &build_push_definition stage: build only: - preprod - master script: - docker build --pull -t $REGISTRY/php:${CI_JOB_NAME:1} ${CI_JOB_NAME:1}/ >> /dev/null - docker push $REGISTRY/php:${CI_JOB_NAME:1} > /dev/null - docker tag $REGISTRY/php:${CI_JOB_NAME:1} $NAMESPACE/php:${CI_JOB_NAME:1} > /dev/null - docker push $NAMESPACE/php:${CI_JOB_NAME:1} > /dev/null - | if [[ "$CI_BUILD_REF_NAME" = "master" ]]; then docker tag $REGISTRY/php:${CI_JOB_NAME:1} $CI_REGISTRY_IMAGE:${CI_JOB_NAME:1} > /dev/null docker push $CI_REGISTRY_IMAGE:${CI_JOB_NAME:1} > /dev/null fi before_script: - if [[ "$CI_BUILD_REF_NAME" != master ]]; then REGISTRY="$REGISTRY/$CI_BUILD_REF_NAME"; fi - if [[ "$CI_BUILD_REF_NAME" = "master" ]]; then docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY; fi - NAMESPACE=$REGISTRY/library v5.7: <<: *build_push_definition v5.6: <<: *build_push_definition v5.5: <<: *build_push_definition
Move registry variable to CI/CD variables to hide value when sync with github
Move registry variable to CI/CD variables to hide value when sync with github
YAML
mit
alterway/docker-mysql
69f752b2001c31a2b162104963dc49d0117a28eb
.github/workflows/run.yml
.github/workflows/run.yml
name: .NET Core on: push jobs: Run: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.300 - name: Build benchmarks run: dotnet publish -c Release - name: Run benchmarks run: dotnet BenchmarkMockNet.dll working-directory: bin/Release/netcoreapp3.1/publish - name: Upload results uses: actions/upload-artifact@v2 with: name: Results path: bin/Release/netcoreapp3.1/publish/BenchmarkDotNet.Artifacts/results/*.md
name: .NET Core on: push jobs: Run: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: dotnet-version: 5.0.x - name: Build benchmarks run: dotnet publish -c Release - name: Run benchmarks run: dotnet BenchmarkMockNet.dll working-directory: bin/Release/net5.0/publish - name: Upload results uses: actions/upload-artifact@v2 with: name: Results path: bin/Release/net5.0/publish/BenchmarkDotNet.Artifacts/results/*.md
Update GitHub Actions workflow to use .NET 5
Update GitHub Actions workflow to use .NET 5
YAML
mit
stevedesmond-ca/BenchmarkMockNet
52a784a9b548aa8f133fa2e08efe25088e042de5
.travis.yml
.travis.yml
dist: trusty sudo: false language: php php: - 7.1 - 7.2 - nightly cache: directories: - $HOME/.composer/cache before_install: - mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{,.disabled} || echo "xdebug not available" - composer self-update install: travis_retry composer update --prefer-dist script: - vendor/bin/phpcs - vendor/bin/phpcs tests/input --report=summary --report-file=phpcs.log; diff tests/expected_report.txt phpcs.log jobs: allow_failures: - php: nightly include: - stage: Apply fixes before_script: - cp -R tests/input/ tests/input2/ script: vendor/bin/phpcbf tests/input2; diff tests/input2 tests/fixed
dist: trusty sudo: false language: php php: - 7.1 - 7.2 - nightly cache: directories: - $HOME/.composer/cache before_install: - mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{,.disabled} || echo "xdebug not available" - composer self-update install: travis_retry composer update --prefer-dist script: - vendor/bin/phpcs - vendor/bin/phpcs $(find tests/input/* | sort) --report=summary --report-file=phpcs.log; diff tests/expected_report.txt phpcs.log jobs: allow_failures: - php: nightly include: - stage: Apply fixes before_script: - cp -R tests/input/ tests/input2/ script: vendor/bin/phpcbf tests/input2; diff tests/input2 tests/fixed
Sort checked files to avoid random order
CI: Sort checked files to avoid random order
YAML
mit
doctrine/coding-standard,doctrine/coding-standard
ceec70408851c2fe11924fee216005aa684b6077
.travis.yml
.travis.yml
addons: apt: packages: - cmake sources: - kalakris-cmake language: c++ before_script: - mkdir build - cd build - cmake .. compiler: - clang - gcc
addons: apt: packages: - cmake - cmake-data sources: - george-edison55-precise-backports language: c++ before_script: - mkdir build - cd build - cmake .. compiler: - clang - gcc
Change to george edisons cmake thingy
Change to george edisons cmake thingy
YAML
mit
GustavHager/pig-latinizer,GustavHager/pig-latinizer
9ee91f914194bd5b541d0e29852ea73d4b41649e
.gitlab-ci.yml
.gitlab-ci.yml
image: ubuntu:vivid test-stable: script: - apt-get install -y curl file build-essential - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- -y --disable-sudo - grep -v "maud_macros" Cargo.toml > Cargo.toml.new - mv Cargo.toml.new Cargo.toml - cargo build --release --verbose - cargo test --verbose - cargo package --verbose artifacts: paths: - target/doc - target/package/maud-pulldown-cmark-*.crate test-beta: script: - apt-get install -y curl file build-essential - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- -y --disable-sudo --channel=beta - cargo build --release --verbose - cargo test --verbose test-nightly: allow_failure: true script: - apt-get install -y curl file build-essential - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- -y --disable-sudo --channel=nightly - cargo build --release --verbose --features nightly - cargo test --verbose
image: ubuntu:vivid stages: - test - publish test-stable: script: - apt-get install -y curl file build-essential - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- -y --disable-sudo - cargo build --release --verbose - cargo test --verbose test-beta: script: - apt-get install -y curl file build-essential - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- -y --disable-sudo --channel=beta - cargo build --release --verbose - cargo test --verbose test-nightly: allow_failure: true script: - apt-get install -y curl file build-essential - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- -y --disable-sudo --channel=nightly - cargo build --release --verbose --features nightly - cargo test --verbose publish: stage: publish only: - tags script: - apt-get install -y curl file build-essential - curl -sSf https://static.rust-lang.org/rustup.sh | sh -s -- -y --disable-sudo - grep -v "maud_macros" Cargo.toml > Cargo.toml.new - mv Cargo.toml.new Cargo.toml - cargo build --release --verbose - cargo test --verbose - cargo package --verbose - cargo doc --verbose - cargo publish --token "$CRATES_IO_TOKEN" artifacts: paths: - target/doc - target/package/*.crate
Add in publish job for tags
Add in publish job for tags
YAML
apache-2.0
Nemo157/maud-pulldown-cmark,Nemo157/maud-pulldown-cmark
f4cbd97e74c71fccc319d1d1cf766f1d76231875
metadata/com.bald.uriah.baldphone.yml
metadata/com.bald.uriah.baldphone.yml
Categories: - System License: Apache-2.0 AuthorName: Uriah Shaul Mandel AuthorEmail: [email protected] WebSite: https://sites.google.com/view/baldphone SourceCode: https://github.com/UriahShaulMandel/BaldPhone IssueTracker: https://github.com/UriahShaulMandel/BaldPhone/issues Changelog: https://github.com/UriahShaulMandel/BaldPhone/releases AutoName: BaldPhone RepoType: git Repo: https://github.com/UriahShaulMandel/BaldPhone Builds: - versionName: 11.3.4 versionCode: 80 commit: '80' subdir: app gradle: - fDroid AutoUpdateMode: Version %c UpdateCheckMode: Tags CurrentVersion: 11.3.4 CurrentVersionCode: 80
Categories: - System License: Apache-2.0 AuthorName: Uriah Shaul Mandel AuthorEmail: [email protected] WebSite: https://sites.google.com/view/baldphone SourceCode: https://github.com/UriahShaulMandel/BaldPhone IssueTracker: https://github.com/UriahShaulMandel/BaldPhone/issues Changelog: https://github.com/UriahShaulMandel/BaldPhone/releases AutoName: BaldPhone RepoType: git Repo: https://github.com/UriahShaulMandel/BaldPhone Builds: - versionName: 11.3.4 versionCode: 80 commit: '80' subdir: app gradle: - fDroid - versionName: 11.4.0 versionCode: 81 commit: '81' subdir: app gradle: - fDroid AutoUpdateMode: Version %c UpdateCheckMode: Tags CurrentVersion: 11.4.0 CurrentVersionCode: 81
Update BaldPhone to 11.4.0 (81)
Update BaldPhone to 11.4.0 (81)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
73733fa6e4e5d84aa4b3c84f199ec9e56f0cc4ac
config/locales/nb.yml
config/locales/nb.yml
nb: activerecord: models: gamification/goal: one: Mål other: Mål gamification/reward: one: Belønning other: Belønninger
nb: activerecord: models: gamification/goal: one: Mål other: Mål gamification/reward: one: Belønning other: Belønninger gamification/medal: one: Medalje other: Medaljer
Add norwegian translation for medal
Add norwegian translation for medal
YAML
mit
hyperoslo/gamification,hyperoslo/gamification,hyperoslo/gamification
5aebcc62babc9ec8279abc38391d5a51c4f61159
.travis.yml
.travis.yml
# brian's standard Travis CI config for Perl 5 modules # https://github.com/briandfoy/brians_perl_modules_travis_config # This file is licensed under the Artistic License 2.0 sudo: false language: perl perl: - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" - "5.24" - "5.26" 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 - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
# brian's standard Travis CI config for Perl 5 modules # https://github.com/briandfoy/brians_perl_modules_travis_config # This file is licensed under the Artistic License 2.0 sudo: false language: perl perl: - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" - "5.24" - "5.26" - "5.28" - "5.30" 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 - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
Update Travis up to v5.30
Update Travis up to v5.30
YAML
artistic-2.0
briandfoy/Module-Starter-AddModule,briandfoy/Module-Starter-AddModule
1cb091055ea6df3d432ba81c10a3e1a14db2b6af
.gitlab-ci.yml
.gitlab-ci.yml
image: registry.gitlab.com/notch8/scripts/builder:latest services: - docker:dind stages: - build # - test # - review # - staging # - production variables: DOCKER_DRIVER: overlay REGISTRY_HOST: registry.gitlab.com REGISTRY_URI: /notch8/rutgers-vdc SITE_URI_BASE: hykuup.com before_script: - export TAG=${CI_COMMIT_SHA:0:8} - export BRANCH=${CI_COMMIT_REF_NAME} - export REGISTRY_HOST=${CI_REGISTRY} - export REGISTRY_URI="/${CI_PROJECT_PATH}" - touch .env.development - touch .env.production base: stage: build script: - docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" $CI_REGISTRY - sc build -s base - sc push -s base when: manual tags: - docker build: stage: build script: - docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" $CI_REGISTRY - sc build - sc push - docker tag $CI_REGISTRY_IMAGE:$TAG $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME tags: - docker
image: registry.gitlab.com/notch8/scripts/builder:latest services: - docker:dind stages: - build # - test # - review # - staging # - production variables: DOCKER_DRIVER: overlay REGISTRY_HOST: registry.gitlab.com REGISTRY_URI: /notch8/rutgers-vdc SITE_URI_BASE: hykuup.com before_script: - export TAG=${CI_COMMIT_SHA:0:8} - export BRANCH=${CI_COMMIT_REF_NAME} - export REGISTRY_HOST=${CI_REGISTRY} - export REGISTRY_URI="/${CI_PROJECT_PATH}" build: stage: build script: - docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" $CI_REGISTRY - sc build - sc push - docker tag $CI_REGISTRY_IMAGE $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA tags: - docker
Fix CI pipeline `build` stage
Fix CI pipeline `build` stage This frontloads part of !9 to get the `build` stage passing. The rest of !9 is blocked on a good CI configuration for Solr, but in the meanwhile we can have passing builds.
YAML
apache-2.0
dibbs-vdc/ccql,dibbs-vdc/ccql,dibbs-vdc/ccql,dibbs-vdc/ccql
2434af3010a5bb3534988b58c22697c9acc63bd2
packages/ho/hopenssl.yaml
packages/ho/hopenssl.yaml
homepage: http://github.com/peti/hopenssl changelog-type: '' hash: 9ac24919e47b71434ed27d5a7233332f9c9bc6a804a4c6a7dd6a316eba3e38bf test-bench-deps: {} maintainer: Peter Simons <[email protected]> synopsis: FFI bindings to OpenSSL's EVP digest interface changelog: '' basic-deps: bytestring: -any base: ! '>=3 && <5' mtl: -any all-versions: - '1.0' - '1.1' - '1.2' - '1.3' - '1.4' - '1.6' - '1.6.1' - '1.6.2' - '1.7' author: ! 'Peter Simons <[email protected]>, Jesper Louis Andersen <[email protected]>, Markus Rothe <[email protected]>' latest: '1.7' description-type: haddock description: ! 'Foreign-function bindings to the OpenSSL library <http://www.openssl.org/>. Currently provides access to the messages digests MD5, DSS, DSS1, RIPEMD160, and several variants of SHA through the EVP digest interface.' license-name: BSD3
homepage: http://github.com/peti/hopenssl changelog-type: '' hash: ca299987ffd5e0e481ec9d996bee76bce98ee7b5f4cd7cd7039fbc509625f34c test-bench-deps: base: ! '>=3 && <5' doctest: -any HUnit: -any hopenssl: -any maintainer: Peter Simons <[email protected]> synopsis: FFI bindings to OpenSSL's EVP digest interface changelog: '' basic-deps: bytestring: -any base: ! '>=3 && <5' all-versions: - '1.0' - '1.1' - '1.2' - '1.3' - '1.4' - '1.6' - '1.6.1' - '1.6.2' - '1.7' - '2' author: Peter Simons, Markus Rothe latest: '2' description-type: haddock description: ! 'Foreign-function bindings to the <http://www.openssl.org/ OpenSSL library>. Currently provides access to the messages digests MD5, DSS, DSS1, RIPEMD160, and several variants of SHA through the EVP digest interface.' license-name: BSD3
Update from Hackage at 2017-05-15T23:02:37Z
Update from Hackage at 2017-05-15T23:02:37Z
YAML
mit
commercialhaskell/all-cabal-metadata
0858bc753edda3cf0a464fbda7629776640add04
packages/li/libroman.yaml
packages/li/libroman.yaml
homepage: https://ahakki.xyz changelog-type: '' hash: 0baf6a9cc6bedee6d90f6041a8643efbd3c32c526f372fbb4bd58468f7976318 test-bench-deps: base: -any hspec: -any word8: -any libroman: -any QuickCheck: -any maintainer: [email protected] synopsis: arabic to roman numeral conversions changelog: '' basic-deps: base: ! '>=4.7 && <5' all-versions: - '1.0.0' - '1.0.1' author: Alexander Hakki latest: '1.0.1' description-type: haddock description: Please see README license-name: BSD3
homepage: https://ahakki.xyz changelog-type: '' hash: c7113dfabfb0f60f89f191340fa685b044ef9e5b0750173ab3af7edd3646b362 test-bench-deps: base: -any hspec: -any libroman: -any QuickCheck: -any maintainer: [email protected] synopsis: Roman Numerals for YOU changelog: '' basic-deps: split: -any base: ! '>=4.7 && <5' all-versions: - '1.0.0' - '1.0.1' - '2.0.0' - '2.0.1' author: Alexander Hakki latest: '2.0.1' description-type: haddock description: Use Roman Numerals as a Numeric Datatype (sort of) license-name: BSD3
Update from Hackage at 2016-06-01T16:43:28+0000
Update from Hackage at 2016-06-01T16:43:28+0000
YAML
mit
commercialhaskell/all-cabal-metadata
66ea85dafe0d64075134dc1f4ec48b68a1552ea6
manifests/lite-vars-file.yml
manifests/lite-vars-file.yml
--- deployment-name: cf-rabbitmq cf-rabbitmq-release-name: cf-rabbitmq # Some of our current tests (based on Prof) do not work with stemcell versions # starting from 3363.12 because they randomise vcap passwords and our tests use # the default ones stemcell-version: 3312.12 haproxy-instances: 2 rabbitmq-management-username: admin rabbitmq-management-password: admin rabbitmq-broker-username: broker rabbitmq-broker-password: broker haproxy-stats-username: haproxy haproxy-stats-password: haproxy syslog-host: syslog-port:
--- deployment-name: cf-rabbitmq cf-rabbitmq-release-name: cf-rabbitmq # Some of our current tests (based on Prof) do not work with stemcell versions # starting from 3363.12 because they randomise vcap passwords and our tests use # the default ones stemcell-version: 3262.2 haproxy-instances: 2 rabbitmq-management-username: admin rabbitmq-management-password: admin rabbitmq-broker-username: broker rabbitmq-broker-password: broker haproxy-stats-username: haproxy haproxy-stats-password: haproxy syslog-host: syslog-port:
Downgrade stemcell used in bosh-lite tests
Downgrade stemcell used in bosh-lite tests Signed-off-by: Vlad Stoian <[email protected]>
YAML
apache-2.0
pivotal-cf/cf-rabbitmq-release,pivotal-cf/cf-rabbitmq-release,pivotal-cf/cf-rabbitmq-release,pivotal-cf/cf-rabbitmq-release
6a740c02a0b9738f345a531d8a310703dfc8daba
.travis.yml
.travis.yml
language: go go: - "1.5" - "1.6" env: global: - ZOOKEEPER_PEERS=localhost:2181 - DEBUG=true install: - make dependencies before_script: - make confluent/kafka/start - make test/create_kafka_topics script: - make test - make vet - make errcheck - make fmt matrix: include: - go: tip allow_failures: - go: tip fast_finish: true sudo: false
language: go go: - 1.8 - 1.9 env: global: - ZOOKEEPER_PEERS=localhost:2181 - DEBUG=true install: - make dependencies before_script: - make confluent/kafka/start - make test/create_kafka_topics script: - make test - make vet - make errcheck - make fmt matrix: include: - go: tip allow_failures: - go: tip fast_finish: true sudo: false
Test with go 1.8 and 1.9
Test with go 1.8 and 1.9
YAML
mit
wvanbergen/kazoo-go
d3b013f1ff97259e8c0ccff1722c45c629fcbb76
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: mongodb: [4.4] ruby: [2.4, 2.5, 2.6] gemfile: - carrierwave-0.10 - carrierwave-0.11 - carrierwave-1.1 - carrierwave-1.2 - carrierwave-1.3 - carrierwave-2.0 - carrierwave-2.1 - mongoid-3 - mongoid-4 - mongoid-5 - mongoid-6 - mongoid-7 name: Ruby ${{ matrix.ruby }} with ${{ matrix.gemfile }} env: BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile steps: - name: Set up MongoDB ${{ matrix.mongodb }} uses: supercharge/[email protected] with: mongodb-version: ${{ matrix.mongodb }} - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests run: bundle exec rake
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: mongodb: [4.4] ruby: [2.4, 2.5, 2.6, 2.7] gemfile: - carrierwave-1.1 - carrierwave-1.2 - carrierwave-1.3 - carrierwave-2.0 - carrierwave-2.1 - mongoid-6 - mongoid-7 include: - { mongodb: "4.4", ruby: "2.6", gemfile: "carrierwave-0.10" } - { mongodb: "4.4", ruby: "2.6", gemfile: "carrierwave-0.11" } - { mongodb: "4.4", ruby: "2.6", gemfile: "mongoid-3" } - { mongodb: "4.4", ruby: "2.6", gemfile: "mongoid-4" } - { mongodb: "4.4", ruby: "2.6", gemfile: "mongoid-5" } name: Ruby ${{ matrix.ruby }} with ${{ matrix.gemfile }} env: BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile steps: - name: Set up MongoDB ${{ matrix.mongodb }} uses: supercharge/[email protected] with: mongodb-version: ${{ matrix.mongodb }} - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests run: bundle exec rake
Add ruby 2.7 to CI matrix
Add ruby 2.7 to CI matrix
YAML
mit
carrierwaveuploader/carrierwave-mongoid
9ae2dfa038b5b856785573454c9ad6eb0e91f364
docs/environment.yml
docs/environment.yml
name: _anypytools-docs channels: - conda-forge - defaults dependencies: - sphinx<4 - cloud_sptheme - nbsphinx - IPython - numpy - scipy - tqdm - h5py - pytest - myst - ipywidgets - anypytools #
name: _anypytools-docs channels: - conda-forge - defaults dependencies: - sphinx<4 - cloud_sptheme - nbsphinx - IPython - numpy - scipy - tqdm - h5py - pytest - myst - ipywidgets
Remove anypytools dependency in conda env
Remove anypytools dependency in conda env
YAML
mit
AnyBody-Research-Group/AnyPyTools
398b8403805dc67c0ae7739f404a41789b80d4ba
packages/ne/network-run.yaml
packages/ne/network-run.yaml
homepage: '' changelog-type: markdown hash: 3f059dc50ea4446f3facb1e9e405d2083fd9705d404ea0e3c84ea950cf4cbeda test-bench-deps: {} maintainer: [email protected] synopsis: Simple network runner library changelog: | # Revision history for network-run ## 0.0.0 * First version. basic-deps: base: ! '>=4 && <5' network: ! '>=3.1.0' all-versions: - 0.0.0 - 0.0.1 - 0.1.0 - 0.2.0 author: Kazu Yamamoto latest: 0.2.0 description-type: haddock description: Simple functions to run network clients and servers. license-name: BSD-3-Clause
homepage: '' changelog-type: markdown hash: 279a9bfc302c17e2dd1a02df40f93dd722dbca4229810b9e9d3faf39e8a5b90a test-bench-deps: {} maintainer: [email protected] synopsis: Simple network runner library changelog: | # Revision history for network-run ## 0.0.0 * First version. basic-deps: base: ! '>=4 && <5' network: ! '>=3.1.0' all-versions: - 0.0.0 - 0.0.1 - 0.1.0 - 0.2.0 - 0.2.1 author: Kazu Yamamoto latest: 0.2.1 description-type: haddock description: Simple functions to run network clients and servers. license-name: BSD-3-Clause
Update from Hackage at 2019-10-31T06:24:50Z
Update from Hackage at 2019-10-31T06:24:50Z
YAML
mit
commercialhaskell/all-cabal-metadata
cde19ca68b3835fd678067deb581f22b7961bb62
packages/re/rerebase.yaml
packages/re/rerebase.yaml
homepage: https://github.com/nikita-volkov/rerebase changelog-type: '' hash: aefde08af66488482c85bff378ad7f69c604f91e832ba7c49295999d3e97cd04 test-bench-deps: {} maintainer: Nikita Volkov <[email protected]> synopsis: Reexports from "base" with a bunch of other standard libraries changelog: '' basic-deps: rebase: ==1.3 all-versions: - '1' - 1.0.1 - 1.0.1.1 - 1.0.2 - 1.0.3 - '1.1' - 1.1.1 - 1.1.2 - '1.2' - 1.2.1 - 1.2.2 - '1.3' author: Nikita Volkov <[email protected]> latest: '1.3' description-type: haddock description: ! 'A rich drop-in replacement for \"base\". For details and docs please visit <https://github.com/nikita-volkov/rerebase the project''s GitHub page>.' license-name: MIT
homepage: https://github.com/nikita-volkov/rerebase changelog-type: '' hash: 966332e52dfc2b75a3964120ca3364376ca36ec2207ec24c5dc61f4a0e3aa5ce test-bench-deps: {} maintainer: Nikita Volkov <[email protected]> synopsis: Reexports from "base" with a bunch of other standard libraries changelog: '' basic-deps: rebase: ==1.3.1 all-versions: - '1' - 1.0.1 - 1.0.1.1 - 1.0.2 - 1.0.3 - '1.1' - 1.1.1 - 1.1.2 - '1.2' - 1.2.1 - 1.2.2 - '1.3' - 1.3.1 author: Nikita Volkov <[email protected]> latest: 1.3.1 description-type: haddock description: |- A rich drop-in replacement for \"base\". For details and docs please visit <https://github.com/nikita-volkov/rerebase the project's GitHub page>. license-name: MIT
Update from Hackage at 2019-03-30T14:46:07Z
Update from Hackage at 2019-03-30T14:46:07Z
YAML
mit
commercialhaskell/all-cabal-metadata
98aff5459d24baffa1b957ac959a1328dca8944e
.travis.yml
.travis.yml
language: go go: - "1.10" - 1.9.4 sudo: false script: - go vet ./... - go test ./...
language: go go: - "1.10.1" - "1.9.5" sudo: false script: - go vet ./... - go test ./...
Build against 1.10.1 and 1.9.5
Build against 1.10.1 and 1.9.5
YAML
mit
TV4/diva
2194ff4b91530801db1260f4b8e2463c51cb7987
docs/environment.yml
docs/environment.yml
name: climlab dependencies: - python=2.7 - numpy - scipy - netCDF4 - sphinx=1.3.5 - matplotlib - ipython - pip: - nbsphinx - sphinxcontrib-bibtex
name: climlab dependencies: - python=2.7 - numpy - scipy - netCDF4 - sphinx=1.3.5 - matplotlib - ipython - pip: - nbsphinx - sphinxcontrib-bibtex - numpydoc
Add numpydoc to dependencies for RTD
Add numpydoc to dependencies for RTD
YAML
mit
cjcardinale/climlab,brian-rose/climlab,cjcardinale/climlab,cjcardinale/climlab,brian-rose/climlab
2f43ffb48516424d96101acb6c2887c3deca6d7c
.atomist/manifest.yml
.atomist/manifest.yml
group: atomist-rugs artifact: rug-editors version: "0.15.0" requires: "[0.13.0,1.0.0)" dependencies: extensions:
group: atomist-rugs artifact: rug-editors version: "0.16.0" requires: "[0.13.0,1.0.0)" dependencies: extensions:
Increment version for next release
Increment version for next release
YAML
apache-2.0
atomist-rugs/rug-editors,atomist-rugs/rug-editors
062e7256ba7db993244dac98583afa469f17242b
packages/te/text-all.yaml
packages/te/text-all.yaml
homepage: http://github.com/aelve/text-all changelog-type: markdown hash: 976780aa327a29e37918de10ba3024aa5fcb62385d57e630d1da20088d6e89b3 test-bench-deps: {} maintainer: [email protected] synopsis: Everything Data.Text related in one package changelog: ! '# 0.1.0.0 First release. ' basic-deps: base: ! '>=4.5 && <5' text: ! '>=1.2.2 && <2' text-show: ! '>=3.2 && <4' text-format: ! '>=0.3.1 && <0.4' all-versions: - '0.1.0.0' author: Artyom latest: '0.1.0.0' description-type: haddock description: ! 'Everything @Data.Text@-related in one package. Note that this package does not follow PVP – it specifies lower bounds for its dependencies, but the upper bounds are somewhat lax. This shouldn''t be a problem, however, since @Data.Text.All@ is intended to be imported qualified.' license-name: BSD3
homepage: http://github.com/aelve/text-all changelog-type: markdown hash: 2117990e1370894abe8e69faa6ebfb910e57a84905a3755ce51883591daf6995 test-bench-deps: {} maintainer: [email protected] synopsis: Everything Data.Text related in one package changelog: ! '# 0.2.0.0 * Renamed lots of functions, moved some into other modules. * Added `Builder`-related functions. * Reexported `Buildable`. * Added the `LText` type synonym. * Made the upper bounds strict. # 0.1.0.0 First release. ' basic-deps: base: ! '>=4.5 && <5' text: ==1.2.2.* text-show: ==3.2.* text-format: ==0.3.1.* all-versions: - '0.1.0.0' - '0.2.0.0' author: Artyom latest: '0.2.0.0' description-type: haddock description: ! 'Everything @Data.Text@-related in one package. Note: this package does follow PVP.' license-name: BSD3
Update from Hackage at 2016-06-02T22:42:28+0000
Update from Hackage at 2016-06-02T22:42:28+0000
YAML
mit
commercialhaskell/all-cabal-metadata
c7b04565576159fbddbf21b13dc886c9e103beb1
playbooks/roles/common/tasks/main.yml
playbooks/roles/common/tasks/main.yml
--- # # This is the base role for all machines. # Things here are things we want to do to every machine no matter what. # - include: selinux.yml - name: dist pkgs to install yum: state=present name={{ item }} sudo: yes with_items: - ntpdate - ntp - name: start ntpd service: name=ntpd state=running enabled=true sudo: yes - name: update motd copy: src=motd dest=/etc/motd sudo: yes
--- # # This is the base role for all machines. # Things here are things we want to do to every machine no matter what. # - include: selinux.yml - include: users.yml - name: dist pkgs to install yum: state=present name={{ item }} sudo: yes with_items: - ntpdate - ntp - name: start ntpd service: name=ntpd state=running enabled=true sudo: yes - name: update motd copy: src=motd dest=/etc/motd sudo: yes
Include tasks with users creation
Include tasks with users creation
YAML
apache-2.0
ligurio/openvz-playbooks,ligurio/openvz-playbooks,ligurio/openvz-playbooks
750abddf6f30dc45a8014b4d1e34a4a9dd36c3d4
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - "pip install ." # command to run tests script: py.test notifications: email: false
language: python python: - "3.4" - "3.5" - "3.6" - "3.7" - "3.8" - "3.9" install: - "pip install ." # command to run tests script: py.test notifications: email: false
Drop python v2.7 and v3.3 from tests, add v3.7–3.9
Drop python v2.7 and v3.3 from tests, add v3.7–3.9
YAML
apache-2.0
mvexel/overpass-api-python-wrapper
29df154a0de682761277d2cbbd241d85108d643f
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: branches: - '*' pull_request: branches: - '*' jobs: ci: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] java: [ 11 ] steps: - name: Checkout uses: actions/checkout@v3 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v3 with: distribution: temurin java-version: ${{ matrix.java }} - name: Cache local Maven repository uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Build with Maven run: mvn -B verify
name: CI on: push: branches: - '*' pull_request: branches: - '*' jobs: ci: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] java: [ 11, 17 ] steps: - name: Checkout uses: actions/checkout@v3 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v3 with: distribution: temurin java-version: ${{ matrix.java }} - name: Cache local Maven repository uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Build with Maven run: mvn -B verify
Add LTS JDK 17 to the mix.
CI: Add LTS JDK 17 to the mix.
YAML
apache-2.0
clusterbench/clusterbench,rhusar/clusterbench,clusterbench/clusterbench,rhusar/clusterbench
8896d7ca48beb23691cf3c39dd117b23646533c8
config/cable.yml
config/cable.yml
local: &local url: redis://localhost:6379/1 development: *local test: *local production: url: <%= ENV['REDIS_CABLE_URL'] %> channel_prefix: docker_rails_production
local: url: redis://localhost:6379/1 test: url: <%= ENV['REDIS_CABLE_URL'] %> channel_prefix: docker_rails_test production: url: <%= ENV['REDIS_CABLE_URL'] %> channel_prefix: docker_rails_production
Use Redis host from ENV
Tests: Use Redis host from ENV
YAML
mit
ledermann/docker-rails,ledermann/docker-rails,ledermann/docker-rails,ledermann/docker-rails
0b80a69e5f9d9eae8f5bf309c63eb5be356c38c8
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 services: postgres before_script: - rm config/database.yml - cp config/database.travis.yml config/database.yml - psql -c 'create database books_test;' -U postgres - bundle exec rake db:migrate
language: ruby rvm: - 2.3.0 services: postgres before_script: - rm config/database.yml - cp config/database.travis.yml config/database.yml - psql -c 'create database books_test;' -U postgres - bundle exec rake db:migrate
Update the Travis configuration for Ruby 2.3.0
Update the Travis configuration for Ruby 2.3.0
YAML
mit
JordanHatch/anthology,JordanHatch/anthology
b6ee877b97a6c985ff207799da5055add92e823c
_data/navigation.yml
_data/navigation.yml
# main links links main: - title: "About me" url: - title: "About my projects" url: - title: "Learning Notes" url:
# main links links main: - title: "Home" url: https://arecrui.github.io/ - title: "About me" url: - title: "About my projects" url: - title: "Learning Notes" url:
Add home hylink on homepage
Add home hylink on homepage
YAML
mit
ArecRui/ArecRui.github.io,ArecRui/ArecRui.github.io,ArecRui/ArecRui.github.io
0f6acc638c3487b3d14a8d23ec25a8c3aa59e782
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: branches: - "*" tags: - "!*" pull_request: branches: - "*" jobs: rspec: runs-on: ubuntu-latest strategy: matrix: ruby: [ '2.5', '2.6', '2.7', '3.0' ] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests run: bundle exec rspec rubocop: name: Rubocop runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: andrewmcodes/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: CI on: push: branches: - "*" tags: - "!*" pull_request: branches: - "*" jobs: rspec: name: RSpec env: BILLOGRAM_BASE_URI: https://sandbox.billogram.com/api/v2/ BILLOGRAM_USERNAME: 0000-RANDOM BILLOGRAM_PASSWORD: 55e0cc0a4170f39641840dd4c8274f70 runs-on: ubuntu-latest strategy: matrix: ruby: [ '2.5', '2.6', '2.7', '3.0' ] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Run tests run: bundle exec rspec rubocop: name: Rubocop runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: andrewmcodes/[email protected] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Set ENV variables for tests
Set ENV variables for tests
YAML
mit
mbirman/billogram,mbirman/billogram
473ab9a58fbc03923af96613c24260847ca4c40f
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - "0.8" notifications: email: - [email protected]
language: node_js node_js: - "0.11" - "0.10" notifications: email: - [email protected]
Remove not supported version of node
Remove not supported version of node
YAML
mit
xsellier/winston-config-monitor
e56f5b4be89856295c7002cc5a1bac0361050c77
.travis.yml
.travis.yml
sudo: false dist: xenial language: python python: - 3.7 - 3.8 services: - postgresql - mysql env: - DATABASE_ENGINE=sqlite - DATABASE_ENGINE=postgres - DATABASE_ENGINE=mysql matrix: fast_finish: true install: - pip install zc.buildout - buildout -c travis.cfg testenv:DJANGO_SETTINGS_MODULE=zinnia.tests.implementations.$DATABASE_ENGINE - sh -c "if [ '$DATABASE_ENGINE' = 'postgres' ]; then pip install psycopg2; fi" - sh -c "if [ '$DATABASE_ENGINE' = 'mysql' ]; then pip install mysqlclient; mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql; fi" before_script: - ./bin/flake8 zinnia script: - ./bin/test after_success: - ./bin/coveralls notifications: irc: - "irc.freenode.org#django-blog-zinnia"
sudo: false dist: xenial language: python python: - 3.7 - 3.8 services: - postgresql - mysql env: - DJANGO=2.2 DATABASE_ENGINE=sqlite - DJANGO=2.2 DATABASE_ENGINE=postgres - DJANGO=2.2 DATABASE_ENGINE=mysql - DJANGO=3.0 DATABASE_ENGINE=sqlite - DJANGO=3.0 DATABASE_ENGINE=postgres - DJANGO=3.0 DATABASE_ENGINE=mysql matrix: fast_finish: true install: - pip install zc.buildout - buildout -c travis.cfg versions:django=$DJANGO testenv:DJANGO_SETTINGS_MODULE=zinnia.tests.implementations.$DATABASE_ENGINE - sh -c "if [ '$DATABASE_ENGINE' = 'postgres' ]; then pip install psycopg2; fi" - sh -c "if [ '$DATABASE_ENGINE' = 'mysql' ]; then pip install mysqlclient; mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql; fi" before_script: - ./bin/flake8 zinnia script: - ./bin/test after_success: - ./bin/coveralls notifications: irc: - "irc.freenode.org#django-blog-zinnia"
Configure for previous previous LTS of Django
Configure for previous previous LTS of Django
YAML
bsd-3-clause
Fantomas42/django-blog-zinnia,Fantomas42/django-blog-zinnia,Fantomas42/django-blog-zinnia
fec07f8e12453e4cd6c112cc4fc8322a9cbdf3cc
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby: [2.5, 2.6, 2.7] bundler: [default] gemfile: - rails-5.2 - rails-6.0 - rails-6.1 include: - { ruby: "2.3", gemfile: "rails-4.2", bundler: "1" } - { ruby: "2.4", gemfile: "rails-4.2", bundler: "1" } env: BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile steps: # https://github.com/marketplace/actions/checkout - uses: actions/checkout@v2 # https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler: ${{ matrix.bundler }} bundler-cache: true # runs `bundle install` and caches gems automatically - name: Run tests run: bundle exec rake
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby: [2.5, 2.6, 2.7] bundler: [default] gemfile: - rails-5.2 - rails-6.0 - rails-6.1 include: - { ruby: "2.3", gemfile: "rails-4.2", bundler: "1" } - { ruby: "2.4", gemfile: "rails-4.2", bundler: "1" } - { ruby: "3.0", gemfile: "rails-6.1", bundler: "default" } env: BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile steps: # https://github.com/marketplace/actions/checkout - uses: actions/checkout@v2 # https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler: ${{ matrix.bundler }} bundler-cache: true # runs `bundle install` and caches gems automatically - name: Run tests run: bundle exec rake
Add Ruby 3 to build matrix
Add Ruby 3 to build matrix
YAML
mit
bokmann/font-awesome-rails,bokmann/font-awesome-rails,bokmann/font-awesome-rails
7ae1cf5bf07cf30cf67b7489d4e1f585e165b6da
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.6 - 2.5.5 - 2.6.2 script: bundle exec rspec before_install: # fixes Travis CI error: NoMethodError: undefined method `spec' for nil:NilClass - gem install bundler --version 1.17.3 gemfile: - gemfiles/rack-1.3.gemfile - gemfiles/rack-2.0.gemfile matrix: exclude: - rvm: 2.0.0 gemfile: gemfiles/rack-2.0.gemfile - rvm: 2.1.8 gemfile: gemfiles/rack-2.0.gemfile
language: ruby rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.6 - 2.5.5 - 2.6.2 script: bundle exec rspec before_install: # fixes Travis CI error: NoMethodError: undefined method `spec' for nil:NilClass - gem install bundler --version 1.17.3 gemfile: - gemfiles/rack-1.3.gemfile - gemfiles/rack-2.0.gemfile matrix: exclude: - rvm: 2.0.0 gemfile: gemfiles/rack-2.0.gemfile - rvm: 2.1.10 gemfile: gemfiles/rack-2.0.gemfile
Fix Rack dependency issue in Travis
Fix Rack dependency issue in Travis
YAML
mit
biola/rack-cas
1f1dd7efdb1613ad107ccc2f7f7cd4840ae2ae01
.travis.yml
.travis.yml
language: node_js node_js: - "0.10"
language: node_js node_js: - 0.8 - "0.10" - 0.11
Test with Node.js 0.8 and 0.11 too
Test with Node.js 0.8 and 0.11 too
YAML
mit
bluecap-se/yarr,bluecap-se/yarr
ceca43b911b7ef332f89aabec873f6009c90da44
.travis.yml
.travis.yml
language: objective-c env: matrix: - MONO_VERSION="3.2.5" install: - wget "http://download.xamarin.com/MonoFrameworkMDK/Macx86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" - sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target / - mono .nuget/NuGet.exe install NUnit.Runners -Version 2.6.1 -OutputDirectory tools script: - xbuild /property:Configuration=Release ExtCore.sln - mono --runtime=v4.0.30319 ./tools/NUnit.Runners.2.6.1/tools/nunit-console.exe ./ExtCore.Tests/bin/Release/ExtCore.Tests.dll
language: objective-c env: matrix: - MONO_VERSION="3.2.5" install: - wget "http://download.xamarin.com/MonoFrameworkMDK/Macx86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" - sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target / - mono .nuget/NuGet.exe install NUnit.Runners -Version 2.6.2 -OutputDirectory tools script: - xbuild /property:Configuration=Release ExtCore.sln - mono --runtime=v4.0.30319 ./tools/NUnit.Runners.2.6.2/tools/nunit-console.exe ./ExtCore.Tests/bin/Release/ExtCore.Tests.dll
Use NUnit.Runners 2.6.2 in the Travis CI build, since the unit test project currently uses NUnit 2.6.2.
Use NUnit.Runners 2.6.2 in the Travis CI build, since the unit test project currently uses NUnit 2.6.2.
YAML
apache-2.0
jack-pappas/ExtCore
1d03d2a50651b19b5689bbef2bd99d93501a2794
.travis.yml
.travis.yml
language: ruby sudo: false before_install: - gem install bundler rvm: - 1.9.3 - 2.4.2 - ruby-head - jruby-19mode - jruby-9.1.12.0 env: CI="travis" notifications: email: false flowdock: 1da4416b8ff98d1880986472428b1b1b branches: only: - master - 5.0-dev matrix: allow_failures: - rvm: ruby-head
language: ruby sudo: false before_install: - gem install bundler rvm: - 1.9.3 - 2.4.2 - 2.5 - ruby-head - jruby-19mode - jruby-9.1.12.0 env: CI="travis" notifications: email: false flowdock: 1da4416b8ff98d1880986472428b1b1b branches: only: - master - 5.0-dev matrix: allow_failures: - rvm: ruby-head
Add Ruby 2.5 on Travis CI.
Add Ruby 2.5 on Travis CI.
YAML
apache-2.0
mongodb/bson-ruby,mongodb/bson-ruby,mongodb/bson-ruby,mongodb/bson-ruby
af7e3a3417b37a5afb7cb02d17507232ac7a8e4d
.github/workflows/ci.yml
.github/workflows/ci.yml
name: ci on: [pull_request, push] jobs: build: runs-on: macos-latest strategy: matrix: # Temporarily pinning to a specific nightly until # https://github.com/rust-lang/rust/issues/71612 # Afterwards this can be: # channel: [stable, nightly] channel: [stable, nightly-2020-04-26] steps: - uses: actions/checkout@v1 - uses: actions-rs/cargo@v1 - name: Select Rust channel uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.channel }} override: true - name: Rust Version Info run: rustc --version && cargo --version - name: Cache cargo registry uses: actions/cache@v1 with: path: ~/.cargo/registry key: ${{ runner.os }}-${{ matrix.channel }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index uses: actions/cache@v1 with: path: ~/.cargo/git key: ${{ runner.os }}-${{ matrix.channel }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build uses: actions/cache@v1 with: path: target key: ${{ runner.os }}-${{ matrix.channel }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - name: cargo check run: cargo check --all-features - name: Run all tests run: cargo test --all
name: ci on: [pull_request, push] jobs: build: runs-on: macos-latest strategy: matrix: channel: [stable, nightly] steps: - uses: actions/checkout@v1 - uses: actions-rs/cargo@v1 - name: Select Rust channel uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.channel }} override: true - name: Rust Version Info run: rustc --version && cargo --version - name: Cache cargo registry uses: actions/cache@v1 with: path: ~/.cargo/registry key: ${{ runner.os }}-${{ matrix.channel }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index uses: actions/cache@v1 with: path: ~/.cargo/git key: ${{ runner.os }}-${{ matrix.channel }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build uses: actions/cache@v1 with: path: target key: ${{ runner.os }}-${{ matrix.channel }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - name: cargo check run: cargo check --all-features - name: Run all tests run: cargo test --all
Use regular nightly on CI
Use regular nightly on CI
YAML
apache-2.0
fkaa/metal-rs,gfx-rs/metal-rs
ec1585155f0574eb6bdc420ba4127de5382d37e9
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: [ "1.9.3", "2.0.0", 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, "3.0", jruby-9.1, jruby-9.2, jruby-9.3 ] name: ${{ matrix.ruby }} env: BUNDLE_GEMFILE: .ci.gemfile steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: [ "1.9.3", "2.0.0", 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, "3.0", 3.1, jruby-9.1, jruby-9.2, jruby-9.3 ] name: ${{ matrix.ruby }} env: BUNDLE_GEMFILE: .ci.gemfile steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake
Test Ruby 3.1 in CI
Test Ruby 3.1 in CI
YAML
mit
jeremyevans/rack-unreloader
7ad00de6650f06ff52a7e3a5a64b61139e26abfe
.travis.yml
.travis.yml
language: erlang before_install: - sudo apt-get install bzr >/dev/null 2>&1 install: - hg clone -u release https://code.google.com/p/go "${HOME}/go" >/dev/null 2>&1 - cd "${HOME}/go/src" && ./make.bash >/dev/null 2>&1 - mkdir -p "${HOME}/src" || true - mkdir -p "${HOME}/bin" || true - mkdir -p "${HOME}/pkg" || true - export GOPATH="${HOME}" - export PATH=${PATH}:${HOME}/go/bin - ln -s "${HOME}/builds/matttproud/golang_instrumentation" "${HOME}/src/golang_instrumentation" - go get -v launchpad.net/gocheck >/dev/null 2>&1 - go get -v github.com/matttproud/golang_instrumentation script: - go build -a -v github.com/matttproud/golang_instrumentation/... - go test -v github.com/matttproud/golang_instrumentation/...
language: go before_install: - true install: - dpkg -l 'go*' || true - which go || true - locate go || true script: - true
Determine whether Go exists in the Travis CI.
Determine whether Go exists in the Travis CI.
YAML
apache-2.0
telendt/client_golang,jimmidyson/prometheus-client_golang,prometheus/client_golang,asbjornenge/client_golang,mattkanwisher/client_golang,m3db/prometheus_client_golang,stapelberg/client_golang,KevinPike/client_golang,fabxc/client_golang
a7c3cfa451a81d8e323a6818a7fdf51fb0211199
.travis.yml
.travis.yml
language: python python: 3.4 sudo: false cache: directories: - ~/.cache/pip env: - TOXENV=py34 TOXARGS="-- --dbfixtures-config .travis/dbfixtures.conf" - TOXENV=pep8 - TOXENV=docs - TOXENV=packaging - TOXENV=translations install: pip install -U pip wheel tox codecov script: tox $TOXARGS after_success: codecov notifications: irc: channels: - "irc.freenode.org#pypa-dev" use_notice: true skip_join: true
language: python python: 3.4 dist: trusty sudo: false cache: directories: - ~/.cache/pip env: - TOXENV=py34 TOXARGS="-- --dbfixtures-config .travis/dbfixtures.conf" - TOXENV=pep8 - TOXENV=docs - TOXENV=packaging - TOXENV=translations install: pip install -U pip wheel tox codecov script: tox $TOXARGS after_success: codecov notifications: irc: channels: - "irc.freenode.org#pypa-dev" use_notice: true skip_join: true
Switch to trusty instead of precise
Switch to trusty instead of precise
YAML
apache-2.0
pypa/warehouse,dstufft/warehouse,karan/warehouse,dstufft/warehouse,ismail-s/warehouse,ismail-s/warehouse,wlonk/warehouse,pypa/warehouse,HonzaKral/warehouse,wlonk/warehouse,wlonk/warehouse,pypa/warehouse,alex/warehouse,karan/warehouse,ismail-s/warehouse,dstufft/warehouse,karan/warehouse,pypa/warehouse,dstufft/warehouse,alex/warehouse,HonzaKral/warehouse,ismail-s/warehouse,alex/warehouse,HonzaKral/warehouse,ismail-s/warehouse,karan/warehouse,alex/warehouse,karan/warehouse,HonzaKral/warehouse,alex/warehouse
fa6df5344f960343ba889629c1dfac0aafdd861c
.travis.yml
.travis.yml
language: php php: - 5.4 notifications: email: false slack: secure: jkZDWqI+za7mMP1RnozFmsB6SM2THjp59elBEpMrewjG270NpCdB2fCc2XFSeHVJ1vyPax/Q139CsWhctpD4smA4An1GmTsvQyVcWVvKsqsrTG0q22cBx+WKJKL9cwxQ+UQSbvySVCY6V3oXaqmaPBK97oqHZOc+FET2Z9WDHhc= install: - composer selfupdate - composer install --no-interaction before_script: - mkdir -p build/logs - mysql -e 'create database `test-promotions`;' - mysql --default-character-set=utf8 test-promotions < tests/test_data/structure.sql script: - phpunit --coverage-clover build/logs/clover.xml after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
language: php sudo: false php: - 5.4 cache: directories: - $HOME/.composer/cache notifications: email: false slack: secure: jkZDWqI+za7mMP1RnozFmsB6SM2THjp59elBEpMrewjG270NpCdB2fCc2XFSeHVJ1vyPax/Q139CsWhctpD4smA4An1GmTsvQyVcWVvKsqsrTG0q22cBx+WKJKL9cwxQ+UQSbvySVCY6V3oXaqmaPBK97oqHZOc+FET2Z9WDHhc= install: - composer selfupdate - composer install --no-interaction before_script: - mkdir -p build/logs - mysql -e 'create database `test-promotions`;' - mysql --default-character-set=utf8 test-promotions < tests/test_data/structure.sql script: - phpunit --coverage-clover build/logs/clover.xml after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
Use Docker containers for Travis CI builds
Use Docker containers for Travis CI builds
YAML
bsd-3-clause
OpenBuildings/promotions
e7f0e5f10ce3561202bfa48062c2b081eb5b0ed9
.travis.yml
.travis.yml
notifications: slack: zewo:VjyVCCQvTOw9yrbzQysZezD1 language: generic matrix: include: - os: osx env: JOB=SwiftPM_OSX osx_image: xcode9 - os: linux env: JOB=SwiftPM_linux dist: trusty sudo: required install: - travis_retry eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)" script: - swift build -c release - swift build - swift test - eval "$(curl -sL https://raw.githubusercontent.com/lgaches/swifttravisci/master/codecov)"
notifications: slack: zewo:VjyVCCQvTOw9yrbzQysZezD1 language: generic matrix: include: - os: osx env: JOB=SwiftPM_OSX osx_image: xcode9.3beta - os: linux env: JOB=SwiftPM_linux dist: trusty sudo: required install: - travis_retry eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)" script: - swift build -c release - swift build - swift test - eval "$(curl -sL https://raw.githubusercontent.com/lgaches/swifttravisci/master/codecov)"
Update Travis CI to use Xcode 9.3b
Update Travis CI to use Xcode 9.3b
YAML
mit
GraphQLSwift/GraphQL
e0166075ec0b8a9fb5f4ad56fee6bc9158834034
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12.2" - iojs before_script: - npm install -g grunt-cli script: - grunt build - grunt test_and_coveralls - grunt saucelabs || true
language: node_js node_js: - "stable" before_script: - npm install -g grunt-cli script: - grunt build - grunt test_and_coveralls - grunt saucelabs || true
Test only against node stable
Test only against node stable
YAML
bsd-2-clause
evilaliv3/scrypt-async-js,evilaliv3/scrypt-async-js,dchest/scrypt-async-js,dchest/scrypt-async-js
e18c5c8c5917178da186c8ba43d951a58d36bb70
.travis.yml
.travis.yml
language: c++ sudo: required dist: trusty os: - linux - osx compiler: - gcc - clang matrix: exclude: - os: osx compiler: gcc - os: linux compiler: clang script: - ./travis.sh notifications: webhooks: urls: - https://webhooks.gitter.im/e/0facf357c99ed725ef10 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always slack: cernopenlab:2MzX9lwS6W9nU47MuY1qSmk9
language: c++ sudo: required dist: trusty os: - linux # - osx compiler: - gcc - clang matrix: exclude: - os: osx compiler: gcc - os: linux compiler: clang script: - ./travis.sh notifications: webhooks: urls: - https://webhooks.gitter.im/e/0facf357c99ed725ef10 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always slack: cernopenlab:2MzX9lwS6W9nU47MuY1qSmk9
Disable CI builds on OSX until OpenMP issue has been resolved
Disable CI builds on OSX until OpenMP issue has been resolved
YAML
apache-2.0
BioDynaMo/biodynamo,BioDynaMo/biodynamo,BioDynaMo/biodynamo,BioDynaMo/biodynamo
4d1090be60b9f609d698a9e9c44ea578527acfc1
.travis.yml
.travis.yml
language: ruby cache: bundler before_install: - gem update --system rvm: - "2.2" - "2.3" - "2.4" - "2.5" script: "bundle exec rake spec"
language: ruby cache: bundler before_install: - gem update --system rvm: - "2.2" - "2.3" - "2.4" - "2.5" - "2.6" script: "bundle exec rake spec"
Test on ruby 2.6, obvs
Test on ruby 2.6, obvs
YAML
mit
subakva/haproxy-tools
472be3962febd1a142c104c662309d0124790c96
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org language: python # Use container based infrastructure sudo: false python: - 2.7 - 3.3 - 3.4 env: matrix: - DJANGO=1.5 CMD=./test - DJANGO=1.6 CMD=./test - DJANGO=1.7 CMD=./test matrix: allow_failures: - python: 2.6 env: DJANGO=1.4 CMD=./test exclude: - python: 2.6 env: DJANGO=1.7 CMD=./test fast_finish: true include: - python: 2.6 env: DJANGO=1.4 CMD=./test - python: 2.7 env: DJANGO=1.7 CMD="flake8 aldryn_categories" cache: directories: - $HOME/.wheelhouse install: - pip wheel --wheel-dir $HOME/.wheelhouse -r "test_requirements/django-$DJANGO.txt" - pip install --use-wheel --no-index --find-links=$HOME/.wheelhouse -r "test_requirements/django-$DJANGO.txt" script: coverage run test_settings.py after_success: coveralls
# Config file for automatic testing at travis-ci.org language: python # Use container based infrastructure sudo: false python: - 2.6 - 2.7 - 3.3 - 3.4 env: matrix: - DJANGO=1.5 CMD=./test - DJANGO=1.6 CMD=./test - DJANGO=1.7 CMD=./test matrix: allow_failures: - python: 2.6 env: DJANGO=1.4 CMD=./test exclude: - python: 2.6 env: DJANGO=1.7 CMD=./test fast_finish: true include: - python: 2.6 env: DJANGO=1.4 CMD=./test - python: 2.7 env: DJANGO=1.7 CMD="flake8 aldryn_categories" cache: directories: - $HOME/.wheelhouse install: - pip wheel --wheel-dir $HOME/.wheelhouse -r "test_requirements/django-$DJANGO.txt" - pip install --use-wheel --no-index --find-links=$HOME/.wheelhouse -r "test_requirements/django-$DJANGO.txt" script: coverage run test_settings.py after_success: coveralls
Include more Python 2.6 testing
Include more Python 2.6 testing
YAML
bsd-3-clause
aldryn/aldryn-categories,aldryn/aldryn-categories
93f65184f307d04384b4e92e335a3dd64b78ca1d
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" install: - "pip install tox" script: - tox
language: python python: - "2.7" - "3.3" - "3.4" install: - "pip install tox" script: - tox sudo: false
Switch to Travis' container-based infrastructure.
Switch to Travis' container-based infrastructure.
YAML
mit
Emantor/syslog2irc,homeworkprod/syslog2irc
c1e88ce343aa7aee8a790714b665ee5dbae1aa1b
_config.yml
_config.yml
# Site settings title: Pixyll email: [email protected] author: John Otander description: "A simple, beautiful theme for Jekyll that emphasizes content rather than aesthetic fluff." baseurl: "" url: "http://pixyll.com" # Build settings markdown: kramdown permalink: pretty paginate: 3
# Site settings title: Pixyll email: [email protected] author: John Otander description: "A simple, beautiful theme for Jekyll that emphasizes content rather than aesthetic fluff." baseurl: "" url: "http://pixyll.com" # Build settings markdown: kramdown permalink: pretty paginate: 3
Change default email in config.
Change default email in config.
YAML
mit
TyPetrochko/TyPetrochko.github.io,owlgrin/horntell-help,bdco/bdco.github.io,ethirajsrinivasan/blog,alayii/alayii.github.io,evil159/evil159.github.io,tomerweller/mas865.15-notes,aawc/blog,dan-apatow/old,alancleary/alancleary.github.io,martinkirsche-de/mamina.de,xyc/xyc.github.io,stgmva/stgmva.github.io,PaulDebus/PaulDebus.github.io,exogenesick/exogenesick.github.io,nurandi/nurandi.github.io,quwubin/quwubin.github.com,Quantum-Sicarius/quantum-sicarius.github.io,sagarhani/mozillabangalore.github.io,sidbhatt11/sidbhatt11.github.io,jadianes/jadianes.github.io,bytekve/bytekve.github.io,bradleystachurski/Jekyll_Sandbox,tinygrasshopper/blog,4711/pixyll,withsellit/withsellit.github.io,alancleary/alancleary.github.io,pepijn/pepijn.github.io,karawoo/karawoo.github.io,goldsborough/goldsborough.github.io,goldsborough/goldsborough.github.io,erlangelixirsf/erlangelixirsf,prockley/prockley.github.io,thebruise/pixyll,buin2009/g2plaza,jph/jph.github.io,vforverity/vforverity.github.io,mattwescott/mattwescott.github.io,thobruk/thobruk.github.io,edqwerty1/edqwerty1.github.io,ironicstone/ironicstone.github.io,xleon/xleon.github.io,sooriravindra/Blog,marshallshen/blog,zpbappi/zpbappi.github.io,jiangplus/jiangplus.github.io,iamaprylle/blog,rightlag/rightlag.github.io,grimsa/grimsa.github.io,swat-ds/ds.swarthmore.edu,k3rn31/k3rn31.github.io,rajatagrawal/rajatagrawal.github.io,eden-annn/eden-annn.github.io,digideskio/pixyll,shankarv25/shankarv25.github.io,edqwerty1/edqwerty1.github.io,hawaiimachinelearning/hawaiimachinelearning.github.io,cliffmin/cliffmin.github.io,leehankyeol/leehankyeol.github.io,sortega/sortega.github.io,liamchzh/liamchzh.github.com,lpand/lpand.github.io,cyphus/missingtoken,chowdhury/pixyll,casaval/pixyll,sushant94/sushant94.github.io,jonnyburch/recipes,zanarmstrong/pixyll,jasonrclark/jasonrclark.github.io,oarod/oarod.github.io,PeerXu/peerxu.github.io,mattbostock/mattbostock.github.io,clhenrick/clhenrick.github.io,apereo/apereo.github.io,mattkosoy/mattkosoy.github.io,hapiben/hapiben.github.io,ccorral/ccorral.github.io,kamil89/kamil89.github.io,fishnsotong/fishnsotong.github.io,rongou/rongou.github.io,clhenrick/thesis-blog,asnr/asnr.github.io,alexakimenko/alexakimenko.github.io,archbhise/archbhise.github.io,pepijn/pepijn.github.io,pccassin/pccassin.github.io,alejandrogarciasalas/blog,lookingcloudy/lookingcloudy.github.io,anmolBhullar/anmolbhullar.github.io,pvilas/pvilas.github.io,kamil89/kamil89.github.io,freemiumhead/freemiumhead.github.io,lukehinds/lukehinds.github.io,prashcr/prashcr.github.io,wssbck/wssbck.github.io,obernal/pixyll,maliit/maliit.github.io,finless/finless.github.io,richardjennings/richardjennings.github.io,levithatcher/levithatcher.github.io,fishnsotong/fishnsotong.github.io,MaizerGomes/pixyll,cliffmin/cliffmin.github.io,jamsinclair/blog,caioyassoyama/caioyassoyama.github.io,elgadjo/music-playlists,ysubach/ysubach.github.io,aawc-org/aawc-org.github.io,Snazzyham/snazzyham.github.io,kalkin7/blogtest01,harmishhk/pixyll,dedication6twelve/dedication6twelve.github.io,ja-son/shakecritic,sortega/sortega.github.io,mattwescott/mattwescott.github.io,archbhise/archbhise.github.io,amorenoc/pixyll,Tylerflick/tylerflick.github.io,glovercloud/glovercloud.github.io,swat-ds/ds.swarthmore.edu,akurin/akurin.github.com,neeravkumar/neeravkumar.github.io,swat-ds/ds.swarthmore.edu,virajprabhu/virajprabhu.github.io,wssbck/wssbck.github.io,rrrkren/rrrkren.github.io,kalkin7/wizk,brollb/brollb.github.io,lucacorsato/lucacorsato.github.io,Joshfindit/D3ixyll,bronzehedwick/bronzehedwick.github.io,fmedlin/fmedlin.github.io,wenxinhe/wenxinhe.github.io,jsharp83/jsharp83.github.io,Rocketserino/rocketserino.github.io,georgewsinger/georgewsinger.github.io,paliwodar/paliwodar.github.io,prockley/prockley.github.io,raoenhui/pixyll,deepredsky/deepredsky.github.io,hakandilek/dilek.me,waderyan/waderyan.github.io,lancearlaus/lancearlaus.github.io,tystr/tystr.github.io,wecanwork/wecanwork,avisingh599/homepage,stokeclimsland/stokeclimsland,cyphus/missingtoken,veverkap/veverkap.github.io,jsharp83/jsharp83.github.io,Joshfindit/D3ixyll,barryridge/barryridge.github.io,prockley/prockley.github.io,shtpi/shtpi.github.io,Ema93sh/ema93sh.github.io,glovercloud/glovercloud.github.io,gregist/gregist.github.io,amorenoc/pixyll,ecksma/ecksma.github.io,jaymanklu/pixyll,muodov/blog,mstksg/office-hours,charactory/charactory.github.io,giacomovagni/pixyll,veverkap/veverkap.github.io,nisarahm/pixyll,gravicle/blog,abhayghatpande/abhayghatpande.github.io,dedication6twelve/dedication6twelve.github.io,booo/turnhalle,geniushkg/geniushkg.github.io,leehankyeol/leehankyeol.github.io,pzn/blog,kylecho/pixyll,Quantum-Sicarius/quantum-sicarius.github.io,pramoddas/pramoddas.github.io,tokyoincode/tokyoincode.github.io,bronzehedwick/bronzehedwick.github.io,prlambert/prlambert.github.com,OpenLawsGR/pixyll,nurandi/nurandi.github.io,mattfritz/mattfritz.github.io,sergiorykov/sergiorykov.github.io,jayshahtx/jayshahtx.github.io,evil159/evil159.github.io,krmaxwell/krmaxwell.github.io,burlistic/burlistic.github.io,gvkalra/gvkalra.github.io,thebruise/pixyll,guntars/guntars.github.io,wenxinhe/wenxinhe.github.io,donpiekarz/donpiekarz.github.io,fmedlin/fmedlin.github.io,shekarrex/droidict,dedication6twelve/dedication6twelve.github.io,niftyn8/niftyn8.github.io,sialan/sialan.github.io,rajatagrawal/rajatagrawal.github.io,bradleystachurski/blog,mgkrishnanblog/mgkrishnanblog.github.io,jparkie/jparkie.github.io,sakim/sakim.github.com,Joshfindit/dixyll,ffrank/ffrank.github.io,snowdj/snowdj.github.io,bryceholcomb/bryceholcomb.github.io,fcrimins/fcrimins.github.io,jackturnbull/jackturnbull.github.io,pzn/blog,dvillaj/dvillaj.github.com,munzala/website,vavrusa/vavrusa.github.io,wenxinhe/wenxinhe.github.io,eden-annn/eden-annn.github.io,alaa/alaa.github.io,frnkn/frnkn-blog-s3,majidfn/FarsiBlog,lukejharmon/lukejharmon.github.io,codingdogg/codingdogg.github.io,hapiben/hapiben.github.io,jmhol9/jmhol9.github.com,geniushkg/geniushkg.github.io,dimastopel/dimastopel.github.io,shtpi/shtpi.github.io,jtomchak/jstoelm,abhayghatpande/abhayghatpande.github.io,nurandi/nurandi.github.io,aezlix/aezlix.github.io,faustovaz/faustovaz.github.io,schneidmaster/schneidmaster.github.io,elgadjo/music-playlists,jiangplus/jiangplus.github.io,tuncagurkan/tuncagurkan.github.io,JakeWengroff/pixyll,da-publicity/da-publicity.github.io,anmolhundal/anmolhundal.github.io,jparkie/jparkie.github.io,prlambert/prlambert.github.com,sawyercade/pixyll,codingdogg/codingdogg.github.io,davidchen581/davidchen581.github.io,anmolBhullar/anmolbhullar.github.io,PDKK/jekyll-site,avisingh599/homepage,Rocketserino/rocketserino.github.io,jfaganUK/jfaganuk.github.com,cyphus/missingtoken,ysubach/ysubach.github.io,felipesabino/felipesabino.github.io,derekhubbard/derekhubbard.github.io,fmedlin/fmedlin.github.io,gmitrev/gmitrev.github.io,leanwriting/dialing-in,joshsmoore/mooreabout_me,sortega/sortega.github.io,levithatcher/levithatcher.github.io,thobruk/thobruk.github.io,gregist/gregist.github.io,galloguille/galloguille.github.io,tinygrasshopper/tinygrasshopper.github.io,tokyoincode/tokyoincode.github.io,oliverpaisley/pixyll,erlangelixirsf/erlangelixirsf,mnbbrown/mnbbrown.github.io,captbaritone/pixyll,neeravkumar/neeravkumar.github.io,nrakochy/nrakochy.github.io,gmitrev/gmitrev.github.io,gnalck/gnalck.github.io,karan-ta/karan-ta.github.io,gregdl/gregdl.github.io,shekarrex/droidict,kongove/kongove.github.com,banesto/banesto.github.io,thebox-newsuk/careers,lean-writing/dialing-in,zpbappi/pixyll,mbaharsyah/mbaharsyah.github.io,mattwescott/mattwescott.github.io,hapiben/benedictaluan.github.io,zivc/zivc.github.io,austin-taylor/austin-taylor.github.io,RandomSeeded/pixyll,netosober/netosober.github.io,jaymanklu/pixyll,JakeWengroff/jakewengroff.github.io,frnkn/frnkn-blog-s3,munzala/website,virajprabhu/virajprabhu.github.io,snowdj/snowdj.github.io,rraggl/rraggl.github.io,anissen/blog,PeerXu/peerxu.github.io,kongove/kongove.github.com,RandomSeeded/pixyll,hidros3/hidros3.github.io,bytekve/bytekve.github.io,MohamedBassem/MyBlog,hsureads/hsureads.github.io,psvramaraju/mozillabangalore.github.io,jasonrclark/jasonrclark.github.io,raeldominiquini/raeldominiquini.github.io,zettainino/blog,codingdogg/codingdog.org,elephino/thanetwork,jriguera/jose.riguera.es,bradleystachurski/blog,bradleystachurski/Jekyll_Sandbox,banesto/banesto.github.io,ericmittelhammer/ericmittelhammer.github.io,stokeclimsland/stokeclimsland,johnotander/pixyll,jfaganUK/jfaganuk.github.com,bdco/bdco.github.io,jackturnbull/jackturnbull.github.io,nikolspencer/pixyll,nonadmin/nonadmin.github.io,eferdman/eferdman.github.io,thiagokimo/thiagokimo.github.io,attraction/attraction.github.com,richliao/richliao.github.io,yorthehunter/games-database-with-images,muodov/blog,galeone/galeone.github.io,int64ago/int64ago.github.io,samturrell/samturrell.github.io,thomasboyt/devlog.disco.zone,mkoohafkan/mkoohafkan.github.io,ccorral/ccorral.github.io,spaceboats/spaceboats.github.io,galloguille/galloguille.github.io,samtx/pixyll,kongove/kongove.github.com,dSpaceLabs/dspacelabs.github.io,willist/willist.github.io,PDKK/jekyll-site,elephino/thanetwork,faustovaz/faustovaz.github.io,gregdl/gregdl.github.io,MozillaBangalore/mozillabangalore.github.io,quwubin/quwubin.github.com,tanmaybinaykiya/tanmaybinaykiya.github.io,xleon/xleon.github.io,owlgrin/horntell-help,andrew659/andrew659.github.io,TimothyGu/timothygu.github.io,dyg2104/pixyll,Aidenkwok/blog,giacomovagni/pixyll,karawoo/blog,ProtractorNinja/protractor-blog,JulienGenoud/pixyll,vforverity/vforverity.github.io,pramoddas/pramoddas.github.io,jfaganUK/jfaganuk.github.com,nobodyiam/nobodyiam.github.io,rraggl/rraggl.github.io,hakandilek/dilek.me,galeone/galeone.github.io,tormi/tormi.github.io,dvillaj/dvillaj.github.com,ramonaharrison/ramonaharrison.github.io,gburin/presentations,sztyborek/pixyll,marshallshen/blog,sialan/sialan.github.io,aawc-org/aawc-org.github.io,tomerweller/mas865.15-notes,barryridge/barryridge.github.io,adityasaxena/adityasaxena.github.io,banesto/banesto.github.io,goldsborough/goldsborough.github.io,EadanFahey/eadanfahey.github.io,charactory/charactory.github.io,seppinho/seppinho.github.io,prashcr/prashcr.github.io,JoshHarrington/draycore_book,Ema93sh/ema93sh.github.io,smithjw/smithjw.github.io,zackhall/pixyll,jparkie/jparkie.github.io,ho1/ho1.github.io,kylecho/pixyll,eferdman/eferdman.github.io,TyPetrochko/TyPetrochko.github.io,nonadmin/nonadmin.github.io,sasikiran/pixyll,ramjoshi/ramjoshi.github.io,schneidmaster/schneidmaster.github.io,donpiekarz/donpiekarz.github.io,da-publicity/da-publicity.github.io,dimastopel/dimastopel.github.io,gburin/gburin.github.io,ZKHelloworld/ZKHelloworld.github.io,ysubach/ysubach.github.io,deepnavy/deepnavy.github.io,jsharp83/jsharp83.github.io,151686028/pixyll-zh-cn,mkoohafkan/pixyll,PaulDebus/PaulDebus.github.io,freemiumhead/freemiumhead.github.io,adityasaxena/adityasaxena.github.io,royletron/pixyll,gvkalra/gvkalra.github.io,grimsa/grimsa.github.io,fcrimins/fcrimins.github.io,tinygrasshopper/tinygrasshopper.github.io,richliao/richliao.github.io,oarod/oarod.github.io,hakandilek/dilek.me,pwning/pwning.github.io,andrewelizondo/andrewelizondo.github.com,mcliment/mcliment.github.io,alexakimenko/alexakimenko.github.io,davidchen581/davidchen581.github.io,arjunaari/blog,clhenrick/clhenrick.github.io,Aidenkwok/blog,VentureUnknown/ventureunknown.github.io,georgewsinger/georgewsinger.github.io,lucacorsato/lucacorsato.github.io,kongove/kongove.github.com,int64ago/int64ago.github.io,sidbhatt11/sidbhatt11.github.io,thomasboyt/devlog.disco.zone,pvilas/pvilas.github.io,tomerweller/mas865.15-notes,cworks/pixyll,nurandi/nurandi.github.io,iamaprylle/blog,fishnsotong/fishnsotong.github.io,aezlix/aezlix.github.io,bytekve/bytekve.github.io,veverkap/veverkap.github.io,shtpi/shtpi.github.io,4711/pixyll,ja-son/shakecritic,jadianes/jadianes.github.io,Alehanz/alehanz.github.io,jamsinclair/blog,gregdl/gregdl.github.io,gburin/gburin.github.io,thiagokimo/thiagokimo.github.io,waderyan/waderyan.github.io,theshallowbay/theshallowbay.github.io,MohamedBassem/MyBlog,spaceboats/spaceboats.github.io,stgmva/stgmva.github.io,krmaxwell/krmaxwell.github.io,vinodhkris/pixyll,sergiorykov/sergiorykov.github.io,gvkalra/gvkalra.github.io,mstksg/office-hours,Snazzyham/snazzyham.github.io,econmed/econmed.github.io,aawc/blog,jsharp83/jsharp83.github.io,tboerstad/tboerstad.github.io,hapiben/hapiben.github.io,mattbostock/mattbostock.github.io,jasonrclark/jasonrclark.github.io,JulienGenoud/pixyll,aawc/blog,codingdogg/codingdog.org,dan-apatow/old,anissen/blog,joeyrosztoczy/joeyrosztoczy.github.io,gregist/gregist.github.io,nealsun/pixyll-zh-cn,zettainino/blog,raoenhui/pixyll,netosober/netosober.github.io,tormi/tormi.github.io,pepijn/pepijn.github.io,pkvince/pkvince.github.io,wecanwork/wecanwork,deepnavy/deepnavy.github.io,stgmva/stgmva.github.io,alayii/alayii.github.io,benschac/benschac.github.io,gravicle/blog,finless/finless.github.io,gavinwhyte/pixyll,sooriravindra/Blog,alaa/alaa.github.io,akurin/akurin.github.com,andrew659/andrew659.github.io,robertkeizer/robert.keizer.ca,agonyantibodies/agonyantibodies.github.io,johnotander/pixyll,galeone/galeone.github.io,munzala/munzala.github.io,ghuntley/ghuntley.github.io,ironicstone/ironicstone.github.io,apereo/apereo.github.io,meln1k/meln1k.github.io,veverkap/veverkap.github.io,MaizerGomes/pixyll,krmaxwell/krmaxwell.github.io,mattycao/mattycao.github.io,jph/jph.github.io,hsureads/hsureads.github.io,ZKHelloworld/ZKHelloworld.github.io,ramjoshi/ramjoshi.github.io,apereo/apereo.github.io,smithjw/smithjw.github.io,yorthehunter/games-database-with-images,pkvince/pkvince.github.io,jominione/jominione.github.io,hawaiimachinelearning/hawaiimachinelearning.github.io,austin-taylor/austin-taylor.github.io,ericmittelhammer/ericmittelhammer.github.io,zpbappi/zpbappi.github.io,burlistic/burlistic.github.io,harmishhk/pixyll,asnr/asnr.github.io,seppinho/seppinho.github.io,richardjennings/richardjennings.github.io,shankarv25/shankarv25.github.io,pccassin/pccassin.github.io,tystr/tystr.github.io,karlajaramillo/karlajaramillo.github.io,brollb/brollb.github.io,smithjw/smithjw.github.io,georgringer/georgringer.github.com,withsellit/withsellit.github.io,samturrell/samturrell.github.io,muodov/blog,ghuntley/ghuntley.github.io,veromary/repleatur,mkoohafkan/mkoohafkan.github.io,k3rn31/k3rn31.github.io,adammichaelwood/progressive-solemnity,diegonogueira/diegonogueira.github.io,dSpaceLabs/dspacelabs.github.io,cyphus/missingtoken,jtomchak/jstoelm,galeone/galeone.github.io,ccorral/ccorral.github.io,karmeye/pixyll,austin-taylor/austin-taylor.github.io,andrewelizondo/andrewelizondo.github.com,ProtractorNinja/protractor-blog,nikolspencer/pixyll,bytekve/bytekve.github.io,anarchivist/mxyzptlk,sztyborek/pixyll,jriguera/jose.riguera.es,jas-on/jas-on.github.io,marshallshen/blog,ffrank/ffrank.github.io,tuncagurkan/tuncagurkan.github.io,exogenesick/exogenesick.github.io,rightlag/rightlag.github.io,neeravkumar/neeravkumar.github.io,theshallowbay/theshallowbay.github.io,jas-on/jas-on.github.io,nov1n/nov1n.github.io,harmishhk/pixyll,hygkui/hygkui.github.io,niftyn8/niftyn8.github.io,mradwan/mradwan.github.io,ecksma/ecksma.github.io,bronzehedwick/bronzehedwick.github.io,maliit/maliit.github.io,sushant94/sushant94.github.io,jiangplus/jiangplus.github.io,digideskio/pixyll,majidfn/FarsiBlog,rafael-neri/jekyll-simple-theme,ethirajsrinivasan/blog,kalkin7/blogtest01,tpot/tpot.github.io,mohamedkomalo/mohamedkomalo.github.io,deepnavy/deepnavy.github.io,vinodhkris/pixyll,abhayghatpande/abhayghatpande.github.io,zpbappi/pixyll,zpbappi/zpbappi.github.io,raeldominiquini/raeldominiquini.github.io,tanmaybinaykiya/tanmaybinaykiya.github.io,karawoo/blog,cweachock/cweachock.github.io,richliao/richliao.github.io,kevinjcash/kevinjcash.github.io,anmolhundal/anmolhundal.github.io,OpenAPC/openapc.github.io,stgmva/stgmva.github.io,rinatkhanov/rinatkhanov.github.io,barryridge/barryridge.github.io,mnbbrown/mnbbrown.github.io,willist/willist.github.io,jsharp83/jsharp83.github.io,apereo/apereo.github.io,royletron/pixyll,gregist/gregist.github.io,galeone/galeone.github.io,gokulkrishh/pixyll,tmpjr/tmpjr.github.io,barryridge/barryridge.github.io,captbaritone/pixyll,lvictorino/lvictorino.github.io,karawoo/blog,lukejharmon/lukejharmon.github.io,derekhubbard/derekhubbard.github.io,marshallshen/blog,deepredsky/deepredsky.github.io,veromary/repleatur,mradwan/mradwan.github.io,martinkirsche-de/mamina.de,thomasboyt/devlog.disco.zone,bertschneider/bertschneider.github.io,attraction/attraction.github.com,mattkosoy/mattkosoy.github.io,casaval/pixyll,jsharp83/jsharp83.github.io,jominione/jominione.github.io,kongove/kongove.github.com,diegonogueira/diegonogueira.github.io,pwning/pwning.github.io,mbaharsyah/mbaharsyah.github.io,freemiumhead/freemiumhead.github.io,joshsmoore/mooreabout_me,paliwodar/paliwodar.github.io,derekhubbard/derekhubbard.github.io,pwning/pwning.github.io,mcliment/mcliment.github.io,agonyantibodies/agonyantibodies.github.io,munzala/munzala.github.io,gnalck/gnalck.github.io,levionessa/levionessa.github.io,cweachock/cweachock.github.io,JoshHarrington/draycore_book,Tylerflick/tylerflick.github.io,JakeWengroff/jakewengroff.github.io,imlazyone/imlazyone.github.io,econmed/econmed.github.io,donpiekarz/donpiekarz.github.io,tanmaybinaykiya/tanmaybinaykiya.github.io,jadianes/jadianes.github.io,hawaiimachinelearning/hawaiimachinelearning.github.io,imlazyone/imlazyone.github.io,levionessa/levionessa.github.io,mgkrishnanblog/mgkrishnanblog.github.io,mkoohafkan/mkoohafkan.github.io,sasikiran/pixyll,jmhol9/jmhol9.github.com,gburin/gburin.github.io,Legitcode/pixyll,waderyan/waderyan.github.io,mattfritz/mattfritz.github.io
05d4efffaa77ad1ed8114388048b78a95732f2e1
.travis.yml
.travis.yml
sudo: false language: python python: - "3.5" addons: apt: packages: - git install: - pip install -r requirements-py35-linux64.txt - if [ "$(git ls-remote --heads https://github.com/gem/oq-hazardlib.git ${TRAVIS_BRANCH})" != "" ]; then BRANCH=$TRAVIS_BRANCH; else BRANCH='master'; fi; git clone -b ${BRANCH} --depth=1 https://github.com/gem/oq-hazardlib.git && echo "Running on oq-hazardlib/${BRANCH}" - pip install -e oq-hazardlib/ - pip install -e . script: - python -c'import platform; print(platform.platform())' - bin/run-demos.sh - nosetests --with-doctest -vsx -a'!slow' - cat /tmp/webui* - bin/oq reset --yes after_success: - pip install sphinx==1.3.6 - cd doc/sphinx - make html
sudo: false language: python python: - "3.5" addons: apt: packages: - git install: - pip install -r requirements-py35-linux64.txt - if [ "$TRAVIS_PULL_REQUEST_BRANCH" != "" ]; then BRANCH=$TRAVIS_PULL_REQUEST_BRANCH; else BRANCH=$TRAVIS_BRANCH; fi - if [ "$(git ls-remote --heads https://github.com/gem/oq-hazardlib.git ${BRANCH})" == "" ]; then BRANCH='master'; fi; git clone -b ${BRANCH} --depth=1 https://github.com/gem/oq-hazardlib.git && echo "Running on oq-hazardlib/${BRANCH}" - pip install -e oq-hazardlib/ - pip install -e . script: - python -c'import platform; print(platform.platform())' - bin/run-demos.sh - nosetests --with-doctest -vsx -a'!slow' - cat /tmp/webui* - bin/oq reset --yes after_success: - pip install sphinx==1.3.6 - cd doc/sphinx - make html
Fix an issue with Travis branches when submitting PR
Fix an issue with Travis branches when submitting PR Former-commit-id: a4df59031215c7299d1b9ec356bef7c4239a2c91 [formerly a4df59031215c7299d1b9ec356bef7c4239a2c91 [formerly 6c9f86db276cecb69b7fc7d6232e779be648d811]] Former-commit-id: 3d9fc8d82f06ac31a4af7b938425c97945bb8ab8 Former-commit-id: 2e15460537edce9edf26002cde1d7f6febefdc9c
YAML
agpl-3.0
gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine
fbac9b84111529ad9eb996cc837941ca5d6792ca
.travis.yml
.travis.yml
language: java cache: directories: - $HOME/.m2 jdk: - oraclejdk8 before_install: # Install a newer version of Maven, because Travis provides an outdated version. - wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip - unzip -qq apache-maven-3.3.9-bin.zip - export M2_HOME=$PWD/apache-maven-3.3.9 - export PATH=$M2_HOME/bin:$PATH
sudo: false language: java cache: directories: - $HOME/.m2 jdk: - oraclejdk8 before_install: # Install a newer version of Maven, because Travis provides an outdated version. - wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip - unzip -qq apache-maven-3.3.9-bin.zip - export M2_HOME=$PWD/apache-maven-3.3.9 - export PATH=$M2_HOME/bin:$PATH
Add sudo: false property to Travis CI configuration.
Add sudo: false property to Travis CI configuration.
YAML
apache-2.0
shopping24/redjob
1841e199b77ee8c58767d53770b60e591869366b
_config.yml
_config.yml
# The public documentation URL, used for sitemap.xml url: "http://docs.telerik.com/devtools/report-server" # Exclude files which should not be in the output exclude: [README.md,Gemfile,Gemfile.lock] navigation: ## List your directory names and order here, like this: ## Overview topics are generated with position 10 ## Other topics are generated with position 100, 200, 300, etc. ## Main Menu "*foo": title: Foo ## Upgrading ## The application virtual path baseurl: /devtools/report-server ## The product name productName: "Report Server" ## Assign layout and category per different paths defaults: - scope: path: "" values: layout: "page" category: "default" # Aliases available in the markdown template. The below will expand {{site.foo}} to Bar in the output # "foo": "Bar" # The google services configuration google_tag_manager: GTM-6X92 google_custom_search: '001595215763381649090:eblhnfskwrk' # Assets pipeline configuration assets: cachebust: soft js_compressor: uglifier ## Do not edit below this line safe: false markdown: MarkdownProcessor kramdown: toc_levels: 2..3 smart_quotes: ["quot", "quot", "quot", "quot"] input: GFM
# The public documentation URL, used for sitemap.xml url: "http://docs.telerik.com/devtools/report-server" # Exclude files which should not be in the output exclude: [README.md,Gemfile,Gemfile.lock] navigation: ## List your directory names and order here, like this: ## Overview topics are generated with position 10 ## Other topics are generated with position 100, 200, 300, etc. ## Main Menu "*foo": title: Foo ## Upgrading ## The application virtual path baseurl: /devtools/report-server ## The product name productName: "Report Server" ## Assign layout and category per different paths defaults: - scope: path: "" values: layout: "page" category: "default" # Aliases available in the markdown template. The below will expand {{site.foo}} to Bar in the output # "foo": "Bar" # The google services configuration google_tag_manager: GTM-6X92 google_custom_search: '001595215763381649090:dikfyfm1qqw' # Assets pipeline configuration assets: cachebust: soft js_compressor: uglifier ## Do not edit below this line safe: false markdown: MarkdownProcessor kramdown: toc_levels: 2..3 smart_quotes: ["quot", "quot", "quot", "quot"] input: GFM
Update Google custom search key
Update Google custom search key
YAML
apache-2.0
ighristov/report-server-docs,telerik/report-server-docs,ighristov/report-server-docs,ighristov/report-server-docs
5e17ba95a87a843df91f97e6a3484e845a33d04d
_config.yml
_config.yml
# Dependencies markdown: redcarpet pygments: true # Permalinks permalink: pretty # Setup title: cliff538 tagline: 'Never Stop Learning' description: 'Learning Swift and a bunch or other stuff... my thoughts and process' url: http://lanyon.getpoole.com author: name: 'cliff538' url: http://cliff538.github.io paginate: 5 # Custom vars version: 2.0.0 github: repo: https://github.com/poole/lanyon pages_list: About: '/about' Archive: '/archive' Feed: '/atom.xml'
# Dependencies markdown: redcarpet pygments: true # Permalinks permalink: pretty # Setup title: cliff538 tagline: 'Never Stop Learning' description: 'A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.' url: http://lanyon.getpoole.com author: name: 'Mark Otto' url: https://twitter.com/mdo paginate: 5 # Custom vars version: 2.0.0 github: repo: https://github.com/poole/lanyon pages_list: About: '/about' Archive: '/archive' Feed: '/atom.xml'
Revert "small wording changes; tagline, website, etc"
Revert "small wording changes; tagline, website, etc" This reverts commit 6fa5fb13468d91a6330884f547e265b3b37b8249.
YAML
mit
cliff538/cliff538.github.io
0a8acab84cab33f7b0ab57708e9f663b950e6273
.travis.yml
.travis.yml
language: python install: - pip install tox env: - TOX_ENV=python27-django14 - TOX_ENV=python27-django16 - TOX_ENV=python27-django17 - TOX_ENV=python27-djangodev - TOX_ENV=python33-django14 - TOX_ENV=python33-django16 - TOX_ENV=python33-django17 - TOX_ENV=python33-djangodev - TOX_ENV=python34-django14 - TOX_ENV=python34-django16 - TOX_ENV=python34-django17 - TOX_ENV=python34-djangodev - TOX_ENV=cov - TOX_ENV=flake8 script: - tox -e $TOX_ENV matrix: fast_finish: true allow_failures: - env: TOX_ENV=python27-djangodev - env: TOX_ENV=python33-djangodev - env: TOX_ENV=python34-djangodev
language: python install: - pip install tox env: - TOX_ENV=python27-django14 - TOX_ENV=python27-django16 - TOX_ENV=python27-django17 - TOX_ENV=python27-djangodev - TOX_ENV=python33-django16 - TOX_ENV=python33-django17 - TOX_ENV=python33-djangodev - TOX_ENV=python34-django16 - TOX_ENV=python34-django17 - TOX_ENV=python34-djangodev - TOX_ENV=cov - TOX_ENV=flake8 script: - tox -e $TOX_ENV matrix: fast_finish: true allow_failures: - env: TOX_ENV=python27-djangodev - env: TOX_ENV=python33-djangodev - env: TOX_ENV=python34-djangodev
Drop Python 3 Django 1.4 tests from Travis matrix
Drop Python 3 Django 1.4 tests from Travis matrix (should have been included in b8eeadad43f47ff45e1d4cdbc6a2baed3f02bbf8)
YAML
mit
laterpay/django-laterpay
4b7e328b840b9564867951703672203fe537d1ab
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: 5.6 - php: hhvm before_script: - php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ & script: - cd tests && phpunit --configuration phpunit.xml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: 5.6 - php: hhvm before_script: - php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ & script: - php -l src/* - cd tests && phpunit --configuration phpunit.xml
Add PHP syntax/lint check to continuous integration tests
Add PHP syntax/lint check to continuous integration tests
YAML
unlicense
marius321967/php-curl-class,zachborboa/php-curl-class,smartkey86/php-curl-class,evcehiack/php-curl-class,Savageman/php-curl-class,thebeline/php-curl-class,taohaoge/php-curl-class,thebeline/php-curl-class,tillz/php-curl-class,tillz/php-curl-class,php-curl-class/php-curl-class,zachborboa/php-curl-class,Worm/php-curl-class,heatery/php-curl-class,jack-theripper/php-curl-class,Worm/php-curl-class,ValerioOnGithub/php-curl-class,SahilDude89ss/php-curl-class,VolCh/php-curl-class,ValerioOnGithub/php-curl-class,zachborboa/php-curl-class,hebaoxia/php-curl-class,php-curl-class/php-curl-class,smartkey86/php-curl-class,craa/php-curl-class,petewatts/php-curl-class,sebwas/php-curl-class,php-curl-class/php-curl-class,jahanzaibbahadur/php-curl-class,ptrnov/php-curl-class,Savageman/php-curl-class,VolCh/php-curl-class,heatery/php-curl-class,ptrnov/php-curl-class,jahanzaibbahadur/php-curl-class,craa/php-curl-class,SahilDude89ss/php-curl-class,petewatts/php-curl-class,taohaoge/php-curl-class,jack-theripper/php-curl-class,Jiangyoung/php-curl-class,hebaoxia/php-curl-class,evcehiack/php-curl-class,sebwas/php-curl-class,Jiangyoung/php-curl-class
7021cef3cb8f15fbc3879102a9be55a4f132c60d
.travis.yml
.travis.yml
language: python python: - "3.3" - "3.2" - "2.7" - "2.6" - "2.5" - "pypy" install: pip install nose script: nosetests
language: python python: - "3.3" - "3.2" - "2.7" - "2.6" - "2.5" - "pypy" install: pip install nose script: nosetests notifications: irc: "chat.freenode.net#discorporate"
Send Travis notices to freenode
Send Travis notices to freenode
YAML
mit
jek/blinker