commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
0b3e450d5c6e98a8c2af09d2f24348d6a2b4c31a | .github/workflows/Dev-CI.yml | .github/workflows/Dev-CI.yml | # Basic CI build
name: Dev CI
# Controls when the action will run. Triggers the workflow on push
# events but only for the develop branch
on:
push:
branches: [ develop ]
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-l... | # Basic CI build
name: Dev CI
# Controls when the action will run. Triggers the workflow on push
# events but only for the develop branch
on:
push:
branches: [ develop ]
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-l... | Test sitecore 9.0 build in github action | Test sitecore 9.0 build in github action | YAML | apache-2.0 | mikeedwards83/Glass.Mapper,mikeedwards83/Glass.Mapper |
5ed9371f3e03615f3715fee8efb8121a5c9f7f08 | .github/workflows/deploy.yml | .github/workflows/deploy.yml | name: Deploy to MLRS
on:
push:
branches:
- deploy-action
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Open VPN
run: sudo apt-get install openvpn
- name: Connect VPN
uses: golfzaptw/action-connect-ovpn@master
id: conne... | name: Deploy to MLRS
on:
push:
branches:
- production
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Open VPN
run: sudo apt-get install openvpn
- name: Connect VPN
uses: golfzaptw/action-connect-ovpn@master
id: connect_... | Deploy for real when pushing to production | Deploy for real when pushing to production
| YAML | mit | johnjcamilleri/gabra-api,MLRS/gabra-api,MLRS/gabra-api,MLRS/gabra-api,johnjcamilleri/gabra-api,johnjcamilleri/gabra-api |
d7de75f38f3182ae7789e605d9a9710652c8de92 | .github/workflows/django.yml | .github/workflows/django.yml | name: Backend
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
checks:
name: Run tests
runs-on: ubuntu-latest
env:
DJANGO_SETTINGS_MODULE: churchill.settings.test
steps:
- name: Check out the repository
uses: actions/... | name: Backend
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
checks:
name: Run tests
runs-on: ubuntu-latest
env:
DJANGO_SETTINGS_MODULE: churchill.settings.test
steps:
- name: Check out the repository
uses: actions/... | Update github actions python version | Update github actions python version
| YAML | bsd-3-clause | manti-by/Churchill,manti-by/Churchill,manti-by/Churchill,manti-by/Churchill,manti-by/Churchill |
f842f517c04a77841342fbe5f02068f289f5f8f4 | .github/workflows/docker.yml | .github/workflows/docker.yml | name: Build Docker image after release
on:
release:
types: [published]
env:
TEST_TAG: ${{ github.repository }}:test
jobs:
build:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docker/... | name: Build Docker image after release
on:
release:
types: [published]
env:
TEST_TAG: ${{ github.repository }}:test
jobs:
build:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docker/... | Fix steps id in GithubActions Docker workflow | Fix steps id in GithubActions Docker workflow
| YAML | mit | guigolab/ggsashimi,guigolab/ggsashimi |
c9f54f8c11c97875f19dff6d5c377c93eb3f5021 | .github/workflows/gradle.yml | .github/workflows/gradle.yml | name: Java CI
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Install webapp
run: ... | name: Java CI
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Install webapp
run: ... | Add CI test to check EOL chars for CSV | Add CI test to check EOL chars for CSV
CSV files should have CR/LF as EOL.
| YAML | agpl-3.0 | axelor/axelor-business-suite,axelor/axelor-business-suite,axelor/axelor-business-suite |
d9859ad6da75a875dab3f816f8745cb4eb047455 | .github/workflows/gradle.yml | .github/workflows/gradle.yml | # This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches:
- master
- '[0-9].*'
pull_request:
branches:
- master
... | # This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches:
- master
- '[0-9].*'
pull_request:
branches:
- master
... | Use GitHub Actions only for checks | Use GitHub Actions only for checks
| YAML | apache-2.0 | joinfaces/joinfaces,joinfaces/joinfaces,larsgrefer/joinfaces,larsgrefer/joinfaces |
8163e4ba99697ebb198754c1f35313d21dc1695e | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-ve... | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version... | Rename from Node CI to CI | Rename from Node CI to CI | YAML | mit | danielbayerlein/dashboard,danielbayerlein/dashboard |
c7e70954f3a38f74341d1e705f19af2d161e541d | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ devel ]
pull_req... | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ devel ]
pull_req... | Test using Node.js 15.x too | Test using Node.js 15.x too | YAML | bsd-2-clause | macbre/analyze-css,macbre/analyze-css |
76d7e35d4865cdf399a931513fffcccf32ba70fe | recipes/posthog/meta.yaml | recipes/posthog/meta.yaml | {% set name = "posthog" %}
{% set version = "1.4.0" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: be7caf0625c6efdc6cb7052d4026a13c3d94df4a2662b90945de02d2cfc21bd4
build:
noarch: p... | {% set name = "posthog" %}
{% set version = "1.4.0" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: be7caf0625c6efdc6cb7052d4026a13c3d94df4a2662b90945de02d2cfc21bd4
build:
noarch: p... | Remove pip check due to old version of backoff | Remove pip check due to old version of backoff
| YAML | bsd-3-clause | kwilcox/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,igortg/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-rec... |
019bc70827026602a0b11dde7f954edf2fa76d72 | data/hostname/worker01.euwest.azure.internal.softwareheritage.org.yaml | data/hostname/worker01.euwest.azure.internal.softwareheritage.org.yaml | swh::deploy::worker::instances:
- swh_indexer_orchestrator
- swh_indexer_mimetype
- swh_indexer_language
- swh_indexer_ctags
- swh_indexer_fossology_license
- swh_loader_svn
# testing swh-loader-svn
swh::deploy::storage::db::dbname: softwareheritage-test-svn
swh::deploy::storage::directory: /srv/swh/object... | swh::deploy::worker::instances:
- swh_indexer_orchestrator
- swh_indexer_mimetype
- swh_indexer_language
- swh_indexer_ctags
- swh_indexer_fossology_license
- swh_loader_svn
# testing swh-loader-svn
swh::deploy::storage::db::dbname: softwareheritage-test-svn
swh::deploy::storage::directory: /srv/swh/object... | Add default check_revision flag to 1000 revs | data/worker01.euwest.azure: Add default check_revision flag to 1000 revs
| YAML | apache-2.0 | SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site |
04156b96f242f54c66ec2dc319fe4fa8c4fffa79 | metadata/com.github.postapczuk.lalauncher.yml | metadata/com.github.postapczuk.lalauncher.yml | Categories:
- System
License: GPL-2.0-only
WebSite: https://github.com/postapczuk/Light-Android-Launcher
SourceCode: https://github.com/postapczuk/Light-Android-Launcher
AutoName: Light Android Launcher
Summary: Lightweight app launcher
Description: |-
Configurable, super lightweight app launcher with a low memo... | Categories:
- System
License: GPL-2.0-only
WebSite: https://github.com/postapczuk/Light-Android-Launcher
SourceCode: https://github.com/postapczuk/Light-Android-Launcher
AutoName: Light Android Launcher
Summary: Lightweight app launcher
Description: |-
Configurable, super lightweight app launcher with a low memo... | Update Light Android Launcher to 1.3 (4) | Update Light Android Launcher to 1.3 (4)
| YAML | agpl-3.0 | f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata |
94b52b17e02689f4d56213b388c122bffbfbda41 | src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.en.yml | src/Sylius/Bundle/PromotionBundle/Resources/translations/messages.en.yml | # This file is part of the Sylius package.
# (c) Paweł Jędrzejewski
sylius:
form:
promotion:
actions: Actions
add_action: Add action
add_rule: Add rule
coupon_based: Coupon based
description: Description
ends_at: Ends at
exc... | # This file is part of the Sylius package.
# (c) Paweł Jędrzejewski
sylius:
form:
promotion:
actions: Actions
add_action: Add action
add_rule: Add rule
coupon_based: Coupon based
description: Description
ends_at: Ends at
exc... | Add translations for promotion actions and rules | Add translations for promotion actions and rules | YAML | mit | psren/Sylius,Zales0123/Sylius,mbabker/Sylius,SyliusBot/Sylius,Arminek/Sylius,dragosprotung/Sylius,gorkalaucirica/Sylius,Brille24/Sylius,bitbager/Sylius,psren/Sylius,TheMadeleine/Sylius,gmoigneu/platformsh-integrations,torinaki/Sylius,vihuvac/Sylius,dragosprotung/Sylius,pamil/Sylius,torinaki/Sylius,loic425/Sylius,itinan... |
704e72fe9bda5de9cff31fc807d62c151b5331ff | packages/dm/dmenu.yaml | packages/dm/dmenu.yaml | homepage: https://github.com/m0rphism/haskell-dmenu
changelog-type: ''
hash: af2c9ffe7dc26bb2ecfcd0242c22ab2e6ee0dd750977c9d1ebb7b5ae965738f2
test-bench-deps: {}
maintainer: Hannes Saffrich <m0rphism@zankapfel.org>
synopsis: Complete bindings to the dmenu and dmenu2 command line tools.
changelog: ''
basic-deps:
base:... | homepage: https://github.com/m0rphism/haskell-dmenu
changelog-type: ''
hash: 0498e33abbba6e91142590d411284aaca73a54f8ba14e3e6f62a334044f2d19b
test-bench-deps: {}
maintainer: Hannes Saffrich <m0rphism@zankapfel.org>
synopsis: Complete bindings to the dmenu and dmenu2 command line tools.
changelog: ''
basic-deps:
base:... | Update from Hackage at 2016-11-20T11:35:38Z | Update from Hackage at 2016-11-20T11:35:38Z | YAML | mit | commercialhaskell/all-cabal-metadata |
bddbf5ea3d5b01f3ed2d14b82e7d10a97c51275c | docker-compose.yml | docker-compose.yml | version: "3"
volumes:
bundle: { driver: local }
config: { driver: local }
services:
app:
image: alpinelab/ruby-dev
command: ["middleman", "server", "--bind-address=0.0.0.0"]
ports:
- "4567:4567"
- "35729:35729"
volumes:
- .:/app
- bundle:/bundle
- config:/config
| version: "3"
volumes:
bundle: { driver: local }
config: { driver: local }
services:
app:
image: alpinelab/ruby-dev:2.5
command: ["middleman", "server", "--bind-address=0.0.0.0"]
ports:
- "4567:4567"
- "35729:35729"
volumes:
- .:/app
- bundle:/bundle
- config:/config
| Fix Ruby version to 2.5 | Fix Ruby version to 2.5
| YAML | mit | alpinelab/website,alpinelab/website,alpinelab/website |
47f90aa39597815aac001b7cc66dd69de39c3ba6 | docker-compose.yml | docker-compose.yml | version: '2'
services:
postgres:
image: postgres:latest
container_name: pg_bawler-test-pg
environment: &pg_environment
POSTGRES_PASSWORD: postgres
POSTGRES_USER: pg_bawler_test
POSTGRES_DB: pg_bawler_test
pg_bawler:
build: .
command: watchmedo tricks-from watchmedo-tricks.ya... | version: '2'
services:
postgres:
image: postgres:latest
container_name: pg_bawler-test-pg
environment: &pg_environment
POSTGRES_PASSWORD: postgres
POSTGRES_USER: pg_bawler_test
POSTGRES_DB: pg_bawler_test
pg_bawler:
build: .
command: watchmedo tricks-from watchmedo-tricks.ya... | Add asyncio debug env variable | Add asyncio debug env variable
| YAML | bsd-3-clause | beezz/pg_bawler,beezz/pg_bawler |
1f2fbc5616e207da6235603a2cc5aed3ed68c23c | docker-compose.yml | docker-compose.yml | web:
build: .
command: run --debug --collect-static --db-migrate --timeout 15 --bind 0.0.0.0:5000
ports:
- "5001:5000"
links:
- postgres
- rabbitmq
- redis
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/code/data
- ./dockci:/code/dockci
- ./alembic:/code/alembic
- ./... | web:
build: .
command: run --debug --collect-static --db-migrate --timeout 15 --bind 0.0.0.0:5000
ports:
- "5001:5000"
links:
- postgres
- rabbitmq
- redis
- registry
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/code/data
- ./dockci:/code/dockci
- ./alembic:/code/a... | Add registry to compose links | Add registry to compose links
| YAML | isc | sprucedev/DockCI,RickyCook/DockCI,sprucedev/DockCI,sprucedev/DockCI-Agent,RickyCook/DockCI,RickyCook/DockCI,sprucedev/DockCI,sprucedev/DockCI,RickyCook/DockCI,sprucedev/DockCI-Agent |
23aedf07837e0ebade3e7da484ae1f8a1c76b485 | docker-compose.yml | docker-compose.yml | version: '2'
services:
tests:
image: buildkite/plugin-tester:latest@sha256:4fa79343710021d300556f57f16721e5cb3859b4bad09ba437d006f5c38efe8e
volumes:
- ".:/plugin:ro"
| version: '2'
services:
tests:
image: buildkite/plugin-tester:latest@sha256:973f078d7d648c88cd211dbaf6edcd17bd18778a6fda0aa9e00a7cf8fba32006
volumes:
- ".:/plugin:ro"
| Update buildkite/plugin-tester:latest Docker digest to 973f07 | Update buildkite/plugin-tester:latest Docker digest to 973f07 | YAML | mit | buildkite-plugins/ecr-buildkite-plugin |
114b13724577209e93ada936c8592beb573f6dbf | metadata/me.hackerchick.sharetoinputstick.yml | metadata/me.hackerchick.sharetoinputstick.yml | Categories:
- Connectivity
License: MIT
SourceCode: https://github.com/TheLastProject/ShareToInputStick
IssueTracker: https://github.com/TheLastProject/ShareToInputStick/issues
AutoName: Share To InputStick
RepoType: git
Repo: https://github.com/TheLastProject/ShareToInputStick.git
Builds:
- versionName: '3.4'
... | Categories:
- Connectivity
License: MIT
SourceCode: https://github.com/TheLastProject/ShareToInputStick
IssueTracker: https://github.com/TheLastProject/ShareToInputStick/issues
AutoName: Share To InputStick
RepoType: git
Repo: https://github.com/TheLastProject/ShareToInputStick.git
Builds:
- versionName: '3.4'
... | Update Share To InputStick to 3.4.3 (16) | Update Share To InputStick to 3.4.3 (16)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
81a685aedb8b6bea98f032c36a83887a4253ed4c | data/transition-sites/cac.yml | data/transition-sites/cac.yml | ---
site: cac
whitehall_slug: central-arbitration-committee
homepage: https://www.gov.uk/government/organisations/central-arbitration-committee
tna_timestamp: 20130104141210
host: www.cac.gov.uk
homepage_furl: www.gov.uk/cac
#aliases: # tld currently points to www.acas.org.uk, further investigation required
#- cac.gov.... | ---
site: cac
whitehall_slug: central-arbitration-committee
homepage: https://www.gov.uk/government/organisations/central-arbitration-committee
tna_timestamp: 20130104141210
host: www.cac.gov.uk
homepage_furl: www.gov.uk/cac
aliases:
- cac.gov.uk
options: --query-string articleid
| Add TLD alias for CAC - will send us traffic | Add TLD alias for CAC - will send us traffic | YAML | mit | alphagov/transition-config,alphagov/transition-config |
84e4190e2ea26c88538a5286e2f3fa3c66901bb3 | jenkins/jobs/static-publish-jobs.yaml | jenkins/jobs/static-publish-jobs.yaml | # Jobs for static site publication
- job-template:
name: static-{name}-publish
node: 'bare-precise || bare-trusty'
builders:
- revoke-sudo
- gerrit-git-prep
- docs:
project: '{name}'
- static-publish-prep:
source: 'doc/build/html'
publishers:
- scp:
... | # Jobs for static site publication
- job-template:
name: static-{name}-publish
node: 'bare-precise || bare-trusty'
builders:
- revoke-sudo
- gerrit-git-prep
- docs:
project: '{name}'
- static-publish-prep:
source: 'doc/build/html'
publishers:
- scp:
... | Disable logs for static publish jobs | Disable logs for static publish jobs
Change-Id: I7593666a77b11379cdc0b4799b13a0d4262cf510
Signed-off-by: Diego Dompe <362eb8c2bff4070585be20c53c8ef543d5e46a6b@hp.com>
| YAML | apache-2.0 | open-switch/infra_project-config,open-switch/infra_project-config |
ae30751cd2258aba10c08720408dad278587425c | metadata/tool.fff.profilepicturegenerator.yml | metadata/tool.fff.profilepicturegenerator.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: GPL-3.0-or-later
WebSite: https://gitlab.com/hocuri/fff-profile-picture-generator
SourceCode: https://gitlab.com/hocuri/fff-profile-picture-generator/tree/HEAD
IssueTracker: https://gitlab.com/hocuri/fff-profile-picture-generator/issues
Changelog: https://g... | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: GPL-3.0-or-later
WebSite: https://gitlab.com/hocuri/fff-profile-picture-generator
SourceCode: https://gitlab.com/hocuri/fff-profile-picture-generator/tree/HEAD
IssueTracker: https://gitlab.com/hocuri/fff-profile-picture-generator/issues
Changelog: https://g... | Update Profilbildgenerator to 1.3 (13) | Update Profilbildgenerator to 1.3 (13)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
8d1e0433061b1ebae06d5755dc05edf7ecdbe3da | docs/_config.yml | docs/_config.yml | markdown: kramdown
highlighter: rouge
gauges_id: 503c5af6613f5d0f19000027
google_analytics_id: UA-50755011-1
google_site_verification: onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY
repository: https://github.com/jekyll/jekyll
help_url: https://github.com/jekyll/jekyll-help
timezone: America/Los_Angeles
collections:
... | markdown: kramdown
highlighter: rouge
gauges_id: 503c5af6613f5d0f19000027
google_analytics_id: UA-50755011-1
google_site_verification: onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY
repository: https://github.com/jekyll/jekyll
help_url: https://github.com/jekyll/jekyll-help
timezone: America/Los_Angeles
collections:
... | Set docs permalink in config | Set docs permalink in config | YAML | mit | Strangehill/jekyll,chrisfinazzo/jekyll,chrisfinazzo/jekyll,xiebinhqy/jklly_china,jaybe-jekyll/jekyll,tomjohnson1492/jekyll,jekyll/jekyll,rlugojr/jekyll,rlugojr/jekyll,gencer/jekyll,rasa2011/rasa2011.github.io,getandpost/jekyll.github.io,fulldecent/jekyll,getandpost/jekyll.github.io,xiebinhqy/jklly_china,tillgrallert/je... |
9f46dd13dfbf2a385c37a102abf9351a785fee81 | docs/_config.yml | docs/_config.yml | # Site settings
title: "ALS Prolog"
url: "https://alsprolog.com"
repository: "AppliedLogicSystems/ALSProlog"
# Analytics for production (Piwik/Matomo substituting for GA)
google_analytics: 6
# Build settings
markdown: kramdown
theme: minima
#permalink: pretty
kramdown:
syntax_highlighter_opts:
default_lang: p... | # Site settings
title: ALS Prolog
url: https://alsprolog.com
description: ALS Prolog Compiler & Development Environment
author: Applied Logic Systems, Inc.
email: info@applied-logic-systems.com
# Analytics for production (Piwik/Matomo substituting for GA)
google_analytics: 6
# Build settings
theme: minima
markdown: ... | Add project meta-data for footer. | Add project meta-data for footer.
| YAML | mit | AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog,AppliedLogicSystems/ALSProlog |
e92bfa120027b5d6a921d16fa2e55d3d00e00524 | _config_master.yml | _config_master.yml | image_server_url: https://next.cmlteam.com
resources_server_url: https://next.cmlteam.com
| image_server_url: http://cf.jare.io/?u=https://next.cmlteam.com
resources_server_url: https://next.cmlteam.com
| Add Jare CDN for images | CML-126: Add Jare CDN for images
| YAML | apache-2.0 | xonixx/cml-site-jekyll,xonixx/cml-site-jekyll,xonixx/cml-site-jekyll,xonixx/cml-site-jekyll,xonixx/cml-site-jekyll |
8cc6d5dc5f162e109d012c8de73e9687dcc71b2c | _data/projects.yml | _data/projects.yml | - title: Tailor
caption: Static analyzer for Swift.
thumbnail: tailor
live: https://tailor.sh
github: https://github.com/sleekbyte/tailor
- title: Nspire
caption: Nspire Innovation Network website.
thumbnail: nspire
live: http://nspire.alykhan.com
github: https://github.com/alykhank/nspire/tree/gh-page... | - title: Tailor
caption: Static analyzer for Swift.
thumbnail: tailor
live: https://tailor.sh
github: https://github.com/sleekbyte/tailor
- title: Nspire
caption: Nspire Innovation Network website.
thumbnail: nspire
live: http://nspire.alykhan.com
github: https://github.com/alykhank/nspire/tree/gh-page... | Update URL for Linkbelt website | Update URL for Linkbelt website
| YAML | mit | alykhank/alykhank.github.io,alykhank/alykhank.github.io,alykhank/alykhank.github.io |
2ccf77cc854dce504b5eb17cf137cad8ecaa165b | roles/chruby/tasks/main.yml | roles/chruby/tasks/main.yml | ---
# file: roles/chruby/tasks/main.yml
- name: Install chruby
homebrew:
name: chruby
state: present
- name: Source chruby.sh & auto.sh from {{ ansible_user_dir }}/.bashrc
blockinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
block: |
[ -s /usr/local/opt/chruby/share/chruby/chruby.sh ] && . /u... | ---
# file: roles/chruby/tasks/main.yml
- name: Install chruby
homebrew:
name: chruby
state: present
- name: Source chruby.sh & auto.sh from {{ ansible_user_dir }}/.bashrc
blockinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
block: |
[ -s /usr/local/share/chruby/chruby.sh ] && . /usr/local/sh... | Make chruby_auto work with iterm2_shell_integration.bash | Make chruby_auto work with iterm2_shell_integration.bash
| YAML | mit | andrewdavidbell/macos-infra |
81635e3a0b419b9aa4fb9f8975063e6064c3d311 | stack.yaml | stack.yaml | flags: {}
packages:
- '.'
extra-deps:
- aeson-0.11.1.0
- insert-ordered-containers-0.1.0.1
resolver: nightly-2016-03-04
| flags: {}
packages:
- '.'
extra-deps: []
resolver: nightly-2016-07-15
| Switch to the latest nightly to avoid extra-deps | Switch to the latest nightly to avoid extra-deps
| YAML | bsd-3-clause | GetShopTV/swagger2 |
0842406e0abd8026f50d7ef9267c800701632ac0 | stack.yaml | stack.yaml | resolver: lts-3.20
flags: {}
packages:
- '.'
- location: ../strive
#git: git://github.com/tfausak/strive.git
#commit: c39704d5f008af42f5c3c2d5319476c7aa12e52d
extra-dep: true
extra-deps:
- gpolyline-0.1.0.1
| resolver: lts-3.20
flags: {}
packages:
- '.'
- location:
git: git://github.com/tfausak/strive.git
commit: cfbd995dacafb1242482c0b6ce23826fad505338
extra-dep: true
extra-deps:
- gpolyline-0.1.0.1
| Use upstream strive, my fix was merges | Use upstream strive, my fix was merges
| YAML | mit | liskin/strava-gear |
e96542c9c6e3b3b7d74ca165f989b96df6f1e0fa | training_content/wiki_ed/slides/25-drafting-professional/2506-drafting-a-new-article-professional.yml | training_content/wiki_ed/slides/25-drafting-professional/2506-drafting-a-new-article-professional.yml | ---
title: Drafting a new article?
content: |
If you're creating a new article, it makes sense to get a first draft
ready in a sandbox. That way, you can get a handle on some of the
article structure, and develop a lead paragraph that contains everything
you want to tackle.
Write an outline of your topic in ... | ---
title: Drafting a new article?
content: |
If you're creating a new article, it makes sense to get a first draft
ready in a sandbox. That way, you can get a handle on some of the
article structure, and develop a lead paragraph that contains everything
you want to tackle.
Write an outline of your topic in ... | Fix notability link for drafting new articles | Fix notability link for drafting new articles
| YAML | mit | WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard |
c07500751ff95268b9bba3fcb660659dd6655de6 | packages/pa/path-dhall-instance.yaml | packages/pa/path-dhall-instance.yaml | homepage: ''
changelog-type: markdown
hash: 601c36bedd2360fb2a50c322af86d35eefe9b29a481ae4a894a3e8849b7b6942
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: ToDhall and FromDhall instances for Path.
changelog: |
# Changelog for path-dhall-instance
# v0.1.0.1
* `FromDhall` and `ToDhall` instan... | homepage: ''
changelog-type: markdown
hash: 3e69673151ae0dea19478e50535c9ed089f244ec8a125356338401b7d8223dba
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: ToDhall and FromDhall instances for Path.
changelog: |
# Changelog for path-dhall-instance
# v0.1.0.1
* `FromDhall` and `ToDhall` instan... | Update from Hackage at 2020-09-30T16:20:20Z | Update from Hackage at 2020-09-30T16:20:20Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
4ba66587961abfe635c0020c3300429a2a6a8c6d | .buildkite/athenaeum-main-nav.yml | .buildkite/athenaeum-main-nav.yml | ---
steps:
- name: ':docker: Build'
agents:
queue: builder
plugins:
docker-compose:
build: athenaeum
image-repository: us.gcr.io/pg-shared-v1/athenaeum
image-name: $BUILDKITE_BUILD_NUMBER
- wait
- name: 'Upload MainNav to Staging :s3:'
command: bin/deploy_nav_stag... | ---
steps:
- name: ':docker: Build'
agents:
queue: builder
plugins:
docker-compose:
build: athenaeum
image-repository: us.gcr.io/pg-shared-v1/athenaeum
image-name: $BUILDKITE_BUILD_NUMBER
- wait
- name: 'Upload MainNav to Staging :s3:'
command: bin/deploy_nav_stag... | Update build script prompt for main_nav/index.html deploy | Update build script prompt for main_nav/index.html deploy
| YAML | mit | policygenius/athenaeum,policygenius/athenaeum,policygenius/athenaeum |
2988f3ebb71f3eb5eb057ef997c390fcd84a7e34 | .github/workflows/issue-stale.yml | .github/workflows/issue-stale.yml | name: Close inactive issues
on:
workflow_dispatch:
schedule:
- cron: "0 * * * *"
jobs:
close-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
ascending: true
operations-per-run: 1000
days-before-issue-stale: 60
days-before-issu... | name: Close inactive issues
on:
workflow_dispatch:
schedule:
- cron: "0 * * * *"
jobs:
close-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
ascending: true
operations-per-run: 300
days-before-issue-stale: 60
days-before-issue... | Scale back operations per run | [github] Scale back operations per run
| YAML | bsd-3-clause | exponentjs/exponent,exponent/exponent,exponent/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponent/exponent,exponent/exponent,exponent/exponent,exponent/exponent,exponent/exponent,exponentjs/exponent,exponentjs/exponent,exponentjs/exponent,exponent/exponent,exponentjs/expon... |
6c02b0558644f6e7465893ce136bbc462184234c | metadata/com.thesis.yatta.yml | metadata/com.thesis.yatta.yml | Categories:
- Science & Education
License: GPL-3.0-only
AuthorEmail: abla.ue@web.de
SourceCode: https://github.com/uestueab/app-thesis
IssueTracker: https://github.com/uestueab/app-thesis/issues
Changelog: https://github.com/uestueab/app-thesis/releases
AutoName: Yatta
RepoType: git
Repo: https://github.com/uestuea... | Categories:
- Science & Education
License: GPL-3.0-only
AuthorEmail: abla.ue@web.de
SourceCode: https://github.com/uestueab/app-thesis
IssueTracker: https://github.com/uestueab/app-thesis/issues
Changelog: https://github.com/uestueab/app-thesis/releases
AutoName: Yatta
RepoType: git
Repo: https://github.com/uestuea... | Apply 1 suggestion(s) to 1 file(s) | Apply 1 suggestion(s) to 1 file(s) | YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
405e3a2f0c96bdba914095a73d6fc240016e5f70 | lingo.yml | lingo.yml | matchers:
-
type: 'glob'
config:
pattern: '**/*.go'
-
type: 'not'
config:
type: 'glob'
config:
pattern: '**/vendor/**/*'
-
type: 'not'
config:
type: 'glob'
config:
pattern: '**/*_test.go'
checkers:
local_return:
multi_word_ident_name:
ex... | matchers:
-
type: 'glob'
config:
pattern: '**/*.go'
-
type: 'not'
config:
type: 'glob'
config:
pattern: '**/vendor/**/*'
-
type: 'not'
config:
type: 'glob'
config:
pattern: '**/*_test.go'
checkers:
local_return:
multi_word_ident_name:
ex... | Add the pass-context-first checker to the config | Add the pass-context-first checker to the config
| YAML | mit | s2gatev/lingo |
32f93d2e57c724bf045ca92b1d12c69cebec1f3e | k8s/worker-deployment.yaml | k8s/worker-deployment.yaml | ---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: worker
spec:
replicas: 1
template:
metadata:
annotations:
alpha.image.policy.openshift.io/resolve-names: '*'
labels:
service: worker
spec:
containers:
- name: worker
image: kindlyops/hav... | ---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: worker
spec:
replicas: 1
template:
metadata:
annotations:
alpha.image.policy.openshift.io/resolve-names: '*'
labels:
service: worker
spec:
containers:
- name: worker
image: kindlyops/hav... | Remove unused secretVolume from worker deployment. | Remove unused secretVolume from worker deployment.
Signed-off-by: Elliot Murphy <014ce8fab4ab9f8a957bfe9f974379093994de97@users.noreply.github.com>
| YAML | apache-2.0 | kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi,kindlyops/mappamundi |
68e05d40d052a40023e82bca88918a19fc3fde59 | hiera/hostenv/stage/multi.yaml | hiera/hostenv/stage/multi.yaml | # Configuration for stage-multi servers.
#############################################
# Class definitions.
classes:
- munin::db_monitor
#############################################
# Web configuration.
# Staging servers also need a vhost for bobo / Venues.
site_profile::web::vhosts:
bobo:
port: 80
docroo... | # Configuration for stage-multi servers.
#############################################
# Class definitions.
classes:
- munin::db_monitor
#############################################
# Web configuration.
# Staging servers also need a vhost for bobo / Venues.
site_profile::web::vhosts:
'venues-stage.cashmusic.org':... | Update vhost name for staging venues vhost | Update vhost name for staging venues vhost
| YAML | bsd-3-clause | jeffsheltren/rackspace-template,cashmusic/rackspace-template,jeffsheltren/rackspace-template,cashmusic/rackspace-template,jeffsheltren/rackspace-template,jeffsheltren/rackspace-template,cashmusic/rackspace-template,jeffsheltren/rackspace-template,cashmusic/rackspace-template,cashmusic/rackspace-template |
43a71132c461e2dade73b4e933e0c63ee331a103 | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
cache:
directories:
- vendor
env:
- DEPENDENCIES=""
- DEPENDENCIES="--prefer-lowest --prefer-stable"
php:
- 7.1
- 7.2
- 7.3
install:
- composer update --no-interaction --prefer-dist $DEPENDENCIES
script:
- vendor/bin/phpunit --coverage-clover=coverage.clo... | language: php
dist: trusty
sudo: false
cache:
directories:
- vendor
env:
- DEPENDENCIES=""
- DEPENDENCIES="--prefer-lowest --prefer-stable"
php:
- 7.1
- 7.2
- 7.3
- 7.4
install:
- composer update --no-interaction --prefer-dist $DEPENDENCIES
script:
- vendor/bin/phpunit --coverage-clover=cove... | Add support for PHP 7.4 | Add support for PHP 7.4
| YAML | mit | thephpleague/oauth2-server,lookyman/oauth2-server |
54deab1504a2610eaf1ffbcc0d9ff117ccbaeaf3 | .travis.yml | .travis.yml | language: objective-c
build:
- pod install
- xcodebuild -workspace iOrwell.xcworkspace -scheme iOrwell -sdk iphonesimulator
| language: objective-c
install:
- sudo gem install cocoapods
- brew update
build:
- pod install
- xcodebuild -workspace iOrwell.xcworkspace -scheme iOrwell -sdk iphonesimulator
| Install CocoaPods gem before pod installing | Install CocoaPods gem before pod installing
| YAML | bsd-2-clause | orwell-int/client-ios,orwell-int/client-ios |
bfea6aeb270215725c5243141286274254abcb0a | .travis.yml | .travis.yml | language: go
go_import_path: github.com/MatthewHartstonge/storage
go:
- 1.7
- 1.8
- 1.9
env:
- GO15VENDOREXPERIMENT=1
addons:
apt:
sources:
- sourceline: 'ppa:masterminds/glide'
packages:
- glide
install:
- mkdir -p $GOPATH/bin $GOPATH/pkg $GOPATH/src
- go get github.com/mattn/govera... | language: go
go_import_path: github.com/MatthewHartstonge/storage
go:
- '1.8'
- '1.9'
- '1.10'
env:
- GO15VENDOREXPERIMENT=1
addons:
apt:
sources:
- sourceline: 'ppa:masterminds/glide'
packages:
- glide
install:
- mkdir -p $GOPATH/bin $GOPATH/pkg $GOPATH/src
- go get github.com/mattn... | Drop support for golang 1.7, add support for golang 1.10 | :arrow_up: Drop support for golang 1.7, add support for golang 1.10
| YAML | apache-2.0 | MatthewHartstonge/storage |
cc0ba63c1f3ee235f424e6ae88e296e161f1b622 | .travis.yml | .travis.yml | language: erlang
script: "make compile && rm -rf .git && make test"
notifications:
irc: "irc.freenode.org#elixir-lang"
recipients:
- jose.valim@plataformatec.com.br
- eric.meadows.jonsson@gmail.com
otp_release:
- 17.0
- 17.1
| language: erlang
script: "make compile && rm -rf .git && make test"
notifications:
irc: "irc.freenode.org#elixir-lang"
recipients:
- jose.valim@plataformatec.com.br
- eric.meadows.jonsson@gmail.com
otp_release:
- 17.0
- 17.1
- 17.3
| Add OTP 17.3 to run on Travis CI | Add OTP 17.3 to run on Travis CI | YAML | apache-2.0 | pedrosnk/elixir,beedub/elixir,antipax/elixir,kimshrier/elixir,lexmag/elixir,kelvinst/elixir,gfvcastro/elixir,ggcampinho/elixir,antipax/elixir,michalmuskala/elixir,pedrosnk/elixir,beedub/elixir,kelvinst/elixir,gfvcastro/elixir,lexmag/elixir,ggcampinho/elixir,kimshrier/elixir,elixir-lang/elixir,joshprice/elixir |
8236a5725b264b35d9f7da36346860a2335fc481 | .travis.yml | .travis.yml | sudo: false
language: python
cache: pip
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- 'pypy'
- 'pypy3'
addons:
ssh_known_hosts:
- localhost
matrix:
allow_failures:
- python: '2.6'
- python: '3.2'
- python: 'pypy'
- python: 'pypy3'
install:
- pip install -r requirements-dev.txt
scr... | sudo: false
language: python
cache: pip
python:
- '2.6'
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- 'pypy'
- 'pypy3'
addons:
ssh_known_hosts:
- localhost
matrix:
allow_failures:
- python: '2.6'
- python: '3.2'
- python: 'pypy'
- python: 'pypy3'
install:
- pip install -r tests/requirements.txt
s... | Fix crashing build caused by moved file | Fix crashing build caused by moved file
| YAML | lgpl-2.1 | althonos/fs.sshfs |
ee090668f2aa26316b7cdf4c829339cc33c4f546 | .travis.yml | .travis.yml | # .travis.yml file based on:
# https://gist.github.com/dan-blanchard/7045057
language: python
python:
- "3.5"
- "3.6"
install:
# Setup anaconda. See http://conda.pydata.org/docs/travis.html
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -... | # .travis.yml file based on:
# https://gist.github.com/dan-blanchard/7045057
language: python
python:
- "3.5"
- "3.6"
install:
# Setup anaconda. See http://conda.pydata.org/docs/travis.html
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -... | Add matplotlib to conda environment. | Add matplotlib to conda environment.
| YAML | apache-2.0 | BBN-Q/Auspex,BBN-Q/Auspex,BBN-Q/Auspex,BBN-Q/Auspex |
9545884c799070c1b95eaf4a73bc5f866f644ec1 | .travis.yml | .travis.yml | language: scala
scala:
- 2.11.8
jdk:
- oraclejdk8
script: sbt ++${TRAVIS_SCALA_VERSION} amm/test $(if [[ "${TRAVIS_PULL_REQUEST}"
== "false" && "${TRAVIS_BRANCH}" == "master" ]]; then echo "published/publish";
fi)
branches:
only:
- master
env:
global:
secure: bRTmSL4sBHWWsYZIWknPlNZxokHY08ortiIodBFAGvkteG... | language: scala
scala:
- 2.11.8
jdk:
- oraclejdk8
script: sbt ++${TRAVIS_SCALA_VERSION} amm/test $(if [[ "${TRAVIS_PULL_REQUEST}"
== "false" && "${TRAVIS_BRANCH}" == "master" ]]; then echo "published/publish";
fi)
branches:
only:
- master
env:
global:
- secure: bRTmSL4sBHWWsYZIWknPlNZxokHY08ortiIodBFAGvkteG... | Add missing secret for Travis CI | [fork] Add missing secret for Travis CI
| YAML | mit | alexarchambault/ammonium,alexarchambault/ammonium |
8c6bb13ec2fc4e5e317da11c2c81cfbd072d5257 | .travis.yml | .travis.yml | language: ruby
rvm:
- '2.3'
- '2.6'
before_install:
- gem install bundler
| language: ruby
rvm:
- '2.5'
- '2.6'
before_install:
- gem install bundler
| Update ruby versions to test | Update ruby versions to test
| YAML | mit | mode/halogen |
64a8bb6a5b3fc40a1983e0b237ff25dd816988ba | .travis.yml | .travis.yml | language: python
cache: pip
matrix:
include:
- os: linux
python: "pypy"
- os: osx
language: generic
- os: linux
python: "2.7"
- os: linux
python: "3.4"
- os: linux
python: "3.5"
- os: linux
python: "3.6"
- os: linux
python: "3.7"
- os: linux
python: "3.8"
install:
- s... | language: python
cache: pip
matrix:
include:
- os: linux
python: "pypy"
- os: osx
language: generic
- os: linux
python: "2.7"
- os: linux
python: "3.4"
- os: linux
python: "3.5"
- os: linux
python: "3.6"
- os: linux
python: "3.7"
- os: linux
python: "3.8"
- os: linux
... | Test on Python 3.9-dev to avoid surprises | Test on Python 3.9-dev to avoid surprises
| YAML | mit | xolox/python-coloredlogs,xolox/python-coloredlogs |
ebc8cae729652b53224df9c3bb2e93deacadce1f | .travis.yml | .travis.yml | language: go
sudo: false
go:
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11.6"
- "1.12"
- "tip"
before_install:
- export PATH=$HOME/gopath/bin:$PATH
- go get github.com/mattn/goveralls
- go get github.com/modocache/gover
script:
- go test -race ./...
- go test -coverprofile=sarah.coverprofile .
-... | language: go
sudo: false
go:
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11.6"
- "1.12"
- "tip"
before_install:
- export PATH=$HOME/gopath/bin:$PATH
- go get github.com/mattn/goveralls
- go get github.com/modocache/gover
script:
- go test -race ./...
- go test -coverprofile=sarah.coverprofile .
-... | Allow test failure with 1.10 or older | Allow test failure with 1.10 or older
| YAML | mit | oklahomer/go-sarah |
5b17032e036541d08f15990f6166e0c82f915d26 | .travis.yml | .travis.yml | language: node_js
node_js:
-"node"
-"7"
install:
- npm install
script:
- npm test
| language: node_js
node_js:
-7
install:
- npm install
script:
- npm test
| Update Travis for latest NodeJS version | Update Travis for latest NodeJS version | YAML | mit | GuyKh/10bis.Slackbot,GuyKh/10bis.Slackbot,GuyKh/10bis.Slackbot |
52fc07797c84455aee452e55e2c3b60d30d8f02c | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
| language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
| Revert "Add Node 8 to CI" | Revert "Add Node 8 to CI"
This reverts commit c9befe9ebd61176d60f1ef765876db67ca905ab3.
| YAML | apache-2.0 | fgodino/box-node-sdk |
a14aaf47721bd1728897c1b527a1326a3ca7fbb0 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'stable'
- '6'
- '4'
sudo: false
env:
- workerCount=3
matrix:
fast_finish: true
branches:
only:
- master
install:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm install
cache:
directories:
- node_modules
git:
depth: 1
| language: node_js
node_js:
- 'stable'
- '6'
- '4'
sudo: false
env:
- workerCount=3
matrix:
fast_finish: true
branches:
only:
- master
- release-2.5
install:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm install
cache:
directories:
- node_modules
git:
d... | Add release-2.5 to covered branches | Add release-2.5 to covered branches
| YAML | apache-2.0 | nojvek/TypeScript,microsoft/TypeScript,TukekeSoft/TypeScript,Microsoft/TypeScript,synaptek/TypeScript,weswigham/TypeScript,weswigham/TypeScript,TukekeSoft/TypeScript,alexeagle/TypeScript,minestarks/TypeScript,minestarks/TypeScript,Eyas/TypeScript,SaschaNaz/TypeScript,kpreisser/TypeScript,basarat/TypeScript,donaldpipowi... |
e18174a3b326bd1a80204be01cf95f9f4a463a08 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
cache: bundler
rvm:
- 2.5.0@osem --ignore-gemsets
branches:
except:
- /^depfu/.*$/
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- "echo `phantomjs -v`"
addons:
chrome: stable
notifications:
email:
on_success: change
on_failure: change
... | sudo: required
dist: xenial
addons:
apt:
packages:
- chromium-browser
language: ruby
cache: bundler
rvm:
branches:
except:
- /^depfu/.*$/
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v $(... | Update CI to ubuntu xenial and chromium | Update CI to ubuntu xenial and chromium
trusty is rather old, living on the edge baby! Also switch to chromium for
testing, the latest google-chrome version has problems to start with webdrivers
(DevToolsActivePort file doesn't exist).
| YAML | mit | openSUSE/osem,SeaGL/osem,AndrewKvalheim/osem,hennevogel/osem,differentreality/osem,hennevogel/osem,SeaGL/osem,differentreality/osem,openSUSE/osem,differentreality/osem,openSUSE/osem,AndrewKvalheim/osem,SeaGL/osem,hennevogel/osem,differentreality/osem,hennevogel/osem,AndrewKvalheim/osem |
51ad915f6114207096d9e91135f84a5d9dedfe7a | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
notifications:
email: dean.wilson@gmail.com
| ---
language: ruby
sudo: false
rvm:
- 2.2.0
- 2.3.0
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
notifications:
email: dean.wilson@gmail.com
| Remove old versions of ruby | Remove old versions of ruby
Only officially support newer versions of ruby so we can upgrade the required gems. The code should still work on older versions but there are no guarantees.
| YAML | mit | deanwilson/puppet-lint-absolute_template_path-check |
b00191660db2c1c50826524af75ffc1f79b67527 | .travis.yml | .travis.yml | language: objective-c
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
| language: objective-c
env:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
| Test stable and beta channel | Test stable and beta channel
| YAML | mit | adrianlee44/atom-aligner |
4b86bbff48dbe420563d285abf1770d293e01313 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "4"
- "5"
| language: node_js
node_js:
- "0.12"
- "4"
- "5"
after_script:
- "npm run build"
| Build style guide on Travis CI. | Build style guide on Travis CI.
| YAML | mit | styleguidist/react-styleguidist,sapegin/react-styleguidist,bluetidepro/react-styleguidist,styleguidist/react-styleguidist,styleguidist/react-styleguidist,sapegin/react-styleguidist |
30a477c24d3202bcdb21a6c3150f03922eecb71c | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '7'
sudo: false
branches:
only:
- master
- develop
- /^v?(\d\.){2}\d$/
- /^greenkeeper-.*$/
notifications:
email:
- nfantone@gmail.com
before_install:
- npm i -g npm
script: npm run integrate
services:
- rabbitmq
after_success:
- test $TRAVIS_NODE_VERSION == '7' &&... | language: node_js
node_js:
- '6'
- '7'
sudo: false
branches:
only:
- master
- develop
- /^v?(\d\.){2}\d$/
- /^greenkeeper-.*$/
notifications:
email:
- nfantone@gmail.com
before_install:
- npm i -g npm
script: npm run integrate
services:
- rabbitmq
after_success:
- test $TRAVIS_NODE_VERSION == '7' &&... | Remove bogus cache option on Travis build | Remove bogus cache option on Travis build
| YAML | mit | seneca-contrib/seneca-amqp-transport,disintegrator/seneca-amqp-transport,senecajs/seneca-amqp-transport,senecajs/seneca-amqp-transport |
59a8d67052ae40aa3ebbde642507ec3960f7f7b4 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- openjdk11
- openjdk13
script:
- travis_wait 20 ./gradlew check --info --stacktrace -PexcludeGroups=statistics
| sudo: false
language: java
jdk:
- openjdk11
- openjdk14
script:
- travis_wait 20 ./gradlew check --info --stacktrace -PexcludeGroups=statistics
| Add build for Java 14. | Add build for Java 14.
| YAML | apache-2.0 | jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics |
30c34b388572835103973d055e5d46d830881774 | .travis.yml | .travis.yml | language: ruby
cache: bundler
dist: trusty
sudo: false
addons:
postgresql: "9.6"
env:
global:
- LOGIDZE_DB_USER=postgres
- LOGIDZE_DB_NAME=logidze
before_script:
- bundle exec rake dummy:db:create
- psql -U postgres -d logidze -c 'CREATE EXTENSION IF NOT EXISTS hstore;'
- bundle exec rake dummy:db... | language: ruby
cache: bundler
dist: trusty
sudo: false
addons:
postgresql: "9.6"
env:
global:
- LOGIDZE_DB_USER=postgres
- LOGIDZE_DB_NAME=logidze
before_script:
- gem update --system
- bundle exec rake dummy:db:create
- psql -U postgres -d logidze -c 'CREATE EXTENSION IF NOT EXISTS hstore;'
- b... | Add ruby 2.5 to CI | Add ruby 2.5 to CI
| YAML | mit | palkan/logidze,palkan/logidze,palkan/logidze |
d9ce1024f2057b75edc6d847cc87127c9527ac63 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk11
- openjdk8
after_success:
- chmod -R 777 ./travis/after_success.sh
- ./travis/after_success.sh | language: java
jdk:
- openjdk15
- openjdk14
- openjdk13
- openjdk11
- openjdk8
after_success:
- chmod -R 777 ./travis/after_success.sh
- ./travis/after_success.sh | Add openjdk 13 through 15 | [ci] Add openjdk 13 through 15
| YAML | apache-2.0 | hazendaz/mybatis-2,hazendaz/mybatis-2,hazendaz/mybatis-2,mybatis/ibatis-2 |
a35caa261af787b43b18061cd3233ffa2023f9ad | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
# command to install dependencies
install: "pip install -r dev-requirements.txt"
# command to run tests
script: python runtests.py
| language: python
python:
- "2.7"
- "3.3"
# command to install dependencies
install: "pip install -r dev-requirements.txt"
# command to run tests
script: python runtests.py --db $DB
# handle multiple databases in build matrix
env:
- DB=sqlite
- DB=postgres
services:
- postgresql
before_script:
- python manag... | Test with multiple databases on Travis | Test with multiple databases on Travis
| YAML | mit | singingwolfboy/seamless-karma,singingwolfboy/seamless-karma |
c61c722d7852665eb6373421496d9c8c8e52cad8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
install: pip install tox-travis flake8 codecov
script:
- tox
- flake8
after_success:
- codecov
| language: python
python:
- "3.5"
install: pip install tox-travis flake8 codecov
script:
- tox
- flake8
after_success:
- codecov
| Remove testing of python 2.7 from Travis as ruamel.yaml fails to install | Remove testing of python 2.7 from Travis as ruamel.yaml fails to install
| YAML | mit | jic-dtool/dtool-create |
dd28f8f62996da4f8109dce2d53e033921dec7fa | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- jruby-head
branches:
only:
- master
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
rvm:
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
branches:
only:
- master
| Drop ruby-1.9.2 support (keep 1.9.3, 2.0.0, jruby) | Drop ruby-1.9.2 support (keep 1.9.3, 2.0.0, jruby)
| YAML | mit | petervandenabeele/dbd |
4ca28b11fd4dfef4763593264abcd00532c1c908 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
# required to test HHVM
# see https://travis-ci.org/php-amqplib/php-amqplib/jobs/259347861
di... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
# required to test HHVM
# see https://travis-ci.org/php-amqplib/php-amqplib/j... | Test with php 5.3 and 7.2 | Test with php 5.3 and 7.2
| YAML | lgpl-2.1 | php-amqplib/php-amqplib,videlalvaro/php-amqplib |
5749ce8a13b16087dede0b885db6bf13d0c04c38 | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
- 1.3
- tip
| language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- tip
| Add go 1.4 to build matrix | Add go 1.4 to build matrix
| YAML | mit | bamiaux/rez,bamiaux/rez,donlzx/rez,donlzx/rez |
9afa89cee8df916488f01f06e8eb9d33b1cf0723 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_script:
- psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
- psql -c 'create database test;' -U postgres
- mysql -e 'create database IF NOT EXISTS test;'
- mysql -uroot test < ./tests/sql/mysql.sql
- psql test postgres -f ./tests/sql/pgsql... | language: node_js
node_js:
- "0.11"
- "0.10"
before_script:
- psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
- psql -c 'create database test;' -U postgres
- mysql -e 'create database IF NOT EXISTS test;'
- mysql -v -uroot test < ./tests/sql/mysql.sql
- psql test postgres -f ./tests/sql/pgsql.sql | Add a verbose flag to mysql import to see where it is failing | Add a verbose flag to mysql import to see where it is failing
| YAML | mit | timw4mail/node-query,timw4mail/node-query |
f17acf4fe55a83d19e4f6c111126ae0554c260d4 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- openjdk8
script:
- mvn package docker:build | dist: trusty
sudo: required
before_install:
- sudo add-apt-repository ppa:openjdk-r/ppa
- sudo apt-get update
- sudo apt-get install openjdk-8-jdk
language: java
script:
- mvn package docker:build | Use trusty and install openjdk-8-jdk | CI: Use trusty and install openjdk-8-jdk | YAML | apache-2.0 | codeurjc/spring-cloud-aws-sample,codeurjc/spring-cloud-aws-sample |
87546e597a8a454affd04095996e927dc74bb864 | .travis.yml | .travis.yml | rvm:
- 1.8.6
- 1.8.7
- 1.9.2
- 1.9.3 | rvm:
- 1.8.7
- 1.9.2
- 1.9.3 | Remove 186, rspec is not supported | Remove 186, rspec is not supported
| YAML | mit | sosedoff/lxc-ruby |
83e8d43369df0834ca1826704a9066192b4d7d1a | .travis.yml | .travis.yml | language: python
dist: trusty
python:
- "2.7"
install:
- pip install requests configargparse bcrypt
- pip install coverage nose
script:
- nosetests --with-coverage --cover-xml --cover-package=xclib
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: python
dist: trusty
sudo: required
python:
- "3.5"
install:
- sudo apt install libdb5.3-dev
- pip install requests configargparse bcrypt bsddb3
- pip install coverage nose rednose
script:
- nosetests --with-coverage --cover-xml --cover-package=xclib
after_success:
- bash <(curl -s https://codec... | Switch Travis to Python 3 | Switch Travis to Python 3 | YAML | mit | jsxc/xmpp-cloud-auth,jsxc/xmpp-cloud-auth,jsxc/xmpp-cloud-auth,jsxc/xmpp-cloud-auth |
2e609bc166a6b5758ef0f591abf6fb3f8b96a1c0 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --dev --prefer-source
script:
- composer test
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_install:
- composer self-update
before_script:
- composer install --dev --prefer-source
script:
- composer test
| Update composer itself in the before_install section | Fix: Update composer itself in the before_install section
| YAML | mit | localheinz/config-service-provider,tomphp/container-configurator,tomphp/config-service-provider |
303421720b2cfd90adca203023ec996941cf1ea6 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_install: cp tests/TravisTestConfiguration.php tests/TestConfiguration.php
script: ./.travis/run-tests.sh
| language: php
php:
- 5.3.3
- 5.3
- 5.4
before_install: cp tests/TravisTestConfiguration.php tests/TestConfiguration.php
script: ./.travis/run-tests.sh
| Add PHP v5.3.3 to the matrix build | [Travis] Add PHP v5.3.3 to the matrix build | YAML | bsd-3-clause | peterkokot/zf2,taro-asahi/zf2,0livier/zf2,KarimBea/test,dvsavenkov/zf2,olearys/zf2,levelfivehub/zf2,mikicaivosevic/zf2,inwebo/zf2,sasezaki/zf2,pepeam/zend,AICIDNN/zf2,prolic/zf2,keradus/zf2,coolmic/zf2,campersau/zf2,dkemper/zf2,sasezaki/zf2,nandadotexe/zf2,guilherme-santos/zf2,david-sann/zf2,bondvt04/zf2test,MadCat34/z... |
f57f78b2cb79fb9d87f666630ddd2ef784bf2ebd | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- "4.0"
- "4.1"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/co... | Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation. | Update Travis config to latest. Upgrade gcc to 4.8, stop force upgrade to latest npm, debug canihaz installation.
| YAML | mit | cliffano/sendman |
e7bdb16533a54e9111e5e31aef3f3b2fbc393b16 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.3
- python: 3.4
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq --force-yes libatlas-dev libatlas-base-dev liblapack-dev
- pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --us... | language: python
matrix:
include:
- python: 2.6
- python: 2.7
- python: 3.3
- python: 3.4
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq --force-yes libatlas-dev libatlas-base-dev liblapack-dev
- pip install --find-links https://www.idiap.ch/software/bob/wheels/travis/ --us... | Test paper script on Travis | Test paper script on Travis
| YAML | bsd-3-clause | anjos/rrbob,anjos/rrpack |
76943d31a3a63dbbcdc0d2992da5eabc52ef18c9 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake ci"
env:
- TRAVIS=true
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
matrix:
allow_failures:
- rvm: 2.1.2 # still segfaults on stack overflow on define_method
- rvm: rbx-2 # Travis does not take care about RBX
notifications:
irc:
channels:
- irc.freenode.o... | language: ruby
script: "bundle exec rake ci"
env:
- TRAVIS=true
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.1.3
- rbx-2
matrix:
allow_failures:
- rvm: 2.1.3 # unparser needs to be patched for 2.1.3 parser changes
notifications:
irc:
channels:
- irc.freenode.org#mutant
on_success: never
on_fai... | Include whitelisted 2.1.3 in matrix and remove excludes for 2.1.2 / rbx | Include whitelisted 2.1.3 in matrix and remove excludes for 2.1.2 / rbx
| YAML | mit | backus/mutest,kbrock/mutant,tjchambers/mutant,backus/mutest,nepalez/mutant,backus/mutant |
d31db90f643162d2f900ad350c8b2cf3b61df7dd | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
addons:
apt:
packages:
- cython
install:
- pip install -e .[testing]
script:
- py.test
| language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
matrix:
allow_failures:
- python: 3.3
- python: 3.4
- python: 3.5
addons:
apt:
packages:
- cython
install:
- pip install -e .[testing]
script:
- py.test
| Allow failure for python 3 | Allow failure for python 3
| YAML | bsd-3-clause | ESGF/esgf-pyclient,bird-house/esgf-pyclient |
e703b762fcd2f09b2d521e28ded825dcf4a8eae6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: rbx-19mode
- rvm: ruby-head
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: rbx-19mode
- rvm: ruby-head
| Add Ruby 2.2 to Travis runs | Add Ruby 2.2 to Travis runs
| YAML | mit | adhearsion/matrioska |
fd4feef6ce9ea4ed1f633cf57d7af604515e876a | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7
- hhvm
env:
- CALCULATOR=GMP
- CALCULATOR=BCMath
- CALCULATOR=Native
before_script:
- composer self-update
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
| language: php
php:
- 5.6
- 7
- hhvm
env:
- CALCULATOR=GMP
- CALCULATOR=BCMath
- CALCULATOR=Native
before_script:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/coveralls -v
| Remove composer self-update from Travis build | Remove composer self-update from Travis build
This command is not mandatory and is responsible of too many build errors.
| YAML | mit | rizqidjamaluddin/math,brick/math,beealone/math |
f3cd55f6ec16c01ab6f4008524ba653cbde0255a | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
notifications:
slack:
secure: UjSpOIXxnH3JLZc109j+EzVwzVVvlNPsFoTRUf9uSfkwSCcAU/UQGOennJANOgloFychYl+YytWF9+Qi9AfF5OyFsXWqs4cx8CylQlN9YbEzUkCtGt4CX1AZqUCiH9oAzSExIS8FTpn/Viu8YtF91djaMdX5s+Nfj9IcVwWbrUE=
sudo: false
| language: java
jdk:
- openjdk8
notifications:
slack:
secure: UjSpOIXxnH3JLZc109j+EzVwzVVvlNPsFoTRUf9uSfkwSCcAU/UQGOennJANOgloFychYl+YytWF9+Qi9AfF5OyFsXWqs4cx8CylQlN9YbEzUkCtGt4CX1AZqUCiH9oAzSExIS8FTpn/Viu8YtF91djaMdX5s+Nfj9IcVwWbrUE=
sudo: false
| Switch Travis from Oracle JDK to Open JDK | Switch Travis from Oracle JDK to Open JDK
| YAML | apache-2.0 | openmhealth/schemas,openmhealth/schemas,openmhealth/schemas,openmhealth/schemas |
826abfacbf4e0bf6b26a0edd6ab8c441371ee131 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "5.8"
notifications:
email: false
after_success:
- npm run coveralls
| language: node_js
node_js:
- "4"
- "6"
- "7"
notifications:
email: false
after_success:
- npm run coveralls
| Drop nodejs 0.x and 5.x support | Drop nodejs 0.x and 5.x support
| YAML | mit | lo1tuma/pr-log |
e840fb28261f1ec72f0dd2fc390d0c99bbb0307e | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- rbx-18mode
- rbx-19mode
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
matrix:
include:
- rvm: jruby-18mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-19mode
... | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- ree
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
- rbx-18mode
- rbx-19mode
matrix:
include:
- rvm: jruby-18mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-19... | Update testing matrix to be more inclusive | Update testing matrix to be more inclusive
| YAML | mit | dkubb/memoizable |
36958f51ceee7b4b744969ed71c213d4a5ba7995 | .travis.yml | .travis.yml | sudo: false
cache: bundler
language: ruby
rvm:
- 2.2
before_install: gem update --remote bundler
install:
- bundle install
script:
- bin/rake
| sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.2
before_install: gem update --remote bundler
install:
- bundle install
script:
- bin/rake
| Set the CI build to run on Ruby 2.2.2 | Set the CI build to run on Ruby 2.2.2
| YAML | mit | decomplect-io/simple_activemodel_validators,decomplect-io/simple_activemodel_validators |
2a53b78ccd08b957ace15d6bc239b53e79a885de | .travis.yml | .travis.yml | language: python
python:
- 2.7
# Setup anaconda
before_install:
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-3.3.0-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.3.0-Linux-x86_64.sh -O miniconda.sh; fi
- chmod +x ... | language: python
python:
- 2.7
# Setup anaconda
before_install:
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.8.3-Linux-x86_64.sh -O miniconda.sh; fi
- chmod +x ... | Update the miniconda version 3.3.0 --> 3.8.3 Reverse other changes. | Update the miniconda version 3.3.0 --> 3.8.3
Reverse other changes.
| YAML | mit | simpeg/simpegem,simpeg/discretize,lheagy/simpegem,simpeg/simpeg,simpeg/discretize,simpeg/discretize |
009ae1cdb75f37ecd16e519dd52ce689ff085a02 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.0"
- "4.2.2"
matrix:
fast_finish: true
script: "npm run-script test-travis"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
| language: node_js
node_js:
- "4.0"
- "4.2.3"
- "5"
matrix:
fast_finish: true
script: "npm run-script test-travis"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
sudo: false
| Update Travis CI to container-based infrastructure, Node.js v4.2.3/v5 | Update Travis CI to container-based infrastructure, Node.js v4.2.3/v5
Update away from the deprecated old infrastructure and include
Node.js v4.2.3/v5 in the test matrix
| YAML | mit | yanickrochon/promise-events |
456ebaf423ce2122bf8faa36da464c5d90361204 | .travis.yml | .travis.yml | notifications:
email: false
services:
- postgresql
addons:
postgresql: "9.4"
language: go
go_import_path: "miniflux.app"
go:
- "1.11"
- "1.12"
before_install:
- npm install -g jshint
- go get -u golang.org/x/lint/golint
script:
- jshint ui/static/js/*.js
- make lint
- make test
- make integration-... | notifications:
email: false
services:
- postgresql
addons:
postgresql: "9.4"
language: go
go_import_path: "miniflux.app"
go:
- "1.11"
- "1.12"
- "1.13"
before_install:
- npm install -g jshint
- go get -u golang.org/x/lint/golint
script:
- jshint ui/static/js/*.js
- make lint
- make test
- make i... | Add Go 1.13 to test matrix | Add Go 1.13 to test matrix
| YAML | apache-2.0 | miniflux/miniflux,xqin/miniflux,xqin/miniflux,xqin/miniflux,xqin/miniflux,miniflux/miniflux,miniflux/miniflux |
0f0b86a8c35d8a26aefe90d8a72143e817e7cd7a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.0
- 2.1.5
- 2.0.0
- 1.9.3
- jruby-19mode
| language: ruby
rvm:
- 2.1.5
- 2.0.0
- 1.9.3
- jruby-19mode
| Work on Ruby 2.2 support in a branch | Work on Ruby 2.2 support in a branch
| YAML | mit | koppen/csv_query |
35131823bf400abe74ec8bdf900072c69f3d60dd | .travis.yml | .travis.yml | language: ruby
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
matrix:
include:
- rvm: 2.4.0
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_4.2.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_4.2.gemfile
| language: ruby
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
matrix:
include:
- rvm: 2.4.0
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_4.2.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails_5.0.gemfile
| Test rails 5 on ruby 2.3 | Test rails 5 on ruby 2.3
| YAML | mit | apsislabs/slayer_rails,apsislabs/slayer_rails |
26d536648875852f74f42f60450317b6af24a1eb | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.3.0
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
| rvm:
- 2.2
- 2.3
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx
| Update tested ruby versions on Travis CI | Update tested ruby versions on Travis CI
| YAML | mit | dblock/numbers_and_words,kslazarev/numbers_and_words |
8f0cd6a8a305976766edc2da72ded82070b30a4d | .travis.yml | .travis.yml | language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- ALCOTEST_SHOW_ERRORS=1
- REVDEPS="irmin-indexeddb"
- PINS="irmin.dev:. irmin-mem.dev:. irmin-fs.dev:. irmin-http.dev:. irmin-git.dev:. irmin-mirage.dev... | language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- ALCOTEST_SHOW_ERRORS=1
- REVDEPS="irmin-indexeddb"
- PINS="irmin.dev:. irmin-mem.dev:. irmin-fs.dev:. irmin-http.dev:. irmin-git.dev:. irmin-mirage.dev... | Add irmin-chunk to the Travis matrix | Add irmin-chunk to the Travis matrix
| YAML | isc | mirage/irmin,mirage/irmin |
5d74324f2d83156161201aac42129a1e63e4526d | .travis.yml | .travis.yml | language: python
R:
- "3.2.4"
python:
- "2.7"
branches:
only:
- dev
addons:
apt:
sources:
- r-packages-precise
packages:
- r-base
- randomForest
#r_packages:
#- randomForest
# Setup anaconda
install:
# - sudo apt-get update
# We do this conditionally because it saves us some downl... | language: python
R:
- "3.2.4"
python:
- "2.7"
branches:
only:
- dev
addons:
apt:
sources:
- r-packages-precise
packages:
- r-base
- r-cran-randomforest
#r_packages:
#- randomForest
# Setup anaconda
install:
# - sudo apt-get update
# We do this conditionally because it saves us som... | Correct the random forest package name | Correct the random forest package name
| YAML | apache-2.0 | KarchinLab/2020plus,KarchinLab/2020plus |
cad373976a0b3dd968491c3aaaf39311ba4d0dd3 | .travis.yml | .travis.yml | sudo: required
language: ruby
rvm:
- 2.3.0
before_install:
- sudo apt-get update -qq
- sudo apt-get install build-essential cmake libpopt-dev libbz2-dev -y
- wget https://github.com/librsync/librsync/archive/v1.0.1.tar.gz
- tar -xzvf v1.0.1.tar.gz
- cd librsync-1.0.1 && cmake . && make && sudo make install
... | sudo: required
language: ruby
rvm:
- 2.3.0
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y build-essential cmake libpopt-dev libbz2-dev libruby ruby-dev
- wget https://github.com/librsync/librsync/archive/v2.0.0.tar.gz
- tar -xzvf v2.0.0.tar.gz
- cd librsync-2.0.0 && cmake . && make && s... | Update librsync version and include ruby dev package | Update librsync version and include ruby dev package
| YAML | mit | daveallie/lib_ruby_diff,daveallie/lib_ruby_diff,daveallie/lib_ruby_diff |
1264463f2ebbf9566d3c9e0f928166c810e715bf | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
matrix:
include:
- rvm: 2.5
env: WITH_COVERALLS=true
- rvm: 2.4
env: WITH_COVERALLS=true
- rvm: 2.3
env: WITH_COVERALLS=false
install:
- if [[ $WITH_COVERALLS = "true" ]]; then
bundle install --without debug extra;
else
bundle install --without deb... | language: ruby
sudo: false
cache: bundler
matrix:
include:
- rvm: 2.5
env: WITH_COVERALLS=true
- rvm: 2.4
env: WITH_COVERALLS=false
- rvm: 2.3
env: WITH_COVERALLS=false
install:
- if [[ $WITH_COVERALLS = "true" ]]; then
bundle install --without debug extra;
else
bundle install --without de... | Send only 2.5 coverage report | Send only 2.5 coverage report
| YAML | mit | inukshuk/jekyll-scholar |
0aa06985b6f933888ab9f04b9b772eba87b9e1b2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.0"
addons:
apt:
packages:
- ruby1.9.3-full
- python2
- python3
- golang-go
env:
- GOARCH="amd64" GOPATH="/home/travis/.gimme/versions/go1.4.1.linux.amd64/"
before_script:
- node --version
- python2 --version
... | language: node_js
node_js:
- "4.0"
addons:
apt:
packages:
- ruby1.9.3-full
- python2
- python3
- golang-go
env:
- GOARCH="amd64"
before_script:
- node --version
- python2 --version
- python3 --version
- ruby --version
- go versi... | Clean up; working TravisCI integration | Clean up; working TravisCI integration
| YAML | mit | SSSaaS/go-libtest |
1502f1f2454f5cb5e00357a86e5d2b6ed11bf865 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
cache:
- pip
before_install:
- export TZ=America/Denver
install:
- pip install --upgrade pip
- pip install codecov
- pip install .
- pip install -r requirements.txt
- pip install requests_mock
- pip install pylint
s... | language: python
dist: xenial
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
cache:
- pip
before_install:
- export TZ=America/Denver
install:
- pip install --upgrade pip
- pip install codecov
- pip install .
- pip install -r requirements.txt
- pip install requests_mock
- pip ins... | Update to run on xenial for Travis CI so it can run py3.7 | Update to run on xenial for Travis CI so it can run py3.7
| YAML | mit | dancingcactus/python-omniture,dancingcactus/python-omniture,dancingcactus/python-omniture |
c053a358edfc4c850dbe61dd05ba58e22e17d085 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- ruby-head
- jruby-18mode
- rbx-18mode
| language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- jruby-18mode
- rbx-18mode
| Add separated Ruby 1.9.3 and Ruby 2.0.0, instead of Ruby HEAD | Add separated Ruby 1.9.3 and Ruby 2.0.0, instead of Ruby HEAD
| YAML | mit | ai/darian |
4b10ae48638709fc534c61294ad904f179d3a85a | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.6
env: ENABLE_REDIS_EXT=0
- php: 5.6
env: ENABLE_REDIS_EXT=1
- php: 7.0
env: ENABLE_REDIS_EXT=0
- php: 7.0
env: ENABLE_REDIS_EXT=1
- php: hhvm
env: ENABLE_REDIS_EXT=0
before_script:
- sh -c "if [ $ENABLE_REDIS_EXT -eq 1 ]; the... | language: php
php:
- 5.6
- 7.0
- hhvm
matrix:
exclude:
- php: hhvm
env: ENABLE_REDIS_EXT=1
env:
- ENABLE_REDIS_EXT=0
- ENABLE_REDIS_EXT=1
before_script:
- sh -c "if [ $ENABLE_REDIS_EXT -eq 1 ]; then echo \"extension=redis.so\" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi"
- com... | Use Matrix Exclude instead of hard-coded matrix | Use Matrix Exclude instead of hard-coded matrix
While the current .travis.yml setup works, and the reasoning makes sense, it's far less readable than the previous configuration. This suggested patch presents an alternative approach to the same result, which uses the matrix->exclude array to filter out invalid tests, ... | YAML | mit | danhunsaker/php-resque,chrisboulton/php-resque,CatchoftheDay/php-resque |
7e10df0648fadfeee0f000cc0b30a7074b6e953e | .travis.yml | .travis.yml | language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Repo... | language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --... | Fix whitespace in YAML: tabs no longer allowed | Fix whitespace in YAML: tabs no longer allowed
| YAML | artistic-2.0 | briandfoy/Module-Extract-DeclaredMinimumPerl,briandfoy/Module-Extract-DeclaredMinimumPerl |
9b640da9d11ebea785cf78898e3fe9c5d58c1e8a | .travis.yml | .travis.yml | sudo: required
language: c
install:
- wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script:
- bash -ex .travis-opam.sh
env:
global:
- PACKAGE=webaudio
matrix:
- OCAML_VERSION=4.01
- OCAML_VERSION=4.02
| sudo: required
language: c
install:
- wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script:
- bash -ex .travis-opam.sh
env:
global:
- PACKAGE=webaudio
- EXTRA_REMOTES=git://github.com/johnelse/opam-repo-johnelse
matrix:
- OCAML_VERSION=4.01
- OCAML_V... | Add extra opam repo for webtest | Add extra opam repo for webtest
Signed-off-by: John Else <37b74501daa612e48fea94f9846ed4ddeb6a8f07@gmail.com>
| YAML | mit | johnelse/ocaml-webaudio,johnelse/ocaml-webaudio,johnelse/ocaml-webaudio |
6c8f090b73bfb5beacc8991e076058540b82f9b7 | .travis.yml | .travis.yml | language: perl6
sudo: false
perl6:
- latest
install:
- rakudobrew build-panda
- panda installdeps .
| language: perl6
sudo: false
perl6:
- latest
install:
- rakudobrew build-zef
- zef install .
| Use zef instead of panda | Use zef instead of panda
| YAML | artistic-2.0 | Altai-man/perl6-Compress-Bzip2-Raw |
37ed22333300106bffe217b7334c23fe5ca31235 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2
- 2.3.6
- 2.4.3
- 2.5.0
notifications:
email: false
| language: ruby
before_install: gem update --system
cache: bundler
sudo: false
rvm:
- 2.2
- 2.3.6
- 2.4.3
- 2.5.0
notifications:
email: false
| Fix Travis build on Ruby update | Fix Travis build on Ruby update | YAML | mit | editorconfig/editorconfig-core-ruby |
feaefa6f7182ca89019c94305d78965ffd4b65b7 | .travis.yml | .travis.yml | language: rust
matrix:
include:
- rust: stable
os: linux
- rust: stable
os: osx
script:
- cargo test
| language: rust
matrix:
include:
- rust: stable
- rust: stable
os: osx
- rust: beta
- rust: nightly
script:
- cargo test
| Add Rust beta and nightly | [Travis] Add Rust beta and nightly
| YAML | apache-2.0 | nvzqz/static-assertions-rs |
cff1a983b40feddd00a8479f06063b891eaeedb4 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
script: bundle exec rake spec
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
deploy:
provider: rubygems
api_key:
secure: 0pFmsvwqf1MKY8QGw3VDE6G6yi5b2JwA1zJIbxyv+12rNiA35Q8FszKK2cRdtpxczXt2aNanMqbwYGU+JDSo894l9vZVfbeSCZX1yg7mTxnjlvSloFtt4VMiRcJ7DANdtdmisYzJL2t5Pzaea/C8/h... | language: ruby
bundler_args: --without development
script: bundle exec rake spec
rvm:
- 1.8.7
- 1.9.3
- 2.1.1
deploy:
provider: rubygems
api_key:
secure: 0pFmsvwqf1MKY8QGw3VDE6G6yi5b2JwA1zJIbxyv+12rNiA35Q8FszKK2cRdtpxczXt2aNanMqbwYGU+JDSo894l9vZVfbeSCZX1yg7mTxnjlvSloFtt4VMiRcJ7DANdtdmisYzJL2t5Pzaea/C8/hvjZGZrS3... | Test on 1.8.7, 1.9.3, 2.1.1 | Test on 1.8.7, 1.9.3, 2.1.1 | YAML | mit | balanced/balanced-ruby |
9544cf221fdaec944f1d0246ae8e4b4378c87c6c | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "7"
- "8"
os:
- linux
- osx
matrix:
include:
- os: osx
osx_image: xcode8
env:
- MATRIX_EVAL="brew install gcc5 && CC=gcc-5 && CXX=g++-5"
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
... | language: node_js
node_js:
- "6"
- "7"
- "8"
os:
- linux
- osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gcc@5 ... | Install gcc5 on os x | Install gcc5 on os x
| YAML | mit | tuananh/camaro,tuananh/camaro,tuananh/camaro,tuananh/camaro |
3fac585809ae4686ee885a7c96d6758d5175dc3a | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug --without doc
env:
- CI=true
rvm:
- "1.9.3"
- "2.0.0"
- "jruby-19mode"
- "rbx"
script: bundle exec rspec spec
matrix:
allow_failures:
- rvm: "rbx"
| language: ruby
bundler_args: --without debug --without doc
env:
- CI=true
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.1"
- "jruby-19mode"
- "rbx"
script: bundle exec rspec spec
matrix:
allow_failures:
- rvm: "rbx"
| Add ruby 2.1.1 as a CI test target | Add ruby 2.1.1 as a CI test target
| YAML | mit | avit/stockboy |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.