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
a9828edffd9b66c61eb0ec0fcee9e355a96ce5b8
.travis.yml
.travis.yml
language: php sudo: false php: - 7.0 - 7.1 - 7.2 cache: directories: - vendor before_script: - composer install script: - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: # code coverage currently does not seem to be supported on travis php 7 or hhvm - vendor/bin/coveralls --verbose
language: php sudo: false php: - 7.0 - 7.1 - 7.2 matrix: allow_failures: - php: 7.0 # Does not work until https://github.com/sebastianbergmann/phpunit/issues/2754 is resolved cache: directories: - vendor before_script: - composer install script: - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: # code coverage currently does not seem to be supported on travis php 7 or hhvm - vendor/bin/coveralls --verbose
Allow failures on the PHP 7.0 build due to impossible dependencies in PHPUnit
Allow failures on the PHP 7.0 build due to impossible dependencies in PHPUnit Issue was reported at sebastianbergmann/phpunit#2754
YAML
mit
afk11/PHPASN1,fgrosse/PHPASN1
cb85b957ff3ea46678c5c9f0a9d520da220ed4b3
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/
dist: trusty language: java jdk: - openjdk8 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/
Switch Travis CI to trusty and openjdk8
Switch Travis CI to trusty and openjdk8
YAML
lgpl-2.1
xenomachina/xenocom
e1650a7dbc5276403b7ab4f45cec33ac1916db0e
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9 branches: only: - develop before_install: - echo -e "machine github.com\n login $GITHUB_ACCESS_TOKEN" >> ~/.netrc script: - ./fastlane/travis.sh
language: objective-c osx_image: xcode9.2 branches: only: - develop before_install: - echo -e "machine github.com\n login $GITHUB_ACCESS_TOKEN" >> ~/.netrc script: - ./fastlane/travis.sh
Use xcode9.2 image to build
Use xcode9.2 image to build
YAML
mit
mssun/passforios,mssun/passforios,mssun/pass-ios,mssun/passforios,mssun/passforios,mssun/passforios,mssun/pass-ios
8d89d9749c83d424fca92ee24b7cb11ee0319f2f
.travis.yml
.travis.yml
language: node_js node_js: - 6 addons: apt: packages: # Dependencies for `canvas` (required by `d3`) # See https://github.com/Automattic/node-canvas/blob/master/.travis.yml - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev cache: directories: - node_modules script: - make lint - make cover - make docs after_success: - bash <(curl -s https://codecov.io/bash)
language: node_js node_js: - 7 - 6 # Dependencies for `canvas` (required by `d3`) # See https://github.com/Automattic/node-canvas/blob/master/.travis.yml addons: apt: sources: - ubuntu-toolchain-r-test packages: - libcairo2-dev - libjpeg8-dev - libpango1.0-dev - libgif-dev - g++-4.9 env: - CXX=g++-4.9 cache: directories: - node_modules script: - make lint - make cover - make docs after_success: - bash <(curl -s https://codecov.io/bash)
Add g++-4.9 and Node 7
Add g++-4.9 and Node 7
YAML
apache-2.0
stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila
323dc3bd48a9878bb561ead0fa73ef82939383b6
.travis.yml
.travis.yml
sudo: false # Ruby is the main language of the project. language: ruby bundler_args: --with development,ci # Cache third party dependencies for faster builds cache: apt: true bundler: true directories: # Cache NPM packages - lib/assets/node_modules - $HOME/.npm addons: chrome: stable apt: packages: - nodejs matrix: fast_finish: true include: rvm: # Use 2.4.1, since this is installed by default on Travis (1st Aug, 2018) - 2.4.1 # These env variables will set up a separate testing environment for each # combination of variables. env: # Run specs once with each database adapter we support - DB_ADAPTER=postgresql - DB_ADAPTER=mysql2 # Main test script script: # Precompile the assets - bundle exec rake assets:precompile # Copy over config files needed for setup, and create DB - bin/setup # Default test stage: Run all specs, listing the 10 slowest. - bundle exec rspec spec --profile=10 # Run these stages in this order: stages: - security - test # Define each stage (test is already defined automatically) jobs: include: # Run Brakeman check with warning level 2, except these two checks: - stage: security name: "Brakeman check" script: bundle exec brakeman -w2 --except=Redirect,CrossSiteScripting - stage: security name: "Bundle audit" script: bundle exec bundle-audit check --update
sudo: false # Ruby is the main language of the project. language: ruby bundler_args: --with development,ci # Cache third party dependencies for faster builds cache: apt: true bundler: true directories: # Cache NPM packages - lib/assets/node_modules - $HOME/.npm addons: chrome: stable apt: packages: - nodejs matrix: fast_finish: true include: rvm: # Use 2.4.1, since this is installed by default on Travis (1st Aug, 2018) - 2.4.1 # These env variables will set up a separate testing environment for each # combination of variables. env: # Run specs once with each database adapter we support - DB_ADAPTER=postgresql - DB_ADAPTER=mysql2 # Main test script script: # Copy over config files needed for setup, and create DB - bin/setup # Precompile the assets - bundle exec rake assets:precompile # Default test stage: Run all specs, listing the 10 slowest. - bundle exec rspec spec --profile=10 # Run these stages in this order: stages: - security - test # Define each stage (test is already defined automatically) jobs: include: # Run Brakeman check with warning level 2, except these two checks: - stage: security name: "Brakeman check" script: bundle exec brakeman -w2 --except=Redirect,CrossSiteScripting - stage: security name: "Bundle audit" script: bundle exec bundle-audit check --update
Swap rake assets compilation with bin/setup task
Swap rake assets compilation with bin/setup task
YAML
mit
CDLUC3/roadmap,DigitalCurationCentre/roadmap,DMPRoadmap/roadmap,CDLUC3/roadmap,CDLUC3/roadmap,CDLUC3/dmptool,CDLUC3/roadmap,DigitalCurationCentre/roadmap,CDLUC3/dmptool,DigitalCurationCentre/roadmap,DMPRoadmap/roadmap,CDLUC3/dmptool,DMPRoadmap/roadmap,CDLUC3/dmptool
5b0af1a3a39568d402722c899a9cb88713f90c45
.travis.yml
.travis.yml
language: node_js notifications: email: on_success: never on_failure: change node_js: - 0.10 branches: only: - master
language: node_js notifications: email: on_success: never on_failure: change node_js: - 8 - 10 - 12 - 13 branches: only: - master
Reconfigure Travis CI to use current versions of Node.js
Reconfigure Travis CI to use current versions of Node.js These are all currently supported versions plus 8 (because that's just two weeks out of support).
YAML
mit
atom/node-ls-archive
78f98e40e55b2a606cc8817bcfe25c003539a712
data/plugins/generic/cache-control/v1/config-plugin.yml
data/plugins/generic/cache-control/v1/config-plugin.yml
src: web activate: yes tables: options: - autoload: 'yes' option_id: 379 option_name: cache_control_front_page_max_age option_value: '300'
src: web activate: yes tables: options: - autoload: 'yes' option_id: 379 option_name: cache_control_front_page_max_age option_value: '300' - autoload: 'yes' option_id: 380 option_name: cache_control_pages_max_age option_value: '300'
Set cache_control_pages_max_age to 5 minutes
Set cache_control_pages_max_age to 5 minutes Experience shows that 20 minutes is too long a wait for our users when they update a page.
YAML
mit
epfl-idevelop/jahia2wp,epfl-idevelop/jahia2wp,epfl-idevelop/jahia2wp,epfl-idevelop/jahia2wp
5870427b47ba762a6b8b02b3550e7e9829ead493
docker-compose.yml
docker-compose.yml
version: '2' services: db: image: mysql:5.5 environment: - MYSQL_ROOT_PASSWORD=root - MYSQL_DATABASE=coda_local base: build: . volumes: - .:/app/ - ./docker_secrets.json:/app/secrets.json app: extends: service: base command: ./appstart.sh ports: - "8787:8787" links: - db test: extends: service: base entrypoint: pytest --flake8 links: - db manage: extends: service: base entrypoint: /app/manage.py links: - db
version: '2' services: db: image: mysql:5.5 command: --sql_mode="only_full_group_by" environment: - MYSQL_ROOT_PASSWORD=root - MYSQL_DATABASE=coda_local base: build: . volumes: - .:/app/ - ./docker_secrets.json:/app/secrets.json app: extends: service: base command: ./appstart.sh ports: - "8787:8787" links: - db test: extends: service: base entrypoint: pytest --flake8 links: - db manage: extends: service: base entrypoint: /app/manage.py links: - db
Enable `only_full_groupby` sql_mode in docker container
Enable `only_full_groupby` sql_mode in docker container
YAML
bsd-3-clause
unt-libraries/coda,unt-libraries/coda,unt-libraries/coda,unt-libraries/coda
3d3c335f384074cb0716f6d41acdad872a030567
docker-compose.yml
docker-compose.yml
version: '3' services: pybossa: build: context: ./docker dockerfile: ./Dockerfile args: - SOURCE_BRANCH="${SOURCE_BRANCH:-master}" environment: - PYBOSSA_SECRET=test-only-y8y2i4ISpfwEMhLjUfXH9e5qA8qJkKA31tuLakvy - PYBOSSA_SESSION_SECRET=test-only-y8y2i4ISpfwEMhLjUfXH9e5qA8qJkKA31tuLakvy - PYBOSSA_DATABASE_URL=postgresql://dfuser:test-only-RDkWWAG9jXMAFO8pXu6K@pybossa-db/dforce - PYBOSSA_ITSDANGEROUS_SECRET=test-only-2R1ucOk8KxEeh5SCaXcWPt4oDf2sHQvpiyHAPoyX - PYBOSSA_BRAND=Deciding Force - PYBOSSA_TITLE=Deciding Force - PYBOSSA_LOGO=textthresher_logo.png depends_on: - pybossa-db ports: - "8000:80" pybossa-db: image: postgres:9.4 environment: - POSTGRES_USER=dfuser - POSTGRES_PASSWORD=test-only-RDkWWAG9jXMAFO8pXu6K - POSTGRES_DB=dforce
version: '3' services: pybossa: build: context: ./docker dockerfile: ./Dockerfile args: - SOURCE_BRANCH="${SOURCE_BRANCH:-master}" environment: - PYBOSSA_SECRET=test-only-y8y2i4ISpfwEMhLjUfXH9e5qA8qJkKA31tuLakvy - PYBOSSA_SESSION_SECRET=test-only-y8y2i4ISpfwEMhLjUfXH9e5qA8qJkKA31tuLakvy - PYBOSSA_DATABASE_URL=postgresql://dfuser:test-only-RDkWWAG9jXMAFO8pXu6K@pybossa-db/dforce - PYBOSSA_ITSDANGEROUS_SECRET=test-only-2R1ucOk8KxEeh5SCaXcWPt4oDf2sHQvpiyHAPoyX - PYBOSSA_BRAND=Deciding Force - PYBOSSA_TITLE=Deciding Force - PYBOSSA_LOGO=default_logo.svg depends_on: - pybossa-db ports: - "8000:80" pybossa-db: image: postgres:9.4 environment: - POSTGRES_USER=dfuser - POSTGRES_PASSWORD=test-only-RDkWWAG9jXMAFO8pXu6K - POSTGRES_DB=dforce
Revert to default Pybossa logo.
Revert to default Pybossa logo.
YAML
apache-2.0
Goodly/pybossa-build,Goodly/pybossa-build
fb7c4eb7f7f2180673ee5f591f745a9f57c8a648
docker-compose.yml
docker-compose.yml
version: '2' services: server: build: . entrypoint: /entrypoint.sh environment: - POSTGRES_PASSWORD=postgres command: postgres -c config_file='/conf/postgresql.conf' ports: - "5432:5432" volumes: - ./data:/data - ./conf:/conf:ro - ./conf.d:/conf.d:ro - ./initdb.d:/initdb.d:ro - /net/bioaps01/srv/nfs4/solexa:/mnt/solexa:ro
version: '2' services: server: build: . environment: - POSTGRES_PASSWORD=postgres entrypoint: /entrypoint.sh expose: - "5432" command: postgres -c config_file='/conf/postgresql.conf' ports: - "5432:5432" volumes: - ./data:/data - ./conf:/conf:ro - ./conf.d:/conf.d:ro - ./initdb.d:/initdb.d:ro - /net/bioaps01/srv/nfs4/solexa:/mnt/solexa:ro
Add EXPOSE to compose file to enable overriding it
Add EXPOSE to compose file to enable overriding it
YAML
mit
wjv/mypg
86dd7953fbcefc180ccab002c4902c347e163d2f
roles/misc-perftools/tasks/main.yml
roles/misc-perftools/tasks/main.yml
--- - name: Install APT packages sudo: True apt: pkg: "{{ item }}" state: present update_cache: yes cache_valid_time: 3600 with_items: - git - sysstat - nmon - iotop - bwm-ng - name: Create directory for kvm metric collection configuration file file: path=/opt/telegraf state=directory mode=0755 when: "'compute_hosts' in group_names" - name: Set configuration file for kvm metric collection copy: src: "files/{{ item }}" dest: "/opt/telegraf/{{ item }}" mode: 0755 with_items: - kvm_virsh.py when: "'compute_hosts' in group_names" - name: Install perf-tools from git git: repo: "{{ perf_tools_git_repo }}" dest: "{{ perf_tools_git_dest }}" version: "{{ perf_tools_git_install_branch }}" when: misc-perftools-install-tracing-tools
--- - name: Install APT packages sudo: True apt: pkg: "{{ item }}" state: present update_cache: yes cache_valid_time: 3600 with_items: - git - sysstat - nmon - iotop - bwm-ng - name: Create directory for kvm metric collection configuration file file: path=/opt/telegraf state=directory mode=0755 when: "'compute_hosts' in group_names" - name: Set configuration file for kvm metric collection copy: src: "files/{{ item }}" dest: "/opt/telegraf/{{ item }}" owner: "telegraf" group: "telegraf" mode: 0755 with_items: - kvm_virsh.py when: "'compute_hosts' in group_names" - name: Install perf-tools from git git: repo: "{{ perf_tools_git_repo }}" dest: "{{ perf_tools_git_dest }}" version: "{{ perf_tools_git_install_branch }}" when: misc-perftools-install-tracing-tools
Add owner and group for file copy
tasks: Add owner and group for file copy As request in PR#4.
YAML
apache-2.0
meteorfox/os-ansible-perftools,meteorfox/os-ansible-perftools,meteorfox/os-ansible-perftools
decfbe30348b779a40883c7a99166dadca85a538
roles/sandbox-remote/tasks/main.yml
roles/sandbox-remote/tasks/main.yml
--- - include_vars: "{{ playbook_dir }}/roles/mariadb/defaults/main.yml" when: "{{ mariadb_backup_dir is not defined }}" - name: Fetch DB files fetch: src: "{{ mariadb_backup_dir }}/{{ sandbox_config.shared_db_name }}-latest.sql.gz" dest: "/tmp/{{ sandbox_config.shared_db_name }}.sql.gz" fail_on_missing: yes flat: yes - name: Rsync WP (without uploads) synchronize: archive: yes src: "{{ www_root }}/{{ sandbox_config.source_site_key }}/" dest: "{{ www_root }}/{{ item.key }}/" mode: pull delete: yes group: no owner: no rsync_opts: "{{ sandbox_config.wp_rsync_opts.root }}" with_dict: "{{ wordpress_sites }}" - name: Rsync WP uploads synchronize: archive: yes src: "{{ www_root }}/{{ sandbox_config.source_site_key }}/wp-content/uploads/" dest: "{{ www_root }}/{{ item.key }}/wp-content/uploads/" mode: pull delete: yes group: no owner: no rsync_opts: "{{ sandbox_config.wp_rsync_opts.uploads }}" with_dict: "{{ wordpress_sites }}"
--- - include_vars: "{{ playbook_dir }}/roles/mariadb/defaults/main.yml" when: mariadb_backup_dir is not defined - name: Fetch DB files fetch: src: "{{ mariadb_backup_dir }}/{{ sandbox_config.shared_db_name }}-latest.sql.gz" dest: "/tmp/{{ sandbox_config.shared_db_name }}.sql.gz" fail_on_missing: yes flat: yes - name: Rsync WP (without uploads) synchronize: archive: yes src: "{{ www_root }}/{{ sandbox_config.source_site_key }}/" dest: "{{ www_root }}/{{ item.key }}/" mode: pull delete: yes group: no owner: no rsync_opts: "{{ sandbox_config.wp_rsync_opts.root }}" with_dict: "{{ wordpress_sites }}" - name: Rsync WP uploads synchronize: archive: yes src: "{{ www_root }}/{{ sandbox_config.source_site_key }}/wp-content/uploads/" dest: "{{ www_root }}/{{ item.key }}/wp-content/uploads/" mode: pull delete: yes group: no owner: no rsync_opts: "{{ sandbox_config.wp_rsync_opts.uploads }}" with_dict: "{{ wordpress_sites }}"
Fix warning for when statement
Fix warning for when statement
YAML
mit
proteusthemes/pt-ops,proteusthemes/pt-ops,proteusthemes/pt-ops
db92b1d298e320b40d55e430139dcbed3708db47
.github/workflows/deploy-to-cocoapods.yml
.github/workflows/deploy-to-cocoapods.yml
# How to update COCOAPODS_TRUNK_TOKEN # # 1) Register the email with: # pod trunk register <email> --description='Deploy to CocoaPods GitHub Action' # # 2) Click the link on the confirmation email. # # 3) Extract the value from the "password <COCOAPODS_TRUNK_TOKEN>" like output of the following command: # grep -A2 'trunk.cocoapods.org' ~/.netrc | grep password # # 4) IMPORTANT - Register again to locally use a separate token: # pod trunk register <email> --description='<Machine description>' # name: Deploy to CocoaPods on: release: types: [created] jobs: build: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Update Podspec version run: fastlane run version_bump_podspec path:ImmutableGraph.podspec version_number:${{ github.ref }} - name: switching from HTTPS to SSH run: git remote set-url origin ${{ secrets.ssh }} - name: check for changes run: git status # - name: Pod infos # run: pod trunk info ImmutableGraph # - name: Validation # run: pod lib lint ImmutableGraph.podspec # - name: Deploy # run: pod trunk push ImmutableGraph.podspec # env: # COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
# How to update COCOAPODS_TRUNK_TOKEN # # 1) Register the email with: # pod trunk register <email> --description='Deploy to CocoaPods GitHub Action' # # 2) Click the link on the confirmation email. # # 3) Extract the value from the "password <COCOAPODS_TRUNK_TOKEN>" like output of the following command: # grep -A2 'trunk.cocoapods.org' ~/.netrc | grep password # # 4) IMPORTANT - Register again to locally use a separate token: # pod trunk register <email> --description='<Machine description>' # name: Deploy to CocoaPods on: release: types: [created] jobs: build: runs-on: macos-latest steps: - uses: actions/checkout@v2 - name: Update Podspec version run: fastlane run version_bump_podspec path:ImmutableGraph.podspec version_number:${${{ github.ref }}#"refs/tags/"} # - name: switching from HTTPS to SSH # run: git remote set-url origin ${{ secrets.ssh }} - name: check for changes run: git status # - name: Pod infos # run: pod trunk info ImmutableGraph # - name: Validation # run: pod lib lint ImmutableGraph.podspec # - name: Deploy # run: pod trunk push ImmutableGraph.podspec # env: # COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
Deploy to CocoaPods on release created test
Deploy to CocoaPods on release created test
YAML
mit
horothesun/ImmutableGraph,horothesun/ImmutableGraph,horothesun/ImmutableGraph
07dc2d0bd157d68cff91ef31ba689683130360ef
provisioning/roles/scraping-platform-app/tasks/main.yml
provisioning/roles/scraping-platform-app/tasks/main.yml
--- - name: Ensure git is installed apt: pkg=git - name: Ensure that deploy owns /var/www file: owner=deploy group=deploy path=/var/www - name: Generate the apache config for the app template: src=default dest=/etc/apache2/sites-available/default notify: Restart Apache - name: Ensure that .env exists (but will need to be filled in by hand) file: path=/var/www/shared/.env owner=deploy group=deploy state=touch
--- # TODO Ensure that deploy user is setup first # TODO Ensure that apache is setup first - name: Ensure git is installed apt: pkg=git - name: Ensure that deploy owns /var/www file: owner=deploy group=deploy path=/var/www - name: Generate the apache config for the app template: src=default dest=/etc/apache2/sites-available/default notify: Restart Apache - name: Ensure that .env exists (but will need to be filled in by hand) file: path=/var/www/shared/.env owner=deploy group=deploy state=touch # TODO This is a nasty hack. Would be much nicer to do this in the capistrano # deploy. But security concerns (the need for passwordless sudo) make this hard. - name: Install foreman gem: name=foreman state=present - name: Ensure Procfile.vagrant copied copy: src=../Procfile.vagrant dest=/home/deploy/Procfile.vagrant - name: Ensure upstart is setup for the application command: foreman export upstart /etc/init -u deploy -a scraping-platform -f /home/deploy/Procfile.vagrant --root /var/www/current
Add hack to setup upstart (better done in capistrano)
Add hack to setup upstart (better done in capistrano)
YAML
agpl-3.0
openaustralia/morph,openaustralia/morph,OpenAddressesUK/morph,openaustralia/morph,openaustralia/morph,otherchirps/morph,otherchirps/morph,otherchirps/morph,otherchirps/morph,otherchirps/morph,otherchirps/morph,otherchirps/morph,OpenAddressesUK/morph,openaustralia/morph,openaustralia/morph,OpenAddressesUK/morph,OpenAddressesUK/morph,openaustralia/morph
7a0e856a3ec8f8ccea3e22796d0185d6c16a2381
assignments/ruby/rna-transcription/data.yml
assignments/ruby/rna-transcription/data.yml
--- blurb: "Write a program that can translate a given DNA string to the transcribed RNA string corresponding to it." source: "Rosalind" source_url: "http://rosalind.info/problems"
--- blurb: "Write a program that can translate a given DNA string to the transcribed RNA string corresponding to it." source: "Rosalind" source_url: "http://rosalind.info/problems/rna"
Fix source of rna-transcription problem
Fix source of rna-transcription problem
YAML
agpl-3.0
mscoutermarsh/exercism_coveralls,sheekap/exercism.io,alexclarkofficial/exercism.io,Tonkpils/exercism.io,IanDCarroll/exercism.io,alexclarkofficial/exercism.io,sheekap/exercism.io,exercistas/exercism.io,copiousfreetime/exercism.io,bmulvihill/exercism.io,IanDCarroll/exercism.io,mscoutermarsh/exercism_coveralls,mscoutermarsh/exercism_coveralls,Tonkpils/exercism.io,MBGeoff/Exercism.io-mbgeoff,IanDCarroll/exercism.io,mhelmetag/exercism.io,treiff/exercism.io,mscoutermarsh/exercism_coveralls,mscoutermarsh/exercism_coveralls,sheekap/exercism.io,colinrubbert/exercism.io,Tonkpils/exercism.io,kizerxl/exercism.io,jtigger/exercism.io,treiff/exercism.io,bmulvihill/exercism.io,exercistas/exercism.io,mhelmetag/exercism.io,beni55/exercism.io,chastell/exercism.io,chinaowl/exercism.io,chinaowl/exercism.io,hanumakanthvvn/exercism.io,colinrubbert/exercism.io,jtigger/exercism.io,amar47shah/exercism.io,bmulvihill/exercism.io,hanumakanthvvn/exercism.io,mhelmetag/exercism.io,copiousfreetime/exercism.io,nathanbwright/exercism.io,praveenpuglia/exercism.io,tejasbubane/exercism.io,praveenpuglia/exercism.io,praveenpuglia/exercism.io,mscoutermarsh/exercism_coveralls,tejasbubane/exercism.io,k4rtik/exercism.io,mscoutermarsh/exercism_coveralls,emilyforst/exercism.io,MBGeoff/Exercism.io-mbgeoff,amar47shah/exercism.io,kangkyu/exercism.io,copiousfreetime/exercism.io,mscoutermarsh/exercism_coveralls,copiousfreetime/exercism.io,RaptorRCX/exercism.io,emilyforst/exercism.io,bmulvihill/exercism.io,tejasbubane/exercism.io,treiff/exercism.io,mscoutermarsh/exercism_coveralls,RaptorRCX/exercism.io,hanumakanthvvn/exercism.io,Tonkpils/exercism.io,k4rtik/exercism.io,emilyforst/exercism.io,chastell/exercism.io,RaptorRCX/exercism.io,kangkyu/exercism.io,IanDCarroll/exercism.io,k4rtik/exercism.io,jtigger/exercism.io,mscoutermarsh/exercism_coveralls,chinaowl/exercism.io,kizerxl/exercism.io,praveenpuglia/exercism.io,hanumakanthvvn/exercism.io,RaptorRCX/exercism.io,sheekap/exercism.io,MBGeoff/Exercism.io-mbgeoff,nathanbwright/exercism.io,nathanbwright/exercism.io,treiff/exercism.io,mhelmetag/exercism.io,chastell/exercism.io,kangkyu/exercism.io,tejasbubane/exercism.io,exercistas/exercism.io,amar47shah/exercism.io,beni55/exercism.io,beni55/exercism.io,colinrubbert/exercism.io,kizerxl/exercism.io,alexclarkofficial/exercism.io,jtigger/exercism.io,nathanbwright/exercism.io
7ea0ba5643c87ae560f563c57d2c1fbada11c750
src/Resources/config/aliases.yaml
src/Resources/config/aliases.yaml
services: _defaults: public: true overblog_graphql.type_resolver: '@Overblog\GraphQLBundle\Resolver\TypeResolver' overblog_graphql.resolver_resolver: '@Overblog\GraphQLBundle\Resolver\ResolverResolver' overblog_graphql.mutation_resolver: '@Overblog\GraphQLBundle\Resolver\MutationResolver' overblog_graphql.access_resolver: '@Overblog\GraphQLBundle\Resolver\AccessResolver' overblog_graphql.cache_compiler: '@Overblog\GraphQLBundle\Generator\TypeGenerator' overblog_graphql.react.promise_adapter: '@Overblog\GraphQLBundle\Executor\Promise\Adapter\ReactPromiseAdapter' overblog_graphql.request_executor: '@Overblog\GraphQLBundle\Request\Executor' overblog_graphql.request_parser: '@Overblog\GraphQLBundle\Request\Parser' overblog_graphql.request_batch_parser: '@Overblog\GraphQLBundle\Request\BatchParser' overblog_graphql.schema_builder: alias: 'Overblog\GraphQLBundle\Definition\Builder\SchemaBuilder' public: false overblog_graphql.type_factory: alias: 'Overblog\GraphQLBundle\Definition\Builder\TypeFactory' public: false
services: _defaults: public: true overblog_graphql.type_resolver: '@Overblog\GraphQLBundle\Resolver\TypeResolver' overblog_graphql.resolver_resolver: '@Overblog\GraphQLBundle\Resolver\ResolverResolver' overblog_graphql.mutation_resolver: '@Overblog\GraphQLBundle\Resolver\MutationResolver' overblog_graphql.access_resolver: '@Overblog\GraphQLBundle\Resolver\AccessResolver' overblog_graphql.cache_compiler: '@Overblog\GraphQLBundle\Generator\TypeGenerator' overblog_graphql.react.promise_adapter: '@Overblog\GraphQLBundle\Executor\Promise\Adapter\ReactPromiseAdapter' overblog_graphql.request_executor: '@Overblog\GraphQLBundle\Request\Executor' overblog_graphql.request_parser: '@Overblog\GraphQLBundle\Request\Parser' overblog_graphql.request_batch_parser: '@Overblog\GraphQLBundle\Request\BatchParser' overblog_graphql.arguments_transformer: '@Overblog\GraphQLBundle\Transformer\ArgumentsTransformer' overblog_graphql.schema_builder: alias: 'Overblog\GraphQLBundle\Definition\Builder\SchemaBuilder' public: false overblog_graphql.type_factory: alias: 'Overblog\GraphQLBundle\Definition\Builder\TypeFactory' public: false
Add missing alias for ArgumentsTransformer
Add missing alias for ArgumentsTransformer
YAML
mit
overblog/GraphQLBundle
98637d8fba733324922fa3d6917fa72e60849d3b
recipes/perl-capture-tiny/meta.yaml
recipes/perl-capture-tiny/meta.yaml
package: name: perl-capture-tiny version: "0.34" source: fn: Capture-Tiny-0.34.tar.gz url: https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.34.tar.gz md5: bca6ac7cd6cd88fa9cd9c99e52833a72 build: number: 0 skip: True # [osx] requirements: build: - perl-threaded run: - perl-threaded test: # Perl 'use' tests imports: - Capture::Tiny about: home: https://github.com/dagolden/Capture-Tiny license: Apache 2.0 summary: 'Capture STDOUT and STDERR from Perl, XS or external programs'
package: name: perl-capture-tiny version: "0.34" source: fn: Capture-Tiny-0.34.tar.gz url: https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.34.tar.gz md5: bca6ac7cd6cd88fa9cd9c99e52833a72 build: number: 1 requirements: build: - perl-threaded run: - perl-threaded test: # Perl 'use' tests imports: - Capture::Tiny about: home: https://github.com/dagolden/Capture-Tiny license: Apache 2.0 summary: 'Capture STDOUT and STDERR from Perl, XS or external programs'
Add OSX build for Perl Capture::Tiny
Add OSX build for Perl Capture::Tiny
YAML
mit
abims-sbr/bioconda-recipes,rob-p/bioconda-recipes,ostrokach/bioconda-recipes,keuv-grvl/bioconda-recipes,dmaticzka/bioconda-recipes,zachcp/bioconda-recipes,yesimon/bioconda-recipes,Luobiny/bioconda-recipes,npavlovikj/bioconda-recipes,joachimwolff/bioconda-recipes,omicsnut/bioconda-recipes,matthdsm/bioconda-recipes,daler/bioconda-recipes,lpantano/recipes,instituteofpathologyheidelberg/bioconda-recipes,saketkc/bioconda-recipes,zwanli/bioconda-recipes,bebatut/bioconda-recipes,jasper1918/bioconda-recipes,bioconda/bioconda-recipes,colinbrislawn/bioconda-recipes,keuv-grvl/bioconda-recipes,ThomasWollmann/bioconda-recipes,CGATOxford/bioconda-recipes,ThomasWollmann/bioconda-recipes,omicsnut/bioconda-recipes,ostrokach/bioconda-recipes,colinbrislawn/bioconda-recipes,shenwei356/bioconda-recipes,peterjc/bioconda-recipes,daler/bioconda-recipes,rvalieris/bioconda-recipes,bebatut/bioconda-recipes,joachimwolff/bioconda-recipes,abims-sbr/bioconda-recipes,JenCabral/bioconda-recipes,ivirshup/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,acaprez/recipes,bebatut/bioconda-recipes,jfallmann/bioconda-recipes,joachimwolff/bioconda-recipes,chapmanb/bioconda-recipes,saketkc/bioconda-recipes,mcornwell1957/bioconda-recipes,rob-p/bioconda-recipes,daler/bioconda-recipes,martin-mann/bioconda-recipes,matthdsm/bioconda-recipes,yesimon/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,colinbrislawn/bioconda-recipes,gvlproject/bioconda-recipes,rob-p/bioconda-recipes,bebatut/bioconda-recipes,daler/bioconda-recipes,cokelaer/bioconda-recipes,guowei-he/bioconda-recipes,peterjc/bioconda-recipes,dkoppstein/recipes,BIMSBbioinfo/bioconda-recipes,ivirshup/bioconda-recipes,peterjc/bioconda-recipes,jfallmann/bioconda-recipes,dmaticzka/bioconda-recipes,oena/bioconda-recipes,matthdsm/bioconda-recipes,matthdsm/bioconda-recipes,peterjc/bioconda-recipes,oena/bioconda-recipes,gvlproject/bioconda-recipes,dmaticzka/bioconda-recipes,lpantano/recipes,rvalieris/bioconda-recipes,mdehollander/bioconda-recipes,rvalieris/bioconda-recipes,ivirshup/bioconda-recipes,shenwei356/bioconda-recipes,CGATOxford/bioconda-recipes,ThomasWollmann/bioconda-recipes,xguse/bioconda-recipes,acaprez/recipes,oena/bioconda-recipes,bow/bioconda-recipes,lpantano/recipes,Luobiny/bioconda-recipes,mcornwell1957/bioconda-recipes,blankenberg/bioconda-recipes,gvlproject/bioconda-recipes,roryk/recipes,omicsnut/bioconda-recipes,yesimon/bioconda-recipes,gvlproject/bioconda-recipes,gregvonkuster/bioconda-recipes,mdehollander/bioconda-recipes,joachimwolff/bioconda-recipes,HassanAmr/bioconda-recipes,Luobiny/bioconda-recipes,mdehollander/bioconda-recipes,abims-sbr/bioconda-recipes,rob-p/bioconda-recipes,colinbrislawn/bioconda-recipes,pinguinkiste/bioconda-recipes,guowei-he/bioconda-recipes,gvlproject/bioconda-recipes,mcornwell1957/bioconda-recipes,omicsnut/bioconda-recipes,peterjc/bioconda-recipes,bioconda/bioconda-recipes,keuv-grvl/bioconda-recipes,matthdsm/bioconda-recipes,saketkc/bioconda-recipes,xguse/bioconda-recipes,cokelaer/bioconda-recipes,JenCabral/bioconda-recipes,cokelaer/bioconda-recipes,saketkc/bioconda-recipes,phac-nml/bioconda-recipes,daler/bioconda-recipes,colinbrislawn/bioconda-recipes,keuv-grvl/bioconda-recipes,guowei-he/bioconda-recipes,abims-sbr/bioconda-recipes,joachimwolff/bioconda-recipes,omicsnut/bioconda-recipes,roryk/recipes,colinbrislawn/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,daler/bioconda-recipes,bow/bioconda-recipes,gregvonkuster/bioconda-recipes,pinguinkiste/bioconda-recipes,HassanAmr/bioconda-recipes,dmaticzka/bioconda-recipes,hardingnj/bioconda-recipes,dkoppstein/recipes,cokelaer/bioconda-recipes,chapmanb/bioconda-recipes,pinguinkiste/bioconda-recipes,hardingnj/bioconda-recipes,mcornwell1957/bioconda-recipes,blankenberg/bioconda-recipes,bioconda/bioconda-recipes,gregvonkuster/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,rvalieris/bioconda-recipes,phac-nml/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,phac-nml/bioconda-recipes,dmaticzka/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,acaprez/recipes,chapmanb/bioconda-recipes,peterjc/bioconda-recipes,ostrokach/bioconda-recipes,jfallmann/bioconda-recipes,blankenberg/bioconda-recipes,JenCabral/bioconda-recipes,lpantano/recipes,ostrokach/bioconda-recipes,abims-sbr/bioconda-recipes,martin-mann/bioconda-recipes,jasper1918/bioconda-recipes,zwanli/bioconda-recipes,CGATOxford/bioconda-recipes,HassanAmr/bioconda-recipes,acaprez/recipes,chapmanb/bioconda-recipes,pinguinkiste/bioconda-recipes,zachcp/bioconda-recipes,yesimon/bioconda-recipes,guowei-he/bioconda-recipes,zachcp/bioconda-recipes,ostrokach/bioconda-recipes,HassanAmr/bioconda-recipes,ivirshup/bioconda-recipes,pinguinkiste/bioconda-recipes,saketkc/bioconda-recipes,ThomasWollmann/bioconda-recipes,blankenberg/bioconda-recipes,zwanli/bioconda-recipes,ostrokach/bioconda-recipes,hardingnj/bioconda-recipes,bow/bioconda-recipes,JenCabral/bioconda-recipes,npavlovikj/bioconda-recipes,mdehollander/bioconda-recipes,xguse/bioconda-recipes,shenwei356/bioconda-recipes,bow/bioconda-recipes,oena/bioconda-recipes,gvlproject/bioconda-recipes,HassanAmr/bioconda-recipes,xguse/bioconda-recipes,zwanli/bioconda-recipes,martin-mann/bioconda-recipes,chapmanb/bioconda-recipes,rvalieris/bioconda-recipes,hardingnj/bioconda-recipes,ivirshup/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,ThomasWollmann/bioconda-recipes,dkoppstein/recipes,bioconda/recipes,jasper1918/bioconda-recipes,JenCabral/bioconda-recipes,bioconda/bioconda-recipes,gregvonkuster/bioconda-recipes,phac-nml/bioconda-recipes,hardingnj/bioconda-recipes,martin-mann/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,jasper1918/bioconda-recipes,abims-sbr/bioconda-recipes,HassanAmr/bioconda-recipes,dmaticzka/bioconda-recipes,JenCabral/bioconda-recipes,phac-nml/bioconda-recipes,guowei-he/bioconda-recipes,bioconda/recipes,martin-mann/bioconda-recipes,jfallmann/bioconda-recipes,xguse/bioconda-recipes,zachcp/bioconda-recipes,ThomasWollmann/bioconda-recipes,CGATOxford/bioconda-recipes,ivirshup/bioconda-recipes,npavlovikj/bioconda-recipes,zwanli/bioconda-recipes,matthdsm/bioconda-recipes,bow/bioconda-recipes,jasper1918/bioconda-recipes,oena/bioconda-recipes,saketkc/bioconda-recipes,roryk/recipes,joachimwolff/bioconda-recipes,mcornwell1957/bioconda-recipes,keuv-grvl/bioconda-recipes,mdehollander/bioconda-recipes,npavlovikj/bioconda-recipes,CGATOxford/bioconda-recipes,bow/bioconda-recipes,Luobiny/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,bioconda/recipes,rvalieris/bioconda-recipes,zwanli/bioconda-recipes,shenwei356/bioconda-recipes,pinguinkiste/bioconda-recipes,mdehollander/bioconda-recipes,CGATOxford/bioconda-recipes,keuv-grvl/bioconda-recipes
96b264c97f5383dc53e23968b21e3803963fc49f
docs/_config.yml
docs/_config.yml
highlighter: pygments markdown: kramdown # These allow the documentation to be updated with new releases of Tachyon. TACHYON_RELEASED_VERSION: 0.6.4 TACHYON_MASTER_VERSION_SHORT: 0.7.0-SNAPSHOT
highlighter: pygments markdown: kramdown # These allow the documentation to be updated with new releases of Tachyon. TACHYON_RELEASED_VERSION: 0.7.0 TACHYON_MASTER_VERSION_SHORT: 0.8.0-SNAPSHOT
Update website info to 0.7.0 released and 0.8.0-SNAPSHOT master.
Update website info to 0.7.0 released and 0.8.0-SNAPSHOT master.
YAML
apache-2.0
Alluxio/alluxio,riversand963/alluxio,Reidddddd/alluxio,aaudiber/alluxio,wwjiang007/alluxio,maobaolong/alluxio,maobaolong/alluxio,calvinjia/tachyon,Reidddddd/alluxio,WilliamZapata/alluxio,aaudiber/alluxio,bf8086/alluxio,bf8086/alluxio,maboelhassan/alluxio,Reidddddd/mo-alluxio,maobaolong/alluxio,ChangerYoung/alluxio,jsimsa/alluxio,wwjiang007/alluxio,Alluxio/alluxio,jswudi/alluxio,WilliamZapata/alluxio,maboelhassan/alluxio,bf8086/alluxio,EvilMcJerkface/alluxio,bf8086/alluxio,apc999/alluxio,calvinjia/tachyon,Reidddddd/alluxio,ShailShah/alluxio,uronce-cc/alluxio,PasaLab/tachyon,jsimsa/alluxio,Reidddddd/mo-alluxio,aaudiber/alluxio,Reidddddd/alluxio,uronce-cc/alluxio,PasaLab/tachyon,EvilMcJerkface/alluxio,ChangerYoung/alluxio,madanadit/alluxio,maobaolong/alluxio,bf8086/alluxio,EvilMcJerkface/alluxio,jswudi/alluxio,wwjiang007/alluxio,ShailShah/alluxio,EvilMcJerkface/alluxio,wwjiang007/alluxio,ShailShah/alluxio,maboelhassan/alluxio,madanadit/alluxio,yuluo-ding/alluxio,yuluo-ding/alluxio,ChangerYoung/alluxio,PasaLab/tachyon,Reidddddd/mo-alluxio,PasaLab/tachyon,calvinjia/tachyon,aaudiber/alluxio,Reidddddd/alluxio,wwjiang007/alluxio,wwjiang007/alluxio,aaudiber/alluxio,jsimsa/alluxio,wwjiang007/alluxio,riversand963/alluxio,calvinjia/tachyon,jsimsa/alluxio,madanadit/alluxio,jswudi/alluxio,ChangerYoung/alluxio,maboelhassan/alluxio,maboelhassan/alluxio,calvinjia/tachyon,madanadit/alluxio,madanadit/alluxio,apc999/alluxio,ChangerYoung/alluxio,Alluxio/alluxio,madanadit/alluxio,apc999/alluxio,maboelhassan/alluxio,yuluo-ding/alluxio,WilliamZapata/alluxio,EvilMcJerkface/alluxio,uronce-cc/alluxio,EvilMcJerkface/alluxio,riversand963/alluxio,yuluo-ding/alluxio,jsimsa/alluxio,maobaolong/alluxio,yuluo-ding/alluxio,Reidddddd/alluxio,apc999/alluxio,Reidddddd/mo-alluxio,jswudi/alluxio,uronce-cc/alluxio,uronce-cc/alluxio,madanadit/alluxio,yuluo-ding/alluxio,ShailShah/alluxio,riversand963/alluxio,PasaLab/tachyon,aaudiber/alluxio,calvinjia/tachyon,maobaolong/alluxio,Alluxio/alluxio,riversand963/alluxio,wwjiang007/alluxio,EvilMcJerkface/alluxio,Alluxio/alluxio,Reidddddd/alluxio,riversand963/alluxio,jsimsa/alluxio,Alluxio/alluxio,Reidddddd/mo-alluxio,bf8086/alluxio,PasaLab/tachyon,apc999/alluxio,bf8086/alluxio,Alluxio/alluxio,jswudi/alluxio,apc999/alluxio,uronce-cc/alluxio,maobaolong/alluxio,Reidddddd/mo-alluxio,calvinjia/tachyon,Alluxio/alluxio,WilliamZapata/alluxio,maobaolong/alluxio,EvilMcJerkface/alluxio,madanadit/alluxio,wwjiang007/alluxio,aaudiber/alluxio,Alluxio/alluxio,ShailShah/alluxio,PasaLab/tachyon,jswudi/alluxio,Alluxio/alluxio,WilliamZapata/alluxio,maobaolong/alluxio,calvinjia/tachyon,wwjiang007/alluxio,ShailShah/alluxio,apc999/alluxio,maboelhassan/alluxio,maobaolong/alluxio,ChangerYoung/alluxio,WilliamZapata/alluxio,bf8086/alluxio
f41befdcc44622565abdc8af7adda7de6ac53a5e
images/k8s-cloud-builder/variants.yaml
images/k8s-cloud-builder/variants.yaml
variants: cross1.14: CONFIG: 'cross1.14' KUBE_CROSS_VERSION: 'v1.14.3-1' SKOPEO_VERSION: 'v0.2.0' cross1.13: CONFIG: 'cross1.13' KUBE_CROSS_VERSION: 'v1.13.9-5' SKOPEO_VERSION: 'v0.2.0'
variants: cross1.14: CONFIG: 'cross1.14' KUBE_CROSS_VERSION: 'v1.14.4-1' SKOPEO_VERSION: 'v0.2.0' cross1.13: CONFIG: 'cross1.13' KUBE_CROSS_VERSION: 'v1.13.9-5' SKOPEO_VERSION: 'v0.2.0'
Build cross1.14 variant on kube-cross:v1.14.4-1
k8s-cloud-builder: Build cross1.14 variant on kube-cross:v1.14.4-1 Signed-off-by: Stephen Augustus <[email protected]>
YAML
apache-2.0
kubernetes/release,kubernetes/release
8a5a54ce95fddc6b0836a9538beec045b4a7d663
roles/ansible-runner/tasks/main.yml
roles/ansible-runner/tasks/main.yml
- name: Install config file template: src: ansible-runner-config dest: /etc/default/{{ ansible_runner_config_env }} mode: 0600 owner: {{ ansible_runner_user }} group: {{ ansible_runner_user }} - name: Install ansible-runner.sh copy: src: usr/local/bin/ansible-runner dest: /usr/local/bin/ansible-runner mode: 0755 owner: root group: root
- name: Install config file template: src: ansible-runner-config dest: /etc/default/{{ ansible_runner_config_env }} mode: 0600 owner: "{{ ansible_runner_user }}" group: "{{ ansible_runner_user }}" - name: Install ansible-runner.sh copy: src: usr/local/bin/ansible-runner dest: /usr/local/bin/ansible-runner mode: 0755 owner: root group: root
Add quotes for {{ ansible_runner_user }}
Add quotes for {{ ansible_runner_user }}
YAML
apache-2.0
jamielennox/hoist,SpamapS/hoist,SpamapS/hoist,BonnyCI/hoist,jamielennox/hoist,BonnyCI/hoist
d6d6e6563816d9e731cd1906581319476dad1bd0
roles/docker-compose/tasks/main.yml
roles/docker-compose/tasks/main.yml
--- - name: "{{ docker_compose_name }} | Set service directory fact" set_fact: docker_compose_service_dir: "{{ docker_compose_service_base_dir }}/{{ docker_compose_name }}" - name: "{{ docker_compose_name }} | Create service directory" file: path: "{{ docker_compose_service_dir }}" state: directory - name: "{{ docker_compose_name }} | Create docker-compose configuration" copy: dest: "{{ docker_compose_service_dir }}/docker-compose.yml" content: "{{ docker_compose_file }}" notify: "{{ docker_compose_name }} | Enable and restart" - name: "{{ docker_compose_name }} | Install systemd unit file" template: src: docker-compose.service.j2 dest: "/etc/systemd/system/{{ docker_compose_name }}.service" notify: "{{ docker_compose_name }} | Enable and restart"
--- - name: "{{ docker_compose_name }} | Set service directory fact" set_fact: docker_compose_service_dir: "{{ docker_compose_service_base_dir }}/{{ docker_compose_name }}" - name: "{{ docker_compose_name }} | Create service directory" file: path: "{{ docker_compose_service_dir }}" state: directory mode: 0700 - name: "{{ docker_compose_name }} | Create docker-compose configuration" copy: dest: "{{ docker_compose_service_dir }}/docker-compose.yml" content: "{{ docker_compose_file }}" notify: "{{ docker_compose_name }} | Enable and restart" - name: "{{ docker_compose_name }} | Install systemd unit file" template: src: docker-compose.service.j2 dest: "/etc/systemd/system/{{ docker_compose_name }}.service" notify: "{{ docker_compose_name }} | Enable and restart"
Read protect the compose service directory as it potentially contains secrets
Read protect the compose service directory as it potentially contains secrets
YAML
apache-2.0
tkurki/marinepi-provisioning
de69301c1181a173a57a914b9f0397d697390bf3
config/secrets.yml
config/secrets.yml
development: secret_key_base: 510c1aa0ce4d41378702b88e81b2d99f746efd6d91a16ae8116ba97e9e90aa973005df29bb4980eb27a44047b63da66b1d19b7609e9b883a7966fdfb85c4eb03 test: secret_key_base: fa789255abc85395d65cd632f8bd94b33a6addabc70e0f434ef91e2d51423f335f0baefe96a879d9dffc62f8b756cad85cd8375cd599037447063d366c2c4b2d # Do not keep production secrets in the repository, # instead read values from the environment. production: secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
development: secret_key_base: 510c1aa0ce4d41378702b88e81b2d99f746efd6d91a16ae8116ba97e9e90aa973005df29bb4980eb27a44047b63da66b1d19b7609e9b883a7966fdfb85c4eb03 test: secret_key_base: fa789255abc85395d65cd632f8bd94b33a6addabc70e0f434ef91e2d51423f335f0baefe96a879d9dffc62f8b756cad85cd8375cd599037447063d366c2c4b2d # Do not keep production secrets in the repository, # instead read values from the environment. production: # secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> secret_key_base: fa789255abc85395d65cd632f8bd94b33a6addabc70e0f434ef91e2d51423f335f0baefe96a879d9dffc62f8b756cad85cd8375cd599037447063d366c2c4b2d
Test pushing secret key into git repo.
:WARNING: Test pushing secret key into git repo.
YAML
mit
Labtec/OpenLIS,Labtec/OpenLIS,Labtec/OpenLIS
d6cdf95cd451291de2b49ed298306091ab242506
.buildkite/pipeline.yml
.buildkite/pipeline.yml
steps: - name: ":node:" command: npm test plugins: - docker-compose#v3.8.0: run: app
steps: - name: ":node:" command: npm test plugins: - docker-compose#v3.9.0: run: app
Update buildkite plugin docker-compose to v3.9.0
Update buildkite plugin docker-compose to v3.9.0
YAML
mit
buildkite/nodejs-docker-example
45226f35c48fff4dff30f67700c6d01de72bb119
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: assets/images public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - JEKYLL_ENV=staging preview_output_directory: _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv" instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future -d _site
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: assets/images public_path: "/assets/images" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - JEKYLL_ENV=staging preview_output_directory: _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv" instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future -d _site
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
drpfenderson/drpfenderson.github.io,drpfenderson/drpfenderson.github.io,drpfenderson/drpfenderson.github.io
5a9ce9a042c260da5fae80cc0fba6a3edf36c6a1
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: heading label: JTemporal - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all - type: heading label: Tema - type: directory path: _layouts label: Layouts create: documents match: "**/*" new_doc_ext: html - type: directory path: _includes label: Includes create: documents match: "**/*" new_doc_ext: html upload_dir: images public_path: images front_matter_path: '' use_front_matter_path: false file_template: ":filename:" instant_preview: true build: preview_command: 'bundle exec jekyll build --config _dev_config.yml --drafts --unpublished --future -d _site ' publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site instant_preview_command: bundle exec jekyll serve --config _dev_config.yml --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv"
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: heading label: JTemporal - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all - type: heading label: Tema - type: directory path: _layouts label: Layouts create: documents match: "**/*" new_doc_ext: html - type: directory path: _includes label: Includes create: documents match: "**/*" new_doc_ext: html upload_dir: images public_path: images front_matter_path: images use_front_matter_path: true file_template: ":filename:" instant_preview: true build: preview_command: 'bundle exec jekyll build --config _dev_config.yml --drafts --unpublished --future -d _site ' publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site instant_preview_command: bundle exec jekyll serve --config _dev_config.yml --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv"
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io
452950cc103b5bad43619d71931a9ccaa98969fe
conda-recipe/meta.yaml
conda-recipe/meta.yaml
package: name: pycompilation version: "0.3.6" source: fn: pycompilation-0.3.5.tar.gz url: https://pypi.python.org/packages/source/p/pycompilation/pycompilation-0.3.5.tar.gz md5: ca625c8d6e9061a71ff8ddc8c155ed25 # patches: # List any patch files here # - fix.patch # build: #preserve_egg_dir: True #entry_points: # Put any entry points (scripts to be generated automatically) here. The # syntax is module:function. For example # # - pycompilation = pycompilation:main # # Would create an entry point called pycompilation that calls pycompilation.main() # If this is a new build for the same version, increment the build # number. If you do not include this key, it defaults to 0. # number: 1 requirements: build: - python run: - python about: home: https://github.com/bjodah/pycompilation license: BSD License summary: 'Package for compilation (meta programming).' # See # http://docs.continuum.io/conda/build.html for # more information about meta.yaml
package: name: pycompilation version: "0.3.6" source: url: https://github.com/bjodah/pycompilation/archive/master.zip # build: #preserve_egg_dir: True #entry_points: # Put any entry points (scripts to be generated automatically) here. The # syntax is module:function. For example # # - pycompilation = pycompilation:main # # Would create an entry point called pycompilation that calls pycompilation.main() # If this is a new build for the same version, increment the build # number. If you do not include this key, it defaults to 0. # number: 1 requirements: build: - python run: - python about: home: https://github.com/bjodah/pycompilation license: BSD License summary: 'Package for compilation (meta programming).' # See # http://docs.continuum.io/conda/build.html for # more information about meta.yaml
Make conda-recipe source point to master branch.
Make conda-recipe source point to master branch.
YAML
bsd-2-clause
bjodah/pycompilation,bjodah/pycompilation
2079088abec885a2c179cb52c1b7cc8702490131
codecov.yml
codecov.yml
codecov: branch: master coverage: precision: 3 round: nearest range: "50...100" status: project: default: # TODO: change once in beta (to auto) target: 50% threshold: 1% patch: default: # TODO: change once in alpha (to 80-90%) target: 50% threshold: 1% comment: layout: "header, diff, changes, uncovered, tree" behavior: new
codecov: branch: master coverage: precision: 3 round: nearest range: "50...100" status: project: default: threshold: 1% patch: default: threshold: 1% comment: layout: "header, diff, changes, uncovered, tree" behavior: new
Change Codecov coverage thresholds to defaults
Change Codecov coverage thresholds to defaults
YAML
mit
magicDGS/ReadTools,magicDGS/ReadTools
062f6187ea2c07253c03575c62a53e81e26d5037
packages/gn/gnss-converters.yaml
packages/gn/gnss-converters.yaml
homepage: http://github.com/swift-nav/gnss-converters changelog-type: '' hash: cd33f996fba2dd0295a8069f7d82de8675700105ea73e6a4096044ba34c26bd9 test-bench-deps: base: -any basic-prelude: -any criterion: -any gnss-converters: -any tasty-hunit: -any tasty: -any maintainer: Mark Fine <[email protected]> synopsis: GNSS Converters. changelog: '' basic-deps: base: ! '>=4.7 && <5' time: -any basic-prelude: -any rtcm: -any conduit: -any conduit-extra: -any sbp: -any lens: -any binary-conduit: -any gnss-converters: -any resourcet: -any all-versions: - '0.1.0' - '0.1.1' - '0.1.2' - '0.1.3' - '0.1.4' - '0.1.5' author: Swift Navigation Inc. latest: '0.1.5' description-type: haddock description: Haskell bindings for GNSS converters. license-name: BSD3
homepage: http://github.com/swift-nav/gnss-converters changelog-type: '' hash: c0fc72a6ab1948f25b3315f27cec2292ea5814e5460d21590706e71b189d6450 test-bench-deps: base: -any basic-prelude: -any criterion: -any gnss-converters: -any tasty-hunit: -any tasty: -any maintainer: Mark Fine <[email protected]> synopsis: GNSS Converters. changelog: '' basic-deps: base: ! '>=4.7 && <5' time: -any basic-prelude: -any rtcm: -any conduit: -any conduit-extra: -any sbp: -any lens: -any binary-conduit: -any gnss-converters: -any resourcet: -any all-versions: - '0.1.0' - '0.1.1' - '0.1.2' - '0.1.3' - '0.1.4' - '0.1.5' - '0.1.6' author: Swift Navigation Inc. latest: '0.1.6' description-type: haddock description: Haskell bindings for GNSS converters. license-name: BSD3
Update from Hackage at 2016-03-12T08:20:30+0000
Update from Hackage at 2016-03-12T08:20:30+0000
YAML
mit
commercialhaskell/all-cabal-metadata
0f98255992fba0a4b20e0d1e4213327b8738685a
metadata/dev.corruptedark.openchaoschess.yml
metadata/dev.corruptedark.openchaoschess.yml
Categories: - Games License: GPL-3.0-or-later AuthorName: CorruptedArk SourceCode: https://github.com/CorruptedArk/open-chaos-chess IssueTracker: https://github.com/CorruptedArk/open-chaos-chess/issues Changelog: https://github.com/CorruptedArk/open-chaos-chess/releases AutoName: Open Chaos Chess RepoType: git Repo: https://github.com/CorruptedArk/open-chaos-chess Builds: - versionName: 1.5.4 versionCode: 22 commit: v1.5.4 subdir: app gradle: - yes - versionName: 1.5.5 versionCode: 23 commit: v1.5.5 subdir: app gradle: - yes - versionName: 1.5.6 versionCode: 24 commit: v1.5.6 subdir: app gradle: - yes - versionName: 1.5.7 versionCode: 25 commit: v1.5.7 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.5.7 CurrentVersionCode: 25
Categories: - Games License: GPL-3.0-or-later AuthorName: CorruptedArk SourceCode: https://github.com/CorruptedArk/open-chaos-chess IssueTracker: https://github.com/CorruptedArk/open-chaos-chess/issues Changelog: https://github.com/CorruptedArk/open-chaos-chess/releases AutoName: Open Chaos Chess RepoType: git Repo: https://github.com/CorruptedArk/open-chaos-chess Builds: - versionName: 1.5.4 versionCode: 22 commit: v1.5.4 subdir: app gradle: - yes - versionName: 1.5.5 versionCode: 23 commit: v1.5.5 subdir: app gradle: - yes - versionName: 1.5.6 versionCode: 24 commit: v1.5.6 subdir: app gradle: - yes - versionName: 1.5.7 versionCode: 25 commit: v1.5.7 subdir: app gradle: - yes - versionName: 1.5.8 versionCode: 26 commit: v1.5.8 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.5.8 CurrentVersionCode: 26
Update Open Chaos Chess to 1.5.8 (26)
Update Open Chaos Chess to 1.5.8 (26)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
30c58a551b8517681bc42df8b541cde348d5eff0
.github/workflows/merge-dependabot-upgrades.yml
.github/workflows/merge-dependabot-upgrades.yml
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/[email protected] with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/[email protected] with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
Bump ridedott/merge-me-action from 2.9.80 to 2.9.81
Bump ridedott/merge-me-action from 2.9.80 to 2.9.81 Bumps [ridedott/merge-me-action](https://github.com/ridedott/merge-me-action) from 2.9.80 to 2.9.81. - [Release notes](https://github.com/ridedott/merge-me-action/releases) - [Changelog](https://github.com/ridedott/merge-me-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/ridedott/merge-me-action/compare/v2.9.80...v2.9.81) --- updated-dependencies: - dependency-name: ridedott/merge-me-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
YAML
mit
Ocramius/CodeGenerationUtils
9462707f214dc11e7ec032fc53a4256e858deda8
test/integration/targets/win_get_url/defaults/main.yml
test/integration/targets/win_get_url/defaults/main.yml
--- test_win_get_url_link: http://docs.ansible.com test_win_get_url_invalid_link: http://docs.ansible.com/skynet_module.html test_win_get_url_invalid_path: "Q:\\Filez\\Cyberdyne.html" test_win_get_url_path: "{{ test_win_get_url_dir_path }}\\docs_index.html"
--- test_win_get_url_link: https://www.redhat.com test_win_get_url_invalid_link: https://www.redhat.com/skynet_module.html test_win_get_url_invalid_path: "Q:\\Filez\\Cyberdyne.html" test_win_get_url_path: "{{ test_win_get_url_dir_path }}\\docs_index.html"
Test www.redhat.com instead of docs.ansible.com.
Test www.redhat.com instead of docs.ansible.com.
YAML
mit
thaim/ansible,thaim/ansible
ce79f1b549fb2d02deb649ad32c43470a03d6edf
src/main/kubernetes/service-account.yml
src/main/kubernetes/service-account.yml
# In GKE need to get RBAC permissions first with # kubectl create clusterrolebinding cluster-admin-binding --clusterrole=cluster-admin [--user=<user-name>|--group=<group-name>] --- apiVersion: v1 kind: ServiceAccount metadata: name: jenkins --- kind: Role apiVersion: rbac.authorization.k8s.io/v1beta1 metadata: name: jenkins rules: - apiGroups: [""] resources: ["pods"] verbs: ["create","delete","get","list","patch","update","watch"] - apiGroups: [""] resources: ["pods/exec"] verbs: ["create","delete","get","list","patch","update","watch"] - apiGroups: [""] resources: ["pods/log"] verbs: ["get","list","watch"] - apiGroups: [""] resources: ["secrets"] verbs: ["get"] --- apiVersion: rbac.authorization.k8s.io/v1beta1 kind: RoleBinding metadata: name: jenkins roleRef: apiGroup: rbac.authorization.k8s.io kind: Role name: jenkins subjects: - kind: ServiceAccount name: jenkins
# In GKE need to get RBAC permissions first with # kubectl create clusterrolebinding cluster-admin-binding --clusterrole=cluster-admin [--user=<user-name>|--group=<group-name>] --- apiVersion: v1 kind: ServiceAccount metadata: name: jenkins --- kind: Role apiVersion: rbac.authorization.k8s.io/v1beta1 metadata: name: jenkins rules: - apiGroups: [""] resources: ["pods"] verbs: ["create","delete","get","list","patch","update","watch"] - apiGroups: [""] resources: ["pods/exec"] verbs: ["create","delete","get","list","patch","update","watch"] - apiGroups: [""] resources: ["pods/log"] verbs: ["get","list","watch"] - apiGroups: [""] resources: ["events"] verbs: ["watch"] - apiGroups: [""] resources: ["secrets"] verbs: ["get"] --- apiVersion: rbac.authorization.k8s.io/v1beta1 kind: RoleBinding metadata: name: jenkins roleRef: apiGroup: rbac.authorization.k8s.io kind: Role name: jenkins subjects: - kind: ServiceAccount name: jenkins
Add events/watch to service account
Add events/watch to service account
YAML
apache-2.0
jenkinsci/kubernetes-plugin,jenkinsci/kubernetes-plugin,jenkinsci/kubernetes-plugin
c8b6de1b89ff1cabd589b93da520afba83109c80
crowdin.yml
crowdin.yml
files: - source: /app/src/main/res/values/strings.xml translation: /app/src/main/res/values-%android_code%/%original_file_name% languages_mapping: android_code: af: af ar: ar ca: ca cs: cs da: da nl: nl fi: fi fr: fr de: de el: el he: iw hu: hu it: it ja: ja ko: ko no: no pl: pl pt-PT: pt ro: ro ru: ru sr: sr es-ES: es sv-SE: sv tr: tr uk: uk vi: vi
files: - source: /app/src/main/res/values/strings.xml translation: /app/src/main/res/values-%android_code%/%original_file_name% languages_mapping: android_code: af: af ar: ar ca: ca cs: cs da: da nl: nl fi: fi fr: fr de: de el: el he: iw hu: hu id: in it: it ja: ja ko: ko no: no pl: pl pt-PT: pt ro: ro ru: ru sr: sr es-ES: es sv-SE: sv tr: tr uk: uk vi: vi
Add Indonesian language mapping for Crowdin
Add Indonesian language mapping for Crowdin
YAML
apache-2.0
nikita36078/J2ME-Loader,nikita36078/J2ME-Loader,nikita36078/J2ME-Loader,nikita36078/J2ME-Loader
f37f13b7971680ec1d17fa27ba3b81372da8bc5b
couscous.yml
couscous.yml
template: directory: website exclude: - vendor - bin - tests scripts: before: # - lessc --clean-css website/less/main.less website/css/all.min.css baseUrl: https://thephuse.github.io/phuse-wp-guide title: General Wordpress User Guide index: index.md # cname: wpguide.phuse.ca branch: gh-pages
template: directory: website exclude: - vendor - bin - tests scripts: before: # - lessc --clean-css website/less/main.less website/css/all.min.css baseUrl: https://thephuse.github.io/phuse-wp-guide title: General Wordpress User Guide index: index.md cname: https://thephuse.github.io/phuse-wp-guide branch: gh-pages
Add name so localhost preview and deployed content can work with same config file
Add name so localhost preview and deployed content can work with same config file
YAML
mit
thephuse/phuse-wp-guide,thephuse/phuse-wp-guide,thephuse/phuse-wp-guide,thephuse/phuse-wp-guide
bd54398b619cd7c636ff32a5d9d00eb581d35b95
pkg/analysis_server/pubspec.yaml
pkg/analysis_server/pubspec.yaml
name: analysis_server version: 0.1.0 author: Dart Team <[email protected]> description: A server that performs analysis of Dart code over character streams using JSON-RPC encoded information. homepage: http://www.dartlang.org environment: sdk: '>=1.0.0 <2.0.0' dependencies: analyzer: '>=0.22.0-dev <0.23.0' args: any logging: any path: any watcher: any dev_dependencies: html5lib: any mock: '>=0.10.0 <0.11.0' typed_mock: '>=0.0.4 <1.0.0' unittest: '>=0.10.0 <0.12.0'
name: analysis_server version: 0.1.0 author: Dart Team <[email protected]> description: A server that performs analysis of Dart code over character streams using JSON-RPC encoded information. homepage: http://www.dartlang.org environment: sdk: '>=1.0.0 <2.0.0' dependencies: analyzer: '>=0.22.4 <0.23.0' args: any logging: any path: any watcher: any dev_dependencies: html5lib: any mock: '>=0.10.0 <0.11.0' typed_mock: '>=0.0.4 <1.0.0' unittest: '>=0.10.0 <0.12.0'
Update analysis server to depend on analyzer 0.22.4.
Update analysis server to depend on analyzer 0.22.4. Analysis server relies on some files that don't exist in analyzer 0.22.0-dev. [email protected] Review URL: https://codereview.chromium.org//533073006 git-svn-id: c93d8a2297af3b929165606efe145742a534bc71@39888 260f80e4-7a28-3924-810f-c04153c831b5
YAML
bsd-3-clause
dart-archive/dart-sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-lang/sdk
3d71abcadac4ea1c962cd58253b7ec31d955560e
pkg/analyzer_plugin/pubspec.yaml
pkg/analyzer_plugin/pubspec.yaml
name: analyzer_plugin description: A framework for building plugins for the analysis server. version: 0.0.1-alpha.5 author: Dart Team <[email protected]> homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer_plugin environment: sdk: '>=1.8.0 <3.0.0' dependencies: analyzer: '^0.33.0' charcode: '^1.1.0' html: '^0.13.1' meta: ^1.0.2 path: '^1.4.1' pub_semver: '^1.3.2' dev_dependencies: test_reflective_loader: ^0.1.8 test: ^1.0.0
name: analyzer_plugin description: A framework for building plugins for the analysis server. version: 0.0.1-alpha.6 author: Dart Team <[email protected]> homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer_plugin environment: sdk: '>=1.8.0 <3.0.0' dependencies: analyzer: '^0.34.2' charcode: '^1.1.0' html: '^0.13.1' meta: ^1.0.2 path: '^1.4.1' pub_semver: '^1.3.2' dev_dependencies: test_reflective_loader: ^0.1.8 test: ^1.0.0
Prepare to publish a new version of the analyzer_plugin package with an updated dependency on analyzer
Prepare to publish a new version of the analyzer_plugin package with an updated dependency on analyzer Change-Id: Ie4aab1867300e132511f2198e9358fa4d0f74cee Reviewed-on: https://dart-review.googlesource.com/c/90260 Auto-Submit: Brian Wilkerson <[email protected]> Commit-Queue: Mike Fairhurst <[email protected]> Reviewed-by: Mike Fairhurst <[email protected]>
YAML
bsd-3-clause
dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk
d464af1d6c1d847b909774a67d1b4a809ee3f4e6
roles/logrotate/tasks/main.yml
roles/logrotate/tasks/main.yml
--- - name: set logrotate interval to daily sudo: yes lineinfile: dest: /etc/logrotate.conf regexp: '^weekly' line: "daily" tags: - logrotate - name: set logrotate retention period to 7 days sudo: yes lineinfile: dest: /etc/logrotate.conf regexp: '^rotate 4' line: "rotate 7" tags: - logrotate - name: configure mesos logrotate sudo: yes copy: src: mesos dest: /etc/logrotate.d/mesos mode: 0644 owner: root group: root tags: - logrotate - name: create mesos archive sudo: yes file: path: /var/log/mesos/archive mode: 0755 state: directory tags: - logrotate - name: configure docker logrotate sudo: yes copy: src: docker dest: /etc/logrotate.d/docker mode: 0644 owner: root group: root tags: - logrotate
--- - name: set logrotate interval to daily sudo: yes lineinfile: dest: /etc/logrotate.conf regexp: '^weekly' line: "daily" backrefs: yes tags: - logrotate - name: set logrotate retention period to 7 days sudo: yes lineinfile: dest: /etc/logrotate.conf regexp: '^rotate 4' line: "rotate 7" backrefs: yes tags: - logrotate - name: configure mesos logrotate sudo: yes copy: src: mesos dest: /etc/logrotate.d/mesos mode: 0644 owner: root group: root tags: - logrotate - name: create mesos archive sudo: yes file: path: /var/log/mesos/archive mode: 0755 state: directory tags: - logrotate - name: configure docker logrotate sudo: yes copy: src: docker dest: /etc/logrotate.d/docker mode: 0644 owner: root group: root tags: - logrotate
Fix logrotate role to be idempotent
Fix logrotate role to be idempotent
YAML
apache-2.0
benschumacher/microservices-infrastructure,kindlyops/microservices-infrastructure,Parkayun/microservices-infrastructure,ddONGzaru/microservices-infrastructure,ianscrivener/microservices-infrastructure,sehqlr/mantl,eirslett/microservices-infrastructure,chrislovecnm/microservices-infrastructure,benschumacher/microservices-infrastructure,CiscoCloud/microservices-infrastructure,SillyMoo/microservices-infrastructure,pinterb/microservices-infrastructure,revpoint/microservices-infrastructure,cmgc/microservices-infrastructure,chrislovecnm/microservices-infrastructure,heww/microservices-infrastructure,sudhirpandey/microservices-infrastructure,sudhirpandey/microservices-infrastructure,noelbk/microservices-infrastructure,KaGeN101/mantl,futuro/microservices-infrastructure,linearregression/microservices-infrastructure,huodon/microservices-infrastructure,kindlyops/microservices-infrastructure,sehqlr/mantl,phnmnl/mantl,bitium/mantl,mehulsbhatt/microservices-infrastructure,eirslett/microservices-infrastructure,mehulsbhatt/microservices-infrastructure,ContainerSolutions/microservices-infrastructure,pinterb/microservices-infrastructure,chrislovecnm/microservices-infrastructure,linearregression/microservices-infrastructure,huodon/microservices-infrastructure,TeaBough/microservices-infrastructure,noelbk/microservices-infrastructure,ianscrivener/microservices-infrastructure,TeaBough/microservices-infrastructure,eirslett/microservices-infrastructure,abn/microservices-infrastructure,huodon/microservices-infrastructure,mehulsbhatt/microservices-infrastructure,ilboud/microservices-infrastructure,mantl/mantl,futuro/microservices-infrastructure,arminc/microservices-infrastructure,datascienceinc/mantl,remmelt/microservices-infrastructure,linearregression/microservices-infrastructure,ianscrivener/microservices-infrastructure,z00223295/microservices-infrastructure,ilboud/microservices-infrastructure,pinterb/microservices-infrastructure,arminc/microservices-infrastructure,huodon/microservices-infrastructure,chrislovecnm/microservices-infrastructure,ContainerSolutions/microservices-infrastructure,mantl/mantl,revpoint/microservices-infrastructure,benschumacher/microservices-infrastructure,abn/microservices-infrastructure,CiscoCloud/mantl,phnmnl/mantl,benschumacher/microservices-infrastructure,cmgc/microservices-infrastructure,gtcno/microservices-infrastructure,ianscrivener/microservices-infrastructure,gtcno/microservices-infrastructure,ilboud/microservices-infrastructure,huodon/microservices-infrastructure,kenjones-cisco/microservices-infrastructure,liangyali/microservices-infrastructure,Parkayun/microservices-infrastructure,ludovicc/microservices-infrastructure,revpoint/microservices-infrastructure,z00223295/microservices-infrastructure,SillyMoo/microservices-infrastructure,remmelt/microservices-infrastructure,chrislovecnm/microservices-infrastructure,datascienceinc/mantl,arminc/microservices-infrastructure,liangyali/microservices-infrastructure,benschumacher/microservices-infrastructure,CiscoCloud/mantl,ianscrivener/microservices-infrastructure,KaGeN101/mantl,ddONGzaru/microservices-infrastructure,heww/microservices-infrastructure,cmgc/microservices-infrastructure,CiscoCloud/microservices-infrastructure,bitium/mantl,z00223295/microservices-infrastructure,ludovicc/microservices-infrastructure,kenjones-cisco/microservices-infrastructure,abn/microservices-infrastructure
b272706c10ce9e305c4d049de7609095a0d22c8f
packages/po/pontarius-xmpp-extras.yaml
packages/po/pontarius-xmpp-extras.yaml
homepage: '' changelog-type: '' hash: 69d3a3b8e608ec77d3c5cb2551e79d0b1128fd0e855c836a834554bd2ea230f9 test-bench-deps: {} maintainer: [email protected] synopsis: XEPs implementation on top of pontarius-xmpp changelog: '' basic-deps: base: '>=4.12 && <4.13' time: '>=1.8 && <1.9' text: '>=1.2 && <1.3' data-default: '>=0.7.1.1 && <0.8' xml-types: '>=0.3 && <0.4' pontarius-xmpp: '>=0.5 && <0.6' all-versions: - 0.1.0.0 author: Sergey Alirzaev latest: 0.1.0.0 description-type: haddock description: '' license-name: LicenseRef-OtherLicense
homepage: '' changelog-type: '' hash: 0273b2018bdfc631ec38ba7d398443901782260b6ddf9d292d4ea36204b5a68c test-bench-deps: {} maintainer: [email protected] synopsis: XEPs implementation on top of pontarius-xmpp changelog: '' basic-deps: base: '>=4.12 && <4.13' time: '>=1.8 && <1.9' text: '>=1.2 && <1.3' data-default: '>=0.7.1.1 && <0.8' xml-types: '>=0.3 && <0.4' pontarius-xmpp: '>=0.5 && <0.6' all-versions: - 0.1.0.0 - 0.1.0.1 author: Sergey Alirzaev latest: 0.1.0.1 description-type: haddock description: '' license-name: LicenseRef-OtherLicense
Update from Hackage at 2020-04-28T17:59:01Z
Update from Hackage at 2020-04-28T17:59:01Z
YAML
mit
commercialhaskell/all-cabal-metadata
709d1acc3d1c9ed6d2c06961734f448312b64228
.airtap.yml
.airtap.yml
sauce_connect: true browsers: - name: chrome version: 39..latest - name: firefox version: 34..latest - name: safari version: 8..latest - name: microsoftedge version: 13..latest - name: ie version: 9..latest - name: iphone version: '8.1..latest' - name: android version: '4.4..6.0' # TODO: change this back to latest once https://github.com/airtap/browsers/issues/3 is fixed server: ./test/server/index.js scripts: - "/ie8-polyfill.js" - "/test-polyfill.js" browserify: - options: dedupe: false
sauce_connect: true browsers: - name: chrome version: 39..latest - name: firefox version: 34..latest - name: safari version: 8..latest - name: microsoftedge version: 13..latest - name: ie version: 9..latest - name: iphone version: '9.3..latest' - name: android version: '4.4..6.0' # TODO: change this back to latest once https://github.com/airtap/browsers/issues/3 is fixed server: ./test/server/index.js scripts: - "/ie8-polyfill.js" - "/test-polyfill.js" browserify: - options: dedupe: false
Stop trying to run tests on iOS 8
Stop trying to run tests on iOS 8 It seems that this is no longer supported by Sauce Labs
YAML
mit
jhiesey/stream-http,jhiesey/httpstream
5bc65e69a18e652a499a9a983bc1372c80d57cfc
.cirrus.yml
.cirrus.yml
task: name: FreeBSD freebsd_instance: matrix: image_family: freebsd-12-3 image_family: freebsd-13-0 image_family: freebsd-13-1 install_script: pwd && ls -la && pkg update --force && pkg install -y cmake glib alsa-lib ladspa portaudio pulseaudio pkgconf sdl2 compile_script: pwd && ls -la && mkdir $HOME/fluidsynth_install/ && mkdir build && cd build && cmake -Werror=dev -DCMAKE_INSTALL_PREFIX=$HOME/fluidsynth_install -Denable-portaudio=1 -Denable-ladspa=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_VERBOSE_MAKEFILE=0 -DNO_GUI=1 .. && make -j4 && make check && make install
task: name: FreeBSD freebsd_instance: matrix: image_family: freebsd-12-3 image_family: freebsd-13-1 install_script: pwd && ls -la && pkg update --force && pkg install -y cmake glib alsa-lib ladspa portaudio pulseaudio pkgconf sdl2 compile_script: pwd && ls -la && mkdir $HOME/fluidsynth_install/ && mkdir build && cd build && cmake -Werror=dev -DCMAKE_INSTALL_PREFIX=$HOME/fluidsynth_install -Denable-portaudio=1 -Denable-ladspa=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_VERBOSE_MAKEFILE=0 -DNO_GUI=1 .. && make -j4 && make check && make install
Remove always failing FreeBSD 13.0 CI build
Remove always failing FreeBSD 13.0 CI build
YAML
lgpl-2.1
FluidSynth/fluidsynth,FluidSynth/fluidsynth,FluidSynth/fluidsynth,FluidSynth/fluidsynth
65c797349e404a1a5f398463eca084caf29ce525
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" install: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install -r requirements26.txt; fi - travis_retry pip install -r requirements.txt - travis_retry pip install coverage python-coveralls script: nosetests --with-coverage --cover-erase after_success: coveralls
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" sudo: false install: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install -r requirements26.txt; fi - travis_retry pip install -r requirements.txt - travis_retry pip install coverage python-coveralls script: nosetests --with-coverage --cover-erase after_success: coveralls
Upgrade to newer Travis-CI build hosts.
Upgrade to newer Travis-CI build hosts. This is a port of https://github.com/aws/aws-cli/pull/1016 to Boto 3.
YAML
apache-2.0
boto/boto3
df012f7f4f89120a8d3cac5d4915346a98cf67c4
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 env: - DB=mongodb before_script: - wget http://pecl.php.net/get/mongo-1.2.7.tgz - tar -xzf mongo-1.2.7.tgz - sh -c "cd mongo-1.2.7 && phpize && ./configure --enable-mongo && make && sudo make install" - echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` - git submodule update --init script: phpunit -c .
language: php php: - 5.3 - 5.4 before_script: - wget http://pecl.php.net/get/mongo-1.2.7.tgz - tar -xzf mongo-1.2.7.tgz - sh -c "cd mongo-1.2.7 && phpize && ./configure --enable-mongo && make && sudo make install" - echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` - git submodule update --init
Remove redundant Travis CI parameters
Remove redundant Travis CI parameters
YAML
mit
solocommand/mongodb,socialcdetest/test,researchgate/mongodb,alcaeus/mongodb,doctrine/mongodb,talkspirit/mongodb,lyft/mongodb,taohaolong/mongodb-1,bjori/mongodb
6025b793da87f53360cc5be7539c03582e1fbdf7
.travis.yml
.travis.yml
language: python python: - "2.7" install: - wget https://bitbucket.org/pypy/pypy/downloads/pypy-5.1.1-src.tar.bz2 || wget https://bitbucket.org/pypy/pypy/downloads/pypy-5.1.1-src.tar.bz2 - tar -xjf pypy-5.1.1-src.tar.bz2 - mv pypy-5.1.1-src pypy # command to run tests script: - PYTHONPATH=$PYTHONPATH:pypy nosetests - PYTHONPATH=$PYTHONPATH:pypy ./som.sh -cp Smalltalk TestSuite/TestHarness.som - PYTHONPATH=$PYTHONPATH:pypy pypy/rpython/bin/rpython --batch src/targetsomstandalone.py - ./RPySOM-no-jit -cp Smalltalk TestSuite/TestHarness.som #- PYTHONPATH=$PYTHONPATH:pypy pypy/rpython/bin/rpython --batch -Ojit src/targetsomstandalone.py #- ./RPySOM-jit -cp Smalltalk TestSuite/TestHarness.som
dist: xenial language: python python: - pypy # - "pypy2.7-6.0.0" install: - travis_retry wget https://downloads.python.org/pypy/pypy2.7-v7.3.1-src.tar.bz2 - tar -xjf pypy2.7-v7.3.1-src.tar.bz2 - mv pypy2.7-v7.3.1-src pypy # command to run tests script: - PYTHONPATH=$PYTHONPATH:pypy nosetests - PYTHONPATH=$PYTHONPATH:pypy ./som.sh -cp Smalltalk TestSuite/TestHarness.som - PYTHONPATH=$PYTHONPATH:pypy pypy/rpython/bin/rpython --batch src/targetsomstandalone.py - ./RPySOM-no-jit -cp Smalltalk TestSuite/TestHarness.som #- PYTHONPATH=$PYTHONPATH:pypy pypy/rpython/bin/rpython --batch -Ojit src/targetsomstandalone.py #- ./RPySOM-jit -cp Smalltalk TestSuite/TestHarness.som
Update Travis to PyPy 7.3.1 for source dependencies
Update Travis to PyPy 7.3.1 for source dependencies Signed-off-by: Stefan Marr <[email protected]>
YAML
mit
smarr/PySOM,SOM-st/RPySOM,SOM-st/RPySOM,smarr/PySOM,SOM-st/PySOM,SOM-st/PySOM
3c1db27eb639594b6ae7528b745d1a8b4e84e651
.travis.yml
.travis.yml
language: node_js node_js: - "0.8" - "0.10" - "0.11"
language: node_js node_js: - "0.8" - "0.10" - "0.11" before_script: - npm install coveralls after_success: - coveralls < ./coverage/lcov.info
Add Coveralls support to Travis CI script.
Add Coveralls support to Travis CI script.
YAML
mit
fluidsonic/unilog-nexus
8228bbb5bb2fe6aecede3ac13e2ccf615584e32e
.travis.yml
.travis.yml
language: python # note: abelfunctions depends on the git version of sympy due to a related bug matrix: include: # Legacy environments (to be implemented) # Recommended / Current environments - python: "2.7" env: DEPS="numpy scipy networkx cython matplotlib" install: - if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda - conda info -a # configuration and installation of test environment - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION $DEPS - source activate test-environment # install sympy into the test environment from source - git clone https://github.com/sympy/sympy.git - cd sympy && python setup.py install && cd .. # need to build in-place for tests to run - python setup.py build_ext --inplace script: - python setup.py test
language: python sudo: false # note: abelfunctions depends on the git version of sympy due to a related bug matrix: include: # Legacy environments (to be implemented) # Recommended / Current environments - python: "2.7" env: DEPS="numpy scipy networkx cython matplotlib" install: - if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda - conda info -a # configuration and installation of test environment - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION $DEPS - source activate test-environment # install sympy into the test environment from source - git clone https://github.com/sympy/sympy.git - cd sympy && python setup.py install && cd .. # need to build in-place for tests to run - python setup.py build_ext --inplace script: - python setup.py test
Migrate TravisCI to container-based infrastructure
Migrate TravisCI to container-based infrastructure
YAML
mit
cswiercz/abelfunctions,abelfunctions/abelfunctions,cswiercz/abelfunctions,abelfunctions/abelfunctions,cswiercz/abelfunctions,abelfunctions/abelfunctions
a3526880d5026df45f6c7fcf6beca0324ab62740
.travis.yml
.travis.yml
language: php sudo: required dist: trusty group: edge php: - 7.0 - 7.1 - hhvm-3.12 - hhvm-nightly before_install: - if [[ $TRAVIS_PHP_VERSION = hhvm* ]]; then echo hhvm.php7.all=1 >> /etc/hhvm/php.ini; fi install: - composer install matrix: allow_failures: - php: hhvm-3.12 - php: hhvm-nightly
language: php sudo: required dist: trusty group: edge php: - 7.0 - 7.1 - hhvm-3.12 - hhvm-nightly before_install: - if [[ $TRAVIS_PHP_VERSION = hhvm* ]]; then echo hhvm.php7.all=1 >> /etc/hhvm/php.ini; fi install: - composer install script: - vendor/bin/phpunit matrix: allow_failures: - php: hhvm-3.12 - php: hhvm-nightly
Use dependency version of PHPUnit
Use dependency version of PHPUnit
YAML
mit
theodorejb/phaster
c2ec23ac103972575d7e20fa2843a0b9608f3c27
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 before_install: - chmod +x gradlew #TODO:09-11-16:dmytro.dashenkov: Change to ./gradlew assemble as soon as tests can be run. script: - ./gradlew assemble after_success: - chmod +x ./scripts/publish_artifacts.sh - ./scripts/publish_artifacts.sh
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew #TODO:09-11-16:dmytro.dashenkov: Change to ./gradlew assemble as soon as tests can be run. script: - ./gradlew assemble after_success: - chmod +x ./scripts/publish_artifacts.sh - ./scripts/publish_artifacts.sh
Use JDK 8 for Travis builds.
Use JDK 8 for Travis builds.
YAML
apache-2.0
SpineEventEngine/gae-java,SpineEventEngine/gae-java
461cd1f153519d16ae7d9e7eae650bbc804258e4
.travis.yml
.travis.yml
language: ruby rvm: - 2.2 - 2.1 - 2.0 - 1.9.3
language: ruby rvm: - 2.2 - 2.1 - 2.0 - 1.9.3 script: rake $RUN fast_finish: true matrix: include: - env: RUN=default - env: RUN=zepto allow_failures: - env: RUN=zepto
Include Zepto in the Travis matrix (allow failure)
Include Zepto in the Travis matrix (allow failure)
YAML
mit
wied03/opal-jquery,xuwupeng2000/opal-jquery,opal/opal-jquery,wied03/opal-jquery,xuwupeng2000/opal-jquery,opal/opal-jquery
bae99060218cc771f00377b64a09e3f06946c310
.travis.yml
.travis.yml
language: java # This (sudo: false) is needed to "run on container-based infrastructure" on # which cache: is available # http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false # http://docs.travis-ci.com/user/caching/#Arbitrary-directories cache: directories: - $HOME/.m2 addons: apt_packages: - git - cmake - build-essential jdk: - oraclejdk8 - oraclejdk7 - openjdk6 env: - BUILD=maven_findbugs - BUILD=cppwrap - BUILD=sphinx_html - BUILD=ant matrix: fast_finish: true allow_failures: - env: "BUILD=cppwrap" before_install: - if [[ $BUILD == 'sphinx_html' ]]; then pip install --user flake8 Sphinx==1.2.3; fi install: - if [[ $BUILD != 'ant' ]] && [[ $BUILD != 'sphinx_html' ]]; then git fetch --tags; fi - if [[ $BUILD == 'maven_findbugs' ]]; then mvn install -DskipTests=true; fi script: - ./tools/test-build $BUILD matrix: exclude: - jdk: openjdk6 env: BUILD=sphinx_html - jdk: oraclejdk7 env: BUILD=sphinx_html - jdk: oraclejdk7 env: BUILD=cppwrap - jdk: openjdk6 env: BUILD=cppwrap
language: java # This (sudo: false) is needed to "run on container-based infrastructure" on # which cache: is available # http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false # http://docs.travis-ci.com/user/caching/#Arbitrary-directories cache: directories: - $HOME/.m2 addons: apt_packages: - git - cmake - build-essential jdk: - oraclejdk8 - oraclejdk7 - openjdk6 env: - BUILD=maven_findbugs - BUILD=cppwrap - BUILD=sphinx_html - BUILD=ant matrix: fast_finish: true allow_failures: - env: "BUILD=cppwrap" before_install: - if [[ $BUILD == 'sphinx_html' ]]; then pip install --user flake8 Sphinx==1.2.3; fi install: - if [[ $BUILD != 'ant' ]] && [[ $BUILD != 'sphinx_html' ]]; then git fetch --tags; fi - if [[ $BUILD == 'maven_findbugs' ]]; then mvn install -DskipTests=true; fi script: - ./tools/test-build $BUILD matrix: exclude: - jdk: openjdk6 env: BUILD=sphinx_html - jdk: oraclejdk7 env: BUILD=sphinx_html - jdk: oraclejdk8 env: BUILD=cppwrap - jdk: openjdk6 env: BUILD=cppwrap
Switch back to excluding oraclejdk8 for cppwrap
Switch back to excluding oraclejdk8 for cppwrap
YAML
bsd-2-clause
rleigh-dundee/ome-common-java
34879aee5d4e3cd0135db4b3fed5ef5791b45bbc
.travis.yml
.travis.yml
############################################################################## ### Autogenerated with R package kwb.pkgbuild v0.1.1 ### (installed from 'Github (kwb-r/kwb.pkgbuild@0ac3694)' source code on 2019-09-06) ### by calling the function kwb.pkgbuild::use_travis() ### (file created at: 2019-09-09 15:05:35) ############################################################################## language: r sudo: required warnings_are_errors: false r_packages: - remotes - covr matrix: include: - r: devel - r: release after_success: - Rscript -e 'covr::codecov()' before_deploy: - Rscript -e 'remotes::install_cran("pkgdown")' deploy: provider: script script: Rscript -e 'pkgdown::deploy_site_github(verbose = TRUE)' skip_cleanup: 'true' on: branch: - master - dev - r: oldrel # blocklist branches: except: - binder
############################################################################## ### Autogenerated with R package kwb.pkgbuild v0.1.1 ### (installed from 'Github (kwb-r/kwb.pkgbuild@0ac3694)' source code on 2019-09-06) ### by calling the function kwb.pkgbuild::use_travis() ### (file created at: 2019-09-09 15:05:35) ############################################################################## language: r sudo: required cache: packages warnings_are_errors: false r_packages: - remotes - covr matrix: include: - r: devel - r: release after_success: - Rscript -e 'covr::codecov()' before_deploy: - Rscript -e 'remotes::install_cran("pkgdown")' deploy: provider: script script: Rscript -e 'pkgdown::deploy_site_github(verbose = TRUE)' skip_cleanup: 'true' on: branch: - master - dev - r: oldrel # blocklist branches: except: - binder
Add package caching (didnt solve deploy issue)
Add package caching (didnt solve deploy issue)
YAML
mit
KWB-R/kwb.wtaq,KWB-R/kwb.wtaq
4d221f745cb5972dcca0a54bc9109e3bcd2a0259
.travis.yml
.travis.yml
sudo: required language: python python: - "2.7" - "3.5" install: - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda - conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib future h5py xlrd - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION matplotlib numpy scipy future script: - export NGPDIR=../ - export PYTHONPATH=$PYTHONPATH:$NGPDIR - python -m NuGridPy.regression_tests.selftest notifications: slack: nugrid:wTgGR31cFsNUqfytUDZ5ZLug
sudo: required language: python python: - "2.7" - "3.5" install: - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda - conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib future h5py xlrd - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION matplotlib numpy scipy future script: - export NGPDIR=../ - export PYTHONPATH=$PYTHONPATH:$NGPDIR - python -m NuGridPy.regression_tests.selftest notifications: slack: nugrid:wTgGR31cFsNUqfytUDZ5ZLug email: false
Change Travis script to prevent emails
Change Travis script to prevent emails
YAML
bsd-3-clause
NuGrid/NuGridPy
ff0aa06a272d6cb65495a31508094a0f2f6fd819
spec/mock_playbook.yml
spec/mock_playbook.yml
--- - name: Testing Playbook hosts: all gather_facts: no tasks: - name: Test task register: test_msg changed_when: "'Test' in test_msg.stderr" shell: echo 'Test'
--- - name: Testing Playbook hosts: all gather_facts: no connection: local tasks: - name: Test task register: test_msg changed_when: "'Test' in test_msg.stderr" shell: echo 'Test'
Use Ansible's local connection option for tests
Use Ansible's local connection option for tests
YAML
mit
pgeraghty/ansible-wrapper-ruby,pgeraghty/ansible-wrapper-ruby
d9d37261a76507fd0eb749eb1484ce936e339319
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls env: global: - secure: "GJDidcJjx0lBVTBcFe+ErYh/XC+B9DJMLkxsQT7v4eVCP/DF/o4vShpUAYs5+3/ogQnAAx5HIISvf7YnnWXazlDfQ3ngb88aqa6OPq4d1fydOifkuwqhcqNY/dHdmGEm1L26BsocsY61TbAUbIwSUc1iruwHHfYxAmRXvui2cVQ="
sudo: false language: node_js node_js: - '0.10' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls env: global: - secure: "GJDidcJjx0lBVTBcFe+ErYh/XC+B9DJMLkxsQT7v4eVCP/DF/o4vShpUAYs5+3/ogQnAAx5HIISvf7YnnWXazlDfQ3ngb88aqa6OPq4d1fydOifkuwqhcqNY/dHdmGEm1L26BsocsY61TbAUbIwSUc1iruwHHfYxAmRXvui2cVQ="
Build without `sudo` on Travis CI.
Build without `sudo` on Travis CI.
YAML
mit
bigeasy/strata,bigeasy/strata
b1d85aee185f71d71ee9b439ce1d91397340a91c
.travis.yml
.travis.yml
language: ruby before_install: gem install bundler rvm: - 1.9.3 - 2.0.0 branches: only: - master - production notifications: email: recipients: - [email protected] env: - RAILS_VERSION=3.0.17 - RAILS_VERSION=3.1.8 - RAILS_VERSION=3.2.9
language: ruby before_install: gem install bundler rvm: - 1.9.3 - 2.0.0 branches: only: - master - production notifications: email: recipients: - [email protected] env: - RAILS_VERSION=3.0.17 - RAILS_VERSION=3.1.8 - RAILS_VERSION=3.2.9 matrix: allow_failures: - rvm: 2.0.0
Allow 2.0.0 preview to fail.
Allow 2.0.0 preview to fail.
YAML
mit
begriffs/api-versions,PagerDuty/api-versions,EDMC/api-versions
580b92c10203653934b28688783632d74b4e049f
.travis.yml
.travis.yml
# travis file # https://docs.travis-ci.com/user/customizing-the-build language: node_js node_js: - 8.1.0 env: - CXX=g++-4.8 NODE_ENV=production addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - graphicsmagick cache: directories: # パッケージをキャッシュすると本来は動かないはずなのに動いてしまう # 場合があり危険なのでキャッシュはしない: #- node_modules services: - mongodb - redis-server before_script: # Travisはproduction環境なので(10行目により)、 # npm install しただけでは devDependencies はインストールされないので、 # --only=dev オプションを付けてそれらもインストールされるようにする: - npm install --only=dev # 設定ファイルを設定 - mkdir ./.config - cp ./.travis/default.yml ./.config - cp ./.travis/test.yml ./.config - npm run build after_success: # リリース - chmod u+x ./.travis/release.sh - if [ $TRAVIS_BRANCH = "master" ] && [ $TRAVIS_PULL_REQUEST = "false" ]; then ./.travis/release.sh; else echo "Skipping releasing task"; fi
# travis file # https://docs.travis-ci.com/user/customizing-the-build language: node_js node_js: - 7.10.0 env: - CXX=g++-4.8 NODE_ENV=production addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - graphicsmagick cache: directories: # パッケージをキャッシュすると本来は動かないはずなのに動いてしまう # 場合があり危険なのでキャッシュはしない: #- node_modules services: - mongodb - redis-server before_script: # Travisはproduction環境なので(10行目により)、 # npm install しただけでは devDependencies はインストールされないので、 # --only=dev オプションを付けてそれらもインストールされるようにする: - npm install --only=dev # 設定ファイルを設定 - mkdir ./.config - cp ./.travis/default.yml ./.config - cp ./.travis/test.yml ./.config - npm run build after_success: # リリース - chmod u+x ./.travis/release.sh - if [ $TRAVIS_BRANCH = "master" ] && [ $TRAVIS_PULL_REQUEST = "false" ]; then ./.travis/release.sh; else echo "Skipping releasing task"; fi
Revert "[CI] Use node 8.x"
Revert "[CI] Use node 8.x" This reverts commit fa966cdda6677ff80c706690c65ed9552e594858.
YAML
mit
Tosuke/misskey,ha-dai/Misskey,ha-dai/Misskey,syuilo/Misskey,Tosuke/misskey,Tosuke/misskey,Tosuke/misskey,Tosuke/misskey,syuilo/Misskey
6873b8547154f42ca1d3fe368e970772c61a8eee
meta/main.yml
meta/main.yml
--- dependencies: [] galaxy_info: author: fubarhouse description: Installs NVM, NodeJS and NPM packages. license: "license (BSD, MIT)" min_ansible_version: 2.1.0.0 platforms: - name: Debian versions: - wheezy - jessie - stretch - name: EL versions: - 6 - 7 - name: Fedora versions: - 24 - 25 - 26 - name: Ubuntu versions: - artful - zesty - yakkety - xenial - vivid - wily # - utopic - trusty - saucy - raring - quantal - precise categories: - system - database - development
--- dependencies: [] galaxy_info: author: fubarhouse description: Installs NVM, NodeJS and NPM packages. license: "license (BSD, MIT)" min_ansible_version: 2.1.0.0 platforms: - name: Debian versions: - wheezy - jessie - stretch - name: EL versions: - 6 - 7 - name: Fedora versions: - 24 - 25 - 26 - name: Ubuntu versions: - artful - zesty - yakkety - xenial - vivid - wily - utopic - trusty - saucy - raring - quantal - precise categories: - system - database - development
Update meta for formatting; add utopic.
Update meta for formatting; add utopic. Signed-off-by: Karl Hepworth <[email protected]>
YAML
mit
fubarhouse/fubarhouse.npm,fubarhouse/ansible-role-nodejs
534a662c7d4fb2f91caa5cdfaf7f39928522bbed
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" env: - TOX_ENV=py36-django111 - TOX_ENV=py35-django111 - TOX_ENV=py34-django111 - TOX_ENV=py27-django111 - TOX_ENV=py35-django110 - TOX_ENV=py34-django110 - TOX_ENV=py27-django110 - TOX_ENV=py35-django19 - TOX_ENV=py34-django19 - TOX_ENV=py27-django19 - TOX_ENV=py35-django18 - TOX_ENV=py34-django18 - TOX_ENV=py33-django18 - TOX_ENV=py27-django18 - TOX_ENV=flake8 - TOX_ENV=docs install: pip install tox-travis script: tox
language: python python: 3.6 env: - TOX_ENV=py36-django111 - TOX_ENV=py35-django111 - TOX_ENV=py34-django111 - TOX_ENV=py27-django111 - TOX_ENV=py35-django110 - TOX_ENV=py34-django110 - TOX_ENV=py27-django110 - TOX_ENV=py35-django19 - TOX_ENV=py34-django19 - TOX_ENV=py27-django19 - TOX_ENV=py35-django18 - TOX_ENV=py34-django18 - TOX_ENV=py33-django18 - TOX_ENV=py27-django18 - TOX_ENV=flake8 - TOX_ENV=docs install: pip install tox script: tox -e $TOX_ENV
Remove multiple Python versions from text matrix
Remove multiple Python versions from text matrix
YAML
bsd-3-clause
jbittel/django-mama-cas,jbittel/django-mama-cas,orbitvu/django-mama-cas,orbitvu/django-mama-cas
180b5a388830b78449bc0d9eb7908eaf79e8a54b
.travis.yml
.travis.yml
language: ruby services: - mongodb before_install: - gem install bundler gemfile: - Gemfile - Gemfile.rails4 rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - jruby-19mode notifications: email: recipients: - [email protected] - [email protected] - [email protected]
language: ruby services: - mongodb before_install: - gem install bundler gemfile: - Gemfile - Gemfile.rails4 rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - jruby-19mode matrix: exclude: - rvm: 2.2 gemfile: Gemfile notifications: email: recipients: - [email protected] - [email protected] - [email protected]
Exclude ruby 2.2 and Rails 3.2 from the build matrix.
Exclude ruby 2.2 and Rails 3.2 from the build matrix.
YAML
mit
victor95pc/enumerize,quarkstudio/enumerize,brainspec/enumerize,hungrything/enumerize,monfresh/enumerize,tanraya/enumerize,tranvictor/enumerize,shaundunne/enumerize
a89ca8fd701d689199804d012c762e91bc00f782
.travis.yml
.travis.yml
env: - CXX=g++-4.8 language: node_js node_js: - "8" - "10" addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 install: npm install before_install: - npm install -g npm - npm install -g greenkeeper-lockfile@1 before_script: greenkeeper-lockfile-update after_script: greenkeeper-lockfile-upload
env: - CXX=g++-4.8 language: node_js node_js: - "8" - "10" addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 install: npm install before_install: - npm install -g [email protected] - npm install -g greenkeeper-lockfile@1 before_script: greenkeeper-lockfile-update after_script: greenkeeper-lockfile-upload
Make Travis npm version explicit at 6.1.0
Make Travis npm version explicit at 6.1.0
YAML
mit
guyellis/plant-image-lambda,guyellis/plant-image-lambda
9c06ab0fd435ad7a7124fb04f29adcac8ceff73b
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.2 env: - "RAILS_VERSION=3.2.0" - "RAILS_VERSION=4.0.0" - "RAILS_VERSION=4.1.0"
language: ruby matrix: include: - rvm: 1.9.3 env: "RAILS_VERSION=3.2.0" - rvm: 2.0.0 env: "RAILS_VERSION=4.0.0" - rvm: 2.1.2 env: "RAILS_VERSION=4.1.0" - rvm: 2.2.0 env: "RAILS_VERSION=4.2.0"
Test w/ ruby 2.2 and rails 4.2.0
Test w/ ruby 2.2 and rails 4.2.0
YAML
mit
infinum/phrasing,1000ideas/phrasing,aniltimt/phrasing,aniltimt/phrasing,paulewetzel/phrasing,infinum/phrasing,1000ideas/phrasing,aniltimt/phrasing,paulewetzel/phrasing,paulewetzel/phrasing,infinum/phrasing
4190db6dcada9a38b19fb08bbc2e942ba53d1904
.travis.yml
.travis.yml
language: perl perl: - 5.14 - 5.16 - 5.18
language: perl perl: - 5.14 - 5.16 - 5.18 - 5.20
Add Perl v5.20 to Travis
Add Perl v5.20 to Travis Support latest Perl version ;)
YAML
mit
zakame/hashids.pm,zakame/hashids.pm
0c9200229be29f415e232845bd911c57205772aa
.travis.yml
.travis.yml
language: python python: - "3.4" - "3.5" - "3.6" env: matrix: - DJANGO="Django>=1.8,<1.9" # 1.8 - DJANGO="Django>=1.9,<1.10" # 1.9 - DJANGO="Django>=1.10,<1.11" # 1.10 - DJANGO="Django>=1.11,<1.12" # 1.11 - DJANGO="Django>=2.0,<2.1" # 2.0 - DJANGO="Django>=2.1,<2.2" # 2.0 cache: pip install: - pip install "$DJANGO" - pip install -r requirements.txt - pip install coveralls matrix: exclude: - python: "3.6" env: DJANGO="Django>=1.9,<1.10" script: - coverage run --source=easy manage.py test after_success: coveralls
language: python python: - "3.4" - "3.5" - "3.6" env: matrix: - DJANGO="Django>=1.8,<1.9" # 1.8 - DJANGO="Django>=1.9,<1.10" # 1.9 - DJANGO="Django>=1.10,<1.11" # 1.10 - DJANGO="Django>=1.11,<1.12" # 1.11 - DJANGO="Django>=2.0,<2.1" # 2.0 - DJANGO="Django>=2.1,<2.2" # 2.0 cache: pip install: - pip install "$DJANGO" pipenv - pipenv lock -r > requirements.txt - pip install -r requirements.txt - pip install coveralls matrix: exclude: - python: "2.7" env: DJANGO="Django>=2.0,<2.1" # 2.0 - python: "3.4" env: DJANGO="Django>=1.9,<1.10" script: - coverage run --source=easy manage.py test after_success: coveralls
Remove support to Python 2.7 and Django < 1.8, add suport do Django 2.1
Remove support to Python 2.7 and Django < 1.8, add suport do Django 2.1
YAML
mit
ebertti/django-admin-easy,ebertti/django-admin-easy
d32ce917038c0379aa74886b5a34e2b9ed6b92ef
.travis.yml
.travis.yml
language: generic dist: trusty services: - docker env: - VERSION=stable COMMAND="cargo build" - VERSION=nightly COMMAND="cargo clippy -- -Dclippy" - VERSION=nightly COMMAND="cargo fmt -- --write-mode=diff" - VERSION=nightly COMMAND="cargo build --release" before_install: - docker pull undeadleech/xcbars-$VERSION script: - docker run -v "$(pwd):/source" undeadleech/xcbars-$VERSION $COMMAND
language: generic dist: trusty services: - docker env: - VERSION=stable COMMAND="cargo build" - VERSION=nightly COMMAND="cargo clippy -- -Dclippy" - VERSION=nightly COMMAND="cargo fmt -- --write-mode=diff" - VERSION=nightly COMMAND="cargo build" - VERSION=nightly COMMAND="cargo build --release" - VERSION=nightly COMMAND="cargo test" - VERSION=nightly COMMAND="cargo check" before_install: - docker pull undeadleech/xcbars-$VERSION script: - docker run -v "$(pwd):/source" undeadleech/xcbars-$VERSION $COMMAND
Add more configs for debugging
Add more configs for debugging
YAML
apache-2.0
dogamak/xcbars
e812e4f0429100359ca684fe4fa23fe9e55db766
.travis.yml
.travis.yml
--- language: ruby matrix: include: - rvm: "1.9.3-p545" env: COMMAND=rake - rvm: "1.9.2" env: COMMAND=rspec install: bundle install --deployment --without debug script: bundle exec $COMMAND
--- language: ruby matrix: include: - rvm: "1.9.3-p545" env: COMMAND=rake # - rvm: "1.9.2" # env: COMMAND=rspec install: bundle install --deployment --without debug script: bundle exec $COMMAND
Disable tests for Ruby 1.9.2
Disable tests for Ruby 1.9.2
YAML
apache-2.0
eroslaci/ibm-websphere-liberty-buildpack,ddayal219/ibm-websphere-liberty-buildpack,opiethehokie/ibm-websphere-liberty-buildpack,snaik17/ibm-websphere-liberty-buildpack,jmarrero/ibm-websphere-liberty-buildpack,ddayal219/ibm-websphere-liberty-buildpack,mattclarkdotnet/liberty-local,mattclarkdotnet/liberty-local,sabarivijayans/buildpack,sabarivijayans/buildpack,snaik17/ibm-websphere-liberty-buildpack,barthy1/ibm-websphere-liberty-buildpack,cloudfoundry/ibm-websphere-liberty-buildpack,barthy1/ibm-websphere-liberty-buildpack,jgawor/ibm-websphere-liberty-buildpack,spaungam/ibm-websphere-liberty-buildpack,eroslaci/ibm-websphere-liberty-buildpack,spaungam/ibm-websphere-liberty-buildpack,bruna-Christina/ibm-websphere-liberty-buildpack,ddayal219/ibm-websphere-liberty-buildpack,barthy1/ibm-websphere-liberty-buildpack,digideskio/ibm-websphere-liberty-buildpack,bruna-Christina/ibm-websphere-liberty-buildpack,tpemckiernan/libertyprofile,vandepol/ibm-websphere-liberty-buildpack,ikedahideya/ibm-websphere-liberty-buildpack,aloismayr/ibm-websphere-liberty-buildpack,eroslaci/ibm-websphere-liberty-buildpack,jmarrero/ibm-websphere-liberty-buildpack,aloismayr/ibm-websphere-liberty-buildpack,ikedahideya/ibm-websphere-liberty-buildpack,vandepol/ibm-websphere-liberty-buildpack,snaik17/ibm-websphere-liberty-buildpack,jgawor/ibm-websphere-liberty-buildpack,bruna-Christina/ibm-websphere-liberty-buildpack,tpemckiernan/libertyprofile,digideskio/ibm-websphere-liberty-buildpack,spaungam/ibm-websphere-liberty-buildpack,opiethehokie/ibm-websphere-liberty-buildpack,cloudfoundry/ibm-websphere-liberty-buildpack,tpemckiernan/libertyprofile
e568f1ac2280785f7b12d8a046977b009ab42c21
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode # - rbx-19mode
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode
Add Ruby 2.1.0 for testing
Add Ruby 2.1.0 for testing
YAML
mit
layervault/psd.rb,sideci-sample/sideci-sample-psd.rb,excid3/psd.rb,jamesbeat/psd.rb,etanlubeck/psd.rb
83b93bba8934febb4ea312882ecc6b80c7ba31d4
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.5" # command to install dependencies before_install: ./configure install: make # command to run tests script: make test addons: apt: packages: - nginx
language: python python: - "3.5" # command to install dependencies before_install: ./configure install: make # command to run tests script: make test addons: apt: packages: - nginx
Exclude Python 2.7 from Travis build matrix.
Exclude Python 2.7 from Travis build matrix.
YAML
mit
tchalvak/tinker-engine,tchalvak/tinker-engine
3f0bba7d34d9f30dd5e9ba8a0b9f1bd8cc15e783
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10"
sudo: false language: node_js node_js: - "0.12" - "0.10"
Add node.js 0.12 on Travis CI
Add node.js 0.12 on Travis CI
YAML
mit
himynameisdave/postcss,webdev1001/postcss,geminiyellow/postcss,jonathantneal/postcss,dpiatek/postcss,Semigradsky/postcss,postcss/postcss,OEvgeny/postcss,qiucanghuai/postcss,smagic39/postcss,alanev/postcss,zhuojiteam/postcss,justim/postcss,MadLittleMods/postcss,nicksheffield/postcss,dpostigo/postcss,johnotander/postcss,asan/postcss,LucasFrecia/postcss,notacouch/postcss,gitkiselev/postcss,andrepolischuk/postcss,bezoerb/postcss,alexmchardy/postcss,omeripek/postcss,marek-saji/postcss,Shugar/postcss,greyhwndz/postcss,mahtd/postcss,pazams/postcss,ashelley/postcss,dehuszar/postcss,c2ye/postcss,XOP/postcss,pascalduez/postcss,kk9599/postcss,rtsao/postcss,johnie/postcss,whitneyit/postcss,mshahidkhan/postcss,cnbin/postcss,webdev1001/postcss,postcss/postcss,sandralundgren/postcss,f/postcss,CapeSepias/postcss,KivyGogh/postcss,eprincev-egor/postcss,cbas/postcss,mxstbr/postcss,ajoslin/postcss,harrykiselev/postcss,MohammadYounes/postcss,Paddy-Hamilton/postcss,marcustisater/postcss,wjb12/postcss,dmsanchez86/postcss,admdh/postcss,chengky/postcss,bendtherules/postcss,mdegoo/postcss,maximkoretskiy/postcss,jedmao/postcss,longdog/postcss,phillipalexander/postcss
355285a6ade9264945c92cfb1cd999f4f37488d4
.travis.yml
.travis.yml
language: objective-c osx_image: xcode8.2 env: global: - SDK=iphonesimulator10.2 - WORKSPACE=Withings-SDK-iOS.xcworkspace - FRAMEWORK_SCHEME=Withings-SDK-iOS - EXAMPLE_SCHEME=Withings-SDK-iOS-Demo matrix: - DESTINATION="OS=10.2,name=iPhone 7 Plus" - DESTINATION="OS=9.3,name=iPhone 6" - DESTINATION="OS=8.4,name=iPhone 4S" script: - set -o pipefail - xcodebuild -version - xcodebuild -showsdks # Build Framework in Debug - xcodebuild -workspace "$WORKSPACE" -scheme "$FRAMEWORK_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty; # Build Framework in Release and Run Tests if specified - xcodebuild -workspace "$WORKSPACE" -scheme "$FRAMEWORK_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty; # Build Example in Debug - xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty; # Validate the pod - pod lib lint --allow-warnings
language: objective-c osx_image: xcode8.2 env: global: - SDK=iphonesimulator10.2 - WORKSPACE=Withings-SDK-iOS.xcworkspace - FRAMEWORK_SCHEME=Withings-SDK-iOS - EXAMPLE_SCHEME=Withings-SDK-iOS-Demo matrix: - DESTINATION="id=8188B40E-F57F-4519-AC47-E43D884B9016,OS=10.2,name=iPhone 7 Plus" - DESTINATION="OS=9.3,name=iPhone 6" - DESTINATION="OS=8.4,name=iPhone 4S" script: - set -o pipefail - xcodebuild -version - xcodebuild -showsdks # Build Framework in Debug - xcodebuild -workspace "$WORKSPACE" -scheme "$FRAMEWORK_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty; # Build Framework in Release and Run Tests if specified - xcodebuild -workspace "$WORKSPACE" -scheme "$FRAMEWORK_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty; # Build Example in Debug - xcodebuild -workspace "$WORKSPACE" -scheme "$EXAMPLE_SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty; # Validate the pod - pod lib lint --allow-warnings
Fix build on Travis for destination “OS=10.2,name=iPhone 7 Plus” which corresponds to 2 destination on Travis
Fix build on Travis for destination “OS=10.2,name=iPhone 7 Plus” which corresponds to 2 destination on Travis
YAML
mit
jdrevet/Withings-SDK-iOS
cd15291cef8a2e47f3773cccfdeb58cec985d377
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.12" addons: firefox: "47.0" notifications: irc: channels: - "irc.mozilla.org#pageshot" on_success: change template: - "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{author}) %{build_url}" before_install: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16 -extension RANDR" before_script: - npm install - export JPM_FIREFOX_BINARY=`which firefox` - firefox -v - echo $JPM_FIREFOX_BINARY - make all - cd .. - cd $TRAVIS_BUILD_DIR/ script: - pwd && ls && cd $TRAVIS_BUILD_DIR/build/addon && ./node_modules/.bin/jpm test -v - cd $TRAVIS_BUILD_DIR - npm run lint
sudo: false language: node_js node_js: - "0.12" cache: bundler: true directories: - node_modules addons: firefox: "47.0" notifications: irc: channels: - "irc.mozilla.org#pageshot" on_success: change template: - "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{author}) %{build_url}" before_install: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16 -extension RANDR" before_script: - ls node_modules || true - npm install - ls node_modules || true - ls node_modules/.bin || true - ls ~/node_modules || true - export JPM_FIREFOX_BINARY=`which firefox` - firefox -v - echo $JPM_FIREFOX_BINARY - make all - cd .. - cd $TRAVIS_BUILD_DIR/ script: - pwd && ls && cd $TRAVIS_BUILD_DIR/build/addon && ./node_modules/.bin/jpm test -v - cd $TRAVIS_BUILD_DIR - npm run lint
Add cache, and probe node_modules
Add cache, and probe node_modules
YAML
mpl-2.0
mozilla-services/pageshot,mozilla-services/screenshots,fzzzy/pageshot,fzzzy/pageshot,mozilla-services/pageshot,mozilla-services/pageshot,mozilla-services/screenshots,mozilla-services/screenshots,mozilla-services/pageshot,fzzzy/pageshot,fzzzy/pageshot,mozilla-services/screenshots
f74d983eea51dc293bf63a7cd2b4894a27d84199
.travis.yml
.travis.yml
env: global: - JRUBY_OPTS="$JRUBY_OPTS --debug" language: ruby script: bundle exec rspec before_install: gem update bundler matrix: include: - rvm: 1.9.3 gemfile: Gemfile - rvm: 2.0.0 gemfile: Gemfile - rvm: 2.1 gemfile: Gemfile - rvm: 2.2 gemfile: Gemfile - rvm: 2.3.0 gemfile: Gemfile - rvm: jruby-19mode gemfile: Gemfile - rvm: jruby-head gemfile: Gemfile - rvm: rbx-2 gemfile: Gemfile - rvm: ruby-head gemfile: Gemfile fast_finish: true sudo: false
env: global: - JRUBY_OPTS="$JRUBY_OPTS --debug" language: ruby script: bundle exec rspec before_install: gem update bundler matrix: include: - rvm: 1.9.3 gemfile: Gemfile - rvm: 2.0.0 gemfile: Gemfile - rvm: 2.1 gemfile: Gemfile - rvm: 2.2 gemfile: Gemfile - rvm: 2.3.0 gemfile: Gemfile - rvm: jruby-19mode gemfile: Gemfile - rvm: jruby-head gemfile: Gemfile - rvm: rbx-2 gemfile: Gemfile - rvm: ruby-head gemfile: Gemfile allow_failures: - rvm: jruby-head - rvm: ruby-head fast_finish: true sudo: false
Allow jruby-head and ruby-head to fail on Travis
chore: Allow jruby-head and ruby-head to fail on Travis
YAML
mit
impraise/omniauth-saml
3a2616d52f2a647bb3c86b4c713054a69aae24ee
.travis.yml
.travis.yml
language: python python: - "3.3" - "2.7" # - "pypy" # Install flake8 install: - pip install -r requirements.txt --use-mirrors before_script: - python tests.py write script: - flake8 --max-complexity 10 linescan.py - python tests.py
language: python python: - "3.3" - "2.7" # - "pypy" # Install flake8 install: - pip install -r requirements.txt --use-mirrors before_script: - python tests.py write script: - flake8 --max-complexity 10 linescan.py - flake8 --max-complexity 10 tests.py - python tests.py
Test tests.py against flake8 too
Test tests.py against flake8 too [ci skip]
YAML
mit
le717/linescan.py
6d0a6bbe62c1dd9080c6f0316b5ed6a276f1e804
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "iojs" notifications: email: false
language: node_js node_js: - "0.10" - "0.12" notifications: email: false
Remove iojs from build matrix
Remove iojs from build matrix The new release of iojs is causing all manner of issues with travis builds. Since we're not officially supporting iojs then the best option is just to remove it.
YAML
mit
UKHomeOffice/passports-frontend-toolkit
7c89137ca02870e12a02835b5644d84bd90d8664
.travis.yml
.travis.yml
language: rust rust: 1.0.0-beta after_success: | [ $TRAVIS_BRANCH = master ] && \ [ $TRAVIS_PULL_REQUEST = false ] && \ cargo doc && \ echo "<meta http-equiv=refresh content=0;url=lines/index.html>" > target/doc/index.html && \ sudo pip install ghp-import && \ ghp-import -n target/doc && \ git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
language: rust rust: 1.0.0-beta.3 after_success: | [ $TRAVIS_BRANCH = master ] && \ [ $TRAVIS_PULL_REQUEST = false ] && \ cargo doc && \ echo "<meta http-equiv=refresh content=0;url=lines/index.html>" > target/doc/index.html && \ sudo pip install ghp-import && \ ghp-import -n target/doc && \ git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
Update rust binary to compiler against
Update rust binary to compiler against
YAML
mit
xitep/lines-rs
935580dc9692da6476450ac7f61fe5033a600c75
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.6" env: - TRAVIS_NODE_VERSION="6" - TRAVIS_NODE_VERSION="8" install: - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION - npm install - gem install coveralls-lcov - pip install pytest pytest-cov coveralls flake8 virtualenv urllib3[secure] - pip install -r requirements.txt script: - npm test - npm run lint - npm run pytest - npm run pylint # For code coverage: after_success: - coveralls-lcov -v -n coverage/lcov.info > coverage/coveralls.json - coveralls --merge=coverage/coveralls.json - rm -rf ./.coverage ./coverage ./htmlcov
language: python python: - "2.7" - "3.6" env: - TRAVIS_NODE_VERSION="6" - TRAVIS_NODE_VERSION="8" install: - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION - npm install -g codecov - npm install - pip install pytest pytest-cov codecov flake8 virtualenv urllib3[secure] - pip install -r requirements.txt script: - export CODECOV_TOKEN="89d22de7-bfaf-43a0-81da-33cc733fd294" - npm test - npm run lint - npm run pytest - npm run pylint - which -a codecov | bash
Use codecov instead of coveralls
Use codecov instead of coveralls
YAML
mit
logandk/serverless-wsgi,logandk/serverless-wsgi
b26d5995df76204ef4596abcfcb6f524ff37378d
.travis.yml
.travis.yml
language: python python: - "2.7" install: "pip install -q -r requirements.txt" script: - cd documentation; sphinx-build -nW -b html source build - flake8 --select E .
language: python python: - "2.7" install: "pip install -q -r requirements.txt" script: - cd documentation; sphinx-build -nW -b html source build - flake8 .
Reset flake8 to default option.
Reset flake8 to default option. Signed-off-by: debojitkakoti <[email protected]>
YAML
apache-2.0
yudaykiran/openebs
f40fda67ed94ed45763ec9a030fb59c530587083
.travis.yml
.travis.yml
language: node_js node_js: - '6' env: global: - CI=true - NODE_ENV=test - AWS_REGION=us-west-2 before_install: # Repo for Yarn - sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg - echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list - sudo apt-get update -qq - sudo apt-get install -y -qq yarn=0.22.0-1 install: npm run build script: npm test cache: yarn
language: node_js node_js: - '6' env: global: - CI=true - NODE_ENV=test - AWS_REGION=us-west-2 before_install: # Repo for Yarn - sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg - echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list - sudo apt-get update -qq - sudo apt-get install -y -qq yarn=0.22.0-1 install: npm run all:install script: npm test cache: yarn
Remove Docker from build command.
Remove Docker from build command.
YAML
mpl-2.0
gladly-team/tab,gladly-team/tab,gladly-team/tab
0c45d33ead8fa830d55b74dddf44702ff5375a8a
.travis.yml
.travis.yml
language: cpp os: - linux before_install: # g++4.8.1 - if [ "$CXX" == "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi # clang 3.4 - if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi - sudo apt-get update -qq install: - sudo apt-get install -qq gnulib - sudo apt-get install libwxgtk2.8-dev libxml2-dev uuid-dev # g++4.8.1 - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"; fi # clang 3.4 - if [ "$CXX" == "clang++" ]; then sudo apt-get install --allow-unauthenticated -qq clang-3.4; fi - if [ "$CXX" == "clang++" ]; then export CXX="clang++-3.4"; fi before_script: - autoreconf -i -I/usr/share/gnulib/m4 -I `pwd`/m4 script: - ./configure && make branches: only: - master notifications: email: - [email protected]
language: cpp os: - linux before_install: - if [ "$CXX" == "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi - if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi - sudo apt-get update -qq install: - sudo apt-get install -qq gnulib - sudo apt-get install libwxgtk2.8-dev libxml2-dev uuid-dev # g++4.7 ( Ubuntu provide wx-2.8, which would be build by gcc 4.7 , cannot build by 4.8 ? ) - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.7; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.7"; fi before_script: - autoreconf -i -I/usr/share/gnulib/m4 -I `pwd`/m4 script: - ./configure && make branches: only: - master notifications: email: - [email protected]
Update Travis setting ( g++ version 4.8 -> 4.7 )
Update Travis setting ( g++ version 4.8 -> 4.7 )
YAML
lgpl-2.1
Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard,Hiroyuki-Nagata/XrossBoard
198454ec3407978c7a8485a5f1f0392df3706438
.travis.yml
.travis.yml
language: java sudo: false jdk: - oraclejdk7 install: "./installViaTravis.sh" script: "./buildViaTravis.sh" cache: directories: - "$HOME/.gradle/caches/" before_install: - test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_cb6c1fbf7ffb_key -iv $encrypted_cb6c1fbf7ffb_iv -in gradle.properties.enc -out ../../templates/gradle.properties -d || true after_success: - "./gradlew jacocoTestReport coveralls" notifications: webhooks: urls: - https://webhooks.gitter.im/e/dab34968484f08aa6a33 on_success: change on_failure: always on_start: never
language: java sudo: false jdk: - oraclejdk7 install: "./installViaTravis.sh" script: "./buildViaTravis.sh" cache: directories: - "$HOME/.gradle/caches/" before_install: - test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_cb6c1fbf7ffb_key -iv $encrypted_cb6c1fbf7ffb_iv -in gradle.properties.enc -out gradle.properties -d || true after_success: - "./gradlew jacocoTestReport coveralls" notifications: webhooks: urls: - https://webhooks.gitter.im/e/dab34968484f08aa6a33 on_success: change on_failure: always on_start: never
Fix path problem in Travis CI configuration
Fix path problem in Travis CI configuration
YAML
apache-2.0
nebula-plugins/gradle-rxjava-project-plugin,rspieldenner/gradle-rxjava-project-plugin
42921af8ca9398d4a8457f685078ca10683c627f
.travis.yml
.travis.yml
language: php before_script: - composer install --prefer-source script: phpunit php: - 5.3 - 5.4 - 5.5 - hhvm
language: php before_script: - composer install --prefer-source script: phpunit php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm
Add PHP 5.6 and 7 on Travis
Add PHP 5.6 and 7 on Travis
YAML
mit
twigphp/Twig-extensions,KacerCZ/Twig-extensions,bocharsky-bw/Twig-extensions,twoixter/Twig-extensions,dkarvounaris/Twig-extensions,patkar/Twig-extensions,Trainmaster/Twig-extensions,SpacePossum/Twig-extensions,sroze/twig-extensions
44f39473852da5db1a6e8b0198aaa848f576b864
.travis.yml
.travis.yml
language: go script: - go test -v ./... go: - 1.3.3 - 1.4.3 - 1.5.2 install: - go get gopkg.in/fsnotify.v1 - go get gopkg.in/tomb.v1
language: go script: - go test -race -v ./... go: - 1.3.3 - 1.4.3 - 1.5.2 install: - go get gopkg.in/fsnotify.v1 - go get gopkg.in/tomb.v1
Add race detection on Travis CI
Add race detection on Travis CI
YAML
mit
ActiveState/tail,bfitzsimmons/tail,miraclesu/tail
8db292a8ccb31e0ebdc3042fed3afb3c758b924d
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 script: RAILS_ENV=test rake spec
language: ruby rvm: - 1.9.3 - jruby-19mode script: RAILS_ENV=test rake spec
Add JRuby to build matrix.
Add JRuby to build matrix.
YAML
mit
final-ci/travis-sidekiqs,travis-ci/travis-sidekiqs
6f2d9e13edb226f01049a1a91a4e3d5605ca4fae
.travis.yml
.travis.yml
sudo: required os: - linux - osx language: python python: - "2.7" - "3.4" - "3.5" - "3.6" # versions of java to test (for parsers) before_install: - sudo apt-get update - sudo apt-get install oracle-java8-installer oracle-java8-set-default # command to install dependencies install: - pip install --upgrade pip setuptools wheel - pip install --only-binary=numpy,scipy numpy scipy - pip install pytest coverage pytest-timeout pytest_socket - pip install python-coveralls - pip install --upgrade coverage - pip install . # - python -c "import kindred; kindred.downloadCoreNLP()" # not used as initial dependencies tests will run this # command to run tests script: - java -version - coverage --version - coverage run --branch -m pytest -v --timeout=90 && coverage report -m after_success: - coveralls env: global: - JAVA_HOME=/usr/lib/jvm/java-8-oracle
sudo: required language: python python: - "2.7" - "3.4" - "3.5" - "3.6" # versions of java to test (for parsers) before_install: - sudo apt-get update - sudo apt-get install oracle-java8-installer oracle-java8-set-default # command to install dependencies install: - pip install --upgrade pip setuptools wheel - pip install --only-binary=numpy,scipy numpy scipy - pip install pytest coverage pytest-timeout pytest_socket - pip install python-coveralls - pip install --upgrade coverage - pip install . # - python -c "import kindred; kindred.downloadCoreNLP()" # not used as initial dependencies tests will run this # command to run tests script: - java -version - coverage --version - coverage run --branch -m pytest -v --timeout=90 && coverage report -m after_success: - coveralls env: global: - JAVA_HOME=/usr/lib/jvm/java-8-oracle
Revert to Linux only tests
Revert to Linux only tests
YAML
mit
jakelever/kindred,jakelever/kindred
150de910a59db7de4125649e3a478dc264252a35
.travis.yml
.travis.yml
language: node_js node_js: - '0.12' before_install: - npm install -g grunt-cli install: script/deps.sh script: - script/build.sh - script/test.sh before_deploy: script/deploy.sh deploy: provider: releases api_key: secure: K5SwhcI8qO9GBYw98lzuN/pvrN27IoTH1NfTQqLRpQoWfFn3gbqKIoVlrWZb5YNiR1jWCtCZxLnYF/PV4I2gTgcNY99j6O7T0y+BLdBL0kEA8twjIhUlZOTEtVStOZ/1LcBUvr10Ysow2Uk79PwJQdqlbZn6bupQzR4VdgqMksY= file: releases/**/battnag-v*.app file_glob: true on: repo: GochoMugo/battnag branch: master
language: node_js node_js: - '0.12' before_install: - npm install -g grunt-cli install: script/deps.sh script: - script/build.sh - script/test.sh before_deploy: script/deploy.sh deploy: provider: releases api_key: secure: K5SwhcI8qO9GBYw98lzuN/pvrN27IoTH1NfTQqLRpQoWfFn3gbqKIoVlrWZb5YNiR1jWCtCZxLnYF/PV4I2gTgcNY99j6O7T0y+BLdBL0kEA8twjIhUlZOTEtVStOZ/1LcBUvr10Ysow2Uk79PwJQdqlbZn6bupQzR4VdgqMksY= file: releases/**/battnag-v*.app file_glob: true on: repo: GochoMugo/battnag branch: master env: global: secure: ClBY71cSSwTO4fND9VANxHgy65NbPndOXKOwiTQP4fexcFs8tVro4C9eRN7AG4vYsNXNt6OG3tFHhIoEqvVxPJ+/ySKfNdnVNvl2xGhTkMFTiM2pxzE37z081ZVq3xjiTEAQHqvd5kaLbTL40oT7lKJa7I55xqMCm61AlPF0N0s=
Add Github token for pushing to gh-pages
Add Github token for pushing to gh-pages Added a Github token solely for pushing to gh-pages branch by Travis CI. The token will be available as the environment variable, GH_TOKEN
YAML
mit
GochoMugo/battnag,GochoMugo/battnag,GochoMugo/battnag
bf76e5699422f22cbc79e60d4a0b0c87a9c1f5f2
.travis.yml
.travis.yml
dist: bionic language: go go_import_path: github.com/godbus/dbus go: - 1.10.x - 1.11.x - 1.12.x - tip env: global: matrix: - TARGET=amd64 - TARGET=arm64 - TARGET=arm - TARGET=386 - TARGET=ppc64le matrix: fast_finish: true allow_failures: - go: tip exclude: - go: tip env: TARGET=arm - go: tip env: TARGET=arm64 - go: tip env: TARGET=386 - go: tip env: TARGET=ppc64le addons: apt: packages: - dbus - dbus-x11 before_install: script: - go test -v -race -mod=readonly ./... # Run all the tests with the race detector enabled - go vet ./... # go vet is the official Go static analyzer
dist: bionic language: go go_import_path: github.com/godbus/dbus go: - 1.11.x - 1.12.x - 1.13.x - tip env: global: matrix: - TARGET=amd64 - TARGET=arm64 - TARGET=arm - TARGET=386 - TARGET=ppc64le matrix: fast_finish: true allow_failures: - go: tip exclude: - go: tip env: TARGET=arm - go: tip env: TARGET=arm64 - go: tip env: TARGET=386 - go: tip env: TARGET=ppc64le addons: apt: packages: - dbus - dbus-x11 before_install: - export GO111MODULE=on script: - go test -v -race -mod=readonly ./... # Run all the tests with the race detector enabled - go vet ./... # go vet is the official Go static analyzer
Support last three go versions
Support last three go versions
YAML
bsd-2-clause
godbus/dbus
fdaf8c3dedbabbcbfd0f18857d112518ea2ff914
.travis.yml
.travis.yml
language: node_js node_js: - "9" - "8" - "7" - "6" - "5" sudo: false before_install: - npm i -g makeshift && makeshift -s @bcoe -r https://registry.npmjs.org script: - npm run test-with-cov before_deploy: - git config --global user.name 'Travis CI' - git config --global user.email '[email protected]' - git remote add push-remote https://${GH_TOKEN}@github.com/ReidWeb/GitInspector-CSV > /dev/null 2>&1 deploy: provider: npm email: [email protected] tag: next api_key: $NPM_TOKEN on: tags: false condition: '$TRAVIS_COMMIT_MESSAGE != *"chore(release)"*' node: 8 repo: ReidWeb/GitInspector-CSV branch: master after_deploy: - git push --follow-tags push-remote master after_success: - CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info git: depth: 10
language: node_js node_js: - "9" - "8" - "7" - "6" - "5" sudo: false before_install: - npm i -g makeshift && makeshift -s @bcoe -r https://registry.npmjs.org script: - npm run test-with-cov before_deploy: - git config --global user.name 'Travis CI' - git config --global user.email '[email protected]' - git remote add push-remote https://${GH_TOKEN}@github.com/ReidWeb/GitInspector-CSV > /dev/null 2>&1 - npm run release deploy: provider: npm email: [email protected] tag: next api_key: $NPM_TOKEN on: tags: true condition: '$TRAVIS_COMMIT_MESSAGE != *"chore(release)"*' node: 8 repo: ReidWeb/GitInspector-CSV branch: master after_deploy: - git push --follow-tags push-remote master after_success: - CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info git: depth: 10
Change release behaviour Do not use Travis' release behaviour
ci(deployment): Change release behaviour Do not use Travis' release behaviour
YAML
mit
ReidWeb/GitInspector-CSV
49cebe84f5a0ed7c7b83895f4f5cc65f9b5ce018
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4.2' - '5.1' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5.1' 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/kibitz,bigeasy/kibitz
0316fa3f64ca644fa532f5cf8249beaba901c7a6
.travis.yml
.travis.yml
language: go sudo: false go: - 1.8.x - 1.9.x - master services: - docker cache: directories: - vendor - webroot/node_modules before_install: - nvm install 6.11.0 - nvm use 6.11.0 - npm install -g yarn install: - make deps-install - cd webroot && make yarn-install && cd .. script: - make check-style - make test - make build - cd webroot - make lint - make build - cd .. - if [[ "$TRAVIS_GO_VERSION" =~ ^1\.8\.[0-9]+$ && "$TRAVIS_BRANCH" == "master" ]]; then docker build -t minchao/smsender-preview:latest .; docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"; docker images; docker push $DOCKER_USERNAME/smsender-preview; fi
language: go sudo: false go: - 1.8.x - 1.9.x - master services: - docker cache: directories: - vendor - webroot/node_modules before_install: - nvm install 6.11.0 - nvm use 6.11.0 - npm install -g yarn install: - make deps-install - cd webroot && make yarn-install && cd .. script: - make check-style - make test - make build - cd webroot - make lint - make build - cd .. - if [[ "$TRAVIS_GO_VERSION" =~ ^1\.9(|\.[0-9]+)$ && "$TRAVIS_BRANCH" == "master" ]]; then docker build -t minchao/smsender-preview:latest .; docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"; docker images; docker push $DOCKER_USERNAME/smsender-preview; fi
Update the docker preview image to Go 1.9
Update the docker preview image to Go 1.9
YAML
mit
minchao/smsender,minchao/smsender,minchao/smsender,minchao/smsender
277854f8e37117377792e0025b4e9783fd0bbe1c
.travis.yml
.travis.yml
language: ruby rvm: - 1.9 - 2.0 - 2.1 - 2.2 - 2.3.0 - rbx-2 - rbx-3.26 - jruby-19mode - jruby-9.0.5 jdk: - openjdk6 - openjdk7 - openjdk8 - oraclejdk7 - oraclejdk8 before_install: - gem install bundler
language: ruby rvm: - 1.9 - 2.0 - 2.1 - 2.2 - 2.3.0 - rbx-2 - rbx-3.26 - jruby-19mode - jruby-9.0.5 jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8 before_install: - gem install bundler
Remove OpenJDK 8 again for Travis CI as it is not supported
Remove OpenJDK 8 again for Travis CI as it is not supported
YAML
isc
godobject/bit_set
e915b01cb12dc7bf04841fa10e1e7038927eb3f2
.travis.yml
.travis.yml
language: python notifications: email: - [email protected] python: - "2.7" - "2.6" install: - pip install coverage - pip install coveralls - pip install nose - python setup.py install script: - nosetests --with-coverage --cover-package=scrapper after_success: - coveralls
language: python notifications: email: - [email protected] python: - "2.7" install: - pip install coverage - pip install coveralls - pip install nose - python setup.py install script: - nosetests --with-coverage --cover-package=scrapper after_success: - coveralls
Revert "Setup Travis to test on 2.6"
Revert "Setup Travis to test on 2.6" This reverts commit 94ed3d99326dffbab2328edeab5882c5782efdee.
YAML
mit
Alkemic/scrapper,Alkemic/scrapper
99af68fa9b49343cd447f37ee54e86526d5f6533
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.4 - 2.2.7 - 2.1.10 before_install: - gem update --remote bundler - gem update --system sudo: false bundler_args: --without=guard notifications: disabled: true
language: ruby rvm: - 2.5.0 - 2.4.3 - 2.3.6 - 2.2.9 - 2.1.10 before_install: - gem update --remote bundler - gem update --system sudo: false bundler_args: --without=guard notifications: disabled: true
Test against Ruby 2.4 and 2.5
[CI] Test against Ruby 2.4 and 2.5
YAML
mit
BigKeeper/big-keeper,BigKeeper/big-keeper
951c170e86cc950dc1f94a1157eb8ca8cf3bfc5d
.travis.yml
.travis.yml
language: cpp # enabling multi platform build (under travis beta) # requires emailing [email protected] for this to be enabled for our repo # http://docs.travis-ci.com/user/multi-os/ matrix: include: - os: osx env: PLATFORM=osx compiler: clang - os: osx env: PLATFORM=ios compiler: clang - os: osx env: PLATFORM=android compiler: gcc - os: linux env: PLATFORM=linux compiler: gcc before_install: - git submodule init && git submodule update - source ./travis/before_install.sh install: ulimit -c before_script: # Set the core file limit to unlimited so a core file is generated upon crash - ulimit -c unlimited -S # build test project script: - source ./travis/script_build_tests.sh - source ./travis/script_run_tests.sh - source ./travis/script_build.sh
language: cpp # enabling multi platform build (under travis beta) # requires emailing [email protected] for this to be enabled for our repo # http://docs.travis-ci.com/user/multi-os/ matrix: include: - os: osx env: PLATFORM=osx compiler: clang - os: osx env: PLATFORM=ios compiler: clang - os: osx env: PLATFORM=android compiler: gcc - os: linux env: PLATFORM=linux compiler: clang before_install: - git submodule init && git submodule update - source ./travis/before_install.sh install: ulimit -c before_script: # Set the core file limit to unlimited so a core file is generated upon crash - ulimit -c unlimited -S # build test project script: - source ./travis/script_build_tests.sh - source ./travis/script_run_tests.sh - source ./travis/script_build.sh
Fix Travis clang config on linux
Fix Travis clang config on linux
YAML
mit
tangrams/tangram-es,karimnaaji/tangram-es,karimnaaji/tangram-es,quitejonny/tangram-es,karimnaaji/tangram-es,tangrams/tangram-es,xvilan/tangram-es,quitejonny/tangram-es,cleeus/tangram-es,tangrams/tangram-es,quitejonny/tangram-es,hjanetzek/tangram-es,xvilan/tangram-es,tangrams/tangram-es,tangrams/tangram-es,tangrams/tangram-es,xvilan/tangram-es,quitejonny/tangram-es,cleeus/tangram-es,xvilan/tangram-es,tangrams/tangram-es,hjanetzek/tangram-es,quitejonny/tangram-es,karimnaaji/tangram-es,cleeus/tangram-es,hjanetzek/tangram-es,cleeus/tangram-es,cleeus/tangram-es,quitejonny/tangram-es,hjanetzek/tangram-es,cleeus/tangram-es
287aacdd95d6c1c8a940a8c5c1ca5c4b5ae27e0e
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.5" - "3.6" # command to install dependencies install: "pip install pep8" # command to run tests script: python ./tests/pep8-git-pr-checker
language: python python: - "2.6" - "2.7" - "3.5" - "3.6" # command to install dependencies install: - pip install pep8 setuptools - python setup.py install script: # Stye Check - python ./tests/pep8-git-pr-checker # Automated Testing - python -m unittest discover tests -v
Add the test suite to Travis.
Add the test suite to Travis. Change-Type: patch
YAML
apache-2.0
nghiant2710/resin-sdk-python,resin-io/resin-sdk-python,resin-io/resin-sdk-python,nghiant2710/resin-sdk-python
31cc8cee94bced0031f76b88d9ab0a152d00f00d
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "pypy" # Use container-based infrastructure sudo: false install: # Coveralls 4.0 doesn't support Python 3.2 - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then pip install coverage; fi script: nosetests --with-coverage --cover-package=twitter after_success: - coveralls - pip install pep8 pyflakes - pep8 twitter/*.py - pyflakes twitter/*.py - pep8 tests/*.py - pyflakes tests/*.py matrix: allow_failures: - python: "pypy"
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" - "3.6-dev" - "3.7-dev" - "nightly" - "pypy" # Use container-based infrastructure sudo: false install: # Coveralls 4.0 doesn't support Python 3.2 - if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip install coverage==3.7.1; fi - if [ "$TRAVIS_PYTHON_VERSION" != "3.2" ]; then pip install coverage; fi script: nosetests --with-coverage --cover-package=twitter after_success: - coveralls - pip install pep8 pyflakes - pep8 twitter/*.py - pyflakes twitter/*.py - pep8 tests/*.py - pyflakes tests/*.py matrix: allow_failures: - python: "pypy"
Add most recent Python versions in Travis CI
Add most recent Python versions in Travis CI Add more recent Python versions including development branches and nightly build.
YAML
mit
sixohsix/twitter,hugovk/twitter
42b45e51087c4d37051b9df270f90b9b822b2360
.travis.yml
.travis.yml
language: cpp compiler: gcc before_install: - sudo add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty main universe" - sudo apt-get clean - sudo apt-get update -qq - sudo apt-get install -qq build-essential cmake libboost-filesystem-dev libboost-log-dev libboost-system-dev libssl-dev before_script: - svn co http://libtorrent.googlecode.com/svn/tags/libtorrent-1_0_3 libtorrent - cd libtorrent - ./autotool.sh - ./configure --enable-deprecated-functions=no - make - sudo make install - cd .. - mkdir build - cd build - cmake .. script: make notifications: email: recipients: - [email protected] on_success: change on_failure: always
language: cpp compiler: gcc before_install: - sudo add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/ trusty main universe" - sudo apt-get clean - sudo apt-get update -qq - if [ "$CXX" = "clang++" ]; then sudo apt-get install -qq libstdc++-4.8-dev; fi - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - sudo apt-get install -qq cmake libboost-filesystem-dev libboost-log-dev libboost-system-dev libssl-dev before_script: - svn co http://libtorrent.googlecode.com/svn/tags/libtorrent-1_0_3 libtorrent - cd libtorrent - ./autotool.sh - ./configure --enable-deprecated-functions=no - make - sudo make install - cd .. - mkdir build - cd build - cmake .. script: make notifications: email: recipients: - [email protected] on_success: change on_failure: always
Update g++ once and for all.
Update g++ once and for all.
YAML
mit
vktr/hadouken,yonglehou/hadouken,vktr/hadouken,vktr/hadouken,Robo210/hadouken,Robo210/hadouken,vktr/hadouken,Robo210/hadouken,Robo210/hadouken,yonglehou/hadouken,yonglehou/hadouken
c4a17657d0a837b44d17a3e64a2b3a655ed0a063
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 1.9.2 gemfile: - ".gemfiles/Gemfile.rails-3.1.x" - ".gemfiles/Gemfile.rails-3.2.x"
language: ruby rvm: - 2.0.0 - 1.9.3 - 1.9.2 gemfile: - ".gemfiles/Gemfile.rails-3.1.x" - ".gemfiles/Gemfile.rails-3.2.x"
Add Ruby 2.0.0 to Travis-CI build
Add Ruby 2.0.0 to Travis-CI build
YAML
mit
ingemar/entasis
0b792c172de2e09a103702ac17b6c31dda6d966e
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 env: - PUPPET_VERSION=2.6.18 - PUPPET_VERSION=2.7.21 - PUPPET_VERSION=3.0.2 - PUPPET_VERSION=3.1.1 - PUPPET_VERSION=3.2.1
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 env: - PUPPET_VERSION=2.6.18 - PUPPET_VERSION=2.7.21 - PUPPET_VERSION=3.0.2 - PUPPET_VERSION=3.1.1 - PUPPET_VERSION=3.2.1 matrix: exclude: - rvm: 1.9.2 env: PUPPET_VERSION=2.6.18 - rvm: 1.9.3 env: PUPPET_VERSION=2.6.18
Exclude Ruby 1.9.*/Puppet 2.6.18 from build matrix
Exclude Ruby 1.9.*/Puppet 2.6.18 from build matrix
YAML
apache-2.0
wywygmbh/puppet-cassandra,igoraj/puppet-cassandra,varunarya10/puppet-cassandra,sigmunau/puppet-cassandra,3fs/puppet-cassandra,igoraj/puppet-cassandra,msimonin/puppet-cassandra,msimonin/puppet-cassandra,3fs/puppet-cassandra,gini/puppet-cassandra,3fs/puppet-cassandra,sigmunau/puppet-cassandra,sigmunau/puppet-cassandra,igoraj/puppet-cassandra,varunarya10/puppet-cassandra,serenakeating/21puppet-cassandra,wywygmbh/puppet-cassandra,serenakeating/21puppet-cassandra,wywygmbh/puppet-cassandra,varunarya10/puppet-cassandra
79fe99e24311fa42469fb2ca23eb3f8f065e6155
.travis.yml
.travis.yml
language: go sudo: false go: - 1.6 - 1.7 - 1.8 services: - mysql - postgresql before_install: - mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot - mysql -e "CREATE DATABASE IF NOT EXISTS test_env;" -uroot - psql -c "CREATE DATABASE test;" -U postgres install: - go get -t ./... - go install ./... script: - go test -v ./... - bash test-integration/postgres.sh - bash test-integration/mysql.sh - bash test-integration/mysql-flag.sh - bash test-integration/mysql-env.sh - bash test-integration/sqlite.sh
language: go sudo: false go: - 1.8 services: - mysql - postgresql before_install: - mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot - mysql -e "CREATE DATABASE IF NOT EXISTS test_env;" -uroot - psql -c "CREATE DATABASE test;" -U postgres install: - go get -t ./... - go install ./... script: - go test -v ./... - bash test-integration/postgres.sh - bash test-integration/mysql.sh - bash test-integration/mysql-flag.sh - bash test-integration/mysql-env.sh - bash test-integration/sqlite.sh
Stop testing old Go versions
Stop testing old Go versions
YAML
mit
rubenv/sql-migrate,rubenv/sql-migrate
21f9dca63ad93ab2cc7c124340474108a86306f3
.travis.yml
.travis.yml
language: erlang script: make test otp_release: - R15B01 - R15B
language: erlang script: make test otp_release: - R15B01 - R15B - R14B04 - R14B03 - R14B02
Build against "older" Erlang/OTP release
Build against "older" Erlang/OTP release
YAML
bsd-3-clause
moretea/doko,moretea/doko
dcc6b8e6f285de418fec7aa687690ebea1aef240
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" script: "node node_modules/grunt-cli/bin/grunt test:travis" before_script: - npm install -g bower - bower install
language: node_js node_js: - "0.10" script: "node node_modules/grunt-cli/bin/grunt test:travis" before_script: - npm install -g bower - bower install notifications: hipchat: rooms: secure: "dPDcvtGQXXzdj31ftZkRShrn+l1TCnTEPTdr6YVAfzAI1Ashzhr4yGvnNfMs\n4lbxYDJfRxpTO5Xd1Hte5HH7c0ijoHEGjajySSl43+nLeShw+CWhuxKSbmCM\nnICGbjLhNPSDTIg1QPO/AkUCF3YG6szmd3JX9XLathUrt0HOBTY=" on_success: always on_failure: always template: - "%{author} | %{commit} | %{message} | %{build_url}"
Add HipChat notification to Travis build.
Add HipChat notification to Travis build.
YAML
bsd-3-clause
holderdeord/hdo-budget,holderdeord/hdo-budget
7ce68a55cfcc5bf8d95295cc287d112e082ad509
.travis.yml
.travis.yml
script: rake ci rvm: - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head - jruby - jruby-head - rbx matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rbx notifications: irc: "irc.freenode.org#celluloid"
script: rake ci rvm: - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head - jruby - jruby-head - rbx matrix: allow_failures: - rvm: ruby-head - rvm: jruby - rvm: jruby-head - rvm: rbx notifications: irc: "irc.freenode.org#celluloid"
Allow JRuby failures on Travis
Allow JRuby failures on Travis
YAML
mit
ioquatix/celluloid-io,celluloid/celluloid-io,dilumn/celluloid-io,marshall-lee/celluloid-io,kenichi/celluloid-io