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 |
|---|---|---|---|---|---|---|---|---|---|
a161395df6cd596905dc4005973ea17611bbc3cd | .appveyor.yml | .appveyor.yml | version: "{build}"
build_script:
- cmd: |-
python -m virtualenv .v
.v\Scripts\pip.exe install -r requirements/dev.txt
.v\Scripts\python.exe manage.py migrate
| version: "{build}"
install:
- cmd: python -m pip install tox
build_script:
- cmd: python -m tox
| Use tox to run tests on Windows | Use tox to run tests on Windows
| YAML | unlicense | nott/next.filmfest.by,kinaklub/next.filmfest.by,nott/next.filmfest.by,kinaklub/next.filmfest.by,nott/next.filmfest.by,kinaklub/next.filmfest.by,kinaklub/next.filmfest.by,nott/next.filmfest.by |
c0d117d1a45dc24adbdffee5c2ab56b5008fa774 | .appveyor.yml | .appveyor.yml | version: 2.3.0.{build}
shallow_clone: true
image: Visual Studio 2017
platform: x64
cache:
- msvc\opt -> .appveyor.yml, deposit.mk, msvc\Makefile
- msvc\src -> .appveyor.yml, deposit.mk, msvc\Makefile
- msvc\tmp -> .appveyor.yml, deposit.mk, msvc\Makefile
- msvc\var -> .appveyor.yml, deposit.mk, msvc\Makefil... | version: 2.3.0.{build}
shallow_clone: true
image: Visual Studio 2017
platform: x64
cache:
- msvc\src -> .appveyor.yml, deposit.mk, msvc\Makefile
install:
- set PATH=C:\Program Files (x86)\WiX Toolset v3.11\bin;%PATH%
- 'C:\cygwin64\setup-x86_64.exe -d -n -N -q -P m4,make,patch,tar,unzip,wget'
build_script:
... | Rebuild externals instead of cache | Rebuild externals instead of cache
| YAML | mit | flintproject/Flint,flintproject/Flint |
42c6b9553afb622081f345ac6e3edba151e397c6 | .appveyor.yml | .appveyor.yml | version: 1.0.{build}
image: Visual Studio 2017
platform: x64
configuration: Debug
shallow_clone: true
clone_depth: 1
install:
- cmd: git submodule update --init --recursive
- cmd: cmake -G "Visual Studio 14 2015 Win64"
build:
project: ab.sln
parallel: true
verbosity: minimal
test_script:
- cmd: mkdir %TEST_... | version: 1.0.{build}
image: Visual Studio 2017
platform: x64
configuration: Debug
shallow_clone: true
clone_depth: 1
before_build:
- cmd: git submodule update --init --recursive
- cmd: cmake -G "Visual Studio 14 2015 Win64"
build:
project: ab.sln
parallel: true
verbosity: minimal
test_script:
- cmd: mkdir %... | Move install commands to before_build | Move install commands to before_build
Signed-off-by: Robert Young <42c59959a3f4413d6a1b4d7b4f99db457d199e49@gmail.com>
| YAML | apache-2.0 | ab-vm/ab,ab-vm/ab,ab-vm/ab,ab-vm/ab,ab-vm/ab |
50ece785974ced8ecd100dc5541a54df0034fb5a | .eslintrc.yml | .eslintrc.yml | env:
browser: true
es6: true
node: true
extends:
- eslint:recommended
- plugin:react/recommended
parserOptions:
sourceType: module
ecmaFeatures:
jsx: true
plugins:
- react
root: true
rules:
react/jsx-uses-react: warn
react/jsx-uses-vars: warn
react/no-find-dom-node: warn # TODO: change to... | env:
browser: true
es6: true
node: true
extends:
- eslint:recommended
- plugin:react/recommended
parserOptions:
sourceType: module
ecmaFeatures:
jsx: true
plugins:
- react
root: true
rules:
react/jsx-uses-react: warn
react/jsx-uses-vars: warn
react/no-deprecated: warn # TODO: change to "e... | Change a couple ESLint errors to warnings to appease the CI gods | Change a couple ESLint errors to warnings to appease the CI gods
| YAML | mpl-2.0 | mozilla-services/pageshot,fzzzy/pageshot,mozilla-services/screenshots,mozilla-services/screenshots,fzzzy/pageshot,fzzzy/pageshot,mozilla-services/pageshot,mozilla-services/pageshot,mozilla-services/screenshots,mozilla-services/pageshot,fzzzy/pageshot,mozilla-services/screenshots |
72d3359ce59192d02738239395751dd13c6ccd76 | actions/chains/rpvlan_process_new_mac_auth_failure_chain.yaml | actions/chains/rpvlan_process_new_mac_auth_failure_chain.yaml | ---
chain:
-
name: "send_cli_template"
ref: "campus_ztp.send_cli_template"
parameters:
device: "{{ip}}"
template: "icx_vlan_update"
variables: "{\"commit\":\"true\",\"port\":\"{{port}}\",\"ap_name\":\"{{ap_name}}\"}"
on-success: "ruckus_controller_send_cli_template"... | ---
chain:
-
name: "send_cli_template"
ref: "campus_ztp.send_cli_template"
parameters:
device: "{{ip}}"
template: "icx_vlan_update"
variables: "{\"commit\":\"true\",\"port\":\"{{port}}\",\"ap_name\":\"{{ap_name}}\"}"
on-success: "ruckus_controller_send_cli_template"... | Update DB on failure too | Update DB on failure too
| YAML | apache-2.0 | pjimmybrcd/campus_ztp_nps,pjimmybrcd/campus_ztp_nps |
98bbadb5670b838a76a61b3fed6e615bc71b8de2 | lib/ansible/modules/extras/.travis.yml | lib/ansible/modules/extras/.travis.yml | sudo: false
language: python
addons:
apt:
sources:
- deadsnakes
packages:
- python2.4
script:
- python2.4 -m compileall -fq -x 'cloud/|monitoring/zabbix.*\.py|/layman.py|/maven_artifact.py|clustering/consul.*\.py' .
| sudo: false
language: python
addons:
apt:
sources:
- deadsnakes
packages:
- python2.4
script:
- python2.4 -m compileall -fq -x 'cloud/|monitoring/zabbix.*\.py|/layman.py|/maven_artifact.py|clustering/consul.*\.py' .
- python -m compileall -fq .
| Add py27 compileall to test all modules, specifically for syntax errors | Add py27 compileall to test all modules, specifically for syntax errors
| YAML | mit | thaim/ansible,thaim/ansible |
7faa7e0e2f4d83468274fb2c643bb0a1c90ac99e | examples/cron/cronjob.yaml | examples/cron/cronjob.yaml | apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: hello
spec:
schedule: "*/1 * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: hello
image: busybox
args:
- wget
- --spider
- el--cron-listene... | apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: hello
spec:
schedule: "*/1 * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: hello
image: busybox
args:
- wget
- --spider
- el-cron-listener... | Update cron example with new EventListener prefix. | Update cron example with new EventListener prefix.
The EventListener prefix was updated in https://github.com/tektoncd/triggers/commit/ecd97356c856ad73499fb383ae4ed8010fe48ee0, which broke this example. This updates the service name to match the change. | YAML | apache-2.0 | tektoncd/triggers,tektoncd/triggers |
930b24f8e063232fb9f1adb32bd4cbb437b34f68 | config/genomes/GRCh37-resources.yaml | config/genomes/GRCh37-resources.yaml | version: 5
55iases:
human: true
snpeff: GRCh37
ensembl: human
variation:
dbsnp: ../variation/dbsnp_138.vcf
train_hapmap: ../variation/hapmap_3.3.vcf
train_1000g_omni: ../variation/1000G_omni2.5.vcf
train_indels: ../variation/Mills_and_1000G_gold_standard.indels.vcf
cosmic: ../variation/cosmic-v67_2013... | version: 6
aliases:
human: true
snpeff: GRCh37
ensembl: human
variation:
dbsnp: ../variation/dbsnp_138.vcf
train_hapmap: ../variation/hapmap_3.3.vcf
train_1000g_omni: ../variation/1000G_omni2.5.vcf
train_indels: ../variation/Mills_and_1000G_gold_standard.indels.vcf
cosmic: ../variation/cosmic-v67_2013... | Fix typo in GRCh37 update for dbSNP 138 | Fix typo in GRCh37 update for dbSNP 138
| YAML | mit | verdurin/bcbio-nextgen,lpantano/bcbio-nextgen,hjanime/bcbio-nextgen,SciLifeLab/bcbio-nextgen,lbeltrame/bcbio-nextgen,Cyberbio-Lab/bcbio-nextgen,lbeltrame/bcbio-nextgen,biocyberman/bcbio-nextgen,SciLifeLab/bcbio-nextgen,verdurin/bcbio-nextgen,mjafin/bcbio-nextgen,Cyberbio-Lab/bcbio-nextgen,chapmanb/bcbio-nextgen,mjafin/... |
166ed3443114d0487132a05fbd51c47ad694c114 | .github/workflows/ccpp.yml | .github/workflows/ccpp.yml | name: C/C++ CI
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: apt update
run: sudo apt update
- name: apt
run: sudo apt install ninja-build lua5.1 pasmo libz80ex-dev flex libbsd-dev libreadline-dev bison binutils-arm-linux-gnueabihf bi... | name: C/C++ CI
on: [push]
jobs:
build-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: apt update
run: sudo apt update
- name: apt
run: sudo apt install ninja-build lua5.1 pasmo libz80ex-dev flex libbsd-dev libreadline-dev bison binutils-arm-linux-gnueabihf bin... | Upgrade the CI system to Ubuntu Focal (which has 64tass in it). | Upgrade the CI system to Ubuntu Focal (which has 64tass in it).
| YAML | bsd-2-clause | davidgiven/cowgol,davidgiven/cowgol |
99ad822cce2aef9ac6bbcdec0c335f2e958e17a3 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses... | name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses... | Bump actions/setup-java from 2 to 3 | Bump actions/setup-java from 2 to 3
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2 to 3.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/setup-java
depe... | YAML | apache-2.0 | ilikeorangutans/omf |
f171ebfd4c227bfa4e14e81c9c75d2832762de8a | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11.0.3
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-... | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Number of commits to fetch. 0 indicates all history.
# jgit task nested in customBuild.xml fails without history.
fetch-depth: '0'
- name: Set up JDK 11
uses: actions/setup-java@v1... | Replace unstable Azure Pipeline builds with Github actions. | Replace unstable Azure Pipeline builds with Github actions.
Github's caching task seems better.
[Build][Github]
| YAML | mit | lemmy/tlaplus,tlaplus/tlaplus,lemmy/tlaplus,lemmy/tlaplus,tlaplus/tlaplus,lemmy/tlaplus,tlaplus/tlaplus,tlaplus/tlaplus |
a8288868f3b151f53a849de260fb1660202f993d | .github/workflows/main.yml | .github/workflows/main.yml | name: Main
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup bazel
uses: jwlawson/actions-setup-bazel@v1
with:
bazel-version: '4.2.0'
- name: Build
run: bazel build //waterfall/golang/serve... | name: Main
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup bazel
uses: jwlawson/actions-setup-bazel@v1
with:
bazel-version: '4.2.0'
- name: Build x86
run: bazel build //waterfall/golang/s... | Add all waterfall binaries to release | Add all waterfall binaries to release | YAML | apache-2.0 | google/devx-tools,google/devx-tools |
d7b251fde99df613c76b4993fa38947bf92c0bf8 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: turtlequeue/setup-babashka@v1.3.0
with:
babashka-version: 0.8.1
- uses: actions/checkout@v2
- name: Run tests
run: bb run test
| name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: turtlequeue/setup-babashka@v1.3.0
with:
babashka-version: 0.10.163
- uses: actions/checkout@v2
- name: Run tests
run: bb run test
| Update CI to use babashka 0.10.163 | Update CI to use babashka 0.10.163
| YAML | mit | Quantisan/docker-clojure |
582fdb24efa2959f61510536cad70abb0e72cc2b | .github/workflows/main.yml | .github/workflows/main.yml | ---
name: justbases CI
# yamllint disable-line rule:truthy
on:
push:
branches: [master]
pull_request:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# MANDATORY CHECKS THAT USE TOX
tox-checks:
strategy:
matrix:
task: [... | ---
name: justbases CI
# yamllint disable-line rule:truthy
on:
push:
branches: [master]
pull_request:
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# MANDATORY CHECKS THAT USE TOX
tox-checks:
strategy:
matrix:
task: [... | Update current development environment to Fedora 36 | Update current development environment to Fedora 36
Signed-off-by: Bryan Gurney <94498243b15882748b18aec9e6dc02da713818c8@redhat.com>
| YAML | lgpl-2.1 | mulkieran/justbases |
8e2a554c381f05e0469b493501700bd8e8d19251 | .github/workflows/main.yml | .github/workflows/main.yml | name: main
on:
- pull_request
- push
jobs:
main:
name: '${{matrix.node}} on ${{matrix.os}}'
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: ${{matrix.node}}
- run: npm install -g npm
- run: n... | name: main
on:
- pull_request
- push
jobs:
main:
name: '${{matrix.node}} on ${{matrix.os}}'
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node}}
- run: npm install -g npm@7 # See: <https://gith... | Fix Node in Actions on Windows | Fix Node in Actions on Windows
Closes GH-280.
Reviewed-by: Titus Wormer <5a19dbfdb793ef6d212461b3c03b23ad19ae3ed1@gmail.com> | YAML | mit | wooorm/mdast-lint |
0ea8ae93c60c069ec46148efffcf17b22a741f55 | .github/workflows/main.yml | .github/workflows/main.yml | name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matri... | name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 15.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{... | Add versions to github workflows | Add versions to github workflows
| YAML | mit | fitnr/sqlite-json |
1510d46a3b697be86c618ffa332f8153a32e927f | .github/workflows/main.yml | .github/workflows/main.yml | name: Build & Test
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Build with Maven
env:
... | name: Build & Test
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 10, 11 ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
java-version: ${{... | Add more java versions for github actions | Add more java versions for github actions
| YAML | mit | detectlanguage/detectlanguage-java |
fca944f5e40477cc956248514b8c7c73d46e58a4 | .github/workflows/ruby.yml | .github/workflows/ruby.yml | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... | Remove Ruby 3.1 from test matrix | Remove Ruby 3.1 from test matrix
Ruby 3.1 is not yet supported. | YAML | mit | electric-feel/i18n-backend-side_by_side |
d642b527a6dc8ea7279d49566ed30f39a144aa70 | .github/workflows/ruby.yml | .github/workflows/ruby.yml | name: Ruby
on:
push:
schedule:
- cron: '0 0 1 * *' # at 00:00 on the 1st of every month
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest ]
ruby: [ 2.4, 2.5, 2.6, 2.7, '3.0', ruby-head, jruby, truffleruby ]
exclude:
- os: wind... | name: Ruby
on:
push:
schedule:
- cron: '0 0 1 * *' # at 00:00 on the 1st of every month
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest ]
ruby: [ 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, ruby-head, jruby, truffleruby ]
exclude:
- os:... | Test Ruby 3.1.0 Preview 1 | Test Ruby 3.1.0 Preview 1
| YAML | mit | dentarg/dyno_metadata |
44e646304178a387cd0034d372b4ec05a94f674c | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on: push
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu, macOS, windows]
node: [8, 10, 12, 14, 16, 17]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
cache: ... | name: Test
on: push
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu, macOS, windows]
node: [8, 10, 12, 14, 16, 17]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: ... | Upgrade actions steps in workflow | Upgrade actions steps in workflow
| YAML | mit | testdouble/scripty,testdouble/scripty |
2cd3d64f1f903dc0cb60a9fac13194dce922adef | .github/workflows/test.yml | .github/workflows/test.yml | jobs:
build:
name: Test Go ${{ matrix.go }}
runs-on: ubuntu-20.04
strategy:
matrix:
go: ['1.17', '1.16']
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go test ./...
| on: [push, pull_request]
name: Test
jobs:
test:
name: Test Go ${{ matrix.go }}
runs-on: ubuntu-20.04
strategy:
matrix:
go: ['1.17', '1.16']
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go ... | Define event triggers for GH actions | Define event triggers for GH actions
| YAML | apache-2.0 | russellhaering/goxmldsig,russellhaering/goxmldsig |
ed4471addc725bc5ecd6e6ceb2fcb1c3df7a8ab4 | ansible/roles/openzfs.ci-server/tasks/user.yml | ansible/roles/openzfs.ci-server/tasks/user.yml | ---
- name: create user group
group:
name: ubuntu
system: no
- name: create user
user:
name: ubuntu
group: ubuntu
shell: /bin/bash
home: /home/ubuntu
system: no
- name: set home directory permissions
file:
path: /home/ubuntu
state: directory
owner: ubuntu
group: ubunt... | ---
- name: create user group
group:
name: ubuntu
system: no
- name: create user
user:
name: ubuntu
group: ubuntu
shell: /bin/bash
home: /home/ubuntu
system: no
- name: set home directory permissions
file:
path: /home/ubuntu
state: directory
owner: ubuntu
group: ubunt... | Enable SSH access to Jenkins master for pzakha | Enable SSH access to Jenkins master for pzakha
| YAML | apache-2.0 | prakashsurya/openzfs-ci,openzfs/openzfs-ci,openzfs/openzfs-ci,prakashsurya/openzfs-ci,prakashsurya/openzfs-ci,openzfs/openzfs-ci |
8b223453862f7cce7e13ed84aad8449d78d1dac9 | .appveyor.yml | .appveyor.yml | clone_depth: 10
version: "{build}"
environment:
matrix:
- NODEJS_VERSION: "6"
PLATFORM: x64
- NODEJS_VERSION: "8"
PLATFORM: x64
- NODEJS_VERSION: "10"
PLATFORM: x64
install:
- ps: Install-Product node $env:NODEJS_VERSION $env:PLATFORM
- npm install
build: off
test_script:
- no... | clone_depth: 10
version: "{build}"
environment:
PLATFORM: x64
matrix:
- NODEJS_VERSION: "6"
- NODEJS_VERSION: "8"
- NODEJS_VERSION: "10"
install:
- ps: Install-Product node $env:NODEJS_VERSION $env:PLATFORM
- npm install
build: off
test_script:
- node --version
- npm --version
- java -ver... | Move `PLATFORM` var to the global matrix since it's common. | Move `PLATFORM` var to the global matrix since it's common.
| YAML | mit | jzaefferer/grunt-html,jzaefferer/grunt-html,jzaefferer/grunt-html |
64aa5d882e8142c3a3ba6778a31dbf180c9e8712 | .appveyor.yml | .appveyor.yml | configuration:
- Debug
- Release
environment:
matrix:
- generator: "Visual Studio 14 2015"
- generator: "Visual Studio 14 2015 Win64"
- generator: "Visual Studio 10 2010"
- generator: "Visual Studio 10 2010 Win64"
- generator: "MinGW Makefiles"
dialect: mingw
- generator: "MinGW Mak... | configuration:
- Debug
- Release
environment:
matrix:
- generator: "Visual Studio 14 2015"
- generator: "Visual Studio 14 2015 Win64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
generator: "Visual Studio 15 2017 Win64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
generator:... | Remove VS2010, add VS2017 from CI | Remove VS2010, add VS2017 from CI
| YAML | mit | SergiusTheBest/exceptxx |
7ac208f67074fa152b91420b172eedd14da4f311 | data/Darwin.yaml | data/Darwin.yaml | ---
git::configdir: "%{::boxen::config::configdir}/git"
git::package: 'boxen/brews/git'
git::version: '1.8.4-boxen2'
git::credentialhelper: "%{::boxen::config::repodir}/script/boxen-git-credential"
git::global_credentialhelper: "%{boxen::config::home}/bin/boxen-git-credential"
git::global_excludesfile: "%{hiera('git:... | ---
git::configdir: "%{::boxen::config::configdir}/git"
git::package: 'boxen/brews/git'
git::version: '2.0.0-boxen1'
git::credentialhelper: "%{::boxen::config::repodir}/script/boxen-git-credential"
git::global_credentialhelper: "%{boxen::config::home}/bin/boxen-git-credential"
git::global_excludesfile: "%{hiera('git:... | Define the right version on the hiera data | Define the right version on the hiera data
| YAML | mit | halyard/puppet-git,RallySoftware/boxen-git,RallySoftware/boxen-git,boxen/puppet-git,boxen/puppet-git,rhoml/puppet-git,rhoml/puppet-git,mavant/puppet-git,mavant/puppet-git |
0db6d7ae57c854abc06dd5516d312027b27e511e | shippable.yml | shippable.yml | language: python
env:
- PHASE="test"
- PHASE="syntax"
- PHASE="docs"
build:
ci:
- pip install git+ssh://git@github.com/RedHatInsights/insights-archive.git#master
- pip install -e .[develop]
- mkdir -p shippable/testresults shippable/codecoverage
- if [ $PHASE == "test" ]; then py.test ... | language: python
env:
- PHASE="test"
- PHASE="syntax"
- PHASE="docs"
build:
ci:
- pip install -e .
- pip install git+ssh://git@github.com/RedHatInsights/insights-archive.git#master
- pip install -e .[develop]
- mkdir -p shippable/testresults shippable/codecoverage
- if [ $PHASE == ... | Install runtime before archive tool | Install runtime before archive tool
This is annoying, but we have to install this package (with its runtime
deps) before the archive tool because it depends on insights-core. Then
install the development deps, which depend on the archive tool.
| YAML | apache-2.0 | RedHatInsights/insights-core,RedHatInsights/insights-core |
0e1aebcffac6d95f10464f0bd82eaa44e6286361 | modules/hammerspoon/commands/setup.yml | modules/hammerspoon/commands/setup.yml | ---
- name: Run task dependencies for install Hammerspoon
include_tasks: "{{ playbook_dir }}/lib/dependencies/{{ item }}.yml"
loop:
- os_is_mac
- homebrew_is_installed
- block:
- name: Ensure Hammerspoon is installed and up to date
homebrew_cask:
name: hammerspoon
state: upgraded
... | ---
- name: Run task dependencies for install Hammerspoon
include_tasks: "{{ playbook_dir }}/lib/dependencies/{{ item }}.yml"
loop:
- os_is_mac
- homebrew_is_installed
- block:
- name: Ensure Hammerspoon is installed and up to date
homebrew_cask:
name: hammerspoon
state: upgraded
... | Apply force to link Hammerspoon settings folder | Apply force to link Hammerspoon settings folder
| YAML | unlicense | guerrero/dotfiles |
46205387bb21ea15b6cf51c0d85ea66a3a95c504 | data/common.yaml | data/common.yaml | ---
python::prefix: /opt
python::user: "%{::id}"
python::pyenv::ensure: v20140825
python::pyenv::prefix: "%{hiera('python::prefix')}/pyenv"
python::pyenv::user: "%{hiera('python::user')}"
python::pyenv::plugins:
virtualenv:
ensure: present
source: yyuu/pyenv-virtualenv
python::version::al... | ---
python::prefix: /opt
python::user: "%{::id}"
python::pyenv::ensure: v20140825
python::pyenv::prefix: "%{hiera('python::prefix')}/pyenv"
python::pyenv::user: "%{hiera('python::user')}"
python::pyenv::plugins:
pip-rehash:
ensure: present
source: yyuu/pyenv-pip-rehash
virtualenv:
en... | Add in pyenv-pip-rehash as a default plugin to install | Add in pyenv-pip-rehash as a default plugin to install
| YAML | mit | jamieconnolly/puppet-python,jamieconnolly/puppet-python,jamieconnolly/puppet-python |
7c7d978e0c9d78e6d3d4968a679c463a01e0896c | data/transition-sites/phe_comare.yml | data/transition-sites/phe_comare.yml | ---
site: phe_comare
whitehall_slug: public-health-england
title: Public Health England
redirection_date: 1st June 2014
homepage: https://www.gov.uk/government/organisations/public-health-england
tna_timestamp: 20131102015026
host: www.comare.org.uk
furl: www.gov.uk/phe
aliases:
- comare.org.uk
| ---
site: phe_comare
whitehall_slug: public-health-england
title: Public Health England
redirection_date: 1st June 2014
homepage: https://www.gov.uk/government/organisations/public-health-england
tna_timestamp: 20131102015026
host: www.comare.org.uk
furl: www.gov.uk/phe
aliases:
- comare.org.uk
- www.comare.info
- coma... | Add aliases for comare site | Add aliases for comare site
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
654c558a9e8d0a7b83148f8a34e04d7dc99cb7ca | ansible/vars/common.yml | ansible/vars/common.yml | ---
php_ppa: php5-oldstable
mysql_56: true
doc_root: /var/www
sys_packages: ["vim","git","imagemagick","htop"]
dist: precise
php_packages: ["php5-cli","php5-curl","php5-imagick","php5-mcrypt","php5-mysql","php5-memcached","php5-sqlite","php5-xdebug"]
| ---
php_ppa: php5-oldstable
mysql_56: false
doc_root: /var/www
sys_packages: ["vim","git","imagemagick","htop"]
dist: precise
php_packages: ["php5-cli","php5-curl","php5-imagick","php5-mcrypt","php5-mysql","php5-memcached","php5-sqlite","php5-xdebug"]
| Set MySQL 5.5 as a default version | Set MySQL 5.5 as a default version
| YAML | mit | marlek/my-ansible,marlek/my-ansible |
17f21edf5cf29b78f86ba056fda4275fd3877fa4 | packages/km/kmp-dfa.yaml | packages/km/kmp-dfa.yaml | homepage: https://github.com/paolino/kmp-dfa
changelog-type: markdown
hash: 5b61a0c6096026bfb53728bce1610c6c5050d2c13e670534a52c3181a3be4ec0
test-bench-deps: {}
maintainer: paolo.veronelli@gmail.com
synopsis: KMP algorithm implementation based on Deterministic Finite State Automata
changelog: ! '# Revision history for ... | homepage: https://github.com/paolino/kmp-dfa
changelog-type: markdown
hash: 45c90e44e6426f7841a75494a33d8b28ac7aec46b326f347d34244da04378798
test-bench-deps:
base: ! '>=4.9 && <4.10'
array: ! '>=0.5 && <0.6'
kmp-dfa: -any
QuickCheck: -any
maintainer: paolo.veronelli@gmail.com
synopsis: KMP algorithm implementat... | Update from Hackage at 2017-06-18T11:48:19Z | Update from Hackage at 2017-06-18T11:48:19Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
5be0b3fcaacdf8d5c567ff57d091b7ccd9a73450 | packages/sy/systemd.yaml | packages/sy/systemd.yaml | homepage: https://github.com/erebe/systemd
changelog-type: ''
hash: 00adb479fc086413f7f638387c0cdb585f3ff15868981278126248db7e428641
test-bench-deps:
base: ! '>=4.7 && <=4.8.1.0'
systemd: -any
maintainer: romain.gerard@erebe.eu
synopsis: Systemd facilities (Socket activation, Notify)
changelog: ''
basic-deps:
byt... | homepage: https://github.com/erebe/systemd
changelog-type: ''
hash: 081b70b912f0df3a16efa58c6cb5950c9543078fece213828949e4a7a6e3fc93
test-bench-deps:
base: ==4.*
systemd: -any
maintainer: romain.gerard@erebe.eu
synopsis: Systemd facilities (Socket activation, Notify)
changelog: ''
basic-deps:
bytestring: ! '>=0.1... | Update from Hackage at 2016-09-14T20:31:58+0000 | Update from Hackage at 2016-09-14T20:31:58+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
c370e28a2ca6101e6a16a8e094d7ceb3de9efe06 | vars/homebrew.yml | vars/homebrew.yml | ---
homebrew_install_script: "{{ downloads }}/homebrew_install"
homebrew_install_path: /usr/local/bin
homebrew_taps:
- homebrew/cask-fonts
- weaveworks/tap
homebrew_packages:
- autoconf
- awscli
- docker
- docker-compose
- gcc
- gettext
- git
- go
- grep
- htop
- hugo
- jq
- kubectl
- kubectx
- mysql
- node@12
- pyth... | ---
homebrew_install_script: "{{ downloads }}/homebrew_install"
homebrew_install_path: /usr/local/bin
homebrew_taps:
- homebrew/cask-fonts
- weaveworks/tap
homebrew_packages:
- autoconf
- awscli
- docker
- docker-compose
- gcc
- gettext
- git
- go
- grep
- htop
- hugo
- jq
- kubectl
- kubectx
- kubeseal
- mysql
- nod... | Add kubeseal and yq installs for macos | Add kubeseal and yq installs for macos
| YAML | mit | brileb73/dotfiles |
ce588fd5b6b00e3e46aa720a69dc94a9a59f7ab3 | actions/workflows/mistral_get_commit_shas.yaml | actions/workflows/mistral_get_commit_shas.yaml | ---
version: '1.0'
description: Mistral get commit shas subworkflow
input:
- host
- repos
output:
- shas: <% ctx().shas %>
tasks:
get_mistral_sha:
action: core.remote
input:
hosts: <% ctx().host %>
cmd: cd <% ctx().repos.get(mistral) %> && echo `git rev-parse HEAD`
next:
- when: <%... | ---
version: '1.0'
description: Mistral get commit shas subworkflow
input:
- host
- repos
output:
- shas: <% ctx().shas %>
tasks:
get_mistral_sha:
action: core.remote
input:
hosts: <% ctx().host %>
cmd: cd <% ctx().repos.get(mistral) %> && echo `git rev-parse HEAD`
next:
- when: <%... | Use task(get_mistral..._sha).result instead of result() when getting commit SHAs | Use task(get_mistral..._sha).result instead of result() when getting commit SHAs
See execution 5c6cd7d016f3ad79c1dd5a1b
| YAML | apache-2.0 | StackStorm/st2ci |
32f0a6dc517ec321bdd3cfc1b2b9f776fbbeefaa | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode10.1
cache: cocoapods
podfile: Example/Podfile
notifications:
email: false
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
before_install:
- bundle update --bundler
- bundle install
install:
- bundle exec pod install --project-directory=Example --repo-update
sc... | language: objective-c
osx_image: xcode10.1
cache: cocoapods
podfile: Example/Podfile
notifications:
email: false
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
before_install:
- gem install bundler -v 2.0.1
- bundle install
install:
- bundle exec pod install --project-directory=Example --repo-upda... | Install a specific version of Bundler. | Install a specific version of Bundler.
| YAML | mit | detroit-labs/IRLSize,detroit-labs/IRLSize,detroit-labs/IRLSize |
ecaa62029bfff9a687c9f2fa6678a665cd74dc50 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install: "npm install -g npm && npm cache clean"
script: "npm run-script travis"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs-3.0.0"
before_install: "npm install -g npm && npm cache clean"
script: "npm run-script travis"
| Build on node.js 0.12 and io.js 3.0.0 as well | Travis: Build on node.js 0.12 and io.js 3.0.0 as well | YAML | bsd-3-clause | unexpectedjs/unexpected-mitm,alexjeffburke/unexpected-mitm |
903316434053703540e2d878857b302626453c63 | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
# uncomment this line if your project needs to run something other than `rake`:
# # script: bundle exec rspec spec
#
| language: ruby
rvm:
- "1.9.3"
- "2.0.0"
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rspec spec
#
| Use rspec rather than rake | Use rspec rather than rake
| YAML | mit | coffeencoke/fun |
e715e697225dceae9f54ec70e97f3fbd1526b064 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: python
python:
- "3.4"
- "3.5"
addons:
apt:
packages:
- google-chrome-stable
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3
- wget https://chromedriver.storage.googleapis.com/2.29/chromedriver_linux64.zip
- unzip chromedr... | sudo: false
dist: trusty
language: python
python:
- "3.4"
- "3.5.3"
addons:
apt:
packages:
- google-chrome-stable
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3
- wget https://chromedriver.storage.googleapis.com/2.29/chromedriver_linux64.zip
- unzip chrome... | Use python 3.5.3 for test | Use python 3.5.3 for test
| YAML | mit | miyakogi/wdom,miyakogi/wdom,miyakogi/wdom |
2b193bbe1dedd19796714a0e0ef1f797c94f77de | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
# testing with coverage is broken:
# - "3.2" # https://travis-ci.org/d33tah/py-bpgsql/jobs/88710167
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
- "pypy"
- "pypy3"
install:
- true
script:
- $PYTHON_EXE setup.py install && $PYTHON_EXE -m coverage run t... | language: python
python:
- "2.6"
- "2.7"
# testing with coverage is broken:
# - "3.2" # https://travis-ci.org/d33tah/py-bpgsql/jobs/88710167
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
- "pypy"
- "pypy3"
install:
- true
script:
- python setup.py install && coverage run tests/test_bpgsql.py ... | Revert "Let's also try Jython." | Revert "Let's also try Jython."
Apparently this didn't really work out:
https://travis-ci.org/d33tah/py-bpgsql/builds/88710737
| YAML | lgpl-2.1 | d33tah/bpgsql |
5dff744ee90b94fa7279bfd4a0b37a89634da012 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.9.3
- tip
before_install:
- go get -v github.com/mattn/goveralls
install:
- make get-deps
script:
- make travis-ci
- $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out
notifications:
email: false
| language: go
sudo: false
go:
- 1.9.3
before_install:
- go get -v github.com/mattn/goveralls
install:
- make get-deps
script:
- make travis-ci
- $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out
notifications:
email: false
| Update configuration not to run Go tip version | CI: Update configuration not to run Go tip version
Update the configuration of the CI (travis) for not running the checks
against the Golang tip version.
| YAML | mit | cycloidio/raws |
6d31d331a020f5fbbe81ad2942c6c58a550c8d5d | .travis.yml | .travis.yml | language: python
sudo: false
env:
global:
secure: "OwcNfLq3nPhDkIwLA2In6YFB1+o9/J5vzHEUxCD0KNRrA1XTKbF1qWJcetUY4bTI/TUdMTTLU1WJ9BTIJVkivmLGzgmjluCyC0kaXe7+qZLQnoLjUM4wBpoT53bZ8XTCJQ7gKwQ8CyPK7EEDyINKUgHtPrDVMyoee9EsBH4sJWA="
python:
- 3.5
install:
- gem install travis
# - ls -la ~/
# trick travis CLI int... | language: python
sudo: false
env:
global:
secure: "OwcNfLq3nPhDkIwLA2In6YFB1+o9/J5vzHEUxCD0KNRrA1XTKbF1qWJcetUY4bTI/TUdMTTLU1WJ9BTIJVkivmLGzgmjluCyC0kaXe7+qZLQnoLjUM4wBpoT53bZ8XTCJQ7gKwQ8CyPK7EEDyINKUgHtPrDVMyoee9EsBH4sJWA="
python:
- 3.5
install:
- gem install travis
# - ls -la ~/
# trick travis CLI int... | Switch the order of the piping | Switch the order of the piping
| YAML | bsd-3-clause | scikit-xray/scikit-xray-examples,scikit-beam/scikit-beam-examples,sameera2004/scikit-beam-examples,Nikea/scikit-xray-examples,sameera2004/scikit-xray-examples |
7aa7bda4990099c860e7274313f8de79cff2435e | eng/pipelines/templates/VSCode-codesign-osx.template.yml | eng/pipelines/templates/VSCode-codesign-osx.template.yml | ---
steps:
- checkout: self
- template: ../tasks/DownloadPipelineArtifact.yml
parameters:
displayName: 'Downloading unsigned_osx-x64_binaries'
path: '$(Pipeline.Workspace)/Artifacts'
artifact: 'unsigned_osx-x64_binaries'
- script: |
echo "#[command] codesign -s - -f --entitlements $(Build.SourcesDi... | ---
steps:
- checkout: self
- template: ../tasks/DownloadPipelineArtifact.yml
parameters:
displayName: 'Downloading unsigned_osx-x64_binaries'
path: '$(Pipeline.Workspace)/Artifacts'
artifact: 'unsigned_osx-x64_binaries'
- script: |
echo "#[command] codesign -s - -f --entitlements $(Build.SourcesDi... | Fix macOS publishing: zip without absolute paths | Fix macOS publishing: zip without absolute paths
Zip using `*` after `cd $(Pipeline.Workspace)/Artifacts/` to prevent full paths appearing in the zip.
Before it would produce:
`osx-x64.zip\Users\runner\work\1\Artifacts\OpenDebugAD7`
we want:
`osx-x64.zip\OpenDebugAD7` | YAML | mit | orbitcowboy/MIEngine,orbitcowboy/MIEngine,orbitcowboy/MIEngine,orbitcowboy/MIEngine |
c6a44ad31c8fcc54e5cef9730b49e28d80eed335 | .travis.yml | .travis.yml | dist: bionic
language: lisp
env:
matrix:
- LISP=allegro
- LISP=ccl
- LISP=ccl32
- LISP=sbcl
- LISP=sbcl32
- LISP=abcl
- LISP=cmucl
- LISP=ecl
matrix:
allow_failures:
- env: LISP=abcl
- env: LISP=ccl32
- env: LISP=cmucl
- env: LISP=ecl
notifications:
email:
on... | dist: bionic
language: lisp
env:
matrix:
# - LISP=abcl
- LISP=allegro
- LISP=ccl
- LISP=ccl32
- LISP=cmucl
- LISP=ecl
- LISP=sbcl
- LISP=sbcl32
matrix:
allow_failures:
- env: LISP=abcl
- env: LISP=ccl32
- env: LISP=cmucl
- env: LISP=ecl
notifications:
email:
... | Disable ABCL tests because they timeout | Disable ABCL tests because they timeout
| YAML | mit | sionescu/bordeaux-threads,sionescu/bordeaux-threads |
d044ad2f6a86ef7f16c9a8592601dd80d4990e3c | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
script:
- python --version
- python setup.py -q install
- python setup.py test
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install virtualenv
script:
- python --version
- python setup.py -q install
- python setup.py test
| Install prerequisites for tox on Travis | Install prerequisites for tox on Travis
| YAML | bsd-3-clause | mdgart/sentrylogs,bittner/sentrylogs |
dfdf2acce525530104557cc36f306add3dd2f120 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- FLASK_APP=commands.py
install:
- pip install -r requirements/common.txt
notifications:
email:
on_success: change
on_failure: always
services: mongodb
script:
- cp config.yml.example config.yml
- cp tests/fake-pubkey.pem /tmp/pubkey.pem
- flas... | language: python
python:
- "2.7"
env:
- FLASK_APP=commands.py
install:
- pip install -r requirements/common.txt
# requests is only needed to run the tests
- pip install requests
notifications:
email:
on_success: change
on_failure: always
services: mongodb
script:
- cp config.yml.ex... | Install `requests` so that tests do not fail on Travis. | Install `requests` so that tests do not fail on Travis.
| YAML | agpl-3.0 | uzh/msregistry |
3f315988c57e6254ddc244f775c1f7e1c1f2efae | .travis.yml | .travis.yml | language: node_js
cache:
npm: true
ccache: true
node_js:
- stable
- 14
- 12
- 10
os:
- linux
- osx
arch:
- amd64
- arm64
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- doxygen
- g++-4.8
# Install scripts. (runs after repo cloning)
install:
- if [ $TRA... | language: node_js
cache:
npm: true
ccache: true
node_js:
- stable
- 14
- 12
- 10
os:
- linux
- osx
arch:
- amd64
- arm64
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- doxygen
# Install scripts. (runs after repo cloning)
install:
# install modules
- npm i... | Stop building with g++-4.8 in Travis CI. | Stop building with g++-4.8 in Travis CI.
| YAML | apache-2.0 | BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC |
d078b39ab4923f2f6cd30dfcff4beb75225969ab | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
# See https://docs.travis-ci.com/user/languages/objective-c for details.
xcode_sdk: iphonesimulator
before_install:
- brew update
-... | language: objective-c
osx_image: xcode8
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
# See https://docs.travis-ci.com/user/languages/objective-c for details.
xcode_sdk: iphonesimulator10.0
before_install:
- brew update... | Select iPhone simulator version 10.0 for Travis | Select iPhone simulator version 10.0 for Travis
| YAML | mit | royratcliffe/NetworkReachability,royratcliffe/NetworkReachability |
39583f75c2cbe1f3208e4e1c2687fda10634e089 | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
install:
- composer install
| language: php
php:
- '7.1'
- '7.2'
- '7.3'
install:
- composer install
| Drop PHP 5.6 & 7.0 from Travis build matrix, add PHP 7.3 | Drop PHP 5.6 & 7.0 from Travis build matrix, add PHP 7.3
| YAML | mit | Moxio/php-codesniffer-sniffs |
66fd3fccc5d349486148de84b92368942f9102b4 | .pre-commit-config.yaml | .pre-commit-config.yaml | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: debug-statements
- id: name-tests-test
- id: requirements-txt-fixer
- id: flake8
- repo: https://github.com/pre-... | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.1.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: debug-statements
- id: name-tests-test
- id: requirements-txt-fixer
- repo: https://gitlab.com/pycqa/flake8
rev: 3... | Migrate to official pycqa/flake8 hooks repo | Migrate to official pycqa/flake8 hooks repo
Committed via https://github.com/asottile/all-repos
| YAML | mit | asottile/dockerfile,asottile/dockerfile,asottile/dockerfile |
485da2d93214c8cbb7961cab95787fab16efe0d3 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.0
- 7.1
install:
- composer config -a -g http-basic.repo.magento.com $MAGE_USER $MAGE_PASS
- composer config repositories.meqp git https://github.com/magento/marketplace-eqp
- composer config repositories.meqp2 composer https://repo.magento.com/
- composer r... | language: php
sudo: false
php:
- 7.0
- 7.1
install:
- composer config -a -g http-basic.repo.magento.com $MAGE_USER $MAGE_PASS
- composer config repositories.meqp git https://github.com/magento/marketplace-eqp
- composer config repositories.meqp2 composer https://repo.magento.com/
- composer r... | Update build steps for TravisCI | Update build steps for TravisCI
| YAML | bsd-3-clause | fastly/fastly-magento2,fastly/fastly-magento2,fastly/fastly-magento2,fastly/fastly-magento2 |
7dc0bb53be013a7cd9dfc6981fb6ae04312183f7 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
before_install:
- mkdir -p _build/test _build/src
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add -
- sudo echo "deb http://llvm.org/apt/unstable/ llvm-toolchain-3.7 main" >> /etc/apt/sources.list
- sudo echo "deb-src http://llvm.org/apt/unstable/ llvm-t... | language: cpp
compiler:
- clang
before_install:
- mkdir -p _build/test _build/src
- sudo add-apt-repository -y ppa:george-edison55/cmake-3.x
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add -
- sudo sh -c 'echo "deb http://llvm.org/apt/unstable/ llvm-toolchain-3.7 main" >> /etc/apt/sour... | Test Travis CI: Update build script | Test Travis CI: Update build script
| YAML | mit | maddouri/hyper_array |
48905b5a1e9667f27da569cb0d31df5e49e34ef7 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
# - "3.2" pyelasticsearch is not compatible
# - "pypy3" requires sudo in travis
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
script:
- python manage.py test
- flake8... | language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "pypy"
# - "3.2" pyelasticsearch is not compatible
# - "3.3" Django stopped supporting this in 1.9
# - "pypy3" requires sudo in travis
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
scri... | Drop testing in Python 3.3 | Drop testing in Python 3.3
Django dropped support
| YAML | cc0-1.0 | 18F/regulations-core,eregs/regulations-core |
5bd245f0077b6035492c4bef94b00eb729ce6de9 | .travis.yml | .travis.yml | os:
- linux
- osx
language: node_js
sudo: required
dist: trusty
osx_image: xcode8
env:
- SWIFT_VERSION=3.0.2
- SWIFT_VERSION=3.1
- SWIFT_VERSION=4.0.3
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"
- npm instal... | os:
- linux
- osx
language: node_js
sudo: required
dist: trusty
osx_image: xcode9.3
env:
- SWIFT_VERSION=3.0.2
- SWIFT_VERSION=3.1
- SWIFT_VERSION=4.0.3
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"
- npm inst... | Use Xcode 9.3 on Travis CI | chore: Use Xcode 9.3 on Travis CI
| YAML | bsd-2-clause | kylef/Curassow |
efee0d7ceea682a7b34d98ea57bb9d5149ffc364 | tools/paas-uaa-assets/manifest.yml | tools/paas-uaa-assets/manifest.yml | ---
applications:
- name: paas-uaa-assets
memory: 64M
disk_quota: 100M
instances: 2
| ---
applications:
- name: paas-uaa-assets
memory: 64M
disk_quota: 100M
instances: 2
stack: cflinuxfs3
| Update paas-uaa-assets stack to cflinuxfs3 | Update paas-uaa-assets stack to cflinuxfs3
| YAML | mit | alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf |
ac4f2422a744901ef13e01a616f918058fcd2c04 | .appveyor.yml | .appveyor.yml | branches:
only:
- master
- develop
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: ""
install:
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# Configure so can use git push (loca... | branches:
only:
- master
- develop
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: ""
install:
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# Configure so can use git push (loca... | Make it ascii as intended | Make it ascii as intended
| YAML | mit | JohnRGee/arm,JohnRGee/forest-arborist,JohnRGee/forest-arborist |
0dbf74b0683bfb9bbe01aebbcd8965588abeff96 | .appveyor.yml | .appveyor.yml | clone_depth: 50
configuration:
- Debug
image:
- Visual Studio 2017
install:
- pip install jinja2
- git submodule update --init --recursive
build_script:
- mkdir build
- cd build
- cmake -DNXT_USE_WERROR=1 -DNXT_ENABLE_VULKAN=1 ..
- cmake --build .
# TODO(cwallez@chromium.org) test on more than Debug.
- D... | clone_depth: 50
configuration:
- Debug
image:
- Visual Studio 2017
install:
- pip install jinja2
- git submodule update --init --recursive
build_script:
- mkdir build
- cd build
- cmake -DNXT_USE_WERROR=1 -DNXT_ENABLE_VULKAN=1 ..
- cmake --build . -- /verbosity:minimal
# TODO(cwallez@chromium.org) test on... | Reduce the verbosity of MSBuild in AppVeyor | Reduce the verbosity of MSBuild in AppVeyor
| YAML | apache-2.0 | Kangz/nxt-standalone,googlearchive/nxt-standalone,googlearchive/nxt-standalone,Kangz/nxt-standalone,googlearchive/nxt-standalone,googlearchive/nxt-standalone,Kangz/nxt-standalone,Kangz/nxt-standalone |
c1ddbb0af66965c1412e84aa1f8acd7d83c43d42 | .appveyor.yml | .appveyor.yml | environment:
CYG_ROOT: C:\cygwin
CYG_BASH: C:\cygwin\bin\bash
CYG_CACHE: C:\cygwin\var\cache\setup
CYG_EXE: C:\cygwin\setup-x86.exe
CYG_MIRROR: http://cygwin.mirror.constant.com
SCI_RUN: /cygdrive/c/smalltalkCI-master/run.sh
matrix:
- SMALLTALK: Squeak-trunk
- SMALLTALK: Squeak-5.0
- SMALLTALK... | environment:
CYG_ROOT: C:\cygwin
CYG_BASH: C:\cygwin\bin\bash
CYG_CACHE: C:\cygwin\var\cache\setup
CYG_EXE: C:\cygwin\setup-x86.exe
CYG_MIRROR: http://cygwin.mirror.constant.com
SCI_RUN: /cygdrive/c/smalltalkCI-master/run.sh
matrix:
- SMALLTALK: Squeak-trunk
- SMALLTALK: Squeak-5.1
platform:
- ... | Add support for 5.1, drop support for 5.0 and 4.6 | Add support for 5.1, drop support for 5.0 and 4.6 | YAML | mit | hpi-swa/vivide |
cf993816473e0b9433729758f2849b9118f3e876 | .travis.yml | .travis.yml | language: go
os:
- linux
- osx
go:
- 1.7.x
- 1.8.x
- 1.9.x
- "1.10.x"
- master
env:
global:
- DEP_VERSION=0.4.1
before_install:
# Download the dep binary to the bin folder in $GOPATH
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -sL https://github.com/golang/dep/releases/download/v${DEP... | language: go
os:
- linux
- osx
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- master
env:
global:
- DEP_VERSION=0.4.1
before_install:
# Download the dep binary to the bin folder in $GOPATH
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -sL https://github.com/golang/dep/releases/download/v${DEP_V... | Test against Go 1.10.x on TravisCI | Test against Go 1.10.x on TravisCI
| YAML | agpl-3.0 | muesli/beehive,muesli/beehive |
78b4fd0e8717820b283386178c522d409e913387 | .travis.yml | .travis.yml | language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- |
[ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION... | language: rust
rust:
- stable
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- |
[ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSIO... | Test on stable, not 1.0.0 | Test on stable, not 1.0.0
| YAML | apache-2.0 | rust-lang/rustc-serialize,rust-lang-nursery/rustc-serialize,rust-lang-deprecated/rustc-serialize |
60c63fbb112b9e3058795a888db3ce8c3cec0a51 | .travis.yml | .travis.yml | dist: trusty
language: python
sudo: false
python: 3.7
services:
- mysql
env:
global:
- DB_HOST=localhost
- DB_MYSQL_USER=travis
- DB_PASSWORD=''
- PYTHONPATH=$PWD/coda
before_script:
- mysql -e 'create database coda_local;'
- cp secrets.json.template secrets.json
script:
... | dist: xenial
language: python
sudo: false
python: 3.7
services:
- mysql
env:
global:
- DB_HOST=localhost
- DB_MYSQL_USER=travis
- DB_PASSWORD=''
- PYTHONPATH=$PWD/coda
before_script:
- mysql -e 'create database coda_local;'
- cp secrets.json.template secrets.json
script:
... | Switch to use xenial dist | Switch to use xenial dist
| YAML | bsd-3-clause | unt-libraries/coda,unt-libraries/coda,unt-libraries/coda,unt-libraries/coda |
024dafaf7a6163b3f5d569c669157bc8a5b89994 | .travis.yml | .travis.yml | # Configuration file for Travis-CI testing
language: node_js
node_js:
- "0.10"
env:
- MAPSERVER_COMMIT=rel-6-2-0 # v6.2.0
- MAPSERVER_COMMIT=rel-6-2-1 # v6.2.1
- MAPSERVER_COMMIT=rel-6-4-0 # v6.4.0
- MAPSERVER_COMMIT=rel-6-4-1 # v6.4.1
- MAPSERVER_COMMIT= # repository HEAD
before_install:
-... | # Configuration file for Travis-CI testing
# Test using <http://lint.travis-ci.org/>
language: node_js
node_js:
- "0.10"
- node-head
env:
- MAPSERVER_COMMIT=rel-6-2-0 # v6.2.0
- MAPSERVER_COMMIT=rel-6-2-1 # v6.2.1
- MAPSERVER_COMMIT=rel-6-4-0 # v6.4.0
- MAPSERVER_COMMIT=rel-6-4-1 # v6.4.1
- MAPSERVER... | Test with Travis CI against Node head and ignore failures from unstable branches | Test with Travis CI against Node head and ignore failures from unstable branches
| YAML | bsd-2-clause | geo-data/node-mapserv,geo-data/node-mapserv,geo-data/node-mapserv,geo-data/node-mapserv |
2c641b0d7a894745fca95d62cdf57443879d46fa | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
notifications:
irc:
channels:
- "irc.mozilla.org#talkilla"
use_notice: false
skip_join: false
email:
- talkilla-travis-results@mozilla.com
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
after_success:
- if [[ "$TRAVIS_PU... | language: node_js
node_js:
- "0.8"
notifications:
irc:
channels:
- "irc.mozilla.org#talkilla"
use_notice: false
skip_join: false
email:
- talkilla-travis-results@mozilla.com
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
# The /check url below will check to... | Add comment explaining the check url | Add comment explaining the check url
| YAML | mpl-2.0 | mozilla/talkilla,mozilla/talkilla,mozilla/talkilla |
f0a18ef5cac18dd6e989a62f4949f40bed72b45a | .travis.yml | .travis.yml | language: cpp
compiler: gcc
dist: trusty
sudo: required
branches:
only:
- develop
addons:
apt:
sources:
- george-edison55-precise-backports
packages:
- cmake
- cmake-data
script:
- mkdir build && cd build && cmake .. && make
- ./xzbuf-test | language: cpp
compiler: gcc
dist: trusty
sudo: required
branches:
only:
- develop
addons:
apt:
sources:
- george-edison55-precise-backports
packages:
- cmake
- cmake-data
install:
- sudo apt-get upgrade --yes
script:
- mkdir build && cd build && cmake .. && make
- ./xzbuf-test | Update cmake version in Travis CI config. | Update cmake version in Travis CI config.
| YAML | mit | jonathonl/xzbuf |
732531db8a3a7cb5ca6263af2a8a6e8a31a7c2e9 | .travis.yml | .travis.yml | sudo: required
language: bash
services:
- docker
env:
- PHP_RUNTIME='php:5.4-cli'
- PHP_RUNTIME='php:5.5-cli'
- PHP_RUNTIME='php:5.6-cli' PHPUNIT_OPTS='--coverage-clover=coverage.clover'
install:
- docker build -t tarantool/tarantool github.com/tarantool/tarantool-docker
- ./dockerfile.sh | tee /dev/tty... | sudo: required
language: bash
services:
- docker
env:
- PHP_RUNTIME='php:5.4-cli'
- PHP_RUNTIME='php:5.5-cli'
- PHP_RUNTIME='php:5.6-cli' PHPUNIT_OPTS='--coverage-clover=coverage.clover'
install:
- docker build -t tarantool/tarantool github.com/tarantool/tarantool-docker#:1.7
- ./dockerfile.sh | tee /de... | Fix a path to the docker repo | Fix a path to the docker repo
| YAML | mit | tarantool-php/queue,tarantool-php/queue |
a2fb2e476203a0b20988436e36b68f72fb95f313 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.5
- 2.6
- 2.7
script: bundle exec rake test
env:
- REPORTER=default
| language: ruby
cache: bundler
rvm:
- 2.6
- 2.7
- 3.0
script: bundle exec rake test
env:
- REPORTER=default
| Add Ruby 3.0 to continuous integration build | Add Ruby 3.0 to continuous integration build
This commit removes Ruby 2.5.x from the Travis build. This isn't because
I know it no longer works, but because I've decided to aim to support
the three most recent releases of Ruby.
Version 2.5 probably still works (though I haven't tested it with the
libraries that are u... | YAML | mit | gma/nesta |
590f106a0ea37538b2ce42179ac26ecaa781370e | .travis.yml | .travis.yml | language: go
go:
- 1.6
- 1.7
- 1.8
| language: go
go:
- 1.6
- 1.7
- 1.8
script: go test -v -race ./...
| Add race detection in CI | Add race detection in CI
| YAML | mit | eraclitux/cfgp |
2eabf51670f3c387f6163f4e434ba956a419bb84 | .travis.yml | .travis.yml | language: node_js
group: edge
node_js:
- "6"
sudo: required
services:
- docker
env:
- CXX=g++-4.8 PATH=$PATH:${HOME}/google-cloud-sdk/bin CLOUDSDK_CORE_DISABLE_PROMPTS=1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- $HOME/.npm
- $H... | language: node_js
group: edge
node_js:
- "6"
sudo: required
services:
- docker
env:
- CXX=g++-4.8 PATH=$PATH:${HOME}/google-cloud-sdk/bin CLOUDSDK_CORE_DISABLE_PROMPTS=1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- $HOME/.npm
- $H... | Add lockfile support to greenkeeper | Add lockfile support to greenkeeper | YAML | apache-2.0 | harshitagupta30/open-event-frontend,sumedh123/open-event-frontend,CosmicCoder96/open-event-frontend,utkarshnath/open-event-frontend,ritikamotwani/open-event-frontend,CosmicCoder96/open-event-frontend,utkarshnath/open-event-frontend,sumedh123/open-event-frontend,geekyd/open-event-frontend,harshitagupta30/open-event-fron... |
b2fcc5c670709dd68b2623bcb0ae71649cb4883c | .travis.yml | .travis.yml | language: php
php:
- 5.6.40
- 7.0
- 7.1
- 7.3
- 7.4
- nightly
before_script:
- mkdir -p bootstrap/cache
- chmod 777 bootstrap/cache
- ls -al bootstrap/
- ls -al bootstrap/cache
- composer global require hirak/prestissimo
- if [ "$LARAVEL_DEP" == "5.1.*" ]; then composer require phpunit/phpun... | language: php
php:
- 7.1
- 7.3
- 7.4
- nightly
before_script:
- mkdir -p bootstrap/cache
- chmod 777 bootstrap/cache
- ls -al bootstrap/
- ls -al bootstrap/cache
- composer global require hirak/prestissimo
- if [ "$LARAVEL_DEP" == "5.1.*" ]; then composer require phpunit/phpunit "^5.6" --no-upda... | Drop unsupported PHP versions from Travis build | Drop unsupported PHP versions from Travis build
| YAML | mit | CyberiaResurrection/POData-Laravel,Algo-Web/POData-Laravel |
2b395e05bcd44a11cc9f84eb444ef374b37515d8 | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
addons:
apt:
packages:
- gcc-multilib
- autoconf
- automake
- libtool
- yasm
- zlib1g-dev:i386
env:
global:
- RUST_BACKTRACE=1
- PKG_CONFIG_ALLOW_CROSS=... | sudo: false
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
addons:
apt:
packages:
- gcc-multilib
- autoconf
- automake
- libtool
- yasm
- zlib1g-dev:i386
env:
global:
- RUST_BACKTRACE=1
- PKG_CONFIG_ALLOW_CROSS=... | Move rustdoc before cargo test | Move rustdoc before cargo test
| YAML | mit | YaLTeR/hl-capture,YaLTeR/hl-capture,YaLTeR/hl-capture,YaLTeR/hl-capture |
af0eaf5ee40899e7755dfdd6876ec5867a41dd38 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
env:
- SYMFONY_VERSION=origin/master
branches:
only:
- master
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install --install-suggests
script: php vendor/bin/atoum -d Tests/Units
notifications:
email:
- dev@plemi.org | language: php
php:
- 5.3
- 5.4
env:
- SYMFONY_VERSION=origin/master
branches:
only:
- master
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install --install-suggests
- wget http://pecl.php.net/get/mongo-1.2.10.tgz
- tar -xzf mongo-1.2.10.tgz
- cd mongo-1.2.... | Install mongo php driver when processed by Travis CI | Install mongo php driver when processed by Travis CI
| YAML | mit | Plemi/PlemiBoomgoBundle |
d4c2b0c620c396f777cfca89481c76b71a547a39 | .travis.yml | .travis.yml | os: windows
sudo: false
language: go
go:
# - '1.0'
# - '1.1'
# - '1.2'
# - '1.3'
- '1.4'
- '1.5'
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
- '1.11'
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go ge... | os: windows
sudo: false
language: go
go:
# - '1.0'
# - '1.1'
# - '1.2'
# - '1.3'
# - '1.4'
- '1.5'
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
- '1.11'
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go ... | Remove support for Go 1.4 | Remove support for Go 1.4
| YAML | mit | josephspurrier/goversioninfo |
b77dc59571c6e719ef653d06067023fdc37f3a4a | .travis.yml | .travis.yml | language: python
python:
# - "2.6"
# - "2.7"
# - "3.2"
# - "3.3"
# - "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: python manage.py test
| language: python
python:
# - "2.6"
# - "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: python manage.py test
| Test on Pythons back to 3.2 | Test on Pythons back to 3.2 | YAML | mit | RyanBalfanz/django-smsish |
f70f926b09a8e35c78685e77bb43dc612f8cb8d5 | .travis.yml | .travis.yml | language: rust
sudo: false
cache:
directories:
- $HOME/.cargo
rust:
- stable
- beta
- nightly
os:
- linux
- osx
branches:
only:
- master
- staging
- trying
script:
- cd palette_derive
- cargo build -v --features strict
- cd ../palette
- cargo build -v --features strict
- cargo t... | language: rust
sudo: false
cache:
directories:
- $HOME/.cargo
rust:
- stable
- beta
- nightly
os:
- linux
- osx
branches:
only:
- master
- staging
- trying
- /^\d+\.\d+$/
script:
- cd palette_derive
- cargo build -v --features strict
- cd ../palette
- cargo build -v --features... | Enable CI checks for maintenance branches | Enable CI checks for maintenance branches
| YAML | apache-2.0 | Ogeon/palette,Ogeon/palette |
3e288febfab1f719292832e0b6e93767e02032d2 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 3"
install:
- "pip install -r requirements.txt --use-mirrors"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi"
- "... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 3"
install:
- "pip install -r requirements.txt --use-mirrors"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi"
- "... | Switch back to direct nose over setup.py test | Switch back to direct nose over setup.py test
For some reason in travis, only with python2.6 running the tests with
python setup.py test, results in this:
AttributeError: '_TextTestResult' object has no attribute 'addSkip'
| YAML | mit | jmcfarlane/Notable,jmcfarlane/Notable,jmcfarlane/Notable,jmcfarlane/Notable |
c3411dfbcd884357a1cf19e11edccd1be4775ad2 | .travis.yml | .travis.yml | language: elixir
elixir:
- 1.3.0
- 1.3.1
- 1.3.2
- 1.4.0
- 1.4.1
- 1.4.2
- 1.5.0
otp_release:
- 18.2.1
- 19.0.2
- 19.2
- 19.3
| language: elixir
elixir:
- 1.3.4
- 1.4.5
- 1.5.0
- 1.5.1
otp_release:
- 18.2.1
- 18.3
- 19.2
- 19.3
- 20.0
| Update elixir & otp build matrix | Update elixir & otp build matrix | YAML | mit | monterail/tesla,teamon/tesla |
a5b1a7429b895c5cccff3673d1ec793fe454f660 | .travis.yml | .travis.yml | language: dart
dart:
- stable
- dev
os:
- linux
- osx
- windows
# Shard tests to avoid running into Travis VM time limits, especially on Windows
# and OS X.
dart_task:
- test: --total-shards 3 --shard-index 0
- test: --total-shards 3 --shard-index 1
- test: --total-shards 3 --shard-index 2
before_install:
- if [[ "... | language: dart
dart:
- stable
# Testing on Dart dev is temporarily disabled due to dart-lang/pub#2713.
# - dev
os:
- linux
- osx
- windows
# Shard tests to avoid running into Travis VM time limits, especially on Windows
# and OS X.
dart_task:
- test: --total-shards 3 --shard-index 0
- test: --total-shards 3 --shard-... | Disable testing on Dart dev | Disable testing on Dart dev
See dart-lang/pub#2713
| YAML | apache-2.0 | google/dart_cli_pkg,google/dart_cli_pkg |
2429a08d7910c449fb0c952e430198e30d571a8c | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 10 on Travis CI. | Build with Node.js 10 on Travis CI.
| YAML | mit | bigeasy/cliffhanger |
be7207a49321998a0ac96b8386f441b737c90f1b | .travis.yml | .travis.yml | sudo: false
os:
- linux
- osx
language: node_js
node_js:
- '10'
cache:
npm: true
directories:
- node_modules
install:
- npm install
script:
- npm run lint
- npm run test
- npm run build
branches:
only:
- master
- develop
| sudo: false
os:
- linux
language: node_js
node_js:
- '10'
cache:
npm: true
directories:
- node_modules
install:
- npm install
script:
- npm run lint
- npm run test
- npm run build
branches:
only:
- master
- develop
| Remove also osx since the final deployment environment is only linux. | Remove also osx since the final deployment environment is only linux.
| YAML | mpl-2.0 | DatapuntAmsterdam/atlas,Amsterdam/atlas,DatapuntAmsterdam/atlas_prototype,DatapuntAmsterdam/atlas,DatapuntAmsterdam/atlas,Amsterdam/atlas,Amsterdam/atlas,DatapuntAmsterdam/atlas_prototype,Amsterdam/atlas |
0be1e36f91b48012bb2f3dd2f95374baf3f2647e | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
sudo: required
dist: trusty
cache:
directories:
- $GDALINST
- ~/.cache/pip
env:
global:
- GDALINST=$HOME/gdalinstall
- GDALBUILD=$HOME/gdalbuild
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- ./misc/install_gdal.sh... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
sudo: required
dist: trusty
cache:
directories:
- $GDALINST
- ~/.cache/pip
env:
global:
- GDALINST=$HOME/gdalinstall
- GDALBUILD=$HOME/gdalbuild
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- ./misc/insta... | Add python3.6 to ci config file | Add python3.6 to ci config file
| YAML | mit | mthh/smoomapy |
3383643927271bed77d104cc4afb7e7c88c9a11e | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
before_install:
- npm update -g npm
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- npm update -g npm
before_script:
- npm install -g grunt-cli
| Add test for node 0.10 | Add test for node 0.10
| YAML | mit | gfranko/jquery.selectBoxIt.js,andres-torres-marroquin/jquery.selectBoxIt.js,gitkiselev/jquery.selectBoxIt.js,debrajrakshit/jquery.selectBoxIt.js,gitkiselev/jquery.selectBoxIt.js,crehana/jquery.selectBoxIt.js,debrajrakshit/jquery.selectBoxIt.js,nikkyb8/jquery.selectBoxIt.js,nikkyb8/jquery.selectBoxIt.js,gfranko/jquery.s... |
7dcf22931687f00b919cf29905a9905aadd28c07 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
env:
- TERM=dumb
script:
- ./gradlew check --info --stacktrace
after_success:
- ./gradlew jacocoTestReport coveralls
| language: java
jdk:
- openjdk8
env:
- TERM=dumb
script:
- ./gradlew check --info --stacktrace
after_success:
- ./gradlew jacocoTestReport coveralls
| Change build to use openjdk8 instead of oraclejdk8 | Change build to use openjdk8 instead of oraclejdk8
| YAML | apache-2.0 | ViDA-NYU/ache,ViDA-NYU/ache,ViDA-NYU/ache |
94a0edb1b277b1b66bae1010fff2a4d0f428d727 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: node_js
node_js: 8.0
cache:
directories:
- node_modules
addons:
firefox: latest
google-chrome: latest
install:
- npm install
- polymer install
before_script:
- gulp lint version:check
- polymer lint --rules polymer-2 --input *.html
- xvfb-run -s '-screen 0 1024... | sudo: false
dist: trusty
language: node_js
node_js: 8.0
cache:
directories:
- node_modules
addons:
firefox: latest
google-chrome: latest
install:
- npm install
- polymer install
before_script:
- gulp lint version:check
- polymer lint --rules polymer-2 --input ./src/*.html ./theme/*.html
- xvfb-r... | Update polymer lint in CI to check ./src and ./theme | Update polymer lint in CI to check ./src and ./theme
| YAML | apache-2.0 | vaadin/vaadin-date-picker,vaadin/vaadin-date-picker |
656ccd82030bc826862a088ab4d47e4d8a47e3e6 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install -g npm
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Install with NPM 5 on Travis CI. | Install with NPM 5 on Travis CI.
| YAML | mit | bigeasy/isochronous |
ea6713f3c737f62b312e13e8bedf1fb81a768cf5 | .travis.yml | .travis.yml | language: java
sudo: false # faster builds
# first try
before_install:
- pip install --user codecov
after_success:
- codecov
jdk:
- oraclejdk7
- openjdk7 | language: java
sudo: false # faster builds
# first try
before_install:
- pip install --user codecov
after_success:
- codecov
jdk:
- oraclejdk7
- openjdk7
os:
- linux
- osx
| Add Mac OSX builds to Travis CI | Add Mac OSX builds to Travis CI | YAML | mit | serayuzgur/heartbeat |
69b811747f370d429d54e5f32eaaeace9b3efea4 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_script:
- ./configure --enable-version=18,19,20
script: rake
branches:
only:
- master
notifications:
recipients:
- evan+notify@phx.io
- bford@engineyard.com
- d.bussink@gmail.com
email:
on_success: change
on_failure: always
rvm:
- 1.8.7
... | language: cpp
compiler:
- gcc
- clang
before_script:
- ./configure --enable-version=18,19
script: rake
branches:
only:
- master
notifications:
recipients:
- evan+notify@phx.io
- bford@engineyard.com
- d.bussink@gmail.com
email:
on_success: change
on_failure: always
rvm:
- 1.8.7
-... | Disable 2.0 mode for now because of Travis timeouts | Disable 2.0 mode for now because of Travis timeouts
| YAML | mpl-2.0 | jsyeo/rubinius,ngpestelos/rubinius,ngpestelos/rubinius,mlarraz/rubinius,mlarraz/rubinius,dblock/rubinius,kachick/rubinius,jemc/rubinius,dblock/rubinius,digitalextremist/rubinius,ruipserra/rubinius,ngpestelos/rubinius,dblock/rubinius,kachick/rubinius,jsyeo/rubinius,digitalextremist/rubinius,Azizou/rubinius,pH14/rubinius... |
aa58b604236dd55aed7236088177c432f34fadf9 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
install:
- npm install -g bower
- npm install
- composer install --dev
- bower install
before_script:
- gulp deploy
- cp .env.example .env
script:
- ./bin/robo test
matrix:
fast_finish: true
| language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
install:
- npm install -g bower
- npm install
- composer install --dev
- bower install
before_script:
- gulp deploy
- cp .env.example .env
script:
- ./bin/robo test
matrix:
fast_finish: true
allow_failures:
- php: hhvm
| Allow hhvm to fail for now | Allow hhvm to fail for now
| YAML | mit | purplapp/purplapp,purplapp/purplapp |
3879c16ce47e00ca2e1ac5ba553923d440bd4567 | .travis.yml | .travis.yml | before_script: cp config/database.yml.example config/database.yml && bundle exec rake db:create
script: bundle exec rake db:migrate db:test:prepare default
rvm:
- ree
| before_script: cp config/database.yml.example config/database.yml && bundle exec rake db:create db:migrate db:test:prepare
rvm:
- ree
| Move entire setup into before_script | Move entire setup into before_script
| YAML | mit | childbamboo/rubygems.org,kbrock/rubygems.org,Ch4s3/rubygems.org,sonalkr132/rubygems.org,maclover7/rubygems.org,arthurnn/rubygems.org,spk/rubygems.org,farukaydin/rubygems.org,iRoxxDotOrg/rubygems.org,childbamboo/rubygems.org,rubygems/rubygems.org,andrew/rubygems.org,krainboltgreene/rubygems.org,jamelablack/rubygems.org,... |
b78d4ddedb418d3a9782b9360963d9f323406e24 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.2
- 2.5.5
- 2.4.5
- ruby-head
before_install:
- gem update --system
- gem install bundler --no-document
gemfile:
- gemfiles/rails_5.0.7.gemfile
- gemfiles/rails_5.1.7.gemfile
- gemfiles/rails_5.2.3.gemfile
- gemfiles/rails_6.0.0.beta3.gemfile
befo... | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.3
- 2.5.5
- 2.4.6
- ruby-head
before_install:
- gem update --system
- gem install bundler --no-document
gemfile:
- gemfiles/rails_5.0.7.gemfile
- gemfiles/rails_5.1.7.gemfile
- gemfiles/rails_5.2.3.gemfile
- gemfiles/rails_6.0.0.beta3.gemfile
befo... | Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/active_use_case |
bd1dc2516d090d48701e2477acf9c8677860d361 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
env:
matrix:
- INTERN_OPTS="-DINLINE_UNSIGNED=1"
- INTERN_OPTS="-DINLINE_UNSIGNED=0"
- INTERN_OPTS="-DMMAP_PAGES=1"
- INTERN_OPTS="-DMMAP_PAGES=0"
script:
- cmake . ${INTERN_OPTS}
- make check
| language: c
os:
- linux
- osx
compiler:
- gcc
- clang
env:
matrix:
- INTERN_OPTS="-DINLINE_UNSIGNED=1"
- INTERN_OPTS="-DINLINE_UNSIGNED=0"
- INTERN_OPTS="-DMMAP_PAGES=1"
- INTERN_OPTS="-DMMAP_PAGES=0"
script:
- cmake . ${INTERN_OPTS}
- make check
| Test Linux and OS X | Test Linux and OS X
| YAML | mit | chriso/intern |
1ff5abced9392d24a759f6c8b5170e90d2e1ddb2 | .travis.yml | .travis.yml | language: php
env:
CODECLIMATE_REPO_TOKEN: bfb05b660bbd647cf979d7d257e94c446406b8efc507070e2e2beb8110951af4
php:
- 7.0
- 7.1
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
di... | language: php
php:
- 7.0
- 7.1
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.0
env: 'COMPOSER_FL... | Revert "add code coverage to code climate" | Revert "add code coverage to code climate"
This reverts commit 65f3cd456dbc6526cb3a983322568d6a8eb6e733.
| YAML | mit | rfussien/leboncoin-crawler,rfussien/leboncoin-crawler |
843d8e92394d0d9b7c433f550985c16268d2d318 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
env: COVERALL=1
before_install:
- gem install bundler
| sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.3
- 2.4.0
env: COVERALL=1
before_install:
- gem install bundler
| Use patch version for Ruby 2.3.3 and 2.4.0 on CI | Use patch version for Ruby 2.3.3 and 2.4.0 on CI
| YAML | mit | aetrion/dnsimple-ruby |
1d109996d3cdfeacac0e27f4805cc8928bfdf8ef | .travis.yml | .travis.yml | language: node_js
node_js:
- "9"
- "8"
- "6"
- "4"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
CXX=g++-4.8
| language: node_js
node_js:
- "10"
- "9"
- "8"
- "6"
- "4"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
CXX=g++-4.8
| Add Node.js10 to CI setting | Add Node.js10 to CI setting
| YAML | mit | brianmcd/contextify,brianmcd/contextify,brianmcd/contextify |
c598093c64971fc83ebb384463295de05cd2cf1a | .travis.yml | .travis.yml | bundler_args: "--jobs 4 --retry 3"
cache: bundler
gemfile:
- gemfiles/activesupport_6.0.gemfile
- gemfiles/activesupport_5.2.gemfile
- gemfiles/activesupport_5.1.gemfile
- gemfiles/activesupport_5.0.gemfile
- gemfiles/activesupport_4.2.gemfile
- gemfiles/activesupport_4.1.gemfile
language: ruby
matrix:
exclude:
- r... | bundler_args: "--jobs 4 --retry 3"
cache: bundler
gemfile:
- gemfiles/activesupport_6.0.gemfile
- gemfiles/activesupport_5.2.gemfile
- gemfiles/activesupport_5.1.gemfile
- gemfiles/activesupport_5.0.gemfile
- gemfiles/activesupport_4.2.gemfile
- gemfiles/activesupport_4.1.gemfile
language: ruby
matrix:
exclude:
- r... | Add support for ruby 2.6 | Add support for ruby 2.6
| YAML | mit | rossta/montrose,rossta/montrose |
25e4273994311ec99ee2dcee9753db99e2d1ff9b | .travis.yml | .travis.yml | sudo: required
env:
- GHCVER=7.6.3
- GHCVER=7.8.4
- GHCVER=7.10.3
- GHCVER=8.0.2
- GHCVER=head
script:
- export HLINT_ARGUMENTS=src
- wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --quiet | sh
| sudo: required
env:
- GHCVER=7.6.3
- GHCVER=7.8.4
- GHCVER=7.10.3
- GHCVER=8.0.2
- GHCVER=head
script:
- export HLINT_ARGUMENTS=src
- curl -sL https://raw.github.com/ndmitchell/neil/master/travis.sh | sh
| Switch to the new cabal format | Switch to the new cabal format
| YAML | bsd-3-clause | ndmitchell/weeder |
1319b332efc77114f3ec0dd9aac96a2faecbcc56 | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
android:
components:
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- extra-google-m2repository
licenses:
- 'android-sdk-license-c81a61d9'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
| language: android
jdk:
- oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- extra-google-m2repository
licenses:
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
| Update SDK tools on Travis first | Update SDK tools on Travis first
| YAML | mit | BakkerTom/happy-news,BakkerTom/happy-news,BakkerTom/happy-news,BakkerTom/happy-news |
d6a0f20fefb625dab41b8d2b16edb883d044553f | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.1snapshot
- 7.2
- 7.2snapshot
branches:
only:
- master
- development
- /^feature\/.+$/
- /^issue\/.+$/
services:
- redis-server
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- if [ "$TRAVIS_PULL_REQU... | language: php
php:
- 7.1
- 7.1snapshot
- 7.2
- 7.2snapshot
git:
depth: 5
cache:
directories:
- $HOME/.composer/cache/files
branches:
only:
- master
- development
- /^feature\/.+$/
- /^issue\/.+$/
services:
- redis-server
before_script:
- echo "extension = redis.so" >> ~/.phpe... | Update CI settings for faster build | Update CI settings for faster build
| YAML | mit | hollodotme/redis-status,hollodotme/redis-status,hollodotme/redis-status,hollodotme/redis-status |
de27581e7ded4f35c542704f16615c74fc312f72 | .travis.yml | .travis.yml | language: java
sudo: false
script: mvn clean verify -Dtravis-ci=true
jdk:
- openjdk8
before_install:
- export MAVEN_OPTS="-Xmx2g $MAVEN_OPTS"
- echo "MAVEN_OPTS='-Xmx2g'" > ~/.mavenrc
env:
global:
- JAVA_OPTS="-Xmx2g"
| language: java
sudo: false
script: mvn clean verify -Dtravis-ci=true
jdk:
- oraclejdk8
before_install:
- export MAVEN_OPTS="-Xmx2g $MAVEN_OPTS"
- echo "MAVEN_OPTS='-Xmx2g'" > ~/.mavenrc
env:
global:
- JAVA_OPTS="-Xmx2g"
| Revert back to oraclejdk8 (openjdk8 isn't supported on Travis). | Revert back to oraclejdk8 (openjdk8 isn't supported on Travis).
| YAML | apache-2.0 | rapidoid/rapidoid,rapidoid/rapidoid,rapidoid/rapidoid,rapidoid/rapidoid |
597e1e72a5362eacdd81b43138ba6d72a276d7bf | .travis.yml | .travis.yml |
# Language/versions
language: node_js
node_js:
- 0.9
- 0.8
- 0.6
# Build script
script: 'npm test'
# Notifications
notifications:
email:
- notify+upcast@rowanmanning.co.uk
|
# Language/versions
language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
# Build script
script: 'npm test'
# Notifications
notifications:
email:
- notify+upcast@rowanmanning.co.uk
| Add Node 0.10 to CI | Add Node 0.10 to CI
| YAML | mit | npmcomponent/rowanmanning-upcast,rowanmanning/upcast,OmgImAlexis/upcast |
476db977bb1232266dd51b4a75ea1867251564fe | .travis.yml | .travis.yml | language: php
env:
- SYMFONY_DEPS_VERSION=2.3
before_script:
# symfony/*
- sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.3' ]; then sed -i 's/>=2.3,<2.4-dev/2.3.*@dev/g' composer.json; composer update --dev --prefer-source; fi"
- composer install --dev --prefer-source
script: vendor/bin/phpunit
php:
- ... | language: php
env:
- SYMFONY_DEPS_VERSION=2.3
- SYMFONY_DEPS_VERSION=2.4
before_script:
# symfony/*
- sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.4' ]; then sed -i 's/>=2.3,<2.5-dev/2.4.*@dev/g' composer.json; composer update --dev --prefer-source; fi"
- sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.3' ];... | Allow testing against symfony 2.4 in parallel to 2.3 LTS | Allow testing against symfony 2.4 in parallel to 2.3 LTS | YAML | mit | chili-labs/Silex-Routing |
6e33cf2c264a67454067d7adafa13e20cf721a56 | .travis.yml | .travis.yml | language: python
python: "3.5"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- deadsnakes
- boost-latest
packages:
- g++-4.9
- zlib1g-dev
- libbz2-dev
- python3.5-dev
- libssl-dev
- libbo... | language: python
python: "3.6"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
#- deadsnakes
packages:
- g++-4.9
- zlib1g-dev
- libbz2-dev
#- python3.5-dev
- libssl-dev
env: CC_VER=4.9
BOOST_ROOT=$TRAVIS_BUIL... | Use Python 3.6 in Travis config | Use Python 3.6 in Travis config
| YAML | mit | romanvm/WsgiBoostServer,romanvm/WsgiBoostServer,romanvm/WsgiBoostServer,romanvm/WsgiBoostServer |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.