Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Remove install section (to use default) | language: node_js
node_js:
- 8
cache:
directories:
- node_modules
install:
- npm install
script:
- npm run build
- npm test -- --coverage && codecov
| language: node_js
node_js:
- 8
cache:
directories:
- node_modules
script:
- npm run build
- npm test -- --coverage && codecov
|
Add before_install to install bundler | before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libfftw3-dev
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
| before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libfftw3-dev
- gem install bundler
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
|
Add Ruby 2 to Travis | language: ruby
rvm:
- 1.9.2
- 1.9.3
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
|
Set LDLOADLIBS to get the linker switch to occur in the right place. | language: perl
install: true
script: perl ./Build.PL
perl:
- "5.14"
- "5.18"
- "5.20"
branches:
only:
- master
- stable
sudo: false
cache:
- apt
addons:
apt:
sources:
- boost-latest
packages:
- libboost-thread1.55-dev
- libboost-system1.55-dev
| language: perl
install: export LDLOADLIBS=-lstdc++
script: perl ./Build.PL
perl:
- "5.14"
- "5.18"
- "5.20"
branches:
only:
- master
- stable
sudo: false
cache:
- apt
addons:
apt:
sources:
- boost-latest
packages:
- libboost-thread1.55-dev
- libboost-system1.55-dev
|
Drop the support for nodejs v0.6 | language: node_js
node_js:
- "0.6"
- "0.8"
- "0.10"
| language: node_js
node_js:
- "0.8"
- "0.10"
|
Add TypeScript build to Travis script | language: node_js
node_js:
- "7"
- "6"
| language: node_js
node_js:
- "7"
- "6"
script:
- npm run dist
- npm test
|
Drop Go versions down to just the two Go upstream supports (latest and latest-1) | language: go
go_import_path: github.com/docker-library/go-dockerlibrary
go:
- 1.11.x
- 1.10.x
- 1.9.x
- 1.8.x
- 1.7.x
- 1.6.x
os:
- linux
- windows
script:
- |
set -e +x
rm -f coverage.txt
for d in $(go list ./...); do
( set -x; go test -v -rac... | language: go
go_import_path: github.com/docker-library/go-dockerlibrary
go:
- 1.11.x
- 1.10.x
os:
- linux
- windows
script:
- |
set -e +x
rm -f coverage.txt
for d in $(go list ./...); do
( set -x; go test -v -race -cover -coverprofile=profile.out -covermode=at... |
Use apt-get to install the deps | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
# command to install dependencies
install: "pip install ."
# command to run tests
script: "python -m unittest discover -s graphs/" | language: python
python:
- "2.6"
- "2.7_with_system_site_packages"
- "3.3"
- "3.4"
before_install:
- sudo apt-get install -qq python-numpy python-scipy python-sklearn python-matplotlib
install:
- pip install --no-deps .
script:
- python -m unittest discover -s graphs/ |
Choose TLS version based on JDK | language: java
dist: precise
before_script: cd api/
script: mvn test -Ptest -Dhttps.protocols=TLSv1 -DmessageBirdAccessKey=test_iQpAp0KCs5GCsMpDhIx2leuNB -DmessageBirdMSISDN=31612345678
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
- openjdk7
| language: java
dist: precise
before_script: cd api/
script: if [[ "$TRAVIS_JDK_VERSION" == "openjdk6" ]]; then mvn test -Ptest -Dhttps.protocols=TLSv1 -DmessageBirdAccessKey=test_iQpAp0KCs5GCsMpDhIx2leuNB -DmessageBirdMSISDN=31612345678; else; mvn test -Ptest -Dhttps.protocols=TLSv1.2 -DmessageBirdAccessKey=test_iQpAp0... |
Add temporary workaround for failing build on Ruby 1.8.7 | bundler_args: --without development
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode
- jruby-19mode
- jruby-20mode
- jruby-21mode
- jruby-head
- rbx
- ruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
fast_finish: true
| before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
bundler_args: --without development
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode
- jruby-19mode
- jruby-20mode
- jruby-21mode
- jruby-head
- rbx
- ruby-head
... |
Migrate Travis CI builds to new Container based infrastructure | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install pytest
- pip install coveralls
- pip install pytest-cov
- python setup.py install
script: python setup.py test
after_success:
- coveralls
notifications:
irc: "chat.freenode.net#circuits"
| sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install pytest
- pip install coveralls
- pip install pytest-cov
- python setup.py install
script: python setup.py test
after_success:
- coveralls
notifications:
irc: "chat.freenode.net#circuits"
|
Add Ruby 2.3 to the Travis test matrix. | branches:
only:
- master
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ruby-head
| branches:
only:
- master
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3
- ruby-head
|
Add 7.1 to the build list | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
matrix:
fast_finish: true
include:
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
install:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
script:
- find src -name "*.php" -print0 | xargs ... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- 7.1
- nightly
matrix:
fast_finish: true
include:
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
install:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
script:
- find src -name "*.php" -print0 ... |
Use latest DITA-OT version (3.5.3) for CI builds | sudo: false
language: java
jdk:
- openjdk8
env:
global:
- DITA_OT_VERSION=3.5.2
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| sudo: false
language: java
jdk:
- openjdk8
env:
global:
- DITA_OT_VERSION=3.5.3
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
|
Use glide update instead of install. | language: go
branches:
only:
- master
- develop
go:
- 1.3
- 1.3.1
- 1.3.2
- 1.3.3
- 1.4
- 1.4.1
- 1.4.2
- 1.4.3
- 1.5
- 1.5.1
- 1.5.2
- 1.5.3
- 1.5.4
- 1.6
- 1.6.1
- 1.6.2
- 1.6.3
- 1.6.4
- 1.7
- 1.7.1
- 1.7.2
- 1.7.3
- 1.7.4
install:
- go get -v github.c... | language: go
branches:
only:
- master
- develop
go:
- 1.3
- 1.3.1
- 1.3.2
- 1.3.3
- 1.4
- 1.4.1
- 1.4.2
- 1.4.3
- 1.5
- 1.5.1
- 1.5.2
- 1.5.3
- 1.5.4
- 1.6
- 1.6.1
- 1.6.2
- 1.6.3
- 1.6.4
- 1.7
- 1.7.1
- 1.7.2
- 1.7.3
- 1.7.4
install:
- go get -v github.c... |
Add IRC notification to Travis. | sudo: false
language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
- bower_components
install:
- npm install
- bower install
script: grunt build s3
branches:
only:
- master
| sudo: false
language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
- bower_components
install:
- npm install
- bower install
script: grunt build && grunt s3
branches:
only:
- master
notifications:
irc:
channels:
- "irc.mozilla.org#www"
on_success: always
on_fail... |
Add 5.3 and 5.4 to Travis | language: php
php:
- 5.6
- 5.5
- hhvm
- hhvm-nightly
env:
matrix:
- PREFER_LOWEST="--prefer-lowest --prefer-stable"
- PREFER_LOWEST=""
before_install:
- composer self-update
install:
- composer update --prefer-source $PREFER_LOWEST | language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
- hhvm-nightly
env:
matrix:
- PREFER_LOWEST="--prefer-lowest --prefer-stable"
- PREFER_LOWEST=""
before_install:
- composer self-update
install:
- composer update --prefer-source $PREFER_LOWEST |
Use latest Node relaease in Travis | language: node_js
node_js:
- "8"
notifications:
email: false
cache: yarn
| language: node_js
node_js:
- "node"
notifications:
email: false
cache: yarn
|
Add Ruby 2.4 to Travis CI, drop Ruby 2.0, 2.1. | rvm:
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
gemfile:
- Gemfile
install: "bundle install"
script: "ruby -Itest test/test_textfile.rb"
notifications:
email:
- piers@varyonic.com
| rvm:
- 2.4.0
- 2.3.0
- 2.2.0
gemfile:
- Gemfile
install: "bundle install"
script: "ruby -Itest test/test_textfile.rb"
notifications:
email:
- piers@varyonic.com
|
Build on latest Node.js version on Travis | language: java
jdk:
- oraclejdk8
node_js:
- '0.10'
git:
submodules: false
env:
global:
- GRADLE_OPTS="-Xmx1024m -Xms1024m"
- TERM=dumb
script:
- 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then ./gradlew deploy; else ./gradlew check; fi'
sudo: false
before_cache:
- rm -f $HO... | language: java
jdk:
- oraclejdk8
node_js:
- "8"
git:
submodules: false
env:
global:
- GRADLE_OPTS="-Xmx1024m -Xms1024m"
- TERM=dumb
script:
- 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then ./gradlew deploy; else ./gradlew check; fi'
sudo: false
before_cache:
- rm -f $HOME/... |
Add current branch to github workflow for testing | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ master ]
pull_request:
branches: [ ma... | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ master, tproxy_mark_param ]
pull_request:... |
Fix building of HTML docs | package:
name: openforcefield
version: 0.2.1
source:
git_url: https://github.com/openforcefield/openforcefield.git
git_tag: 0.2.1
build:
preserve_egg_dir: True
number: 0 # Build number and string do not work together.
#string: py{{ py }}_a1 # Alpha version 1.
skip: True # [win or py27 or py35]
extra:... | package:
name: openforcefield
version: 0.2.1
source:
git_url: https://github.com/openforcefield/openforcefield.git
git_tag: 0.2.1
build:
preserve_egg_dir: True
number: 0 # Build number and string do not work together.
#string: py{{ py }}_a1 # Alpha version 1.
skip: True # [win or py27 or py35]
extra:... |
Use latest xcode on circle | version: 2
jobs:
iOStest:
macos:
xcode: "9.1.0"
steps:
- checkout
- run: bundle install
- run:
name: Install Carthage Dependencies
command: carthage update --platform iOS --no-use-binaries
- run:
name: Run Tests
command: |
xco... | version: 2
jobs:
iOStest:
macos:
xcode: "9.3.0"
steps:
- checkout
- run: bundle install
- run:
name: Install Carthage Dependencies
command: carthage update --platform iOS --no-use-binaries
- run:
name: Run Tests
command: |
xco... |
Fix the jekyll version related bug | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: Lanyon
tagline: 'A Jekyll theme'
description: 'A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme ... | # Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
# Setup
title: Lanyon
tagline: 'A Jekyll theme'
description: 'A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that places the utmost gra... |
Remove AuthorEmail for Text Torch | Categories:
- Phone & SMS
License: GPL-3.0-or-later
AuthorName: Miles Krell
AuthorEmail: text.torch@mileskrell.com
AuthorWebSite: https://mileskrell.com
SourceCode: https://github.com/mileskrell/text-torch
IssueTracker: https://github.com/mileskrell/text-torch/issues
AutoName: Text Torch
RepoType: git
Repo: https:/... | Categories:
- Phone & SMS
License: GPL-3.0-or-later
AuthorName: Miles Krell
AuthorWebSite: https://mileskrell.com
SourceCode: https://github.com/mileskrell/text-torch
IssueTracker: https://github.com/mileskrell/text-torch/issues
AutoName: Text Torch
RepoType: git
Repo: https://github.com/mileskrell/text-torch
Buil... |
Fix deployment of EB in cases where /opt/openconext was forcibly removed | ---
- name: Checkout engine-block branch
git: repo=https://github.com/OpenConext/OpenConext-engineblock.git dest="{{ engine_branch_dir }}" version={{ engine_branch }} force=yes
when: engine_branch != ''
register: eb_gitclone
- name: Make release
command: "./bin/makeRelease.sh {{ engine_branch }}"
args:
c... | ---
- name: Check if target dir exists
stat: path={{ engine_release_dir }}
register: eb_dir
- name: Checkout engine-block branch
git: >
repo=https://github.com/OpenConext/OpenConext-engineblock.git
dest="{{ engine_branch_dir }}"
version={{ engine_branch }}
force=yes
register: eb_gitclone
- nam... |
Set up the project directory structure. | ---
- name: add the deadsnakes ppa
apt_repository: repo="ppa:fkrull/deadsnakes" state=present
- name: install app packages
apt: pkg={{ item }} state=present
with_items:
- python-pip
- libpq-dev
- libev-dev
- libevent-dev
- libmemcached-dev
- libjpeg8
- libjpeg8-dev
- libfreetype6
... | ---
- name: add the deadsnakes ppa
apt_repository: repo="ppa:fkrull/deadsnakes" state=present
- name: install app packages
apt: pkg={{ item }} state=present
with_items:
- python-pip
- libpq-dev
- libev-dev
- libevent-dev
- libmemcached-dev
- libjpeg8
- libjpeg8-dev
- libfreetype6
... |
Drop support for VS 2015 | ---
version: 0.1.{build}
os:
- Visual Studio 2015
- Visual Studio 2017
platform:
- x86
- x64
configuration:
- Debug
- Release
environment:
BOOST_ROOT: C:\Libraries\boost_1_59_0
before_build:
- cmd: mkdir build
- cmd: cd build
build_script:
- cmd: cmake .. -DTESTS=ON
- cmd: cmake --build . -... | ---
version: 0.1.{build}
os:
- Visual Studio 2017
platform:
- x86
- x64
configuration:
- Debug
- Release
environment:
BOOST_ROOT: C:\Libraries\boost_1_59_0
before_build:
- cmd: mkdir build
- cmd: cd build
build_script:
- cmd: cmake .. -DTESTS=ON
- cmd: cmake --build . --config Release
test_s... |
Revert "Also lint the tests/ folder on AppVeyor." | image:
- Visual Studio 2017
environment:
matrix:
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
install:
- "%PYTHON%\\python.exe -m pip install --upgrade setuptools pip"
- "%PYTHON%\\python.exe -m pip --version"
- "git --vers... | image:
- Visual Studio 2017
environment:
matrix:
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
install:
- "%PYTHON%\\python.exe -m pip install --upgrade setuptools pip"
- "%PYTHON%\\python.exe -m pip --version"
- "git --vers... |
Add the Local Mapping section to the nav bar | brand:
name: Geogeeks
link: "#page-top"
navLinks:
- name: Upcoming events
link: "#events"
- name: Get in touch
link: "#contact"
| brand:
name: Geogeeks
link: "#page-top"
navLinks:
- name: Upcoming events
link: "#events"
- name: Local OSM Mapping
link: "#localmapping"
- name: Get in touch
link: "#contact"
|
Enable Performance Schema for MariaDB >= 10.0.12 | version: '3'
services:
mysql:
image: ${MYSQL_IMAGE:-percona/percona-server:5.7}
ports:
- ${MYSQL_HOST:-127.0.0.1}:${MYSQL_PORT:-3306}:3306
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
mongo:
image: ${MONGODB_IMAGE:-percona/percona-server-mongodb:3.4}
ports:
- ${MONGODB_HOST:-1... | version: '3'
services:
mysql:
image: ${MYSQL_IMAGE:-percona/percona-server:5.7}
ports:
- ${MYSQL_HOST:-127.0.0.1}:${MYSQL_PORT:-3306}:3306
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=yes
# MariaDB doesn't enable Performance Schema by default so we need to do it manually
# https://mariadb... |
Use PHP 7.4 on base development build | version: "3.8"
services:
romans:
build:
context: "."
args:
PHP_VERSION: "${PHP_VERSION:-8.0}"
volumes:
- ".:/app"
user: "${UID:-1000}:${GID:-1000}"
command: ["tail", "-f", "/dev/null"]
| version: "3.8"
services:
romans:
build:
context: "."
args:
PHP_VERSION: "${PHP_VERSION:-7.4}"
volumes:
- ".:/app"
user: "${UID:-1000}:${GID:-1000}"
command: ["tail", "-f", "/dev/null"]
|
Fix username for production compose file | version: '3.3'
services:
mariadb:
build: .
image: com.ragedunicorn/mariadb:1.0.0-stable
volumes:
- mariadb_data:/var/lib/mysql
expose:
- "3306"
labels:
com.ragedunicorn.mariadb.environment: "prod"
com.ragedunicorn.mariadb.description: "MariaDB"
volumes:
mariadb_data: {}
| version: '3.3'
services:
mariadb:
build: .
image: ragedunicorn/mariadb:1.0.0-stable
volumes:
- mariadb_data:/var/lib/mysql
expose:
- "3306"
labels:
com.ragedunicorn.mariadb.environment: "prod"
com.ragedunicorn.mariadb.description: "MariaDB"
volumes:
mariadb_data: {}
|
Use node_modules inside of container | version: '2'
services:
dbdata:
image: postgres:latest
volumes:
- /var/lib/postgresql
command: /bin/true
db:
image: aidanlister/postgres-hstore
volumes_from:
- dbdata
ports:
- "5432"
django:
build:
context: .
dockerfile: Dockerfile.django
command: pytho... | version: '2'
services:
dbdata:
image: postgres:latest
volumes:
- /var/lib/postgresql
command: /bin/true
db:
image: aidanlister/postgres-hstore
volumes_from:
- dbdata
ports:
- "5432"
django:
build:
context: .
dockerfile: Dockerfile.django
command: pytho... |
Use `build` library instead of direct `setup.py` | name: Upload Python Package
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m ... | name: Upload Python Package
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
... |
Add MP AMI key and sort | global:
qsname: quickstart-mongodb
owner: quickstart-eng@amazon.com
reporting: true
regions:
- ap-northeast-1
- ap-northeast-2
- ap-south-1
- ap-southeast-1
- ap-southeast-2
- ca-central-1
- eu-central-1
- eu-west-1
- eu-west-2
- sa-east-1
- us-east-1
- us-east-2
... | global:
marketplace-ami: false
owner: quickstart-eng@amazon.com
qsname: quickstart-mongodb
regions:
- ap-northeast-1
- ap-northeast-2
- ap-south-1
- ap-southeast-1
- ap-southeast-2
- ca-central-1
- eu-central-1
- eu-west-1
- eu-west-2
- sa-east-1
- us-east-1
- us-... |
Update from Hackage at 2020-06-23T10:41:34Z | homepage: https://github.com/emilaxelsson/haskell-exp-parser
changelog-type: ''
hash: 5bcb408185e8df3f61b3fab3814450fdbe56672c05f78889a0779d94245b76a9
test-bench-deps:
base: -any
syb: -any
haskell-exp-parser: -any
template-haskell: -any
maintainer: emax@chalmers.se
synopsis: Simple parser parser from Haskell to... | homepage: https://github.com/emilaxelsson/haskell-exp-parser
changelog-type: ''
hash: dd131adda7dd34339d2e9d4149c23f9dc3425a5adb086ed2851af6acf98a5a5f
test-bench-deps:
base: -any
syb: -any
haskell-exp-parser: -any
template-haskell: -any
maintainer: 78emil@gmail.com
synopsis: Simple parser parser from Haskell to... |
Update github action to use pip 19 | name: Run tests
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.pytho... | name: Run tests
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.pytho... |
Update snyk clojure action to v2 | ---
name: Clojure Snyk PR Check
on:
pull_request_target:
types: [opened, reopened, synchronize, labeled]
jobs:
snyk_clojure:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'safe to test')
steps:
- name: checkout the current PR
uses: actions/checkout@v2
wit... | ---
name: Clojure Snyk PR Check
on:
pull_request_target:
types: [opened, reopened, synchronize, labeled]
jobs:
snyk_clojure:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'safe to test')
steps:
- name: Connect to Twingate
uses: twingate/github-action@v1
w... |
Update fwal/setup-swift action to v1.10.0 | on:
push:
name: Build
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5"]
steps:
- uses: actions/checkout@v2.3.5
- uses: ... | on:
push:
name: Build
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5"]
steps:
- uses: actions/checkout@v2.3.5
- uses: ... |
Switch to the ruby docker images in BK | steps:
- label: run-lint-and-specs-ruby-2.4
command:
- asdf local ruby 2.4.5
- bundle install --jobs=7 --retry=3
- bundle exec rake
expeditor:
executor:
docker:
- label: run-lint-and-specs-ruby-2.5
command:
- asdf local ruby 2.5.5
- bundle install --jobs=7 --retry=3
- bundle ex... | steps:
- label: run-lint-and-specs-ruby-2.4
command:
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
image: ruby:2.4-stretch
- label: run-lint-and-specs-ruby-2.5
command:
- bundle install --jobs=7 --retry=3 --without docs deb... |
Increase gradle heap size to speed up builds | image: commit451/android-config:latest
before_script:
# Make sure that we are not trying to print anything to the console
- unset DISPLAY
- export TERM=dumb
- export _JAVA_OPTIONS="-Djava.awt.headless=true"
# Make Gradle executable
- chmod +x gradlew
build:
script:
# Run the build script, excluding ... | image: commit451/android-config:latest
before_script:
# Make sure that we are not trying to print anything to the console
- unset DISPLAY
- export TERM=dumb
- export _JAVA_OPTIONS="-Djava.awt.headless=true"
# Increase the heap size to 3 GB for faster builds
- echo "org.gradle.jvmargs=-Xmx3G" >> gradle.prop... |
Mark the deploy stage as manual | image: node:latest
stages:
- test
- deploy
test:
stage: test
script:
- npm install
- npm test
deploy-npm:
stage: deploy
script:
- npm install
- npm publish
only:
- master
allow_failure: true # fails when version is not increased
| image: node:latest
stages:
- test
- deploy
test:
stage: test
script:
- npm install
- npm test
deploy-npm:
stage: deploy
script:
- npm install
- npm publish
only:
- master
when: manual
|
Update NI to 5.1 (6) | AntiFeatures:
- NonFreeNet
- NonFreeDep
Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/Px3XjG6P/NetflixtoIMDb
IssueTracker: https://github.com/Px3XjG6P/NetflixtoIMDb/issues
AutoName: Netflix to IMDb
Description: |-
When a Netflix user taps the share icon in the Netflix app
... | AntiFeatures:
- NonFreeNet
- NonFreeDep
Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/Px3XjG6P/NetflixtoIMDb
IssueTracker: https://github.com/Px3XjG6P/NetflixtoIMDb/issues
AutoName: NI
Description: |-
When a Netflix user taps the share icon in the Netflix app
and then sele... |
Remove quotes in precommit config | repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.7.2
hooks:
- id: pyupgrade
args: [--py36-plus]
- repo: https://github.com/python/black
rev: 20.8b1
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.3
hooks:
- id: flake8
additional_dependencies: ['flake8-bugbear==2... | repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.7.2
hooks:
- id: pyupgrade
args: [--py36-plus]
- repo: https://github.com/python/black
rev: 20.8b1
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.3
hooks:
- id: flake8
additional_dependencies: [flake8-bugbear==20... |
Fix sorting after recent changes | sylius_grid:
grids:
sylius_admin_shipping_method:
driver:
name: doctrine/orm
options:
class: "%sylius.model.shipping_method.class%"
repository:
method: createListQueryBuilder
a... | sylius_grid:
grids:
sylius_admin_shipping_method:
driver:
name: doctrine/orm
options:
class: "%sylius.model.shipping_method.class%"
repository:
method: createListQueryBuilder
a... |
Fix path for flake8 config link | ---
- homebrew:
name:
- python
- pip:
name:
- flake8
- pep8-naming
- pipenv
- virtualenvwrapper
extra_args: --user
executable: pip3
- name: Link flake8 config
file:
state: link
src: "../{{ playbook_dir | replace(lookup('env', 'HOME') + '/', '') }}/roles/path/fi... | ---
- homebrew:
name:
- python
- pip:
name:
- flake8
- pep8-naming
- pipenv
- virtualenvwrapper
extra_args: --user
executable: pip3
- name: Link flake8 config
file:
state: link
src: "../{{ playbook_dir | replace(lookup('env', 'HOME') + '/', '') }}/roles/package... |
Save IRs as build artifacts for easy access | machine:
pre:
- export DEBIAN_FRONTEND=noninteractive && sudo apt-get remove -y --purge mysql-server mysql-community-server
environment:
PATH: "~/qcert/bin/:~/spark-2.1.0-bin-hadoop2.7/bin/:$PATH"
dependencies:
cache_directories:
- "~/.opam"
- "~/spark-2.1.0-bin-hadoop2.7"
pre:
- sudo add-ap... | machine:
pre:
- export DEBIAN_FRONTEND=noninteractive && sudo apt-get remove -y --purge mysql-server mysql-community-server
environment:
PATH: "~/qcert/bin/:~/spark-2.1.0-bin-hadoop2.7/bin/:$PATH"
general:
artifacts:
- "tests/spark2/test01_nnrc/irs"
dependencies:
cache_directories:
- "~/.opam"... |
Test new versions of Node | dependencies:
override:
- make setup
machine:
node:
version: 0.10.34
test:
override:
- make lint
- make test
- nvm install 0.12.7
- nvm alias default 0.12.7
- make test
| dependencies:
override:
- make setup
machine:
node:
version: 0.10.34
test:
override:
- make lint
- make test
- nvm install 0.12.7
- nvm alias default 0.12.7
- make test
- nvm use 4 && make test
- nvm use 5 && make test
|
Use GRCh37 instead of hg19 for the RNA-seq example | # Template for human RNA-seq using Illumina prepared samples
---
details:
- analysis: RNA-seq
genome_build: hg19
algorithm:
aligner: tophat2
quality_format: Standard
trim_reads: read_through
adapters: [truseq, polya]
strandedness: unstranded
upload:
dir: ../final
| # Template for human RNA-seq using Illumina prepared samples
---
details:
- analysis: RNA-seq
genome_build: GRCh37
algorithm:
aligner: tophat2
quality_format: Standard
trim_reads: read_through
adapters: [truseq, polya]
strandedness: unstranded
upload:
dir: ../final
|
Update freetype version at github actions | name: linux build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: cmake -DCMAKE_CXX_FLAGS=-Werror .
- name: make
run: make
- name: release
uses: softprops/action-gh-release@v1
if: starts... | name: linux build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: freetype install
run: |
wget https://download.savannah.gnu.org/releases/freetype/freetype-2.11.1.tar.gz
tar xvfz freetype-2.11.1.tar.gz
cd freetype-2.11.1
./configur... |
Add more linters to triggers 📶 | run:
build-tags:
- e2e
skip-dirs:
- vendor
- pkg/client/clientset/versioned/fake
| run:
build-tags:
- e2e
skip-dirs:
- vendor
- pkg/client/clientset/(.*)/fake
linters:
enable:
- errcheck
- gofmt
- goimports
- gosec
- gocritic
- golint
|
Update GH actions to run on PR | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: "Run everything"
run: |
docker-compose pull
docker-compose build
docker-compose up -d
sleep 10
doc... | name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: "Run everything"
run: |
docker-compose pull
docker-compose build
docker-compose up -d
sleep 10... |
Add decoding topic to TOC | site_name: Mapzen Turn-by-Turn
docs_dir: src/turn-by-turn
site_dir: dist/turn-by-turn
pages:
- Home: index.md
- 'API reference': 'api-reference.md'
- 'Terminology': 'terminology.md'
- 'Add Mapzen Turn-by-Turn routing to a map': 'add-routing-to-a-map.md'
extra:
site_subtitle: 'Add routing and navigation to y... | site_name: Mapzen Turn-by-Turn
docs_dir: src/turn-by-turn
site_dir: dist/turn-by-turn
pages:
- Home: index.md
- 'API reference': 'api-reference.md'
- 'Terminology': 'terminology.md'
- 'Add Mapzen Turn-by-Turn routing to a map': 'add-routing-to-a-map.md'
- 'Decode a route shape': 'decoding.md'
extra:
site_... |
Add GitHub Actions for CI | name: PHP Ci
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '7.4', '8.0', '8.1' ]
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{... | name: PHP Ci
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '7.4', '8.0', '8.1' ]
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{... |
Test no_std support on github actions | name: Continuous Integration
on:
push:
pull_request:
jobs:
check:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
steps:
- uses: actions/checkout@v2
- uses:... | name: Continuous Integration
on:
push:
pull_request:
jobs:
check:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
steps:
- uses: actions/checkout@v2
- uses:... |
Revert change to interchange path. | name: CI tests
on: [push, pull_request]
jobs:
Run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: Setup Python
uses: actions/setup-python@v2
wit... | name: CI tests
on: [push, pull_request]
jobs:
Run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: Setup Python
uses: actions/setup-python@v2
wit... |
Update from Hackage at 2018-03-17T02:51:55Z | homepage: ''
changelog-type: ''
hash: 33c805843f0c3a9a9c109d492cb6d7ef482332836b06fa2fd60dca2d8b39e56f
test-bench-deps: {}
maintainer: dylan@dylex.net
synopsis: Control library for blink(1) LED from ThingM
changelog: ''
basic-deps:
usb: -any
bytestring: -any
unix: -any
base: ==4.*
text: <1.2
blink1: -any
... | homepage: ''
changelog-type: ''
hash: b14f9874ba9e23e60f8b61785ee881d1a97cd99ceeb8374e3ebc1d7a391ae880
test-bench-deps: {}
maintainer: dylan@dylex.net
synopsis: Control library for blink(1) LED from ThingM
changelog: ''
basic-deps:
usb: -any
bytestring: -any
unix: -any
base: ! '>=4.6 && <4.11'
text: <1.2
bl... |
Remove support for MOS 7.0 | # Plugin name
name: lma_infrastructure_alerting
# Human-readable name for your plugin
title: The LMA Infrastructure Alerting Plugin
# Plugin version
version: '0.9.0'
# Description
description: Deploy tools to send alerts concerning the OpenStack infrastructure.
# Required fuel version
fuel_version: ['7.0', '8.0']
# Spe... | # Plugin name
name: lma_infrastructure_alerting
# Human-readable name for your plugin
title: The LMA Infrastructure Alerting Plugin
# Plugin version
version: '0.9.0'
# Description
description: Deploy tools to send alerts concerning the OpenStack infrastructure.
# Required fuel version
fuel_version: ['8.0']
# Specify li... |
Update CurrentVersion of Dots'n'Boxes to 0.7.6 (18) | Categories:
- Games
License: GPL-3.0-only
SourceCode: https://github.com/StefanOltmann/Kaesekaestchen
IssueTracker: https://github.com/StefanOltmann/Kaesekaestchen/issues
Name: Dots'n'Boxes
AutoName: Käsekästchen
Description: |-
Players take turns joining two horizontally or vertically adjacent dots by a
lin... | Categories:
- Games
License: GPL-3.0-only
SourceCode: https://github.com/StefanOltmann/Kaesekaestchen
IssueTracker: https://github.com/StefanOltmann/Kaesekaestchen/issues
Name: Dots'n'Boxes
AutoName: Käsekästchen
Description: |-
Players take turns joining two horizontally or vertically adjacent dots by a
lin... |
Fix repository in workflow used to delete old workflow runs | name: Delete old workflow runs
on:
schedule:
- cron: '0 0 * * *'
env:
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}
jobs:
build:
runs-on: ubuntu-20.04
timeout-minutes: 25
name: Delete old workflow runs
steps:
- name: Delete old workflow runs
uses: MajorScruffy/delete-old-workflow-r... | name: Delete old workflow runs
on:
schedule:
- cron: '0 0 * * *'
env:
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}
jobs:
build:
runs-on: ubuntu-20.04
timeout-minutes: 25
name: Delete old workflow runs
steps:
- name: Delete old workflow runs
uses: MajorScruffy/delete-old-workflow-r... |
Update Dawn to 0.12.2 (23) | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: Apache-2.0
AuthorName: Łukasz Rutkowski
SourceCode: https://github.com/Tunous/Dawn
IssueTracker: https://github.com/Tunous/Dawn/issues
Changelog: https://github.com/Tunous/Dawn/releases
AutoName: Dawn
RepoType: git
Repo: https://github.com/Tunous/Dawn
Bu... | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: Apache-2.0
AuthorName: Łukasz Rutkowski
SourceCode: https://github.com/Tunous/Dawn
IssueTracker: https://github.com/Tunous/Dawn/issues
Changelog: https://github.com/Tunous/Dawn/releases
AutoName: Dawn
RepoType: git
Repo: https://github.com/Tunous/Dawn
Bu... |
Bump ridedott/merge-me-action from 2.10.26 to 2.10.28 | # See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:
merge... | # See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:
merge... |
Update from Hackage at 2017-10-28T18:46:40Z | homepage: https://github.com/athanclark/attoparsec-ip#readme
changelog-type: ''
hash: 35827dea2836cd974ef83894e5b0afa1d944484a079e0241b2a6bfc6d4cf4c88
test-bench-deps:
base: -any
attoparsec-ip: -any
maintainer: athan.clark@gmail.com
synopsis: Parse IP data types with attoparsec
changelog: ''
basic-deps:
base: ! '... | homepage: https://github.com/athanclark/attoparsec-ip#readme
changelog-type: ''
hash: 4dd8d9cf1ebb186f20305f018cfe775c382308abd5dcb234e84488f683f84bcd
test-bench-deps:
base: -any
attoparsec-ip: -any
maintainer: athan.clark@gmail.com
synopsis: Parse IP data types with attoparsec
changelog: ''
basic-deps:
base: ! '... |
Add maildev for email testing | version: '3'
services:
postgres:
image: postgres
rabbitmq:
image: rabbitmq:3
learning-circles:
build: .
image: learning-circles
ports:
- "8000:8000"
volumes:
- .:/opt/app
depends_on:
- rabbitmq
- postgres
command: /opt/django-venv/bin/python manage.py runserver 0.0.... | version: '3'
services:
postgres:
image: postgres
email:
image: djfarrelly/maildev
ports:
- 1080:80
learning-circles:
build: .
image: learning-circles
ports:
- "8000:8000"
volumes:
- .:/opt/app
depends_on:
- postgres
- email
command: /opt/django-venv/bin/pyth... |
Revert "Disable MS Windows build" | # Don't run build jobs for branches
trigger:
batch: true
branches:
exclude:
- "*"
# Still allow PR builds to run against main
pr:
- main
jobs:
- template: ./.azure-pipelines/azure-pipelines-linux.yml
- template: ./.azure-pipelines/azure-pipelines-osx.yml
| # Don't run build jobs for branches
trigger:
batch: true
branches:
exclude:
- "*"
# Still allow PR builds to run against main
pr:
- main
jobs:
- template: ./.azure-pipelines/azure-pipelines-linux.yml
- template: ./.azure-pipelines/azure-pipelines-osx.yml
- template: ./.azure-pipelines/azure-pipeli... |
Revert "Lets try not manually requiring this file" | version: 2
jobs:
build:
working_directory: ~/hash_attribute_assignment
parallelism: 2
docker:
- image: circleci/ruby:2.3.4
steps:
- checkout
## Bundler
# Restore Cache
- restore_cache:
keys:
- gem-cache-{{ checksum "hash_attribute_assignment.gemspe... | version: 2
jobs:
build:
working_directory: ~/hash_attribute_assignment
parallelism: 2
docker:
- image: circleci/ruby:2.3.4
steps:
- checkout
## Bundler
# Restore Cache
- restore_cache:
keys:
- gem-cache-{{ checksum "hash_attribute_assignment.gemspe... |
Add 3.4 and 3.5 to tests | language: python
python:
- "3.4"
- "3.5"
- "3.6"
before_install:
- pip install --only-binary=numpy,scipy numpy scipy
install:
- python setup.py install
script:
- python setup.py test | language: python
python:
- "3.4"
- "3.5"
- "3.6"
before_install:
- pip install numpy scipy
install:
- python setup.py install
script:
- python setup.py test |
Add more node variants, remove iojs | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs"
- "iojs-v1.0.4" | language: node_js
node_js:
- "4.0.0"
- "4.1.0"
- "4.1.1"
- "4.1.2"
- "4.2.0"
- "4.2.1"
- "0.12"
- "0.11"
- "0.10" |
Test in 0.10 as well | language: node_js
# test on two node.js versions: 0.6 and 0.8
node_js:
- 0.6
- 0.8 | language: node_js
node_js:
- 0.6
- 0.8
- 0.10 |
Add xz to OS X build | sudo: required
os:
- linux
- osx
language: bash
before_install:
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get update; fi
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get install -yq --no-install-suggests --no-install-recommends --force-yes -y netbase git ca-certificates xz-utils build-esse... | sudo: required
os:
- linux
- osx
language: bash
before_install:
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get update; fi
- if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get install -yq --no-install-suggests --no-install-recommends --force-yes -y netbase git ca-certificates xz-utils build-esse... |
Add testing on Chef 12 | 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=default-amazonlinux
- INSTANCE=defau... | 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=default-amazonlinux CHEF_VERSION=12.7.... |
Update build matrix to include 2.4 | # octocatalog-diff
language: ruby
install: true
script: "script/cibuild"
matrix:
include:
# Build with latest ruby
- rvm: 2.3.1
env: RUBOCOP_TEST="true" RSPEC_TEST="true"
# Build with older ruby versions
- rvm: 2.2
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.1
env: RUB... | # octocatalog-diff
language: ruby
install: true
script: "script/cibuild"
matrix:
include:
# Build with latest ruby
- rvm: 2.4
env: RUBOCOP_TEST="true" RSPEC_TEST="true"
# Build with older ruby versions
- rvm: 2.3
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.2
env: RUBOC... |
Deploy with pypy version of python | sudo: required
dist: trusty
language: python
python:
- 2.7
matrix:
exclude:
- python: 2.7
include:
- python: 2.7
env: TOX_ENV=py27
- python: 3.3
env: TOX_ENV=py33
- python: 3.4
env: TOX_ENV=py34
- python: 3.5
env: TOX_ENV=py35
- python: 3.6
env: TOX_ENV=py3... | sudo: required
dist: trusty
language: python
python:
- 2.7
matrix:
exclude:
- python: 2.7
include:
- python: 2.7
env: TOX_ENV=py27
- python: 3.3
env: TOX_ENV=py33
- python: 3.4
env: TOX_ENV=py34
- python: 3.5
env: TOX_ENV=py35
- python: 3.6
env: TOX_ENV=py3... |
Configure image edit form translation domain. | darvin_image:
action:
edit:
template: '@DarvinAdmin/image/edit.html.twig'
| darvin_image:
action:
edit:
template: '@DarvinAdmin/image/edit.html.twig'
translation_domain: admin
|
Update Node.js versions in Travis | language: node_js
node_js:
- "5.1.0"
- "4.1"
- "4.0"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| language: node_js
node_js:
- "5.6.0"
- "5.5.0"
- "4.3.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
|
Remove PHP 5.3.3 check (since ZF also need 5.3.23) | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
- php: 5.6
before_script:
- composer update --prefer-source
script:
- vendor/bin/php-cs-fixer fix src --dry-run -v
- mkdir -p build/logs
- ./vendor/bin... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
- php: 5.6
before_script:
- composer update --prefer-source
script:
- vendor/bin/php-cs-fixer fix src --dry-run -v
- mkdir -p build/logs
- ./vendor/bin/phpunit -... |
Use "rbx" on Travis instead of "rbx-2" | ---
language: ruby
script: bundle exec rake
sudo: false
addons:
apt:
packages:
- ragel
before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install ragel; fi
install:
- bundle install --retry=3
rvm:
- 1.9
- 2.0
- 2.1
- 2... | ---
language: ruby
script: bundle exec rake
sudo: false
addons:
apt:
packages:
- ragel
before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install ragel; fi
install:
- bundle install --retry=3
rvm:
- 1.9
- 2.0
- 2.1
- 2... |
Use xenial in Travis CI | sudo: required
dist: trusty
os:
- linux
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
- NUGET_XMLDOC_MODE=skip
branches:
only:
- master
cache:
directories:
- /home/travis/.npm
- /home/travis/.nuget/packages
- src/LondonTravel.Site/node_modules
addons:
apt:
sources:
... | sudo: required
dist: xenial
dotnet: 2.2
language: csharp
mono: none
os:
- linux
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
- NUGET_XMLDOC_MODE=skip
branches:
only:
- master
cache:
directories:
- /home/travis/.npm
- /home/travis/.nuget/packages
- src/LondonTravel.Site/node_... |
Use pytest for Travis CI builds. | language: python
python:
- 3.5
- 3.6
env:
- RUN_PEP8=0
- RUN_PEP8=1
matrix:
exclude:
- python: 3.5
env: RUN_PEP8=1
allow_failures:
- env: RUN_PEP8=1
install:
- pip install .[tests]
script:
- nosetests
- |
if [[ "${RUN_PEP8}" == "1" ]]; then
pip install flake8
flake8 --sta... | language: python
python:
- 3.5
- 3.6
env:
- RUN_PEP8=0
- RUN_PEP8=1
matrix:
exclude:
- python: 3.5
env: RUN_PEP8=1
allow_failures:
- env: RUN_PEP8=1
install:
- pip install .[tests]
script:
- pytest
- |
if [[ "${RUN_PEP8}" == "1" ]]; then
pip install flake8
flake8 --statis... |
Add Python 3.4 testing for Travis CI | language: python
python:
- "2.7"
- "3.3"
- "pypy"
install:
- pip install .
script:
- python setup.py test
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install .
script:
- python setup.py test
|
Add testing the release target succeeds. | language: java
before_install:
- wget http://archive.apache.org/dist/ant/binaries/apache-ant-1.9.4-bin.tar.gz
- tar xzf apache-ant-1.9.4-bin.tar.gz
- wget -O jacoco-0.7.5.zip http://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/0.7.5.201505241946/jacoco-0.7.5.201505241946.zip
- unzip -d jacoco-0.7.... | language: java
before_install:
- wget http://archive.apache.org/dist/ant/binaries/apache-ant-1.9.4-bin.tar.gz
- tar xzf apache-ant-1.9.4-bin.tar.gz
- wget -O jacoco-0.7.5.zip http://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/0.7.5.201505241946/jacoco-0.7.5.201505241946.zip
- unzip -d jacoco-0.7.... |
Update node versions to test | language: node_js
node_js:
- '0.10'
env:
global:
- secure: LSuunNWbROOFKj/Hfn2xLFk8jgv6mTyRLqmfO3s0bkq/Qrf1mjnwK86G36aHGJRLclxLmw+CvsHF5H0ETgpCTjxBwIoR0MfZY1J4OXs2fOWyc196r4n39pB+4LavJGWqiIoG6KUW+0mgiwaWhYWHdL+/GtqbXjcIsLaoabw9+p8=
- secure: Z8KfnL9kHPnROsTz6VM8PRUuglNKnrB0XrmOzkN4+iXVklRitn0nTVpbJl0+a2et7Re38Dbe... | language: node_js
node_js:
- '4'
- '6'
- '7'
env:
global:
- secure: LSuunNWbROOFKj/Hfn2xLFk8jgv6mTyRLqmfO3s0bkq/Qrf1mjnwK86G36aHGJRLclxLmw+CvsHF5H0ETgpCTjxBwIoR0MfZY1J4OXs2fOWyc196r4n39pB+4LavJGWqiIoG6KUW+0mgiwaWhYWHdL+/GtqbXjcIsLaoabw9+p8=
- secure: Z8KfnL9kHPnROsTz6VM8PRUuglNKnrB0XrmOzkN4+iXVklRitn0nTVpbJl0+a2e... |
Stop testing on node 0.10 and begin testing 8 LTS | language: node_js
node_js:
- "0.10"
- "4"
- "6"
sudo: required
services:
- docker
before_install:
- docker pull postgres
| language: node_js
node_js:
- "4"
- "6"
- "8"
sudo: required
services:
- docker
before_install:
- docker pull postgres
|
Exclude default build entry from the matrix | language: java
script: "mvn -P ${CONTAINER} install"
matrix:
include:
- env: CONTAINER=JBOSS_AS_MANAGED_7.X
jdk: openjdk6
- env: CONTAINER=JBOSS_AS_MANAGED_7.X
jdk: oraclejdk7
- env: CONTAINER=TOMEE_MANAGED_1.5
jdk: openjdk6
allow_failures:
- env: CONTAINER=GLASSFISH_MANAGED_3.1
... | language: java
script: "mvn -P ${CONTAINER} install"
matrix:
# exclude default build as we manually define the build matrix
# see: https://github.com/travis-ci/travis-ci/issues/1228
exclude:
- env: ""
jdk: ""
include:
- env: CONTAINER=JBOSS_AS_MANAGED_7.X
jdk: openjdk6
- env: CONTAINER=J... |
Remove PHP 5.3.3 as Composer won't work | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_install:
- composer self-update --no-interaction
install:
- composer install --no-interaction --prefer-source --dev
script: vendor/bin/phpunit
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_install:
- composer self-update --no-interaction
install:
- composer install --no-interaction --prefer-source --dev
script: vendor/bin/phpunit
|
Add missing packages for Erlang. | language: java
compiler:
- gcc
script: LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$(pwd)/build" make test && make clean && make bindings
| language: java
compiler:
- gcc
addons:
apt:
packages:
- erlang
- erlang-dev
script: LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$(pwd)/build" make test && make clean && make bindings
|
Use newer OS X on Travis | git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=packages ... | git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
osx_image: xcode7.3
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM... |
Remove hhvm from allowed failures | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- TEST_COMMAND="composer test"
matrix:
allow_failures:
- php: hhvm
fast_finish: true
include:
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-low... | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- TEST_COMMAND="composer test"
matrix:
fast_finish: true
include:
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="c... |
Test ruby-head and jruby-head but allow failures | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
# - ruby-head
- jruby-18mode
- jruby-19mode
# - jruby-head
- rbx-18mode
- rbx-19mode
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
|
Update from Hackage at 2020-01-08T19:09:58Z | homepage: https://github.com/NorfairKing/validity#readme
changelog-type: ''
hash: ef07e6eda808fb137f5a0421c6c3fedf146e17c6102d3067153e1cc94aaab46d
test-bench-deps:
path: -any
base: -any
hspec: -any
criterion: -any
genvalidity-hspec: -any
QuickCheck: -any
genvalidity: -any
genvalidity-path: -any
maintain... | homepage: https://github.com/NorfairKing/validity#readme
changelog-type: ''
hash: 9865aabed90592442cfa9425f4f896ce392f214037357a2229119c23aa8cdbdd
test-bench-deps:
path: ! '>=0.5'
base: ! '>=4.7 && <5'
hspec: -any
criterion: -any
genvalidity-hspec: -any
genvalidity-criterion: -any
QuickCheck: -any
genva... |
Update yml for Travis CI | language: julia
os:
- linux
- osx
julia:
- release
- nightly
notifications:
email: false
after_success:
- julia -e 'cd(Pkg.dir("Julimaps")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())' | language: cpp
compiler:
- clang
notifications:
email: false
env:
matrix:
- JULIAVERSION="juliareleases"
- JULIAVERSION="julianightlies"
before_install:
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
- sudo add-apt-repository ppa:staticfloat/${JULIAVERSION} -y
- sudo apt-get update -qq -y... |
Use Trusty for Travis CI. | language: c++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- make
- g++-5
- libboost-test-dev
before_script:
- export CXX="g++-5" CC="gcc-5"
script:
- make test
| language: c++
# Use Trusty for more recent Boost library
# https://docs.travis-ci.com/user/trusty-ci-environment/
sudo: required
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- make
- g++-5
- libboost-test-dev
before_script:... |
Add --show-error option to cURL invocation | # https://github.com/atom/ci
language: generic
os:
- linux
- osx
script: curl --silent https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
| # https://github.com/atom/ci
language: generic
os:
- linux
- osx
script: curl --show-error --silent https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
|
Upgrade to new TravisCI infrastructure | language: java
jdk:
- oraclejdk8
before_install:
- pip install codecov
after_success:
- codecov
notifications:
email: false
| language: java
sudo: false
jdk:
- oraclejdk8
before_install:
- pip install codecov
after_success:
- codecov
notifications:
email: false
|
Test with Node.js 5.1 on Travis CI. | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
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.2'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Fix django version on tests. | # Config file for automatic testing at travis-ci.org
language: python
cache: pip
# diferrent python versions
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# diferrent django versions
env:
- DJANGO=django<1.9 # 1.8.x
- DJANGO=django<1.10 # 1.9.x
- DJANGO=django<1.11 # 1.10.x
- DJANGO=django<1.12 # 1.11.x
... | # Config file for automatic testing at travis-ci.org
language: python
cache: pip
# diferrent python versions
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# diferrent django versions
env:
- DJANGO_VERSION=1.8.*
- DJANGO_VERSION=1.9.*
- DJANGO_VERSION=1.10.*
- DJANGO_VERSION=1.11.*
# install dependencies
... |
Fix install brew waiting for input | language: sh
os:
- linux
- osx
before_install: command -v brew >/dev/null 2>&1 || ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)" && PATH="$PATH:$HOME/.linuxbrew/bin"
script: make
| language: sh
os:
- linux
- osx
before_install: command -v brew >/dev/null 2>&1 || < /dev/null ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)" && PATH="$PATH:$HOME/.linuxbrew/bin"
script: make
|
Revert "Retour arrière pour le build." | language: cpp
sudo: required
compiler:
- gcc
install:
# Upgrade GCC
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq g++-4.9
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9
... | language: cpp
sudo: required
dist: trusty
compiler:
- gcc
- clang
addons:
apt:
sources:
# add PPAs with more up-to-date toolchains
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
# install toolchains
- gcc-5
- g++-5
- clang-3.6
install:
# In... |
Enable the service and ensure it's running. | ---
- name: Check if JumpCloud folder exists
stat:
path: "{{ jumpcloud_directory }}"
register: jumpcloud_directory_stat
- name: Determine if JumpCloud is already installed
set_fact:
jc_not_installed: "{{ not (jumpcloud_directory_stat.stat.isdir is defined and jumpcloud_directory_stat.st... | ---
- name: Check if JumpCloud folder exists
stat:
path: "{{ jumpcloud_directory }}"
register: jumpcloud_directory_stat
- name: Determine if JumpCloud is already installed
set_fact:
jc_not_installed: "{{ not (jumpcloud_directory_stat.stat.isdir is defined and jumpcloud_directory_stat.st... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.