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 |
|---|---|---|---|---|---|---|---|---|---|
d62c3fccfaf599611d8160fba00b2f962bd28cd8 | .github/workflows/swift.yml | .github/workflows/swift.yml | name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
macOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
linux:
runs-on: ubuntu-latest
steps:
- uses: fwal/setup-swift@v1.8.0
- name: Swift Version
run: swift --version
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
windows:
runs-on: windows-latest
steps:
- uses: compnerd/gha-setup-swift@main
with:
branch: swift-5.5-release
tag: 5.5-RELEASE
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
| name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
macOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
linux:
runs-on: ubuntu-latest
steps:
- uses: fwal/setup-swift@v1.8.0
- name: Swift Version
run: swift --version
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
| Remove github windows testing workflow | Remove github windows testing workflow
| YAML | apache-2.0 | googleprojectzero/fuzzilli,googleprojectzero/fuzzilli,googleprojectzero/fuzzilli |
49d92957806d4423271b16d3819ee997879f1b80 | .github/workflows/tests.yml | .github/workflows/tests.yml | on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0.1', '2.7.3', '2.6.7', '2.5.9']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
with:
ruby-version: ${{ matrix.ruby-version }}
- name: "Determine whether to run coverage"
if: ${{ startsWith(matrix.ruby-version, '3.0') && github.ref == 'refs/heads/main' }}
run: echo COVERAGE=1 >> $GITHUB_ENV
- name: Install dependencies
run: bundle install
- name: Run tests
if: ${{ !env.COVERAGE }}
run: bundle exec rake
env:
GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v3.0.0
if: ${{ env.COVERAGE }}
with:
coverageCommand: bundle exec rake
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
env:
TRAVIS: 1
CI: 1
| on:
push:
branches: [ main ]
pull_request:
types: [ opened, synchronize ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0.1', '2.7.3', '2.6.7']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
with:
ruby-version: ${{ matrix.ruby-version }}
- name: "Determine whether to run coverage"
if: ${{ startsWith(matrix.ruby-version, '3.0') && github.ref == 'refs/heads/main' }}
run: echo COVERAGE=1 >> $GITHUB_ENV
- name: Install dependencies
run: bundle install
- name: Run tests
if: ${{ !env.COVERAGE }}
run: bundle exec rake
env:
GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v3.0.0
if: ${{ env.COVERAGE }}
with:
coverageCommand: bundle exec rake
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
GOOGLE_TRANSLATE_API_KEY: ${{ secrets.GOOGLE_TRANSLATE_API_KEY }}
env:
TRAVIS: 1
CI: 1
| Remove Ruby 2.5.9 from CI | Remove Ruby 2.5.9 from CI
Ruby 2.5 has been EOL since March 2021
| YAML | mit | glebm/i18n-tasks |
72d4a5354e7e753d0ec234ebc161f8e4a98093d5 | data/location/sesi_rocquencourt.yaml | data/location/sesi_rocquencourt.yaml | ---
dns::forwarders:
- 193.51.196.130
- 193.51.196.131
dns::forwarder_insecure: true
ntp::servers:
- sesi-ntp1.inria.fr
- sesi-ntp2.inria.fr
internal_network: 192.168.100.0/24
smtp::relayhost: '[smtp.inria.fr]'
swh::deploy::worker::instances:
- swh_lister_debian
- swh_lister_github
- swh_lister_gitlab
- swh_lister_pypi
- swh_loader_debian
- swh_loader_git
- swh_loader_git_disk
- swh_loader_svn
- swh_loader_deposit
- swh_loader_mercurial
| ---
dns::forwarders:
- 193.51.196.130
- 193.51.196.131
dns::forwarder_insecure: true
ntp::servers:
- sesi-ntp1.inria.fr
- sesi-ntp2.inria.fr
internal_network: 192.168.100.0/24
smtp::relayhost: '[smtp.inria.fr]'
swh::deploy::worker::instances:
- swh_lister_debian
- swh_lister_github
- swh_lister_gitlab
- swh_lister_pypi
- swh_loader_debian
- swh_loader_git
- swh_loader_git_disk
- swh_loader_pypi
- swh_loader_svn
- swh_loader_deposit
- swh_loader_mercurial
| Deploy PyPI loader to swh-workers | data/location: Deploy PyPI loader to swh-workers
Related T1181
| YAML | apache-2.0 | SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site,SoftwareHeritage/puppet-swh-site |
97c8c82b612f74be6809756b8f1ea89e04def438 | data/transition-sites/dfid_blogs.yml | data/transition-sites/dfid_blogs.yml | ---
site: dfid_blogs
whitehall_slug: department-for-international-development
title: Department for International Development
redirection_date: 19th March 2014
homepage: https://dfid.blog.gov.uk
tna_timestamp: 20130704203515
host: blogs.dfid.gov.uk
furl: www.gov.uk/dfid
aliases:
- dfidimport.blog.gov.uk
| ---
site: dfid_blogs
whitehall_slug: department-for-international-development
title: Department for International Development
redirection_date: 19th March 2014
homepage: https://dfid.blog.gov.uk
tna_timestamp: 20130704203515
host: blogs.dfid.gov.uk
furl: www.gov.uk/dfid
aliases:
- www.blogs.dfid.gov.uk
- dfidimport.blog.gov.uk
| Add alias to DFID blog | Add alias to DFID blog
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
4788a475fecdce842b8720096c35fb27004970f3 | jenkins/ci.suse.de/templates/cloud-mkcloud-job-ha-linuxbridge-template.yaml | jenkins/ci.suse.de/templates/cloud-mkcloud-job-ha-linuxbridge-template.yaml | - job-template:
name: 'cloud-mkcloud{version}-job-ha-linuxbridge-{arch}'
node: cloud-trigger
disabled: '{obj:disabled}'
triggers:
- timed: 'H 21 * * *'
logrotate:
numToKeep: -1
daysToKeep: 7
builders:
- trigger-builds:
- project: openstack-mkcloud
condition: SUCCESS
block: true
current-parameters: true
predefined-parameters: |
TESTHEAD=1
cloudsource=develcloud{version}
nodenumber=5
clusterconfig=data+network+services=2
storage_method=swift
hacloud=1
mkcloudtarget=all_noreboot
networkingplugin=linuxbridge
networkingmode=vxlan
want_node_aliases=controller=2,compute=2
label={label}
job_name=cloud-mkcloud{version}-job-ha-linuxbridge-{arch}
| - job-template:
name: 'cloud-mkcloud{version}-job-ha-linuxbridge-{arch}'
node: cloud-trigger
disabled: '{obj:disabled}'
triggers:
- timed: 'H 21 * * *'
logrotate:
numToKeep: -1
daysToKeep: 7
builders:
- trigger-builds:
- project: openstack-mkcloud
condition: SUCCESS
block: true
current-parameters: true
predefined-parameters: |
TESTHEAD=1
cloudsource=develcloud{version}
nodenumber=5
clusterconfig=data+network+services=2
storage_method=swift
hacloud=1
mkcloudtarget=all
networkingplugin=linuxbridge
networkingmode=vxlan
want_node_aliases=controller=2,compute=2
label={label}
job_name=cloud-mkcloud{version}-job-ha-linuxbridge-{arch}
| Test reboot in a single HA job | Test reboot in a single HA job
A reboot is currently broken. That's why we did the revert commit ddaf706d503 .
To track and fix the problem, enable reboot testing in a single job which is
not gating currently.
| YAML | apache-2.0 | SUSE-Cloud/automation,gosipyan/automation,gosipyan/automation,SUSE-Cloud/automation,aspiers/automation,SUSE-Cloud/automation,aspiers/automation,aspiers/automation,gosipyan/automation,gosipyan/automation,SUSE-Cloud/automation,aspiers/automation |
8e5d5283cc466b07616a57eeeee28859300022ab | deployment/certs/ca-certs-baremetal-puppet.yaml | deployment/certs/ca-certs-baremetal-puppet.yaml | heat_template_version: rocky
description: >
HAproxy service configured with Puppet
parameters:
ServiceData:
default: {}
description: Dictionary packing service data
type: json
ServiceNetMap:
default: {}
description: Mapping of service_name -> network name. Typically set
via parameter_defaults in the resource registry. This
mapping overrides those in ServiceNetMapDefaults.
type: json
DefaultPasswords:
default: {}
type: json
RoleName:
default: ''
description: Role name on which the service is applied
type: string
RoleParameters:
default: {}
description: Parameters specific to the role
type: json
EndpointMap:
default: {}
description: Mapping of service endpoint -> protocol. Typically set
via parameter_defaults in the resource registry.
type: json
CAMap:
description: >
Map containing the CA certs and information needed for deploying them.
default: {}
type: json
outputs:
role_data:
description: Role data for injecting CA certificates.
value:
service_name: ca_certs
config_settings:
tripleo::trusted_cas::ca_map: {get_param: CAMap}
step_config: |
include tripleo::trusted_cas
| heat_template_version: rocky
description: >
HAproxy service configured with Puppet
parameters:
ServiceData:
default: {}
description: Dictionary packing service data
type: json
ServiceNetMap:
default: {}
description: Mapping of service_name -> network name. Typically set
via parameter_defaults in the resource registry. This
mapping overrides those in ServiceNetMapDefaults.
type: json
DefaultPasswords:
default: {}
type: json
RoleName:
default: ''
description: Role name on which the service is applied
type: string
RoleParameters:
default: {}
description: Parameters specific to the role
type: json
EndpointMap:
default: {}
description: Mapping of service endpoint -> protocol. Typically set
via parameter_defaults in the resource registry.
type: json
CAMap:
description: >
Map containing the CA certs and information needed for deploying them.
default: {}
type: json
outputs:
role_data:
description: Role data for injecting CA certificates.
value:
service_name: ca_certs
config_settings:
description: Extra hieradata needed to inject CA certificates
value: null
host_prep_tasks:
description: Extra ansible tasks needed to inject CA certificates
value:
- name: inject CA certs into the system store
import_role:
name: tripleo_update_trusted_cas
vars:
tripleo_update_trusted_cas_ca_map: {get_param: CAMap}
| Move CA cert injection to host_prep_tasks | Move CA cert injection to host_prep_tasks
See https://bugzilla.redhat.com/show_bug.cgi?id=1840886
Depends-On: https://review.opendev.org/#/c/743620/
Change-Id: Id9e14913168fd57c73d36f48aa6c31ac444d7ab3
| YAML | apache-2.0 | openstack/tripleo-heat-templates,openstack/tripleo-heat-templates |
e18cbb9ca59ec30d1ec40435aa4f7becb8001740 | infrared/common/roles/cdn_registery/defaults/main.yml | infrared/common/roles/cdn_registery/defaults/main.yml | subscriptions:
common:
- rhel-7-server-rpms
- rhel-7-server-extras-rpms
- rhel-7-server-rh-common-rpms
10:
- rhel-ha-for-rhel-7-server-rpms
- rhel-7-server-openstack-10-rpms
11:
- rhel-ha-for-rhel-7-server-rpms
- rhel-7-server-openstack-beta-rpms
9:
- rhel-7-server-openstack-9-rpms
- rhel-7-server-openstack-9-director-rpms
8:
- rhel-7-server-openstack-8-rpms
- rhel-7-server-openstack-8-director-rpms
7:
- rhel-7-server-openstack-7.0-rpms
- rhel-7-server-openstack-7.0-director-rpms
| subscriptions:
common:
- rhel-7-server-rpms
- rhel-7-server-extras-rpms
- rhel-7-server-rh-common-rpms
10:
- rhel-ha-for-rhel-7-server-rpms
- rhel-7-server-openstack-10-rpms
11:
- rhel-ha-for-rhel-7-server-rpms
- rhel-7-server-openstack-11-rpms
9:
- rhel-7-server-openstack-9-rpms
- rhel-7-server-openstack-9-director-rpms
8:
- rhel-7-server-openstack-8-rpms
- rhel-7-server-openstack-8-director-rpms
7:
- rhel-7-server-openstack-7.0-rpms
- rhel-7-server-openstack-7.0-director-rpms
| Switch cdn repo from beta to 11 | Switch cdn repo from beta to 11
Change-Id: Idad4456fa4048e7f3e36c25066241ef09df5cc90
| YAML | apache-2.0 | redhat-openstack/infrared,okolisny/InfraRed,redhat-openstack/infrared,okolisny/InfraRed,redhat-openstack/infrared,okolisny/InfraRed |
94db48f187d45dd674fc2d744a9822ec0979daca | recipes/decasu/meta.yaml | recipes/decasu/meta.yaml | {% set name = "decasu" %}
{% set version = "0.7.1" %}
{% set sha256 = "d5558cd419c8d46bdc958064cb97f963d1ea793866414c025906ec15033512ed" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/erykoff/{{ name }}/archive/{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- python
- pip
- setuptools_scm
- setuptools_scm_git_archive
run:
- python
- numpy
- healpy
- astropy
- healsparse
- healsparse
- fitsio
- esutil
- LSSTDESC.Coord
- pyyaml
test:
imports:
- decasu
requires:
- pip
commands:
- pip check
about:
home: https://github.com/erykoff/decasu
summary: DECam (and HSC and LSSTCam) Survey Property Maps with HealSparse
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
dev_url: https://github.com/erykoff/decasu
extra:
recipe-maintainers:
- erykoff
| {% set name = "decasu" %}
{% set version = "0.7.1" %}
{% set sha256 = "d5558cd419c8d46bdc958064cb97f963d1ea793866414c025906ec15033512ed" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/erykoff/{{ name }}/archive/{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- python >=3.7
- pip
- setuptools_scm
- setuptools_scm_git_archive
run:
- python >=3.7
- numpy
- healpy
- astropy
- healsparse
- healsparse
- fitsio
- esutil
- LSSTDESC.Coord
- pyyaml
test:
imports:
- decasu
requires:
- pip
commands:
- pip check
about:
home: https://github.com/erykoff/decasu
summary: DECam (and HSC and LSSTCam) Survey Property Maps with HealSparse
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE
dev_url: https://github.com/erykoff/decasu
extra:
recipe-maintainers:
- erykoff
| Add lower bound on python support. | Add lower bound on python support.
| YAML | bsd-3-clause | goanpeca/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,mariusvniekerk/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,hadim/staged-recipes,kwilcox/staged-recipes,mariusvniekerk/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,stuertz/staged-recipes |
a3880e2ccabf629f1d90ec0c735af7b4fad6e827 | recipes/psutil/meta.yaml | recipes/psutil/meta.yaml | {% set version = "5.0.1" %}
package:
name: psutil
version: {{ version }}
source:
fn: psutil-{{ version }}.tar.gz
url: https://pypi.io/packages/source/p/psutil/psutil-{{ version }}.tar.gz
md5: 153dc8be94badc4072016ceeac7808dc
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
requires:
- ipaddress # [py<33]
- mock # [py<33]
- unittest2 # [py<27]
imports:
- psutil
- psutil.tests
about:
home: https://github.com/giampaolo/psutil
license: BSD 3-Clause
summary: A cross-platform process and system utilities module for Python
| {% set version = "5.1.1" %}
package:
name: psutil
version: {{ version }}
source:
fn: psutil-{{ version }}.tar.gz
url: https://pypi.io/packages/source/p/psutil/psutil-{{ version }}.tar.gz
md5: 63a9436e0c91030a254714f0a6ccc584
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
requires:
- ipaddress # [py<33]
- mock # [py<33]
- unittest2 # [py<27]
imports:
- psutil
- psutil.tests
about:
home: https://github.com/giampaolo/psutil
license: BSD 3-Clause
summary: A cross-platform process and system utilities module for Python
| Update psutil recipe to version 5.1.1 | Update psutil recipe to version 5.1.1
| YAML | bsd-3-clause | jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda |
ed1287f7e391c827e8d394440051ae8d48bb2842 | task.yml | task.yml | variables:
default:
timeout: 1800
chef_config: solo.rb
events:
setup:
description: Execute setup
task: setup
configure:
priority: 99
description: Execute configure chef
task: configure
deploy:
description: Execute deploy
task: deploy
backup:
description: Execute backup
priority: 80
task: backup
restore:
description: Execute restore
priority: 20
task: restore
spec:
description: Execute spec
task: spec
tasks:
setup:
description: Execute setup chef
operations:
- execute:
file: prepare.sh
- chef:
run_list:
- role[{{role}}_setup]
configure:
description: Execute configure chef
operations:
- chef:
run_list:
- role[{{role}}_configure]
deploy:
description: Execute deploy chef
operations:
- chef:
run_list:
- role[{{role}}_deploy]
backup:
description: Execute backup chef
operations:
- chef:
run_list:
- role[{{role}}_backup]
restore:
description: Execute restore chef
operations:
- chef:
run_list:
- role[{{role}}_restore]
spec:
description: Execute spec chef
operations:
- execute:
script: python lib/event_handler.py {{role}} spec
| variables:
HOME: /root
PATH: $PATH:/opt/chefdk/embedded/bin:/opt/chef/embedded/bin:/usr/bin
ROLE: '{{config.role}}'
CONSUL_SECRET_KEY: '{{config.token}}'
default:
timeout: 1800
chef_config: solo.rb
events:
setup:
description: Execute setup
task: setup
configure:
priority: 99
description: Execute configure chef
task: configure
deploy:
description: Execute deploy
task: deploy
backup:
description: Execute backup
priority: 80
task: backup
restore:
description: Execute restore
priority: 20
task: restore
spec:
description: Execute spec
task: spec
tasks:
setup:
description: Execute setup chef
operations:
- execute:
file: prepare.sh
- chef:
run_list:
- role[{{role}}_setup]
configure:
description: Execute configure chef
operations:
- chef:
run_list:
- role[{{role}}_configure]
deploy:
description: Execute deploy chef
operations:
- chef:
run_list:
- role[{{role}}_deploy]
backup:
description: Execute backup chef
operations:
- chef:
run_list:
- role[{{role}}_backup]
restore:
description: Execute restore chef
operations:
- chef:
run_list:
- role[{{role}}_restore]
spec:
description: Execute spec chef
operations:
- execute:
script: python lib/event_handler.py {{role}} spec
| Add environment variables to execute amanda pattern | Add environment variables to execute amanda pattern
| YAML | apache-2.0 | cloudconductor-patterns/amanda_pattern,cloudconductor-patterns/amanda_pattern,cloudconductor-patterns/amanda_pattern,cloudconductor-patterns/amanda_pattern |
4f8ae8b7d16de7a4dd2c8363b431e81dd90605b7 | .rubocop_schema.yml | .rubocop_schema.yml | Style/NumericLiterals:
Exclude:
- 'db/schema.rb'
Style/SpaceBeforeFirstArg:
Enabled: true
Metrics/BlockNesting:
Max: 2
Style/AlignHash:
EnforcedColonStyle: 'key'
EnforcedHashRocketStyle: 'key'
Style/WordArray:
MinSize: 3
Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: 'comma'
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: 'comma'
Style/HashSyntax:
EnforcedStyle: 'ruby19'
Style/StringLiterals:
EnforcedStyle: double_quotes
| Style/ExtraSpacing:
# When true, allows most uses of extra spacing if the intent is to align
# things with the previous or next line, not counting empty lines or comment
# lines.
AllowForAlignment: false
Style/NumericLiterals:
Exclude:
- 'db/schema.rb'
Style/SpaceBeforeFirstArg:
Enabled: true
Metrics/BlockNesting:
Max: 2
Style/AlignHash:
EnforcedColonStyle: 'key'
EnforcedHashRocketStyle: 'key'
Style/WordArray:
MinSize: 3
Style/TrailingCommaInLiteral:
EnforcedStyleForMultiline: 'comma'
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: 'comma'
Style/HashSyntax:
EnforcedStyle: 'ruby19'
Style/StringLiterals:
EnforcedStyle: double_quotes
| Fix spacing regression introduced by Rubocop upgrade | Fix spacing regression introduced by Rubocop upgrade
| YAML | mit | jakeonrails/fix-db-schema-conflicts,jakeonrails/fix-db-schema-conflicts,jakeonrails/fix-db-schema-conflicts |
773069e31faf7268872c3be9b520891ae05c4142 | config/govuk_index/migrated_formats.yaml | config/govuk_index/migrated_formats.yaml | migrated:
# Contacts
- contact
# Publisher
- answer
- guide
- help_page
- licence
- local_transaction
- place
- transaction
- simple_smart_answer
# Specialist Publisher
- aaib_report
- asylum_support_decision
- business_finance_support_scheme
- cma_case
- countryside_stewardship_grant
- dfid_research_output
- drug_safety_update
- employment_appeal_tribunal_decision
- employment_tribunal_decision
- international_development_fund
- maib_report
- medical_safety_alert
- raib_report
- service_standard_report
- tax_tribunal_decision
- utaac_decision
# Other
- task_list
indexable:
#- european_structural_investment_fund
#- vehicle_recalls_and_faults_alert
| migrated:
# Contacts
- contact
# Publisher
- answer
- guide
- help_page
- licence
- local_transaction
- place
- transaction
- simple_smart_answer
# Specialist Publisher
- aaib_report
- asylum_support_decision
- business_finance_support_scheme
- cma_case
- countryside_stewardship_grant
- dfid_research_output
- drug_safety_update
- employment_appeal_tribunal_decision
- employment_tribunal_decision
- international_development_fund
- maib_report
- medical_safety_alert
- raib_report
- service_standard_report
- tax_tribunal_decision
- utaac_decision
# Other
- task_list
indexable:
- esi_fund # name differs between publishing API and rummager (european_structural_investment_fund)
#- vehicle_recalls_and_faults_alert
| Make DFIF Research and ESI Fund formats indexable | Make DFIF Research and ESI Fund formats indexable
| YAML | mit | alphagov/rummager,alphagov/rummager |
a566d5d5189bfe851b01ae7f72a126d95efd1aa6 | data/transition-sites/directgov_local.yml | data/transition-sites/directgov_local.yml | ---
site: directgov_local
whitehall_slug: government-digital-service
homepage: https://www.gov.uk/government/organisations/government-digital-service
tna_timestamp: 20140727120113
host: local.direct.gov.uk
aliases:
- maps.direct.gov.uk
| ---
site: directgov_local
whitehall_slug: government-digital-service
homepage: https://www.gov.uk/government/organisations/government-digital-service
tna_timestamp: 20140727120113
host: local.direct.gov.uk
aliases:
- maps.direct.gov.uk
options: --query-string lgsl:datatype:ref
| Add significant query params for local.direct.gov.uk | Add significant query params for local.direct.gov.uk
We want to be able to redirect users to the relevant local transaction or
other content on GOV.UK based on the LGSL or slug for each dataset.
- lgsl: used on various paths under /LDGRedirect:
- /LDGRedirect/MapLocationSearch.do
- /LDGRedirect/Start.do
- /LDGRedirect/index.jsp
- /LDGRedirect/LocationSearch.do
- ...and a very few directly on /LDGRedirect/
- datatype: eg /LDGRedirect/MapDetailAction.do?datatype=passportofficesregional
(can't see it used on any other paths)
- ref: eg /LDGRedirect/MapAction.do?ref=weddingvenues - also used on
/LDGRedirect/Policing.do?ref=neighbourhood but only with one value there
We have decided to not add `type` as significant. It's used with `single` or
`multiple` as the value; with `single` it returns a redirect to a link in the
dataset instead of showing a page with the link on it. If we need to provide
this behaviour in future, the data to do it wouldn't be available to Bouncer,
so we would instead need to add a rule to Bouncer such that when type=single
is present, it redirects to another application, preserving the rest of the
query parameters. We don't have strong evidence of a user need for this now,
so aren't doing it.
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
0cf5745c7b6e87d4cc4a0379251da67995c59024 | serverless.yml | serverless.yml | service: factcheckthenews-prototype
provider:
name: aws
runtime: nodejs4.3
memorySize: 128
stage: v1
region: us-east-1
functions:
check:
handler: handler.check
events:
- http:
path: check
method: get
| service: factcheckthenews-prototype
provider:
name: aws
runtime: nodejs4.3
memorySize: 128
stage: v1
region: us-east-1
functions:
check:
handler: handler.check
events:
- http:
path: check
method: post | Swap to POST request endpoint | Swap to POST request endpoint
| YAML | apache-2.0 | factcheckthenews/prototype,factcheckthenews/prototype |
c591793598fe3c2087ee1586a13121c7a1426274 | packages/tr/transformers-lift.yaml | packages/tr/transformers-lift.yaml | homepage: ''
changelog-type: ''
hash: dcc6d44fa2d58bcd6da22372824833aa78a5522a0d503e224ca03e428a2f664a
test-bench-deps: {}
maintainer: Vladislav Zavialov <vlad.z.4096@gmail.com>
synopsis: Ad-hoc type classes for lifting
changelog: ''
basic-deps:
base: ! '>=4.6 && <4.10'
transformers: ! '>=0.4.2'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Vladislav Zavialov
latest: '0.1.0.1'
description-type: haddock
description: ! 'This simple and lightweight library provides type classes
for lifting monad transformer operations.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 804781f12dd171fcd499eb1fc6dd99253392447668e96b18030b95c759a42a94
test-bench-deps: {}
maintainer: Vladislav Zavialov <vlad.z.4096@gmail.com>
synopsis: Ad-hoc type classes for lifting
changelog: ''
basic-deps:
writer-cps-transformers: ! '>=0.1.1.3'
base: ! '>=4.6 && <4.11'
transformers: ! '>=0.5.4.0'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2.0.0'
author: Vladislav Zavialov
latest: '0.2.0.0'
description-type: haddock
description: ! 'This simple and lightweight library provides type classes
for lifting monad transformer operations.'
license-name: BSD3
| Update from Hackage at 2017-04-28T18:11:44Z | Update from Hackage at 2017-04-28T18:11:44Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
786945578dd419d862ecb9339d94d06defa6453a | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- Package
- Build
tarball:
stage: Package
image: alpine:latest
before_script:
- apk add --no-cache git make perl
script:
- git submodule sync
- git submodule update --init --recursive
- git submodule foreach git pull origin master
- make -f tools/star/Makefile release VERSION=$CI_COMMIT_REF_NAME
artifacts:
paths:
- release
moar:
stage: Build
image: alpine:latest
before_script:
- apk add --no-cache bash build-base git perl
- cd "$(mktemp -d)"
- tar xf "$CI_PROJECT_DIR/release/rakudo-star-$CI_COMMIT_REF_NAME.tar.gz"
script:
- perl Configure.pl --prefix=/usr/local --backend=moar --gen-moar
artifacts:
paths:
- "$CI_COMMIT_REF_NAME/release"
- /usr/local
| stages:
- Package
- Build
tarball:
stage: Package
image: alpine:latest
before_script:
- apk add --no-cache git make perl
script:
- git submodule sync
- git submodule update --init --recursive
- git submodule foreach git pull origin master
- make -f tools/star/Makefile release VERSION=$CI_COMMIT_REF_NAME
artifacts:
paths:
- release
moar:
stage: Build
image: alpine:latest
before_script:
- apk add --no-cache bash build-base git perl
- cd "$(mktemp -d)"
- tar xf "$CI_PROJECT_DIR/release/rakudo-star-$CI_COMMIT_REF_NAME.tar.gz"
script:
- cd "rakudo-star-$CI_COMMIT_REF_NAME"
- perl Configure.pl --prefix=/usr/local --backend=moar --gen-moar
artifacts:
paths:
- "$CI_COMMIT_REF_NAME/release"
- /usr/local
| Change directory to latest release | Change directory to latest release
| YAML | artistic-2.0 | rakudo/star |
7a33cb969f7dc1ef6b0866feab487dde2828b234 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
#- test
- package
- test_package
variables:
ARCH: "amd64"
DIST: "jessie"
.job_template: &job_definition
stage: package
image: "0xacab.org:4567/leap/gitlab-buildpackage:build_${DIST}_${ARCH}"
script:
- "pwd; git describe"
- build-build-package
# Upload packages from the main/default branch to dev-platform deb repo and packaes from all other branches/MRs to the experimental-platform one.
- "[ ${CI_BUILD_REF_NAME} != 'master' ] && export REPOSITORY='/srv/experimental-gitbuildpackage'"
- upload-package
# sleep 1h to allow debugging of running container
#- sleep 3600
artifacts:
expire_in: 1w
paths:
- '*_*.xz'
- '*_*.dsc'
- '*_amd64.changes'
- '*.deb'
- 'results/*'
#test:
# image: leapcode/soledad:latest
# stage: test
# script:
# - tox --recreate
package:amd64:jessie:
<<: *job_definition
lintian:
image: "0xacab.org:4567/leap/gitlab-buildpackage:build_${DIST}_${ARCH}"
stage: test_package
script: bash -x build-test-lintian --fail-on-warnings
| # Todo:
# - Move test stage at the beginning of pipeline once packaging is done
stages:
- package
- test
.job_template: &job_definition
stage: package
image: "0xacab.org:4567/leap/gitlab-buildpackage:build_${DIST}_${ARCH}"
script:
- "pwd; git describe"
- build-build-package
# Test the package with lintian
- build-test-lintian --fail-on-warnings
# Upload packages from the main/default branch to dev-platform deb repo and packaes from all other branches/MRs to the experimental-platform one.
- "[ ${CI_BUILD_REF_NAME} != 'master' ] && export REPOSITORY='/srv/experimental-gitbuildpackage'"
- upload-package
# sleep 1h to allow debugging of running container
#- sleep 3600
artifacts:
expire_in: 1w
paths:
- '*_*.xz'
- '*_*.dsc'
- '*_amd64.changes'
- '*.deb'
- 'results/*'
test:
image: leapcode/soledad:latest
stage: test
script:
- tox --recreate
package:amd64_jessie:
variables:
ARCH: "amd64"
DIST: "jessie"
<<: *job_definition
| Use one package job for every arch/dist combination | Use one package job for every arch/dist combination
| YAML | agpl-3.0 | leapcode/leap_mx,leapcode/leap_mx |
62ad71f180fdd82ac845534025030c528493f8da | .gitlab-ci.yml | .gitlab-ci.yml | variables:
LAST_ABI_BREAK: "43a593b5b4097b887e49eaacafbc1337bd709718"
stages:
- test
build-fedora:
image: fedora:latest
stage: test
before_script:
- dnf install -y gcc redhat-rpm-config libtool automake autoconf gtk-doc make glib2-devel systemd-devel umockdev-devel git libabigail gnome-common xz
script:
- ./autogen.sh --disable-dependency-tracking
- make
- make install
- make check
- ./.ci/check-abi ${LAST_ABI_BREAK} $(git rev-parse HEAD)
- make distcheck
| variables:
LAST_ABI_BREAK: "43a593b5b4097b887e49eaacafbc1337bd709718"
DNF_CORE_DEPS: >
gcc
gettext
redhat-rpm-config
libtool
automake
autoconf
xz
make
git
gnome-common
systemd-devel
glib2-devel
DNF_TEST_DEPS: >
gobject-introspection-devel
vala
umockdev-devel
libabigail
DNF_API_DOC_DEPS: >
gtk-doc
stages:
- test
build-fedora:
image: fedora:latest
stage: test
before_script:
- dnf install -y ${DNF_CORE_DEPS} ${DNF_TEST_DEPS} ${DNF_API_DOC_DEPS}
script:
- ./autogen.sh --disable-dependency-tracking
- make
- make install
- make check
- ./.ci/check-abi ${LAST_ABI_BREAK} $(git rev-parse HEAD)
- make distcheck
| Move package list to variables | ci: Move package list to variables
| YAML | lgpl-2.1 | GNOME/libgudev,GNOME/libgudev,GNOME/libgudev |
37c6c1a36c2afe982effeb0b39c029f3a7f9e281 | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- apt-get update -qq && apt-get install -y zip
- ruby -v
- which ruby
- gem install bundler --no-document
- bundle install --jobs=$(nproc) "${FLAGS[@]}"
test:2.2:
image: ruby:2.2
script:
- bundle exec rake test
test:2.3:
image: ruby:2.3
script: bundle exec rake test
test:2.4:
image: ruby:2.4
script: bundle exec rake test
| variables:
LANG: ja_JP.UTF-8
before_script:
- apt-get update -qq && apt-get install -y zip
- ruby -v
- which ruby
- gem install bundler --no-document
- bundle install --jobs=$(nproc) "${FLAGS[@]}"
test:2.2:
image: ruby:2.2
script:
- bundle exec rake test
test:2.3:
image: ruby:2.3
script: bundle exec rake test
test:2.4:
image: ruby:2.4
script: bundle exec rake test
| Set LANG on GitLab CI | Set LANG on GitLab CI
| YAML | mit | KitaitiMakoto/epub-parser |
2ab719901a70934845f6458b3cb6638d3ced07d4 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build_macos
- build_ios
- test_ios
- test_macos
build_macos:
stage: build_macos
script:
- xcodebuild -scheme Carpaccio clean build
tags:
- xcode
- macos
build_ios:
stage: build_ios
script:
- xcodebuild -scheme Carpaccio -destination 'platform=iOS Simulator,name=iPhone 11,OS=14.0' clean build
tags:
- xcode
- macos
test_macos:
stage: test_macos
script:
- xcodebuild -scheme Carpaccio-Package clean test
dependencies:
- build_macos
tags:
- xcode
- macos
.test_ios: # disabled for now, we shall return to this (?)
stage: test_ios
script:
- swift package generate-xcodeproj
- xcodebuild -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 11,OS=14.0' -scheme Carpaccio clean test
dependencies:
- build_ios
tags:
- xcode
- macos
| stages:
- build_macos
- build_ios
- test_ios
- test_macos
build_macos:
stage: build_macos
script:
- xcodebuild -scheme Carpaccio clean build
tags:
- xcode
- macos
build_ios:
stage: build_ios
script:
- xcodebuild -scheme Carpaccio -destination 'platform=iOS Simulator,name=iPhone 11,OS=14.3' clean build
tags:
- xcode
- macos
test_macos:
stage: test_macos
script:
- xcodebuild -scheme Carpaccio-Package clean test
dependencies:
- build_macos
tags:
- xcode
- macos
.test_ios: # disabled for now, we shall return to this (?)
stage: test_ios
script:
- swift package generate-xcodeproj
- xcodebuild -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 11,OS=14.3' -scheme Carpaccio clean test
dependencies:
- build_ios
tags:
- xcode
- macos
| Update required iOS simulator version to 14.3 for CI stages | Update required iOS simulator version to 14.3 for CI stages
| YAML | mit | mz2/Carpaccio,mz2/Carpaccio,mz2/Carpaccio |
d7ec71123eafd5589cbc55299362fbf431f60303 | build.yaml | build.yaml | artifacts:
timerstatus: iris.timerstatus:timerstatus:jar:1-063ade3
react4j_annotations: org.realityforge.react:react4j-annotations:jar:gwt:0.01
react4j_core: org.realityforge.react:react4j-core:jar:gwt:0.01
react4j_dom: org.realityforge.react:react4j-dom:jar:gwt:0.01
react4j_arez: org.realityforge.react:react4j-arez:jar:gwt:0.01
react4j_processor: org.realityforge.react:react4j-processor:jar:0.01
arez_annotations: org.realityforge.arez:arez-annotations:jar:gwt:0.07
arez_core: org.realityforge.arez:arez-core:jar:gwt:0.07
arez_processor: org.realityforge.arez:arez-processor:jar:0.07
arez_extras: org.realityforge.arez:arez-extras:jar:gwt:0.07
arez_browser_extras: org.realityforge.arez:arez-browser-extras:jar:gwt:0.07
javapoet: com.squareup:javapoet:jar:1.7.0
guava: com.google.guava:guava:jar:21.0
| artifacts:
timerstatus: iris.timerstatus:timerstatus:jar:1-063ade3
react4j_annotations: org.realityforge.react:react4j-annotations:jar:0.01
react4j_core: org.realityforge.react:react4j-core:jar:0.01
react4j_dom: org.realityforge.react:react4j-dom:jar:0.01
react4j_arez: org.realityforge.react:react4j-arez:jar:0.01
react4j_processor: org.realityforge.react:react4j-processor:jar:0.01
arez_annotations: org.realityforge.arez:arez-annotations:jar:gwt:0.07
arez_core: org.realityforge.arez:arez-core:jar:gwt:0.07
arez_processor: org.realityforge.arez:arez-processor:jar:0.07
arez_extras: org.realityforge.arez:arez-extras:jar:gwt:0.07
arez_browser_extras: org.realityforge.arez:arez-browser-extras:jar:gwt:0.07
javapoet: com.squareup:javapoet:jar:1.7.0
guava: com.google.guava:guava:jar:21.0
| Remove gwt classifier as it made no sense | Remove gwt classifier as it made no sense
| YAML | apache-2.0 | realityforge/replicant-example,realityforge/replicant-example,realityforge/replicant-example |
ad81a97453f9e590447b6c8196c50d63181f032f | tasks/main.yml | tasks/main.yml | ---
- name: Ensure vagrant project directory exists
local_action:
module: file
path: "{{ vagrant_project_dir }}"
state: directory
- name: Process Vagrantfile template
local_action:
module: template
src: Vagrantfile.j2
dest: "{{ vagrant_project_dir }}/Vagrantfile"
- name: Ensure vagrant vm is up
local_action:
module: shell vagrant up
chdir: "{{ vagrant_project_dir }}"
register: vagrant_up_out
- name: Debug vagrant_up_out.stdout_lines
local_action:
module: debug
var: vagrant_up_out.stdout_lines
tags: debug
- name: Debug vagrant_up_out.stderr
local_action:
module: debug
var: vagrant_up_out.stderr
tags: debug
- name: Set SSH key to use when connecting to the new host
local_action:
module: set_fact
ansible_ssh_user: vagrant
ansible_ssh_private_key_file: "{{ vagrant_project_dir }}/.vagrant/machines/default/virtualbox/private_key"
- name: Gather facts
setup:
| ---
- name: Ensure vagrant project directory exists
local_action:
module: file
path: "{{ vagrant_project_dir }}"
state: directory
sudo: no
- name: Process Vagrantfile template
local_action:
module: template
src: Vagrantfile.j2
dest: "{{ vagrant_project_dir }}/Vagrantfile"
sudo: no
- name: Ensure vagrant vm is up
local_action:
module: shell vagrant up
chdir: "{{ vagrant_project_dir }}"
sudo: no
register: vagrant_up_out
- name: Debug vagrant_up_out.stdout_lines
local_action:
module: debug
var: vagrant_up_out.stdout_lines
sudo: no
tags: debug
- name: Debug vagrant_up_out.stderr
local_action:
module: debug
var: vagrant_up_out.stderr
sudo: no
tags: debug
- name: Set SSH key to use when connecting to the new host
local_action:
module: set_fact
ansible_ssh_user: vagrant
ansible_ssh_private_key_file: "{{ vagrant_project_dir }}/.vagrant/machines/default/virtualbox/private_key"
sudo: no
- name: Gather facts
setup:
| Set sudo: no on all plays delegated to localhost | Set sudo: no on all plays delegated to localhost
This allows the role to be used in a playbook where "sudo: yes"
has been set without causing any problems.
| YAML | apache-2.0 | teampants/ansible-vagrant |
a3cabc7280b62652819bc211446f9df1b2e1733d | tasks/main.yml | tasks/main.yml | ---
- include: deploy_monitors.yml
when: not ceph_containerized_deployment
- include: start_monitor.yml
when: not ceph_containerized_deployment
- include: ceph_keys.yml
when: not ceph_containerized_deployment
- include: create_mds_filesystems.yml
when:
not ceph_containerized_deployment and
mds_group_name is defined
- include: secure_cluster.yml
when:
secure_cluster and
not ceph_containerized_deployment
- include: docker.yml
when: ceph_containerized_deployment
| ---
- include: deploy_monitors.yml
when: not ceph_containerized_deployment
- include: start_monitor.yml
when: not ceph_containerized_deployment
- include: ceph_keys.yml
when: not ceph_containerized_deployment
- include: create_mds_filesystems.yml
when:
not ceph_containerized_deployment and
groups[mds_group_name] is defined
- include: secure_cluster.yml
when:
secure_cluster and
not ceph_containerized_deployment
- include: docker.yml
when: ceph_containerized_deployment
| Add red hat storage cdn installation | Add red hat storage cdn installation
Signed-off-by: leseb <62d754cc350e84d3b1c32ae79f976f5348e74a40@redhat.com>
| YAML | apache-2.0 | ceph/ansible-ceph-mon,staticfork/ansible-ceph-mon |
8394b291ae9735cf74c4aa338bb373a48bafb403 | tasks/main.yml | tasks/main.yml | - name: Check if bootstrap is needed
raw: stat $HOME/.bootstrapped
register: need_bootstrap
ignore_errors: True
- name: Run bootstrap.sh
script: bootstrap.sh
when: need_bootstrap | failed
- name: Check if we need to install pip
shell: "{{ansible_python_interpreter}} -m pip --version"
register: need_pip
ignore_errors: True
changed_when: false
when: need_bootstrap | failed
- name: Copy get-pip.py
copy: src=get-pip.py dest=~/get-pip.py
when: need_pip | failed
- name: Install pip
shell: "{{ansible_python_interpreter}} ~/get-pip.py"
when: need_pip | failed
- name: Remove get-pip.py
command: rm -f ~/get-pip.py
when: need_pip | failed
- name: Install pip launcher
copy: src=runner dest=~/bin/pip mode=0755
when: need_pip | failed
| - name: Check if bootstrap is needed
raw: stat $HOME/.bootstrapped
register: need_bootstrap
ignore_errors: True
- name: Run bootstrap.sh
script: bootstrap.sh
when: need_bootstrap | failed
- name: Check if we need to install pip
shell: "{{ansible_python_interpreter}} -m pip --version"
register: need_pip
ignore_errors: True
changed_when: false
when: need_bootstrap | failed
- name: Copy get-pip.py
copy: src=get-pip.py dest=~/get-pip.py
when: need_pip | failed
- name: Install pip
shell: "{{ansible_python_interpreter}} ~/get-pip.py"
when: need_pip | failed
- name: Remove get-pip.py
file: path=~/get-pip.py state=absent
when: need_pip | failed
- name: Install pip launcher
copy: src=runner dest=~/bin/pip mode=0755
when: need_pip | failed
| Replace raw rm call with file state=absent | Replace raw rm call with file state=absent
| YAML | mit | sigma/ansible-coreos-bootstrap,defunctzombie/ansible-coreos-bootstrap,rjrivero/gwmanager,skilld-labs/ansible-coreos-bootstrap,TimothyKlim/ansible-coreos-bootstrap,vmware/ansible-coreos-bootstrap,rjrivero/gwmanager,defunctzombie/ansible-coreos-bootstrap,TimothyKlim/ansible-coreos-bootstrap,rjrivero/gwmanager,rjrivero/gwmanager |
045f4b6736022797b1ea9fb9c192b84e99f43c83 | playbooks/base-test/post-logs.yaml | playbooks/base-test/post-logs.yaml | - hosts: localhost
roles:
- role: add-fileserver
fileserver: "{{ site_logs }}"
- emit-ara-html
post_tasks:
- name: Copy inventory to logs dir
copy:
src: "{{ inventory_file }}"
dest: "{{ zuul.executor.log_root }}"
- hosts: "{{ site_logs.fqdn }}"
roles:
- upload-logs
- hosts: localhost
tasks:
- name: Return log URL to Zuul
zuul_return:
data:
zuul:
log_url: "http://logs.openstack.org/{{ hostvars[site_logs.fqdn]['log_path'] }}/"
| - hosts: localhost
roles:
- role: add-fileserver
fileserver: "{{ site_logs }}"
- emit-ara-html
post_tasks:
- name: Copy inventory to logs dir
copy:
src: "{{ inventory_file }}"
dest: "{{ zuul.executor.log_root }}"
- hosts: "{{ site_logs.fqdn }}"
roles:
- upload-logs
- name: Return log URL to Zuul
delegate_to: localhost
zuul_return:
data:
zuul:
log_url: "http://logs.openstack.org/{{ log_path }}/"
| Use delegate_to for the zuul_return | Use delegate_to for the zuul_return
Change-Id: I7ee60b6a2100414d0ec5b600dab0dd05c42e63c9
| YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
7e5a0e1d2bdb30249859eb2124032428f94e9d66 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
bundler_args: --without benchmarks tools
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- "[ -d coverage ] && ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
script:
- bundle exec rake
rvm:
- 2.6.1
- 2.5.3
- 2.4.5
- jruby-9.2.6.0
env:
global:
- COVERAGE=true
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| language: ruby
cache: bundler
bundler_args: --without benchmarks tools
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- "[ -d coverage ] && ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
script:
- bundle exec rake
rvm:
- 2.6.2
- 2.5.5
- 2.4.5
- jruby-9.2.6.0
env:
global:
- COVERAGE=true
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| Use latest Rubies, drop sudo: false setting | CI: Use latest Rubies, drop sudo: false setting | YAML | mit | dryrb/dry-data,dryrb/dry-types,dryrb/dry-types,dryrb/dry-data |
9acc8464785fac4de70b2dd1f851cf2ed0b7e88c | .travis.yml | .travis.yml | language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
addons:
apt:
packages:
- bison
- flex
- automake
- autoconf
- libtool
- make
- gcc
before_install:
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v3.8.1.tar.gz | tar -C ${TRAVIS_BUILD_DIR} -xzf -
- ( cd ${TRAVIS_BUILD_DIR}/yara-3.8.1 && ./bootstrap.sh && ./configure && make )
- export CGO_CFLAGS=-I${TRAVIS_BUILD_DIR}/yara-3.8.1/libyara/include
- export CGO_LDFLAGS=-L${TRAVIS_BUILD_DIR}/yara-3.8.1/libyara/.libs
- export LD_LIBRARY_PATH=${TRAVIS_BUILD_DIR}/yara-3.8.1/libyara/.libs
| language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
addons:
apt:
packages:
- bison
- flex
- automake
- autoconf
- libtool
- make
- gcc
before_install:
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v3.11.0.tar.gz | tar -C ${TRAVIS_BUILD_DIR} -xzf -
- ( cd ${TRAVIS_BUILD_DIR}/yara-3.11.0 && ./bootstrap.sh && ./configure && make )
- export CGO_CFLAGS=-I${TRAVIS_BUILD_DIR}/yara-3.11.0/libyara/include
- export CGO_LDFLAGS=-L${TRAVIS_BUILD_DIR}/yara-3.11.0/libyara/.libs
- export LD_LIBRARY_PATH=${TRAVIS_BUILD_DIR}/yara-3.11.0/libyara/.libs
| Update Travis CI configuration for newer Go, YARA versions | Update Travis CI configuration for newer Go, YARA versions
| YAML | bsd-2-clause | hillu/go-yara,hillu/go-yara,VirusTotal/go-yara |
150f52c40ccadf433ce424ded7ea6b7d01c8306e | .travis.yml | .travis.yml | language: go
sudo: required
services:
- docker
go:
- 1.8
- 1.9
- tip
install:
- go get github.com/frozzare/go-assert
script:
- go test $(go list ./... | grep -v /vendor/) | language: go
sudo: required
services:
- docker
go:
- 1.9
install:
- go get github.com/frozzare/go-assert
script:
- go test ./... | Test only on go 1.9 | Test only on go 1.9
| YAML | mit | frozzare/alfred |
bce7c9a49645363320a43bb44df91a9be360a738 | .travis.yml | .travis.yml | language: ruby
script: bundle exec rake
cache: bundler
sudo: false
after_success:
- bundle exec rake test:accuracy
- bundle exec rake benchmark:memory
rvm:
- ruby-head
| language: ruby
script: bundle exec rake
cache: bundler
sudo: false
before_install:
- gem install bundler
after_success:
- bundle exec rake test:accuracy
- bundle exec rake benchmark:memory
rvm:
- ruby-head
| Make sure to always use the latest bundler | Make sure to always use the latest bundler
| YAML | mit | yuki24/did_you_mean |
e2a821e3553b2b0ebba27800d88f63d796f23f07 | .travis.yml | .travis.yml | language: python
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
install:
- pip install tox
script:
- tox -e $TOX_ENV
| language: python
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
install:
- pip install tox
script:
- tox -e $TOX_ENV
notifications:
slack:
secure: lm7XUGVMxiJMMzMHusSO0uFsWVsSATpq9WRLj5++EQrxF5KUQcocob0JL6KT2JvPI6qfxI9iVnVeePM1nmt9Mly52efSKjyiDDQBth5KnLFB/eHqpiXpl/fzaVYIiTR0lEQwYpfU2dPa2xaBjw8YguMNcbQdi4k9DRwj6Ax1wwvJQdglC+zBt+AcGxdsL7CDR/CWU3cvlc9Id+ED5Rm8myHknK6BJARyJTnRD0RtOLT2SCz4E6o/h2XaCxRwyNLwGSNbeIW1ieYtEitw442M0n5qAAIvxXJ9awRUTcAVxs9Bh+nLRdKTSeYqcOyCnwhCHQRG7iO7WIVio0VMrD/55JPXQgKNocTSGKcSskRKT1tnL3nmvJ7BVB8w5ghLMv0wdSVwoY7A56KSZpPP316RFTa8FVTVDxWtlu4ydDMsvtYWKBD2Wwym1CR2+c25Bdee1eIIogmpKEScJzKRquV+pEciu1geqTWuI/bxGOFFVYFRUdQmA1blnFHiFcrA/vqoouJNNVPY+yeyUQafveSy+Thz8Jvj87Ac0ZdLTnCoTwX9iJVTkJ5+JxsxF4BASdS2UXkktKpf2bnpTM86BO7BnFig4ou/OEa0a+i3vD35F/7XIuic+9vczhbccsLqtMewpTXu6kv9RoelB5ntjQx1JxEIvGgkIh5BBaG5gXzc5YE=
| Add slack notifications to Travis | Add slack notifications to Travis
| YAML | mit | python-astrodynamics/astrodynamics,python-astrodynamics/astrodynamics |
07144a1860d83bbe19178397c4863f520ae78cd6 | .travis.yml | .travis.yml | language: python
env:
- TOXENV=py32
virtualenv:
system_site_packages: true
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- sudo apt-get update
- sudo apt-get install -qq python-qt4 --fix-missing
- sudo apt-get install -qq python3-pyqt4 --fix-missing
- sudo apt-get install -qq python-pygments --fix-missing
- sudo apt-get install -qq python3-pygments --fix-missing
- pip install --quiet --use-mirrors tox
script:
- tox
| language: python
env:
- TOXENV=py32
virtualenv:
system_site_packages: true
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- sudo apt-get update
- sudo apt-get install -qq python3-pyqt4 --fix-missing
- pip install --quiet --use-mirrors tox
script:
- tox
| Fix dependencies on Travis CI | Fix dependencies on Travis CI
Since there is no more implicit import, server should run with python2
without extra dependencies. If this commits passes on travis, this
means the goal has been achieved.
| YAML | mit | zwadar/pyqode.core,pyQode/pyqode.core,pyQode/pyqode.core |
34ea5b1e4d6a849f3703b9cd66ddcf1ba098741d | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- nightly
- beta
- stable
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_RUST_VERSION = nightly ] &&
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=cssparser/index.html>' > target/doc/index.html &&
pip install --user ghp-import &&
~/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
- secure: N66sY4jTqznkJRTNshbib1o7GpgPN8Rw66KFGkRxDfuDOZGkpmTWRPP4tLwmbFfdMOSFKd8Q1OTUOGqvRgny4TErcCF+E56/tUSdGfOFqKeGqowUGhRBLx4eso8FP1ECCTEEZE4hEs1Yb10BrPvZU6YmdBcc5e8YeDZBTAhqMUE=
| sudo: false
language: rust
rust:
- nightly
- beta
- stable
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_RUST_VERSION = nightly ] &&
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=cssparser/index.html>' > target/doc/index.html &&
pip install --user ghp-import &&
~/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
- secure: N66sY4jTqznkJRTNshbib1o7GpgPN8Rw66KFGkRxDfuDOZGkpmTWRPP4tLwmbFfdMOSFKd8Q1OTUOGqvRgny4TErcCF+E56/tUSdGfOFqKeGqowUGhRBLx4eso8FP1ECCTEEZE4hEs1Yb10BrPvZU6YmdBcc5e8YeDZBTAhqMUE=
notifications:
webhooks: http://build.servo.org:54856/travis
| Add notifications from Travis to Homu. | Add notifications from Travis to Homu.
| YAML | mpl-2.0 | disjukr/rust-cssparser,notriddle/rust-cssparser,notriddle/rust-cssparser,servo/rust-cssparser,tempbottle/rust-cssparser,servo/rust-cssparser,tempbottle/rust-cssparser,disjukr/rust-cssparser |
c94e2532713c0eceb054f905dadc2432e9b7ee62 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '6'
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'
- '6'
- '7'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build with Node.js 7 on Travis CI. | Build with Node.js 7 on Travis CI.
| YAML | mit | bigeasy/subordinate,bigeasy/subordinate |
d9dd895682845c70029816d44828dbd2cf2f8527 | .travis.yml | .travis.yml | language: rust
rust:
- 1.30.1
- stable
install:
- rustup component add rustfmt-preview
- rustup component add clippy-preview
script:
- cargo fmt -- --check
- cargo clippy -- -D warnings
- cargo test
- cargo package
| language: rust
rust:
- 1.31.0
- stable
install:
- rustup component add rustfmt
- rustup component add clippy
script:
- cargo fmt -- --check
- cargo clippy -- -D warnings
- cargo test
- cargo package
| Update Travis to use rust-2018 | Update Travis to use rust-2018
| YAML | mit | greyblake/whatlang-rs,greyblake/whatlang-rs,greyblake/whatlang-rs |
d37a5e51400916b66b74b23450698b6a22383ca5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "iojs"
branches:
only:
- gh-pages
| language: node_js
node_js:
- "node"
branches:
only:
- gh-pages
| Drop Travis builds in io.js because gulp-sass is not compatible | Drop Travis builds in io.js because gulp-sass is not compatible
| YAML | mit | meis/FizzBuzzGame,meis/FizzBuzzGame |
df51a5656b206497460496b3be3f5f5b908696d0 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.1
- 2.2
- 2.3.1
- 2.4.0
before_install: gem install bundler -v 1.13.7
| sudo: false
language: ruby
rvm:
- 2.1
- 2.2
- 2.3.1
- 2.4.0
before_install: gem install bundler -v '~> 1.14' --conservative
| Use latest Bundler in Travis | Use latest Bundler in Travis
| YAML | mit | mattbrictson/jess,mattbrictson/jess |
66ecb92b8e7b14850dba3a3b87c2ac61504d5367 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- FABRIC_VERSION=1.5
- FABRIC_VERSION=1.6
# command to install dependencies
install:
- pip install -q fabric==$FABRIC_VERSION
- python setup.py install
# command to run tests
script:
- python setup.py test
| language: python
python:
- "2.7"
env:
- FABRIC_VERSION=1.5
- FABRIC_VERSION=1.7
# command to install dependencies
install:
- pip install -q fabric==$FABRIC_VERSION
- python setup.py install
# command to run tests
script:
- python setup.py test
| Remove Python 2.6 from matrix | Remove Python 2.6 from matrix
| YAML | apache-2.0 | wilddog64/littlechef,tobami/littlechef,wilddog64/littlechef,wilddog64/littlechef,tobami/littlechef,tobami/littlechef |
5198d0e5c24bc523aa5fb0cb8d1cfacacd8a1149 | .travis.yml | .travis.yml | language: ruby
services:
- mysql
- redis
rvm:
- "1.9.3"
script: bundle exec rspec spec
before_script:
- mysql -e 'create database sugar_test;'
- cp config/database.yml.dist config/database.yml
- cp config/initializers/sugar.rb.dist config/initializers/sugar.rb | language: ruby
services:
- mysql
- redis
rvm:
- "1.9.3"
script: bundle exec rspec spec
before_script:
- mysql -e 'create database sugar_test;'
- cp config/database.yml.dist config/database.yml
- cp config/initializers/sugar.rb.dist config/initializers/sugar.rb
- bundle exec rake db:test:prepare | Prepare database before Travis run | Prepare database before Travis run
| YAML | mit | elektronaut/sugar,Wevah/sugar,vena/sugar,vena/sugar,vena/sugar,Wevah/sugar,elektronaut/sugar,Wevah/sugar,elektronaut/sugar,elektronaut/sugar |
17c287d8966313a3a0ce480a53dc0ece01706952 | .travis.yml | .travis.yml | # .travis.yml
# Configure Travis CI service for http://github.com/LASzip
language: cpp
compiler:
- g++
- clang
#before_install: ./scripts/ci/before_install.sh
script: ./scripts/ci/script.sh
notifications:
on_success: always # [always|never|change] # default: change
on_failure: always # [always|never|change] # default: always
irc: "chat.freenode.net#pdal"
# Uncomment and edit below for notifications by e-mail
#email:
# recipients:
# - howard@hobu.co
| # .travis.yml
# Configure Travis CI service for http://github.com/LASzip
language: cpp
sudo: required
dist: trusty
compiler:
- g++
- clang
#before_install: ./scripts/ci/before_install.sh
script: ./scripts/ci/script.sh
notifications:
on_success: always # [always|never|change] # default: change
on_failure: always # [always|never|change] # default: always
irc: "chat.freenode.net#pdal"
# Uncomment and edit below for notifications by e-mail
#email:
# recipients:
# - howard@hobu.co
| Switch Travis to Trusty 14.04. | Switch Travis to Trusty 14.04.
Upgrades to Trusty 14.04 image, which has cmake 2.8.12. This is compatible with the current build system. | YAML | lgpl-2.1 | hobu/LASzip,gadomski/LASzip,gadomski/LASzip,hobu/LASzip,hobu/LASzip,gadomski/LASzip,Madrich/LASzip,LASzip/LASzip,LASzip/LASzip,Madrich/LASzip,Madrich/LASzip,LASzip/LASzip |
9c3554d0d646e37811f083cb2f5392db9f696d27 | .travis.yml | .travis.yml | language: ruby
rvm: 2.1.5
sudo: false
addons:
apt:
sources:
- ubuntu-sdk-team
packages:
- libqt5webkit5-dev
- qtdeclarative5-dev
- pandoc
before_install:
# Set the database.
- export DB=test
# Set up a headless display so capybara will work.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# We need qt5 to make capybara-webkit work with React.
# Copied from https://gist.github.com/jreese/6207161
#- add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
#- apt-get update -qq
#- apt-get install -qq libqt5webkit5-dev qtdeclarative5-dev
- export QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
# pandoc for markdown->mediawiki
# - apt-get install pandoc
install:
- npm install gulp -g
- npm install bower -g
- npm install
- bower install
- bundle install --jobs=3 --retry=3 --deployment
- gulp build
- cp config/database.travis.yml config/database.yml
before_script:
# Set up our database.
- mysql -e '''CREATE DATABASE test
DEFAULT CHARACTER SET utf8
DEFAULT COLLATE utf8_general_ci;'''
- bundle exec rake db:migrate RAILS_ENV=test
| language: ruby
rvm: 2.1.5
sudo: false
addons:
apt:
sources:
- ubuntu-sdk-team
packages:
- libqt5webkit5-dev
- qtdeclarative5-dev
- pandoc
before_install:
# Set the database.
- export DB=test
# Set up a headless display so capybara will work.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# We need qt5 to make capybara-webkit work with React.
# Copied from https://gist.github.com/jreese/6207161
#- add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
#- apt-get update -qq
#- apt-get install -qq libqt5webkit5-dev qtdeclarative5-dev
- export QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
# pandoc for markdown->mediawiki
# - apt-get install pandoc
install:
- cp config/database.travis.yml config/database.yml
- npm install gulp -g
- npm install bower -g
- npm install
- bower install
- bundle install --jobs=3 --retry=3 --deployment
- gulp build
before_script:
# Set up our database.
- mysql -e '''CREATE DATABASE test
DEFAULT CHARACTER SET utf8
DEFAULT COLLATE utf8_general_ci;'''
- bundle exec rake db:migrate RAILS_ENV=test
| Move config copy to before gulp build | Move config copy to before gulp build
| YAML | mit | WikiEducationFoundation/WikiEduDashboard,KarmaHater/WikiEduDashboard,sejalkhatri/WikiEduDashboard,feelfreelinux/WikiEduDashboard,KarmaHater/WikiEduDashboard,feelfreelinux/WikiEduDashboard,ragesoss/WikiEduDashboard,sejalkhatri/WikiEduDashboard,adamwight/WikiEduDashboard,KarmaHater/WikiEduDashboard,Wowu/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,ragesoss/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,alpha721/WikiEduDashboard,sejalkhatri/WikiEduDashboard,WinnySilva/WikiEduDashboard,alpha721/WikiEduDashboard,majakomel/WikiEduDashboard,sejalkhatri/WikiEduDashboard,majakomel/WikiEduDashboard,sejalkhatri/WikiEduDashboard,MusikAnimal/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,WinnySilva/WikiEduDashboard,alpha721/WikiEduDashboard,Wowu/WikiEduDashboard,feelfreelinux/WikiEduDashboard,adamwight/WikiEduDashboard,Wowu/WikiEduDashboard,MusikAnimal/WikiEduDashboard,adamwight/WikiEduDashboard,Wowu/WikiEduDashboard,WinnySilva/WikiEduDashboard,majakomel/WikiEduDashboard,MusikAnimal/WikiEduDashboard,WikiEducationFoundation/WikiEduDashboard,KarmaHater/WikiEduDashboard,majakomel/WikiEduDashboard,ragesoss/WikiEduDashboard,alpha721/WikiEduDashboard,MusikAnimal/WikiEduDashboard,feelfreelinux/WikiEduDashboard |
a55aa4abe3d8fbe6e4f3ddd9c6249eadae4297ab | .travis.yml | .travis.yml | language: d
sudo: false
d:
# order: latest DMD, oldest DMD, LDC/GDC, remaining DMD versions
# this way the overall test time gets cut down (GDC/LDC are a lot
# slower tham DMD, so they should be started early), while still
# catching most DMD version related build failures early
- ldc-1.0.0
- ldc-1.1.0
- dmd-2.070.2
- dmd-2.071.2
- dmd-2.072.2
- dmd-2.073.2
script: ./travis-ci.sh | language: d
sudo: false
d:
# order: latest DMD, oldest DMD, LDC/GDC, remaining DMD versions
# this way the overall test time gets cut down (GDC/LDC are a lot
# slower tham DMD, so they should be started early), while still
# catching most DMD version related build failures early
- ldc-1.0.0
- ldc-1.1.0
- dmd-2.070.2
- dmd-2.071.2
- dmd-2.072.2
- dmd-2.073.2
- dmd-beta
matrix:
allow_failures:
- d: dmd-beta
script: ./travis-ci.sh | Add build for dmd beta with allow failing | Add build for dmd beta with allow failing
| YAML | mit | gedaiu/fluent-asserts |
01d21301263cb3e38653e1118a171ac1e016945d | .travis.yml | .travis.yml | language: objective-c
xcode_project: Bond.xcodeproj
xcode_scheme: Bond
osx_image: xcode7
script: xcodebuild -project Bond.xcodeproj -scheme Bond -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.0' test && xcodebuild -project Bond.xcodeproj -scheme BondOSX -sdk macosx test
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: objective-c
xcode_project: Bond.xcodeproj
xcode_scheme: Bond
osx_image: xcode7
script:
- xcodebuild -project Bond.xcodeproj -scheme Bond -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.0' test
- xcodebuild -project Bond.xcodeproj -scheme BondOSX -sdk macosx test
after_success:
- bash <(curl -s https://codecov.io/bash)
| Accumulate test failures to display them at once | Accumulate test failures to display them at once | YAML | mit | AlexSeverinov/Bond,tonyarnold/Bond,ReactiveKit/Bond,SwiftBond/Bond,spire-inc/Bond,FiRiN59/Bond,AlexSeverinov/Bond,tonyarnold/Bond,SwiftBond/Bond,morizotter/Bond,FiRiN59/Bond,spire-inc/Bond,morizotter/Bond,ReactiveKit/Bond |
570c133887be035e3b1b7b06f4b529fa02c633e5 | circle.yml | circle.yml | machine:
node:
version: v5.7.1
test:
override:
- $(npm bin)/eslint --debug . --format tap | $(npm bin)/tap-xunit > ${CIRCLE_TEST_REPORTS}/lint.xml && test ${PIPESTATUS[0]} -eq 0
- $(npm bin)/babel-node test | $(npm bin)/tap-xunit > ${CIRCLE_TEST_REPORTS}/test.xml && test ${PIPESTATUS[0]} -eq 0
- $(npm bin)/babel-node $(npm bin)/isparta cover --report text --report lcov --verbose --dir ${CIRCLE_ARTIFACTS}/coverage --include '**/!(*-test).js' test/index.js
- REPORT_DIR=${CIRCLE_TEST_REPORTS} LOG_DIR=${CIRCLE_ARTIFACTS} npm run test:e2e -s
post:
- cat ${CIRCLE_ARTIFACTS}/coverage/lcov.info | $(npm bin)/codecov
| machine:
node:
version: v5.7.1
test:
override:
- $(npm bin)/eslint --debug . --format tap | $(npm bin)/tap-xunit > ${CIRCLE_TEST_REPORTS}/lint.xml && test ${PIPESTATUS[0]} -eq 0
- $(npm bin)/babel-node test | $(npm bin)/tap-xunit > ${CIRCLE_TEST_REPORTS}/test.xml && test ${PIPESTATUS[0]} -eq 0
- NODE_ENV=test $(npm bin)/babel-node $(npm bin)/isparta cover --report text --report lcov --verbose --dir ${CIRCLE_ARTIFACTS}/coverage test/index.js
- REPORT_DIR=${CIRCLE_TEST_REPORTS} LOG_DIR=${CIRCLE_ARTIFACTS} npm run test:e2e -s
post:
- cat ${CIRCLE_ARTIFACTS}/coverage/lcov.info | $(npm bin)/codecov
| Fix coverage generation in CI | Fix coverage generation in CI
| YAML | mit | nkbt/react-debounce-input,nkbt/react-page-click,nkbt/react-debounce-input,nkbt/react-component-template |
cf9b0ca783417909f76538a7feb9c5a8e4eba17d | .travis.yml | .travis.yml | language: python
branches:
only:
- master
- /^ci-.*$/
matrix:
include:
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
- python: 3.6
- python: 3.7
dist: xenial
sudo: true
install:
- pip install -U pip==18.0
- pip install pipenv
- pipenv install --dev --ignore-pipfile
before_script:
- make clean
- make check_pep8
script:
# Full test suite, incl. coverage
- make test
after_script:
- coveralls
| language: python
branches:
only:
- master
- /^ci-.*$/
matrix:
include:
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
- python: 3.6
- python: 3.7
dist: xenial
sudo: true
install:
- pip install -U pip==18.0
- pip install pipenv
- pipenv install --dev --ignore-pipfile
before_script:
- make clean
script:
# Full test suite, incl. coverage
- make test
- make check_pep8
after_script:
- coveralls
| Check pep8 style after tests | Enhancement: Check pep8 style after tests
Less important than tests, shouldn't block test execution if failed..
| YAML | mit | x10an14/overtime-calculator |
7b7377e4e9509077a46682b01790df3a6abd5136 | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
override:
- docker pull astrofrog/hyperion-ci:1.0
test:
override:
- ./.run_docker_tests.sh
| machine:
services:
- docker
dependencies:
override:
- docker pull astrofrog/hyperion-ci:1.0
checkout:
post:
- git submodule init
- git submodule update
test:
override:
- ./.run_docker_tests.sh
| Make sure we check out the submodule | Make sure we check out the submodule | YAML | bsd-2-clause | hyperion-rt/hyperion,hyperion-rt/hyperion,hyperion-rt/hyperion |
46d78c6b43220bf56068a403c4904dbacf9424d8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_install:
- sudo apt-get install libgmp-dev gfortran libblas-dev liblapack-dev
- pip install cython
- pip install pycddlib
install:
- python setup.py install
script:
- python -m nose
- cd examples
- for x in *.py; do python $x; done
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_install:
- sudo apt-get install libgmp-dev gfortran libblas-dev liblapack-dev
- pip install cython
- pip install pycddlib
- pip install networkx
- pip install pulp
install:
- python setup.py install
script:
- python -m nose
- cd examples
- for x in *.py; do python $x; done
| Install libraries required by examples | Install libraries required by examples
| YAML | bsd-3-clause | etonello/crnpy |
f13bf5e325312aabd71301406cc92f655f1abe66 | circle.yml | circle.yml | machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
override:
- bundle install
- docker info
- if [[ -e ~/docker/image.tar ]]; then docker load --input ~/docker/image.tar; fi
- docker build -t edwinvdgraaf/ruby-node-phantomjs .
- mkdir -p ~/docker; docker save edwinvdgraaf/ruby-node-phantomjs > ~/docker/image.tar
test:
override:
- bundle exec rspec spec --format progress:
timeout: 1200 # Compiling node.js takes a while
deployment:
hub:
tag: /v[0-9]+(\.[0-9]+)*/
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker push edwinvdgraaf/ruby-node-phantomjs
| machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
override:
- bundle install
- docker info
- if [[ -e ~/docker/image.tar ]]; then docker load --input ~/docker/image.tar; fi
- docker build -t edwinvdgraaf/ruby-node-phantomjs .
- mkdir -p ~/docker; docker save edwinvdgraaf/ruby-node-phantomjs > ~/docker/image.tar
test:
override:
- bundle exec rspec spec --format progress:
timeout: 1200 # Compiling node.js takes a while
deployment:
hub:
tag: /v[0-9]+(\.[0-9]+)*/
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker tag edwinvdgraaf/ruby-node-phantomjs edwinvdgraaf/ruby-node-phantomjs:$CIRCLE_TAG
- docker push edwinvdgraaf/ruby-node-phantomjs:$CIRCLE_TAG
| Tag docker instances based on taged version | Tag docker instances based on taged version
| YAML | mit | edwinvdgraaf/docker-ruby-node-phantomjs |
b500ed8c80daa2ddba31e2b998bcf7d2120bffe1 | circle.yml | circle.yml | machine:
node:
version: 0.10.28
python:
version: 3.4.1
services:
- postgresql
environment:
TEST_DATABASE_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test
dependencies:
override:
- pip install -r requirements-dev.txt
- npm install
- bower install
test:
override:
- isort --recursive --diff kuulemma tests && isort --recursive --check-only kuulemma tests
- flake8 .
- ./node_modules/.bin/gulp jshint
- py.test tests
- ./node_modules/.bin/gulp test-karma
- ./node_modules/.bin/gulp test-protractor
| machine:
node:
version: 0.10.28
python:
version: 3.4.1
services:
- postgresql
environment:
TEST_DATABASE_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test
dependencies:
override:
- pip install -r requirements-dev.txt
- npm install
- bower install
test:
override:
- isort --recursive --diff kuulemma tests && isort --recursive --check-only kuulemma tests
- flake8 .
- ./node_modules/.bin/gulp jshint
- py.test tests
- ./node_modules/.bin/gulp test-karma
- ./node_modules/.bin/gulp test-protractor
deployment:
production:
branch: master
commands:
- git remote add production dokku@185.20.136.244:kuulemispalvelu.hel.fi
- git push production master
| Deploy automatically on successful CI build | Deploy automatically on successful CI build
| YAML | agpl-3.0 | City-of-Helsinki/kuulemma,City-of-Helsinki/kuulemma,City-of-Helsinki/kuulemma,fastmonkeys/kuulemma,fastmonkeys/kuulemma,fastmonkeys/kuulemma |
0c055b96565fee345c4b830938663bc154df25e5 | circle.yml | circle.yml | machine:
php:
version: 5.6.14
test:
override:
- vendor/bin/pake phpcs
- vendor/bin/pake phpunit
| machine:
php:
version: 5.6.14
dependencies:
cache_directories:
- "vendor"
test:
override:
- vendor/bin/pake phpcs
- vendor/bin/pake phpunit
| Add Composers vendor folder to Circle's caching | Add Composers vendor folder to Circle's caching
| YAML | mit | mscharley/colourist |
28eeb3c4cdd41f69e8587ca7e2560fd4434e9740 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
# command to install dependencies
install:
- pip install -r requirements.txt
# command to run tests
script: python manage.py test
| language: python
python:
- "2.7"
env:
- TOLA_ERROR_LOG="error.log"
install:
- pip install -r requirements.txt
script: python manage.py test
| Add missing error log setting | Add missing error log setting
| YAML | apache-2.0 | toladata/TolaActivity,toladata/TolaActivity,toladata/TolaActivity,toladata/TolaActivity |
adb5514ea70403624a6a8901e99c225acece25ca | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- RAILS_ENV=test rake db:migrate > /dev/null 2>&1
| language: ruby
rvm:
- 1.9.3
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- RAILS_ENV=test bundle exec rake db:migrate > /dev/null 2>&1
| Use bundle exec for rake migrations in Travis | Use bundle exec for rake migrations in Travis
| YAML | mit | crowdint/crowdblog,chukitow/crowdblog,crowdint/crowdblog,crowdint/crowdblog,chukitow/crowdblog,crowdint/crowdblog,chukitow/crowdblog,chukitow/crowdblog |
15a759b9cd3e1c24ee2a9b2885c5963ade200f1c | circle.yml | circle.yml | machine:
environment:
ArtsyAPIClientSecret: 3a33d2085cbd1176153f99781bbce7c6
ArtsyAPIClientKey: e750db60ac506978fc70
HockeyProductionSecret: "-"
HockeyBetaSecret: "-"
MixpanelProductionAPIClientKey: "-"
MixpanelStagingAPIClientKey: "-"
MixpanelDevAPIClientKey: "-"
MixpanelInStoreAPIClientKey: "-"
ArtsyFacebookAppID: "-"
ArtsyTwitterKey: "-"
ArtsyTwitterSecret: "-"
ArtsyTwitterStagingKey: "-"
ArtsyTwitterStagingSecret: "-"
dependencies:
override:
- bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3 --without distribution
- make oss
- bundle exec pod install
cache_directories:
- vendor/bundle
- Pods
test:
pre:
- make ci
override:
- make test
| machine:
environment:
ArtsyAPIClientSecret: 3a33d2085cbd1176153f99781bbce7c6
ArtsyAPIClientKey: e750db60ac506978fc70
HockeyProductionSecret: "-"
HockeyBetaSecret: "-"
MixpanelProductionAPIClientKey: "-"
MixpanelStagingAPIClientKey: "-"
MixpanelDevAPIClientKey: "-"
MixpanelInStoreAPIClientKey: "-"
ArtsyFacebookAppID: "-"
ArtsyTwitterKey: "-"
ArtsyTwitterSecret: "-"
ArtsyTwitterStagingKey: "-"
ArtsyTwitterStagingSecret: "-"
dependencies:
override:
- bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3 --without distribution
- bundle exec pod install
cache_directories:
- vendor/bundle
- Pods
test:
pre:
- make ci
override:
- make test
| Remove old `make oss` step. | [CircleCI] Remove old `make oss` step.
| YAML | mit | ayunav/eigen,ichu501/eigen,1aurabrown/eigen,ashkan18/eigen,srrvnn/eigen,gaurav1981/eigen,ayunav/eigen,ayunav/eigen,ACChe/eigen,ACChe/eigen,mbogh/eigen,artsy/eigen,ppamorim/eigen,zhuzhengwei/eigen,ashkan18/eigen,srrvnn/eigen,gaurav1981/eigen,liduanw/eigen,ichu501/eigen,orta/eigen,gaurav1981/eigen,ppamorim/eigen,gaurav1981/eigen,foxsofter/eigen,1aurabrown/eigen,1aurabrown/eigen,xxclouddd/eigen,orta/eigen,zhuzhengwei/eigen,ayunav/eigen,Shawn-WangDapeng/eigen,TribeMedia/eigen,artsy/eigen,TribeMedia/eigen,neonichu/eigen,neonichu/eigen,liduanw/eigen,Havi4/eigen,artsy/eigen,Havi4/eigen,xxclouddd/eigen,TribeMedia/eigen,srrvnn/eigen,ACChe/eigen,foxsofter/eigen,TribeMedia/eigen,foxsofter/eigen,liduanw/eigen,Shawn-WangDapeng/eigen,srrvnn/eigen,gaurav1981/eigen,Shawn-WangDapeng/eigen,Havi4/eigen,foxsofter/eigen,ichu501/eigen,artsy/eigen,artsy/eigen,xxclouddd/eigen,ashkan18/eigen,neonichu/eigen,ichu501/eigen,1aurabrown/eigen,ppamorim/eigen,liduanw/eigen,mbogh/eigen,xxclouddd/eigen,ACChe/eigen,orta/eigen,ashkan18/eigen,artsy/eigen,liduanw/eigen,Havi4/eigen,ashkan18/eigen,TribeMedia/eigen,mbogh/eigen,zhuzhengwei/eigen,ppamorim/eigen,Shawn-WangDapeng/eigen,xxclouddd/eigen,ACChe/eigen,foxsofter/eigen,srrvnn/eigen,zhuzhengwei/eigen,Shawn-WangDapeng/eigen,neonichu/eigen,neonichu/eigen,mbogh/eigen,artsy/eigen,ichu501/eigen,ayunav/eigen,orta/eigen |
ef6526fcca9db16478aa14b7fe111f88c19e74f0 | .travis.yml | .travis.yml | language: python
sudo: required
dist: trusty
before_install:
- openssl aes-256-cbc -K $encrypted_a0717c12b42e_key -iv $encrypted_a0717c12b42e_iv -in gcp-travisci.json.enc -out gcp-travisci.json -d
- echo "deb http://packages.cloud.google.com/apt cloud-sdk-$(lsb_release -c -s) main" | sudo tee /etc/apt/sources.list.d/google-cloud-sdk.list
- wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo apt-get update -qq && sudo apt-get install google-cloud-sdk
- gcloud auth activate-service-account --key-file gcp-travisci.json
install:
- gcloud config set project project-kel
- ./scripts/ci/deps.sh
script:
- ./scripts/ci/build.sh
after_success:
- ./scripts/ci/deploy.sh
| language: python
sudo: required
dist: trusty
before_install:
- openssl aes-256-cbc -K $encrypted_a0717c12b42e_key -iv $encrypted_a0717c12b42e_iv -in gcp-travisci.json.enc -out gcp-travisci.json -d
- echo "deb http://packages.cloud.google.com/apt cloud-sdk-$(lsb_release -c -s) main" | sudo tee /etc/apt/sources.list.d/google-cloud-sdk.list
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3746C208A7317B0F
- sudo apt-get update -qq && sudo apt-get install google-cloud-sdk
- gcloud auth activate-service-account --key-file gcp-travisci.json
install:
- gcloud config set project project-kel
- ./scripts/ci/deps.sh
script:
- ./scripts/ci/build.sh
after_success:
- ./scripts/ci/deploy.sh
| Add working key for Google Cloud SDK | Add working key for Google Cloud SDK
| YAML | apache-2.0 | kelproject/kel-manifest,kelproject/kel-manifest |
ecf03bcbaaed2e6b535c7cbb0b26a2aff90b564e | circle.yml | circle.yml | machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 7
dependencies:
override:
- yarn
cache_directories:
- ~/.cache/yarn
test:
override:
- yarn test
| machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 7
dependencies:
override:
- yarn add ava tap-xunit --dev
cache_directories:
- ~/.cache/yarn
test:
override:
- mkdir -p $CIRCLE_TEST_REPORTS/reports
- ava --tap | tap-xunit > $CIRCLE_TEST_REPORTS/reports/ava.xml
| Enable test metadata for CircleCI | Enable test metadata for CircleCI
| YAML | mit | sgnh/alternate |
962c768342cc2f2dd33929f38fa09effd5cf50c7 | .travis.yml | .travis.yml | language: go
go:
- master
sudo: required
install: go get -v github.com/spf13/hugo
before_script:
- sudo pip install awscli
script:
- cd src
- hugo
deploy:
provider: s3
access_key_id: "$AWS_ACCESS_KEY_ID"
secret_access_key: "$AWS_SECRET_ACCESS_KEY"
bucket: "hoangpaul.com"
skip_cleanup: true
region: "ap-southeast-2"
upload-dir: src/public
after_deploy: |
aws configure set preview.cloudfront true && \
aws cloudfront create-invalidation --distribution-id "$AWS_CLOUDFRONT_ID" --paths /index.html /*
notifications:
email:
on_failure: always
| language: go
go:
- master
sudo: required
install: go get -v github.com/spf13/hugo
before_script:
- sudo pip install awscli
script:
- cd src
- hugo
deploy:
provider: s3
access_key_id: "$AWS_ACCESS_KEY_ID"
secret_access_key: "$AWS_SECRET_ACCESS_KEY"
bucket: "hoangpaul.com"
skip_cleanup: true
region: "ap-southeast-2"
upload-dir: src/public
after_deploy: |
aws configure set preview.cloudfront true && \
aws cloudfront create-invalidation --distribution-id "$AWS_CLOUDFRONT_ID" --paths "/index.html /*"
notifications:
email:
on_failure: always
| Add quotes to CF invalidation paths | Add quotes to CF invalidation paths
We don't want bash wildcard expansions.
| YAML | mit | HoangPaul/hoangpaul.com |
ec79f1f6763e097df152649353bea5f08ffa2023 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: python
python: 3.6
before_install:
- docker-compose -v
- docker -v
matrix:
include:
- name: Test
script: tox -e py36
- name: Black
script: tox -e black
- name: Basic Docker
script: sh tests/test_docker.sh
- name: Docker with Celery
script: sh tests/test_docker.sh use_celery=y
install:
- pip install tox
notifications:
email:
on_success: change
on_failure: always
| sudo: required
services:
- docker
language: python
python: 3.6
before_install:
- docker-compose -v
- docker -v
matrix:
include:
- name: Tox Test
script: tox -e py36
- name: Black template
script: tox -e black
- name: Basic Docker
script: sh tests/test_docker.sh
- name: Docker with Celery
script: sh tests/test_docker.sh use_celery=y
install:
- pip install tox
notifications:
email:
on_success: change
on_failure: always
| Rename test phases in Travis build matrix | Rename test phases in Travis build matrix
| YAML | bsd-3-clause | ad-m/cookiecutter-django,luzfcb/cookiecutter-django,ryankanno/cookiecutter-django,Parbhat/cookiecutter-django-foundation,pydanny/cookiecutter-django,trungdong/cookiecutter-django,ryankanno/cookiecutter-django,ad-m/cookiecutter-django,ad-m/cookiecutter-django,pydanny/cookiecutter-django,Parbhat/cookiecutter-django-foundation,Parbhat/cookiecutter-django-foundation,trungdong/cookiecutter-django,pydanny/cookiecutter-django,ryankanno/cookiecutter-django,luzfcb/cookiecutter-django,Parbhat/cookiecutter-django-foundation,luzfcb/cookiecutter-django,luzfcb/cookiecutter-django,ryankanno/cookiecutter-django,trungdong/cookiecutter-django,ad-m/cookiecutter-django,pydanny/cookiecutter-django,trungdong/cookiecutter-django |
d4d83d492129e40ea6b356e669d6fb965d63c153 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
services:
- mongodb | language: node_js
node_js:
- "0.11"
- "0.10"
services:
- mongodb
before_script:
- npm install -g grunt-cli | Install Grunt and create a test task | Install Grunt and create a test task
| YAML | mit | jlchereau/Phonegap.Express,jlchereau/Phonegap.Express |
10637cddb84922a21677f5451faf581b4dfeea63 | .travis.yml | .travis.yml | language: clojure
lein: lein2
before_script:
- psql -c 'create database staircasetest;' -U postgres
jdk:
- openjdk7
- oraclejdk7
- openjdk6
install:
- lein2 with-profile dev,travis deps
script: lein2 with-profile dev,travis test
| language: clojure
lein: lein2
before_script:
- psql -c 'create database staircasetest;' -U postgres
jdk:
- openjdk7
- oraclejdk7
- openjdk6
install:
- lein2 with-profile dev,travis deps
script:
- lein2 with-profile dev,travis pprint
- lein2 with-profile dev,travis test
| Print out the project for debugging issues with ci builds. | Print out the project for debugging issues with ci builds.
| YAML | bsd-2-clause | yochannah/staircase,joshkh/staircase,joshkh/staircase,yochannah/staircase,yochannah/staircase,joshkh/staircase |
fb2e316983a11324b0386165f3dfd90d52acb554 | .travis.yml | .travis.yml | language: php
php:
- '7.1'
- '7.2'
cache:
directories:
- ./vendor
install:
- composer install
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- travis_retry vendor/bin/coveralls -v
| language: php
php:
- '7.1'
- '7.2'
- '7.3'
- '7.4'
cache:
directories:
- ./vendor
install:
- composer install
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- travis_retry vendor/bin/coveralls -v
| Add support for php 7.3 and 7.4 | Add support for php 7.3 and 7.4 | YAML | apache-2.0 | vimeo/vimeo.php |
37d3b4aafc2d161bbee420338204eb470040d953 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs-v2"
- "iojs-v3"
before_install:
- curl -s https://raw.githubusercontent.com/lovell/sharp/master/preinstall.sh | sudo bash -
| language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs-v2"
- "iojs-v3"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- curl -s https://raw.githubusercontent.com/lovell/sharp/master/preinstall.sh | sudo bash -
| Update Travis CI env to use gcc v4.8 | Update Travis CI env to use gcc v4.8
| YAML | apache-2.0 | lovell/attention,lovell/attention,lovell/attention,lovell/attention,lovell/attention |
e8f67a2fb37ad879cf6926b65fd31aaac1ee9fcf | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- jruby-19mode
- rbx-19mode
| language: ruby
before_install:
- gem update --system
- gem install bundler --pre
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- jruby-19mode
- rbx-19mode
| Use latest bundler & rubygems | Use latest bundler & rubygems
| YAML | mit | fujimura/authentication |
b225004ecf5b06206aa3f0afb5bbcb41541d7869 | .travis.yml | .travis.yml | language: objective-c
os: osx
osx_image: xcode10.2
xcode_project: Bumbo.xcodeproj
xcode_scheme: BumboTests
cache:
directories:
- Carthage
before_install:
- brew update
- brew outdated carthage || brew upgrade carthage
- brew outdated swiftlint || brew upgrade swiftlint
- carthage bootstrap --verbose --platform iOS --cache-builds
script:
- swiftlint
- xcodebuild -project Bumbo.xcodeproj -scheme BumboTests -destination "platform=iOS Simulator,name=iPhone 6" -configuration Debug ONLY_ACTIVE_ARCH=YES -enableCodeCoverage YES test | xcpretty -c
after_success:
- bash <(curl -s https://codecov.io/bash) -cF ios -J Bumbo
| language: objective-c
os: osx
osx_image: xcode10.2
xcode_project: Bumbo.xcodeproj
xcode_scheme: BumboTests
cache:
directories:
- Carthage
before_install:
- brew update
- brew outdated carthage || brew upgrade carthage
- brew outdated swiftlint || brew upgrade swiftlint
- carthage bootstrap --platform iOS --cache-builds
script:
- swiftlint
- xcodebuild -project Bumbo.xcodeproj -scheme BumboTests -destination "platform=iOS Simulator,name=iPhone 6" -configuration Debug ONLY_ACTIVE_ARCH=YES -enableCodeCoverage YES test | xcpretty -c
after_success:
- bash <(curl -s https://codecov.io/bash) -cF ios -J Bumbo
| Reduce Carthage verbosity on Travis | Reduce Carthage verbosity on Travis
| YAML | mit | guilhermearaujo/Bumbo,guilhermearaujo/Bumbo,guilhermearaujo/Bumbo |
411fb73518eb5dc83a94dad507f382bbfcab880f | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 7.0
- hhvm
env:
- WP_VERSION=master
- WP_VERSION=4.2
matrix:
# Nice-to-haves for right now, but not worth considering the build "broken"
allow_failures:
- php: 7.0
- php: hhvm
before_script:
- composer install
- bash ./bin/install-package-tests.sh
- mkdir -p build/logs
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- ./vendor/bin/test-reporter
- ./vendor/bin/phpcs
- ./vendor/bin/behat
cache:
directories:
- vendor/
notifications:
email: false | language: php
php:
- 5.4
- 5.5
- 7.0
- hhvm
env:
- WP_VERSION=master
- WP_VERSION=4.2
global:
- WP_CLI_BIN_DIR=/tmp/wp-cli-phar
- WP_CLI_CONFIG_PATH=/tmp/wp-cli-phar/config.yml
matrix:
# Nice-to-haves for right now, but not worth considering the build "broken"
allow_failures:
- php: 7.0
- php: hhvm
before_script:
- composer install
- bash ./bin/install-package-tests.sh
- mkdir -p build/logs
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- ./vendor/bin/test-reporter
- ./vendor/bin/phpcs
- ./vendor/bin/behat
cache:
directories:
- vendor/
notifications:
email: false | Set global constants for Behat when running on Travis | Set global constants for Behat when running on Travis
| YAML | mit | stevegrunwell/revision-strike,stevegrunwell/revision-strike,stevegrunwell/revision-strike |
d7a9eb405835e59919cd58f3b6e116dcc29cd2a4 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
| before_script: gem install bundler --pre
rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
| Install bundler before running CI script | Install bundler before running CI script
| YAML | mit | gutenye/mtgox,sferik/mtgox |
8eb26c930289d5f1b2ae013a1665f360bb0f74ef | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=master-ubuntu-1404
- INSTANCE=slave-ubuntu-1404
- INSTANCE=master-ubuntu-1604
- INSTANCE=slave-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=master-ubuntu-1404
- INSTANCE=slave-ubuntu-1404
- INSTANCE=master-ubuntu-1604
- INSTANCE=slave-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env:
- UNIT_AND_LINT=1
- CHEF_LICENSE=accept
| Update for Chef 15 license agreement and Chef Workstation | Update for Chef 15 license agreement and Chef Workstation
| YAML | apache-2.0 | tas50/chef-smokeping,tas50/chef-smokeping,tas50/chef-smokeping |
1d26e236b917a975f3c37ff2ad4d7fb88359fa4d | .travis.yml | .travis.yml | language: python
python:
- '2.7'
sudo: false
cache:
directories:
- '~/.platformio'
env:
- PLATFORMIO_CI_SRC=examples/BareMinimum/BareMinimum.ino
- PLATFORMIO_CI_SRC=examples/MultipleDevices/MultipleDevices.ino
- PLATFORMIO_CI_SRC=examples/
install:
- pip install -U platformio
script:
- env
- echo $HOME
- echo $TRAVIS_BUILD_DIR
- ls -al $PWD
- platformio ci --board=uno --board=uno --board=huzzah --board=genuino101 --board=teensy31 --lib=. ${PLATFORMIO_CI_SRC}
| language: python
python:
- 2.7
sudo: false
cache:
directories:
- ~/.platformio
env:
- PLATFORMIO_CI_SRC=examples/BareMinimum/BareMinimum.ino
- PLATFORMIO_CI_SRC=examples/MultipleDevices/MultipleDevices.ino
install:
- pip install -U platformio
script:
- env
- echo $HOME
- echo $TRAVIS_BUILD_DIR
- ls -al $PWD
- platformio ci
--board=uno
--board=uno
--board=huzzah
--board=genuino101
--board=teensy31
--lib=. ${PLATFORMIO_CI_SRC}
| Remove extraneous ', add boards on multiple lines | Remove extraneous ', add boards on multiple lines
| YAML | apache-2.0 | 4-20ma/I2cDiscreteIoExpander,4-20ma/I2cDiscreteIoExpander |
fb85b42e546c990f1cf0df4246c5175be9d06146 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
script: npm run-script coveralls
| language: node_js
node_js:
- "0.12"
- "4"
- "5"
script: npm run-script coveralls
| Update Node.js version to tests | Update Node.js version to tests
* Remove Node.js v0.10 and io.js
* Add Node.js v4 and Node.js v5
| YAML | bsd-3-clause | okuryu/node-fastpay |
609479a8f9d4d0ee5076a06a0e8b90155942c0dc | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "short_open_tag = On" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- cd web/concrete
- travis_retry composer install --no-interaction
- cd ../../tests
- phpunit --version
script: phpunit
cache:
directories:
- vendor
- $HOME/.composer/cache
notifications:
email: false
| language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "short_open_tag = On" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- cd web/concrete
- travis_retry composer install --no-interaction
- cd ../../tests
- phpunit --version
script: phpunit
cache:
directories:
- vendor
- $HOME/.composer/cache
notifications:
email: false
| Remove PHP 5.4 from tests | Remove PHP 5.4 from tests
Former-commit-id: ec7e98e7997d22b5e090f9d3f4606a1542170dad
Former-commit-id: ad3519eed84ca812518230705d9f94d54af4f552 | YAML | mit | haeflimi/concrete5,a3020/concrete5,mlocati/concrete5,concrete5/concrete5,acliss19xx/concrete5,triplei/concrete5-8,concrete5/concrete5,a3020/concrete5,KorvinSzanto/concrete5,jaromirdalecky/concrete5,biplobice/concrete5,haeflimi/concrete5,mlocati/concrete5,concrete5/concrete5,olsgreen/concrete5,haeflimi/concrete5,hissy/concrete5,mlocati/concrete5,MrKarlDilkington/concrete5,MrKarlDilkington/concrete5,mainio/concrete5,triplei/concrete5-8,deek87/concrete5,triplei/concrete5-8,mainio/concrete5,rikzuiderlicht/concrete5,KorvinSzanto/concrete5,hissy/concrete5,mlocati/concrete5,KorvinSzanto/concrete5,acliss19xx/concrete5,acliss19xx/concrete5,olsgreen/concrete5,biplobice/concrete5,rikzuiderlicht/concrete5,haeflimi/concrete5,deek87/concrete5,mainio/concrete5,hissy/concrete5,concrete5/concrete5,biplobice/concrete5,olsgreen/concrete5,jaromirdalecky/concrete5,jaromirdalecky/concrete5,biplobice/concrete5,MrKarlDilkington/concrete5,hissy/concrete5,deek87/concrete5,rikzuiderlicht/concrete5,jaromirdalecky/concrete5,deek87/concrete5 |
160925ddf555d92dfa0197ae05becf26592fdd8b | .travis.yml | .travis.yml | language: php
php:
- 7.2
- 7.1
- 7.0
- nightly
matrix:
fast_finish: true
include:
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.3.*
- php: 5.6
env: SYMFONY_VERSION=3.4.*
- php: 5.6
env: COMPOSER_FLAGS="--prefer-stable"
- php: 5.6
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 7.0
env: TWIG_VERSION="^2.0"
- php: 7.1
env: SYMFONY_VERSION=4.0.*
allow_failures:
- php: nightly
- env: SYMFONY_VERSION=4.1.*@dev
before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/framework-bundle:${SYMFONY_VERSION}" --no-update; fi;
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/twig-bundle:${SYMFONY_VERSION}" --no-update; fi;
- if [ "$TWIG_VERSION" != "" ]; then composer require "twig/twig:${TWIG_VERSION}" --no-update; fi;
install: composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
script:
- vendor/bin/phpunit
| language: php
php:
- 7.2
- 7.1
- 7.0
- nightly
matrix:
fast_finish: true
include:
- php: 5.6
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.4.*
- php: 5.6
env: COMPOSER_FLAGS="--prefer-stable"
- php: 5.6
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 7.0
env: TWIG_VERSION="^2.0"
- php: 7.1
env: SYMFONY_VERSION=4.0.*
allow_failures:
- php: nightly
- env: SYMFONY_VERSION=4.1.*@dev
before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/framework-bundle:${SYMFONY_VERSION}" --no-update; fi;
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/twig-bundle:${SYMFONY_VERSION}" --no-update; fi;
- if [ "$TWIG_VERSION" != "" ]; then composer require "twig/twig:${TWIG_VERSION}" --no-update; fi;
install: composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
script:
- vendor/bin/phpunit
| Remove Travis tests with unmaintened Symfony version | Remove Travis tests with unmaintened Symfony version
| YAML | mit | jdecool/TwigConstantAccessorBundle |
db3d9893c24d47ada9df5b1c3502838f50372a80 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
| language: node_js
node_js:
- 0.10
before_script:
- npm install -g bower
- bower install
| Install Bower dependencies before Travis build. | Install Bower dependencies before Travis build.
| YAML | mit | nrcmedia/fixed-sticky,niksy/fixed-sticky,filamentgroup/fixed-sticky,Xephi/fixed-sticky,niksy/fixed-sticky,nrcmedia/fixed-sticky,filamentgroup/fixed-sticky,Xephi/fixed-sticky |
56daf160edca9c18db67c5ca1e84d497334307cb | .github/workflows/coding-standards.yml | .github/workflows/coding-standards.yml |
name: "Coding Standards"
on:
pull_request:
branches:
- "*.x"
push:
jobs:
coding-standards:
name: "Coding Standards"
uses: "doctrine/.github/.github/workflows/coding-standards.yml@1.4.0"
|
name: "Coding Standards"
on:
pull_request:
branches:
- "*.x"
push:
jobs:
coding-standards:
name: "Coding Standards"
uses: "doctrine/.github/.github/workflows/coding-standards.yml@1.4.1"
with:
php-version: "8.1"
| Use PHP 8.1 to run CS | Use PHP 8.1 to run CS
| YAML | mit | doctrine/mongodb-odm,doctrine/mongodb-odm |
c97e042dba01e8f633bcc8c8a23da3646abe118a | .travis.yml | .travis.yml | language: php
sudo: required
dist: trusty
cache:
directories:
- $HOME/.composer/cache
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
before_install:
- sudo apt-get install -qq python-numpy python-scipy
- pip install numpy
install:
- composer install --prefer-source --no-interaction
# PHPUnit
- ./vendor/bin/phpunit --version
before_script:
# Install Code climate reporter
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
# Run PHP unit tests
- ./vendor/bin/phpunit -c test/Unit/phpunit.xml.dist
# Run benchmark tests
- ./test/Benchmark/bench.sh
after_script:
# Code climate
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| language: php
sudo: required
dist: trusty
cache:
directories:
- $HOME/.composer/cache
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
before_install:
- sudo apt-get install -qq python-numpy python-scipy
- pip install numpy
install:
- composer install --prefer-source --no-interaction
# PHPUnit
- ./vendor/bin/phpunit --version
before_script:
# Install Code climate reporter
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
# Run PHP unit tests
- ./vendor/bin/phpunit -c test/Unit/phpunit.xml.dist
# Run benchmark tests
- ./test/Benchmark/bench.sh
after_script:
# Code climate
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| Add support for PHP 7.4 stable | Add support for PHP 7.4 stable | YAML | mit | sciphp/numphp,sciphp/numphp,sciphp/numphp,sciphp/numphp |
5b04227e04b08a6bcf8956ce0192eafc6c217f01 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
before_script:
- composer self-update
- composer install
script: vendor/bin/phpunit
| language: php
php:
- 7.1
- 7.2
- 7.3
before_script:
- composer self-update
- composer install
script: vendor/bin/phpunit
| Update tested PHP versions to PHP support cycle | Update tested PHP versions to PHP support cycle
| YAML | mit | jakezatecky/work-etc-client-php |
f3a2d67960c9ce871857889062a3648b306ec1eb | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
script: bundle exec rspec spec
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| Use the rspec rake task :apple: | Use the rspec rake task :apple:
| YAML | mit | NYULibraries/nyulibraries-deploy,NYULibraries/formaggio |
d952a3f20e9235cf415ff7d1e428201b026358c1 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
jdk:
- openjdk7
script: npm run-script test
notifications:
email:
- tomaz+travisci@tomaz.me
| language: node_js
node_js:
- 0.6
jdk:
- openjdk7
script: npm run-script test
notifications:
email:
- tomaz+travisci@tomaz.me
| Remove building on 0.8 for now. | Remove building on 0.8 for now.
| YAML | apache-2.0 | racker/node-zookeeper-client,racker/node-zookeeper-client |
5ee8246a5b53921c2ee13b48fbb7261337bf6214 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2.0
env:
- DB=mysql
- DB=postgresql
before_script:
- cp config/database.travis.yml config/database.yml
- cp config/application.example.yml config/application.yml
- mysql -e 'create database rails_starter_test'
- psql -c 'create database rails_starter_test' -U postgres
script:
- RAILS_ENV=test bundle exec rake --trace db:migrate
- RAILS_ENV=test bundle exec rake test
addons:
code_climate:
repo_token: 78354a901972cb16a67c4bb7076c57ab66f032376558b771963d6f2ef95030a4
notifications:
email: false
slack:
secure: C5mVOWuJfFpZwtZQigkATqvgQxXjmo1YnnGRvbsauSpDI9it362L1GsQ50duaSTN//8GfWMqG12bGY4oW8NOgvR/AzrRUD1aAz6ByLaEpb8TKfBbrO5sYSAZn4FRV39aCaAcW6ZuTKJxBmsHo2bdFFpRP07Vmi0bFRRNQO2n+sY= | language: ruby
cache: bundler
rvm:
- 2.2.0
env:
- DB=mysql
- DB=postgresql
before_script:
- cp config/database.travis.yml config/database.yml
- cp config/application.example.yml config/application.yml
- mysql -e 'create database rails_starter_test'
- psql -c 'create database rails_starter_test' -U postgres
script:
- RAILS_ENV=test bundle exec rake --trace db:migrate
- RAILS_ENV=test bundle exec rake test
addons:
code_climate:
repo_token:
secure: b6mrCBirtmuHlSsxhKBHEZsbw8StVaaqS7ocB7wYotw+OP8hElkpZb7/Yb7+aGCsClI822n+mhavlGh6QpFlXvT6ptgefyj5Z/Z8HmlOjH8fYmkxYQLTfQ8dzUq6XEngELhHPq9kMskfZgbSH9Q85r/4zapmdE2FJ4dJXNL9XvA=
notifications:
email: false
slack:
secure: C5mVOWuJfFpZwtZQigkATqvgQxXjmo1YnnGRvbsauSpDI9it362L1GsQ50duaSTN//8GfWMqG12bGY4oW8NOgvR/AzrRUD1aAz6ByLaEpb8TKfBbrO5sYSAZn4FRV39aCaAcW6ZuTKJxBmsHo2bdFFpRP07Vmi0bFRRNQO2n+sY= | Create new encrypted token for codeclimate | Create new encrypted token for codeclimate
| YAML | mit | lr-agenceweb/rails-starter,lr-agenceweb/rails-starter,lr-agenceweb/rails-starter,lr-agenceweb/rails-starter |
5061075f350fc692f04328fcedbed31530908bae | .travis.yml | .travis.yml | language: java
script: mvn verify
jdk:
- oraclejdk7
- oraclejdk8
cache:
directories:
- $HOME/.m2
env:
global:
- SONATYPE_USERNAME=JAZGbCvS
- secure: x6UWj3ICsut4u3HS0pFt3b5vxqT9gM+zFn9+3YgM01G9NPiM3yXtGCUsq3T3exajfsmH2ax2fd6vRDWv7wUIsyVCf9tJ84TRJuDFNU0Zkqo7doC6EaY2bgTrjREBpfWhDiIXtsHpU44yM/NTx9aTfW9Tm+GO4+lxymm6kb3IPpE=
after_success:
- "{ [[ $TRAVIS_BRANCH == 'master' ]] || [[ $TRAVIS_BRANCH == raven-*.x ]]; } && { python .travis/addServer.py; mvn clean deploy --settings $HOME/.m2/mySettings.xml; };"
| language: java
script: mvn verify
jdk:
- oraclejdk7
- oraclejdk8
cache:
directories:
- $HOME/.m2
env:
global:
- SONATYPE_USERNAME=JAZGbCvS
- secure: x6UWj3ICsut4u3HS0pFt3b5vxqT9gM+zFn9+3YgM01G9NPiM3yXtGCUsq3T3exajfsmH2ax2fd6vRDWv7wUIsyVCf9tJ84TRJuDFNU0Zkqo7doC6EaY2bgTrjREBpfWhDiIXtsHpU44yM/NTx9aTfW9Tm+GO4+lxymm6kb3IPpE=
after_success:
- "{ [[ $TRAVIS_BRANCH == 'master' ]] || [[ $TRAVIS_BRANCH == raven-*.x ]]; } && { python .travis/addServer.py; mvn clean deploy --settings $HOME/.m2/mySettings.xml; };"
| Fix indentation of the .m2 folder | Fix indentation of the .m2 folder
| YAML | bsd-3-clause | galmeida/raven-java,reki2000/raven-java6,galmeida/raven-java,buckett/raven-java,buckett/raven-java,littleyang/raven-java,littleyang/raven-java,reki2000/raven-java6 |
870a85eb0e7a605a206ec13d5219914b4b745249 | .travis.yml | .travis.yml | language: node_js
node_js:
- 6
sudo: false
matrix:
fast_finish: true
include:
- os: osx
osx_image: xcode8.2
- os: linux
dist: trusty
cache:
yarn: true
directories:
- node_modules
- "$HOME/.electron"
- "$HOME/.cache"
script:
- yarn test
- yarn build
| language: node_js
node_js:
- 6
sudo: false
matrix:
fast_finish: true
include:
- os: osx
osx_image: xcode8.2
- os: linux
dist: trusty
cache:
yarn: true
directories:
- node_modules
- "$HOME/.electron"
- "$HOME/.cache"
script:
- yarn test
- yarn build
notifications:
slack:
secure: XEpDeNPwlurfm7PAef1OzS+kCUIjF2In6WpoLL/1y/LN1uvQR0L8G+vRCbx4Fs3YgfN0+lDiOU/AwqFEvRmHPYalCb8iyupH7I1SxRWAGvDJdXVbslGu5WXI1NJan8zBrxVYTMEdZ8GglDWpd7oBymdP8TspoKABvKFDcgJZmoPcMBv07T+QhXzgUweDGlsmHv5CqoH0JwAHO2NBpEpe9hJo9G7n3U5+wEE7SU4FoOme8vgHkj28CLclyzwEPq5/+FMepNC5MA1NBf8fJoTCkCaytucjijfN4CQlHL1Bu9o9far8PX2AUhga2W+lM+tuzQc4SW3sMu/MwYVK0LHT+Xgk3L9WBZim4ZQykBrRCoBNvC6oVPVXPSnvO3Fo9PSBXvlXeqpgZmoj+C7tXo41Y+PqpDg6X/Y57+aTKAkQLPoD+kMHTsiPzHlkPCYEhptUq2ozmGhd5jv1MsYxTtv4KQ2Mbz1gHTd9T1rLs3BonuULGtqQvT+d8Gy2ShDAJD0e5tldkmxvzB/LzA116rIXzmmBJJeU5K0kc/CTrefdnbb76hEn36ucZxlEDGJtfuEzkHI3TlR/udZxmo3eRb8tJeXTLt6Y4P0mEf3rQ5zKVnKYdpIq12Yh8cP/7FiuH6VzecjEwJLi6USl0MHk4esea8ZdqL7CHAadUw6WAaBBg8Q=
| Enable to notify to slack on CI | Enable to notify to slack on CI
| YAML | mit | izumin5210/OHP,izumin5210/OHP |
70ec018c1188ae7b5732a25a01c39e4378b1d955 | .travis.yml | .travis.yml | sudo: false
language: node_js
cache:
directories:
- node_modules
branches:
only:
- master
notifications:
email: false
node_js:
- "node"
before_install:
- npm i -g npm@^2.0.0
before_script:
- npm prune
script:
- npm run eslint
- npm t
- npm run check-coverage
after_success:
- npm run report-coverage
- npm run semantic-release
| sudo: false
language: node_js
cache:
directories:
- node_modules
branches:
only:
- master
notifications:
email: false
node_js:
- "node"
before_install:
- npm i -g npm@^3.0.0
before_script:
- npm prune
script:
- npm run eslint
- npm t
- npm run check-coverage
after_success:
- npm run report-coverage
- npm run semantic-release
| Update npm version used for builds | chore(build): Update npm version used for builds
| YAML | mit | kentcdodds/publish-latest,kentcdodds/publish-latest |
363c99e599d94f47706856b39b5c6c29049a4b54 | .travis.yml | .travis.yml | # http://about.travis-ci.org/docs/user/build-configuration/
rvm:
- 1.9.3
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- rbx-2
before_install:
- curl -L https://github.com/kr/beanstalkd/archive/v1.9.tar.gz | tar xz -C /tmp
- cd /tmp/beanstalkd-1.9/
- make
- ./beanstalkd &
- cd $TRAVIS_BUILD_DIR
- gem update --system
- gem update bundler
matrix:
allow_failures:
- rvm: rbx-2
- rvm: 2.0.0
script:
- bundle exec rake test
gemfile: Gemfile
notifications:
recipients:
- nesquena@gmail.com
- therealdave.myron@gmail.com
| # http://about.travis-ci.org/docs/user/build-configuration/
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- rbx-2
before_install:
- curl -L https://github.com/kr/beanstalkd/archive/v1.9.tar.gz | tar xz -C /tmp
- cd /tmp/beanstalkd-1.9/
- make
- ./beanstalkd &
- cd $TRAVIS_BUILD_DIR
- gem update --system
- gem update bundler
matrix:
allow_failures:
- rvm: rbx-2
- rvm: 2.0.0
script:
- bundle exec rake test
gemfile: Gemfile
notifications:
recipients:
- nesquena@gmail.com
- therealdave.myron@gmail.com
| Add back 2.0 to builds tested | Add back 2.0 to builds tested | YAML | mit | nesquena/backburner |
e2c2de4b7b8968152497a91a7f661b32b0650bb9 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake appraisal:integration"
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- jruby-head
- rbx
- ree
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx
| language: ruby
script: "bundle exec rake appraisal:integration"
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- jruby-head
- rbx
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx
| Remove ree from Travis CI config | Remove ree from Travis CI config
| YAML | mit | cllns/country_select,peterpih/country_select,rposborne/country_select,scudco/country_select,dgilperez/country_select,dhinal41/country_select,stefanpenner/country_select |
dc82ecc78d898e868944a0fd540763c2a4856a6f | .travis.yml | .travis.yml | sudo: required
language: ruby
services:
- docker
before_install:
- docker build -t johntfoster/tadiga .
- docker run johntfoster/tadiga /bin/sh -c "cd /tadiga/build; make test"
script:
- make test
| sudo: required
language: ruby
services:
- docker
before_install:
- docker build -t johntfoster/tadiga .
script:
- docker run johntfoster/tadiga /bin/sh -c "cd /tadiga/build; make test"
| Move tests to script stage | Move tests to script stage
| YAML | apache-2.0 | johntfoster/TaDIgA,johntfoster/TaDIgA |
1b74b40438fc108773b8f6c14a1c887218cf9a80 | .travis.yml | .travis.yml | notifications:
email: false
language: python
python:
- "2.7"
# - "3.4"
sudo: false
before_install:
# Setup anaconda
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda env create --file environment.yml
- source activate py2_parcels
- conda install --yes python=$TRAVIS_PYTHON_VERSION sphinx
- pip install -e .
before_script: # configure a headless display to test plot generation
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
jobs:
include:
- script:
- flake8 parcels
- flake8 tests
- flake8 parcels/examples
- script:
- parcels_get_examples examples/
- py.test -v -s tests/
- py.test -v -s --nbval-lax examples/
- script:
- make linkcheck -C docs
- 'ALLOW_FAIURE=true'
| notifications:
email: false
language: python
python:
- "2.7"
# - "3.4"
sudo: false
before_install:
# Setup anaconda
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda env create --file environment.yml
- source activate py2_parcels
- conda install --yes python=$TRAVIS_PYTHON_VERSION sphinx
- pip install -e .
before_script: # configure a headless display to test plot generation
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
jobs:
include:
- script:
- flake8 parcels
- flake8 tests
- flake8 parcels/examples
- script:
- parcels_get_examples examples/
- py.test -v -s tests/
- py.test -v -s --nbval-lax examples/
- script:
- make linkcheck -C docs
env:
- 'ALLOW_FAIURE=true'
| Fix allow fail to be in env | Fix allow fail to be in env
| YAML | mit | OceanPARCELS/parcels,OceanPARCELS/parcels |
c6c9d7bb554fc800e9b17f71b2ad27a8bb53672e | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 7.1
env: CODING_STANDARD=true
- php: 7.1
env: PHPSTAN=true
- php: 7.1
env: PHPUNIT_FLAGS="--coverage-clover coverage.xml"
- php: 7.2
install:
- composer install --prefer-dist
before_script:
- git --version
script:
- vendor/bin/phpunit $PHPUNIT_FLAGS
# disable xdebug
- phpenv config-rm xdebug.ini || return 0
- if [[ $CODING_STANDARD != "" ]]; then composer check-cs; fi
- if [[ $PHPSTAN != "" ]]; then composer phpstan; fi
after_script:
# upload coverage.xml to Coveralls
- |
if [[ $PHPUNIT_FLAGS != "" ]]; then
wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar;
php coveralls.phar --verbose;
fi
notifications:
email: never
| language: php
matrix:
include:
- php: 7.1
env: COMPOSER_FLAGS=--prefer-lowest
- php: 7.1
env: CODING_STANDARD=true
- php: 7.1
env: PHPSTAN=true
- php: 7.1
env: PHPUNIT_FLAGS="--coverage-clover coverage.xml"
- php: 7.2
install:
- composer update --prefer-dist $COMPOSER_FLAGS
before_script:
- git --version
script:
- vendor/bin/phpunit $PHPUNIT_FLAGS
# disable xdebug
- phpenv config-rm xdebug.ini || return 0
- if [[ $CODING_STANDARD != "" ]]; then composer check-cs; fi
- if [[ $PHPSTAN != "" ]]; then composer phpstan; fi
after_script:
# upload coverage.xml to Coveralls
- |
if [[ $PHPUNIT_FLAGS != "" ]]; then
wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar;
php coveralls.phar --verbose;
fi
notifications:
email: never
| Add a test with lowest dependencies | Add a test with lowest dependencies
To be sure we cover all dependencies.
| YAML | mit | cpliakas/git-wrapper,cpliakas/git-wrapper |
deb02b429f1034626dbc4ac6856d06cccd33860f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
before_script:
- gem update bundler
| Fix Travis by updating bundler before testing. | Fix Travis by updating bundler before testing.
| YAML | mit | jjshoe/deb-s3,krobertson/deb-s3,krobertson/deb-s3,jjshoe/deb-s3,madebymany/deb-s3,madebymany/deb-s3,alexmreis/deb-s3,alexmreis/deb-s3 |
0bee6c6b871c23f9a703782b26c0d0388e94eea8 | .travis.yml | .travis.yml | language: php
cache:
directories:
- $COMPOSER_CACHE_DIR
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit --verbose --coverage-text
- ./vendor/bin/phpcs --standard=PSR1 -p --report=full --report-checkstyle=build/logs/checkstyle.xml src/ tests/
after_script:
- ./vendor/bin/test-reporter
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit --verbose --coverage-text
- ./vendor/bin/phpcs --standard=PSR1 -p --report=full --report-checkstyle=build/logs/checkstyle.xml src/ tests/
after_script:
- ./vendor/bin/test-reporter
| Remove cache, doesn't seem to speed it up | Remove cache, doesn't seem to speed it up
| YAML | mit | HippoPHP/Hippo |
9fb9e818c9f7e98be8483ebcc65ba7a129d784a6 | .travis.yml | .travis.yml | notifications:
slack:
on_success: never
on_failure: always
rooms:
- oicr:S9k4EowgQv9AnbCfEZHSzCsg
sudo: required
services:
- docker
language: java
jdk:
- oraclejdk8
install:
- docker version
- pip2.7 install --user cwl-runner
- docker pull commonworkflowlanguage/nodejs-engine
before_script:
- psql -c "create user dockstore with password 'dockstore' createdb;" -U postgres
- psql -c "ALTER USER dockstore WITH superuser;" -U postgres
- psql -c 'create database webservice_test with owner = dockstore;' -U postgres
script: mvn -B clean install -DskipITs=false
after_success:
- mvn -B clean -DskipITs=false cobertura:cobertura cobertura:cobertura-integration-test
coveralls:report
before_install:
- openssl aes-256-cbc -K $encrypted_8c393341f536_key -iv $encrypted_8c393341f536_iv
-in secrets.tar.enc -out secrets.tar -d
- tar xvf secrets.tar
| notifications:
slack:
on_success: never
on_failure: always
rooms:
- oicr:S9k4EowgQv9AnbCfEZHSzCsg
sudo: required
services:
- docker
language: java
jdk:
- oraclejdk8
install:
- docker version
- pip2.7 install --user cwl-runner
- docker pull commonworkflowlanguage/nodejs-engine
before_script:
- psql -c "create user dockstore with password 'dockstore' createdb;" -U postgres
- psql -c "ALTER USER dockstore WITH superuser;" -U postgres
- psql -c 'create database webservice_test with owner = dockstore;' -U postgres
script: mvn -B clean install -DskipITs=false -Pconfidential-tests
after_success:
- mvn -B clean -DskipITs=false cobertura:cobertura cobertura:cobertura-integration-test
coveralls:report
before_install:
- openssl aes-256-cbc -K $encrypted_8c393341f536_key -iv $encrypted_8c393341f536_iv
-in dockstore-integration-testing/src/test/resources/secrets.tar.enc -out dockstore-integration-testing/src/test/resources/secrets.tar -d
- tar xvf dockstore-integration-testing/src/test/resources/secrets.tar
| Use nested file location from integration test branch | Use nested file location from integration test branch
| YAML | apache-2.0 | ga4gh/dockstore,ga4gh/dockstore,ga4gh/dockstore |
e033eca58486e9d892f34443e67cbf4931ff3ae4 | .travis.yml | .travis.yml | # .travis.yml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
env:
- TRAITDB_PG_TEST_USER=postgres
- TEST_SUITE=units
- TEST_SUITE=functionals
script:
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- "bundle exec rake test:$TEST_SUITE"
before_script:
- psql -c 'create database traitdb_test' -U postgres
| # .travis.yml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
env:
- TRAITDB_PG_TEST_USER=postgres TEST_SUITE=units
- TRAITDB_PG_TEST_USER=postgres TEST_SUITE=functionals
script:
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- "bundle exec rake test:$TEST_SUITE"
before_script:
- psql -c 'create database traitdb_test' -U postgres
| Fix bad split of ENV vars | Fix bad split of ENV vars
| YAML | mit | NESCent/TraitDB,NESCent/TraitDB,NESCent/TraitDB |
96b266df51a787e2920be3ed1be6d9e3d9997e03 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- hhvm
- hhvm-nightly
before_install:
- composer self-update
install:
- composer update --prefer-source | language: php
php:
- 5.6
- 5.5
- hhvm
- hhvm-nightly
env:
matrix:
- PREFER_LOWEST="--prefer-lowest"
- PREFER_LOWEST=""
before_install:
- composer self-update
install:
- composer update --prefer-source $PREFER_LOWEST | Add Travis test for --prefer-lowest | Add Travis test for --prefer-lowest
| YAML | mit | dchesterton/image |
85cf16c5cb8040c6af39af756f4b7edd4c9d924f | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
- 3.5
- 3.7
- 3.8
- pypy
- pypy3
matrix:
include:
- python: 2.7
env: PYTEST_ADDOPTS='--cov mpmath'
- python: 3.6
env: PYTEST_ADDOPTS='--cov mpmath'
before_install:
- pip install -U --force-reinstall setuptools
install:
- pip install -U -e .[develop]
script:
# Guard against invalid escapes in strings, like '\s'.
- python -We:invalid -m compileall -f mpmath -q
- pycodestyle
- py.test
after_success: test -n "${PYTEST_ADDOPTS}" && codecov
notifications:
email: false
| language: python
python:
- 2.7
- 3.4
- 3.5
- 3.7
- 3.8
- 3.9-dev
- pypy
- pypy3
matrix:
include:
- python: 2.7
env: PYTEST_ADDOPTS='--cov mpmath'
- python: 3.6
env: PYTEST_ADDOPTS='--cov mpmath'
before_install:
- pip install -U --force-reinstall setuptools
install:
- pip install -U -e .[develop]
script:
# Guard against invalid escapes in strings, like '\s'.
- python -We:invalid -m compileall -f mpmath -q
- pycodestyle
- py.test
after_success: test -n "${PYTEST_ADDOPTS}" && codecov
notifications:
email: false
| Enable testing on CPython 3.9 | CI: Enable testing on CPython 3.9
| YAML | bsd-3-clause | fredrik-johansson/mpmath |
0c3226a461ae894b576d779d413fdb890623c110 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.10"
os:
- osx
- linux
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CODE_VERSION="1.5.3"
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
install:
- npm install
script:
- npm test --silent | language: node_js
node_js:
- "5.10"
os:
- osx
- linux
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
install:
- npm install
script:
- npm test --silent | Remove hard coded version from linux tests | Remove hard coded version from linux tests
| YAML | mit | HookyQR/VSCodeBeautify |
549f730d3a0ade84f3a4eb0e4b00afb24d152ba6 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.5
- 2.4
- 2.3
| language: ruby
sudo: false
rvm:
- 2.5
- 2.4
- 2.3
before_install: bundle config build.nokogiri --use-system-libraries
| Stop nokogiri wasting resources building libxml2. | Stop nokogiri wasting resources building libxml2.
| YAML | mit | fog/fog-dynect,glennpratt/fog-dynect |
eec6ac6c4dd824ea115ead2bce53e2b938c5cec9 | .travis.yml | .travis.yml | language: ruby
# Apparently sudo is required to test on Rubinius and JRuby-head
sudo: required
# See https://docs.travis-ci.com/user/languages/ruby/#Rubinius
dist: trusty
rvm:
# MRI
- ruby-head
- 2.7
- 2.6
- 2.5
- 2.4
- 2.3
- 2.2
- 2.1
- 1.9.3
- 1.8.7
- ree
# JRuby
- jruby-head
- jruby-9.2
- jruby-9.1
- jruby-9.0
# Rubinius
- rbx-3
# Truffleruby
- truffleruby-head
- truffleruby
- truffleruby-20.2.0
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: truffleruby-head
- rvm: rbx-3
fast_finish: true
| language: ruby
# Apparently sudo is required to test on Rubinius and JRuby-head
sudo: required
# See https://docs.travis-ci.com/user/languages/ruby/#Rubinius
dist: trusty
rvm:
# MRI
- ruby-head
- 2.7
- 2.6
- 2.5
- 2.4
- 2.3
- 2.2
- 2.1
- 1.9.3
- 1.8.7
- ree
# JRuby
- jruby-head
- jruby-9.2
- jruby-9.1
- jruby-9.0
# Truffleruby
- truffleruby-head
- truffleruby
- truffleruby-20.2.0
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: truffleruby-head
fast_finish: true
| Remove Rubinius from Travis CI, it doesn't work | Remove Rubinius from Travis CI, it doesn't work
Fixes #43
| YAML | mit | ms-ati/docile |
c1f70b8aa865d5fdd92bcd5bec9caa9d8b35da57 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "8"
- "10"
- "11"
- "12" | language: node_js
node_js:
- "8"
- "10"
- "12"
| Remove support for node 6.x and 11.x | Remove support for node 6.x and 11.x
| YAML | mit | lwmqn/mqtt-node |
492a7c326b91a2a1de8a5a9325e6ebf5632007be | .travis.yml | .travis.yml | # http://docs.travis-ci.com/user/languages/go/
language: go
go:
- 1.3
- 1.4.2
- 1.5
install: true
script: script/cibuild
notifications:
email: false
before_install:
- repo=`basename $PWD`; localDir=`dirname $PWD`; cfDir="`dirname $localDir`/github"
- if [[ "$localDir" != "$cfDir" ]]; then mv "$localDir" "$cfDir"; cd ../../github/$repo; export TRAVIS_BUILD_DIR=`dirname $TRAVIS_BUILD_DIR`/$repo; fi
| # http://docs.travis-ci.com/user/languages/go/
language: go
go:
- 1.5
install: true
script: script/cibuild
notifications:
email: false
before_install:
- repo=`basename $PWD`; localDir=`dirname $PWD`; cfDir="`dirname $localDir`/github"
- if [[ "$localDir" != "$cfDir" ]]; then mv "$localDir" "$cfDir"; cd ../../github/$repo; export TRAVIS_BUILD_DIR=`dirname $TRAVIS_BUILD_DIR`/$repo; fi
| Stop testing Go 1.3 and 1.4.2 | Stop testing Go 1.3 and 1.4.2 | YAML | mit | ryansimmen/git-lfs,andyneff/git-lfs,dakotahawkins/git-lfs,github/git-lfs,ryansimmen/git-lfs,ttaylorr/git-lfs,Jericho25/-git-lfs_miilkyway,bozaro/git-lfs,bozaro/git-lfs,bozaro/git-lfs,larsxschneider/git-lfs,dakotahawkins/git-lfs,larsxschneider/git-lfs,WillHipschman/git-lfs,ryansimmen/git-lfs,rubiojr/git-lfs,dakotahawkins/git-lfs,beni55/git-lfs,aleb/git-lfs,andyneff/git-lfs,Aorjoa/git-lfs,larsxschneider/git-lfs,beni55/git-lfs,aleb/git-lfs,ttaylorr/git-lfs,rubiojr/git-lfs,Jericho25/-git-lfs_miilkyway,andyneff/git-lfs,github/git-lfs,ttaylorr/git-lfs,WillHipschman/git-lfs,rubiojr/git-lfs,Jericho25/-git-lfs_miilkyway,WillHipschman/git-lfs,Aorjoa/git-lfs,Aorjoa/git-lfs,github/git-lfs,aleb/git-lfs,beni55/git-lfs |
02d45115c0733fa63963bbe91d785bd5e05851bd | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
| language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
| Add node 0.12, remove node 0.6 | Add node 0.12, remove node 0.6
| YAML | mit | mantoni/pingpong.js,mantoni/pingpong.js |
9fa4c2bfdd250ae64c1ec462f8276759d0c1ff3f | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.6
- 1.7
- 1.8
- 1.9
| language: go
sudo: false
go:
- 1.12
- 1.13
- 1.14
| Change used Go versions for builds on Travis to the most recent ones | Change used Go versions for builds on Travis to the most recent ones
| YAML | mit | andygrunwald/jitic |
0adddf419951a0cee1d3e32e7c615b976e867d3c | .travis.yml | .travis.yml | bundler_args: "--without debug"
script: spec/ci.sh
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- rbx-2.0
- ree
env:
- "CI_DB_ADAPTER=sqlite3"
- "CI_DB_ADAPTER=postgresql CI_DB_USERNAME=postgres"
- "CI_DB_ADAPTER=mysql"
notifications:
irc: "irc.freenode.org#railsadmin"
| bundler_args: "--without debug"
script: spec/ci.sh
rvm:
- 1.8.7
- 1.9.2
- rbx
- rbx-2.0
- ree
env:
- "CI_DB_ADAPTER=sqlite3"
- "CI_DB_ADAPTER=postgresql CI_DB_USERNAME=postgres"
- "CI_DB_ADAPTER=mysql"
notifications:
irc: "irc.freenode.org#railsadmin"
| Remove JRuby from CI matrix until jdbc-adapters are updated to support Active Record 3.1 | Remove JRuby from CI matrix until jdbc-adapters are updated to support Active Record 3.1
| YAML | mit | vincentwoo/rails_admin,jasnow/rails_admin,jcoleman/rails_admin,patleb/admineer,swipesense/rails_admin,Vinagility/rails_admin_old,crashlytics/rails_admin,impurist/rails_admin,markprzepiora-forks/rails_admin,soupmatt/rails_admin,junglefunkyman/rails_admin,laurelandwolf/rails_admin,wkirschbaum/rails_admin,ombulabs/rails_admin,coorasse/rails_admin,dmilisic/rails_admin,dinjas/rails_admin,jasnow/rails_admin,dmilisic/rails_admin,ubik86/rails_admin,viewthespace/rails_admin,ernestoe/rails_admin,quarkstudio/rails_admin,rubiety/rails_admin,ubik86/rails_admin,yakovenkodenis/rails_admin,lokalebasen/rails_admin,meghaarora42/rails_admin,onursarikaya/rails_admin,sogilis/rails_admin,Vinagility/rails_admin_old,yakovenkodenis/rails_admin,Vinagility/rails_admin_old,LevoLeague/rails_admin,widgetworks/rails_admin,lvexiao/magic_admin,kimquy/rails_admin_062,xinghao/rails_admin,dmitrypol/rails_admin,react2media/rails_admin,diowa/rails_admin,lokalebasen/rails_admin,sortlist/rails_admin,patleb/admineer,laurelandwolf/rails_admin,vanbumi/rails_admin,johanneskrtek/rails_admin,Versanity/ruby,ombulabs/rails_admin,zambot/rails_admin,FeipingHunag/admin,Furi/rails_admin,hut8/rails_admin,sortlist/rails_admin,engel/rails_admin,josedonizetti/rails_admin,aravindgd/rails_admin,GeorgeZhukov/rails_admin,rubiety/rails_admin,sferik/rails_admin,gdslink/rails_admin,coorasse/rails_admin,wkirschbaum/rails_admin,iangels/rails_admin,jemcode/rails_admin,junglefunkyman/rails_admin,ubik86/rails_admin,LevoLeague/rails_admin,viewthespace/rails_admin,soupmatt/rails_admin,Balaraju/rails_admin,DonCuponesInternet/rails_admin,allori/rails_admin,vincentwoo/rails_admin,mshibuya/rails_admin,ernestoe/rails_admin,WindStill/rails_admin,Versanity/ruby,ipmobiletech/rails_admin,igorkasyanchuk/rails_admin,zapnap/rails_admin,Furi/rails_admin,CodingZeal/rails_admin,cheerfulstoic/rails_admin,aravindgd/rails_admin,wkirschbaum/rails_admin,Exygy/rails_admin,sideci-sample/sideci-sample-rails_admin,dalpo/rails_admin,yakovenkodenis/rails_admin,VoroninNick/rails_admin_sigma,igorkasyanchuk/rails_admin,cob3/rails_admin,mshibuya/rails_admin,patleb/admineer,aquajach/rails_admin,rayzhng/rails_admin,vincentwoo/rails_admin,voyera/rails_admin,dmitrypol/rails_admin,swipesense/rails_admin,goodinc/rails_admin_for_mag,markprzepiora-forks/rails_admin,glooko/rails_admin,vanbumi/rails_admin,bf4/rails_admin,voyera/rails_admin,CPInc/rails_admin,glooko/rails_admin,zapnap/rails_admin,meghaarora42/rails_admin,mshibuya/rails_admin,lokalebasen/rails_admin,aliada-mx/rails_admin,ipmobiletech/rails_admin,cob3/rails_admin,aquajach/rails_admin,msobocin/rails_admin,sumitag/rails_admin,dwbutler/rails_admin,lvexiao/magic_admin,coorasse/rails_admin,quarkstudio/rails_admin,garytaylor/rails_admin,CPInc/rails_admin,amankatoch/rails_admin,glooko/rails_admin,widgetworks/rails_admin,sideci-sample/sideci-sample-rails_admin,ipmobiletech/rails_admin,viewthespace/rails_admin,aliada-mx/rails_admin,WindStill/rails_admin,PhilipCastiglione/rails_admin,onursarikaya/rails_admin,vanbumi/rails_admin,markprzepiora-forks/rails_admin,iangels/rails_admin,diowa/rails_admin,LevoLeague/rails_admin,meghaarora42/rails_admin,rubiety/rails_admin,jemcode/rails_admin,soupmatt/rails_admin,arturbrasil/rails_admin,cheerfulstoic/rails_admin,corbt/rails_admin,msobocin/rails_admin,dmilisic/rails_admin,JailtonSampaio/annotations_clone_rails_admin,Furi/rails_admin,johanneskrtek/rails_admin,CodingZeal/rails_admin,sortlist/rails_admin,sferik/rails_admin,msobocin/rails_admin,igorkasyanchuk/rails_admin,xinghao/rails_admin,VoroninNick/rails_admin_sigma,GeorgeZhukov/rails_admin,FeipingHunag/admin,PhilipCastiglione/rails_admin,olegantonyan/rails_admin,rayzhng/rails_admin,rayzhng/rails_admin,arturbrasil/rails_admin,onursarikaya/rails_admin,Exygy/rails_admin,dinjas/rails_admin,sumitag/rails_admin,engel/rails_admin,jcoleman/rails_admin,dalpo/rails_admin,zambot/rails_admin,sogilis/rails_admin,xinghao/rails_admin,hut8/rails_admin,dwbutler/rails_admin,laurelandwolf/rails_admin,diowa/rails_admin,voyera/rails_admin,goodinc/rails_admin_for_mag,amankatoch/rails_admin,corbt/rails_admin,allori/rails_admin,JailtonSampaio/annotations_clone_rails_admin,jasnow/rails_admin,olegantonyan/rails_admin,zapnap/rails_admin,gdslink/rails_admin,josedonizetti/rails_admin,aquajach/rails_admin,amankatoch/rails_admin,garytaylor/rails_admin,dwbutler/rails_admin,DonCuponesInternet/rails_admin,VoroninNick/rails_admin_sigma,hut8/rails_admin,ombulabs/rails_admin,GeorgeZhukov/rails_admin,Balaraju/rails_admin,zambot/rails_admin,lvexiao/magic_admin,iangels/rails_admin,gdslink/rails_admin,bf4/rails_admin,CPInc/rails_admin,johanneskrtek/rails_admin,olegantonyan/rails_admin,PhilipCastiglione/rails_admin,sferik/rails_admin,CodingZeal/rails_admin,inaka/rails_admin,JailtonSampaio/annotations_clone_rails_admin,jcoleman/rails_admin,bf4/rails_admin,inaka/rails_admin,arturbrasil/rails_admin,widgetworks/rails_admin,react2media/rails_admin,dmitrypol/rails_admin,aliada-mx/rails_admin,goodinc/rails_admin_for_mag,cob3/rails_admin,impurist/rails_admin,react2media/rails_admin,jemcode/rails_admin,Versanity/ruby,DonCuponesInternet/rails_admin,kimquy/rails_admin_062,josedonizetti/rails_admin,aravindgd/rails_admin,kimquy/rails_admin_062,dinjas/rails_admin,engel/rails_admin,cheerfulstoic/rails_admin,FeipingHunag/admin,crashlytics/rails_admin,corbt/rails_admin,ernestoe/rails_admin,impurist/rails_admin,allori/rails_admin,quarkstudio/rails_admin,Exygy/rails_admin,dinjas/rails_admin,junglefunkyman/rails_admin,sogilis/rails_admin,dalpo/rails_admin,gdslink/rails_admin,Balaraju/rails_admin,garytaylor/rails_admin |
c16adbeced281ff9c75328694f7af9678274eb00 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- development
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5'
branches:
only:
- master
- development
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 5 on Travis CI. | Test with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/kinesthetic,bigeasy/kinesthetic |
4bee95495be05ba183e2f5b68bc3e1c1249eace4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.4.0
script:
- bundle exec rspec
| language: ruby
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
script:
- bundle exec rspec
| Update ruby versions for CI | Update ruby versions for CI | YAML | mit | Barzahlen/Barzahlen-Ruby |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.