Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add PHP 7.1 to the testing matrix | language: php
php:
- 5.6
- 7.0
env:
global:
- WP_CLI_BIN_DIR=/tmp/wp-cli-phar
- WP_CLI_CONFIG_PATH=/tmp/wp-cli-phar/config.yml
- WP_VERSION=master
- WP_VERSION=4.5
- WP_VERSION=4.6
before_script:
- composer install --prefer-source
- bash ./bin/install-package-tests.sh
- mkdir -p build... | language: php
php:
- 5.6
- 7.0
- 7.1
env:
global:
- WP_CLI_BIN_DIR=/tmp/wp-cli-phar
- WP_CLI_CONFIG_PATH=/tmp/wp-cli-phar/config.yml
- WP_VERSION=master
- WP_VERSION=4.5
- WP_VERSION=4.6
before_script:
- composer install --prefer-source
- bash ./bin/install-package-tests.sh
- mkdir ... |
Create test database before running tests | language: ruby
rvm:
- 2.0
- 1.9.3
- ruby-head
- rbx-19mode
| language: ruby
rvm:
- 2.0
- 1.9.3
- ruby-head
- rbx-19mode
script:
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- bundle exec rspec spec/
|
Use container and caching for CI | language: ruby
bundler_args: "--without development"
rvm:
- '2.1'
- '2.0'
- 1.9.3
- jruby
- rbx-2
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-2
script:
- 'bundle exec rspec && bundle exec gurke'
| sudo: false
language: ruby
cache: bundler
bundler_args: "--without development"
rvm:
- '2.1'
- '2.0'
- 1.9.3
- jruby
- rbx-2
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-2
script:
- 'bundle exec rspec && bundle exec gurke'
|
Deploy generated content to gh-pages branch | language: go
go:
- master
addons:
ssh_known_hosts: overflod.chary.us
before_install:
- openssl aes-256-cbc -K $encrypted_da0730754d12_key -iv $encrypted_da0730754d12_iv -in travis_rsa.enc -out travis_rsa -d
- chmod 600 travis_rsa
- mv travis_rsa ~/.ssh/id_rsa
install:
- ./scripts/install-hugo.sh
jobs:
... | language: go
go:
- master
addons:
ssh_known_hosts: overflod.chary.us
before_install:
- openssl aes-256-cbc -K $encrypted_da0730754d12_key -iv $encrypted_da0730754d12_iv -in travis_rsa.enc -out travis_rsa -d
- chmod 600 travis_rsa
- mv travis_rsa ~/.ssh/id_rsa
install:
- ./scripts/install-hugo.sh
jobs:
... |
Remove extra steps for newer GLIBCXX on Travis CI | ### Project specific config ###
language: generic
env:
global:
- APM_TEST_PACKAGES=""
- ATOM_LINT_WITH_BUNDLED_NODE="true"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
os:
- linux
- osx
dist: trusty
### Generic setup follows ###
script:
- curl -s -O https://raw.githubusercontent.com/... | ### Project specific config ###
language: generic
env:
global:
- APM_TEST_PACKAGES=""
- ATOM_LINT_WITH_BUNDLED_NODE="true"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
os:
- linux
- osx
dist: trusty
### Generic setup follows ###
script:
- curl -s -O https://raw.githubusercontent.com/... |
Set Java8 as default environment for Rultor | architect: extsoft
install: |-
java -version
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
merge:
fast-forward: only
rebase: true
script: |-
./gradlew
./gradlew clean
commanders:
- extsoft
- Mras
release: # @todo #49:3h Add ability to rel... | architect: extsoft
docker:
image: yegor256/java8
install: |-
java -version
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
merge:
fast-forward: only
rebase: true
script: |-
./gradlew
./gradlew clean
commanders:
- extsoft
- Mras
release: #... |
Drop support for Node 0.8 and 0.9 | #
# Travis-CI configuration for generic-functions.
#
language: node_js
node_js:
- 0.8
- 0.9
- "0.10"
- 0.11
script: npm test
#
| #
# Travis-CI configuration for generic-functions.
#
language: node_js
node_js:
- "0.10"
- 0.11
script: npm test
#
|
Remove python 3.2 and 3.3 and add 3.6, 3.7, 3.8 | language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
before_script: "./travis/before-script.sh"
script: nosetests -w tests
notifications:
email: false
| language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
before_script: "./travis/before-script.sh"
script: nosetests -w tests
notifications:
email: false
|
Use our own version of PHPUnit and check code coverage | language: php
php:
- 7.0
before_script:
- composer install
| language: php
php:
- 7.0
before_script:
- composer install
script:
- php tools/phpunit.phar -c phpunit.xml.dist
- tools/check-code-cov
|
Use latest Docker and login the Docker Hub in Travis build. | env:
global:
- DOCKER_VERSION=1.10.1-0~trusty
sudo: required
services:
- docker
before_install:
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
script:
- docker version
- sudo docker login -e "$DOCKER_EMAIL" -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
- sud... | env:
global:
- DOCKER_VERSION=1.10.1-0~trusty
sudo: required
services:
- docker
before_install:
- apt-cache madison docker-engine
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
script:
- docker version
- sudo docker login -e "$DOCKER_EMAIL" -u "$DOCKER... |
Update Travis build for vendoring with directory changes. | language: go
gobuild_args: -x -ldflags "-X main.version=0.1.0"
go:
- 1.4
- 1.5
- 1.6
- tip
install:
- go get -d ./...
- go get github.com/erikstmartin/go-testdb
script:
- go test ./...
| language: go
gobuild_args: -x -ldflags "-X main.version=0.1.0"
go:
- 1.5
- 1.6
- tip
env:
- GO15VENDOREXPERIMENT=1
install:
- go get -d ./...
- go get github.com/erikstmartin/go-testdb
script:
- go test ./...
|
Configure Travis to run Maven in batch mode | language: java
install: true
script: mvn --settings settings.xml test -Dgwt.validateOnly -Darquillian.jboss.home=/dev/null
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
matrix:
fast_finish: true
allow_failures:
- jdk: oraclejdk8
| language: java
install: true
script: mvn --batch-mode --settings settings.xml test -Dgwt.validateOnly -Darquillian.jboss.home=/dev/null
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
matrix:
fast_finish: true
allow_failures:
- jdk: oraclejdk8
|
Remove 'glide install', vendor included. | language: go
go:
- 1.5.4
- 1.6.3
- 1.7.3
- tip
install:
- mkdir -p $GOPATH/bin
- curl https://glide.sh/get | sh
- glide install
script:
- GO15VENDOREXPERIMENT=1 go build
- glide --debug cleanup
| language: go
go:
- 1.5.4
- 1.6.3
- 1.7.3
- tip
install:
- mkdir -p $GOPATH/bin
- curl https://glide.sh/get | sh
script:
- GO15VENDOREXPERIMENT=1 go build
- glide cleanup --debug
|
Switch to pytest-cov for coverage. | language: python
python:
- "2.7"
- "3.3"
- "3.4"
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ppa
- sudo apt-get update -qq
- sudo apt-get install -y libgdal1h gdal-bin libgdal-dev
install:
- pip install --install-option="--no-cython-compile" cython
- "pip install -r requirements-dev.txt"
... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ppa
- sudo apt-get update -qq
- sudo apt-get install -y libgdal1h gdal-bin libgdal-dev
install:
- pip install --install-option="--no-cython-compile" cython
- "pip install -r requirements-dev.txt"
... |
Remove CocoaPods test from Travis as it only fails there. | os:
- osx
- linux
language: generic
sudo: required
dist: trusty
osx_image: xcode8
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
script:
- swift build
- swift test
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ... | os:
- osx
- linux
language: generic
sudo: required
dist: trusty
osx_image: xcode8
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
script:
- swift build
- swift test
|
Add --debug flag when testing | language: php
php:
- 5.4
- 5.5
- 5.6
install:
- travis_retry composer self-update
- travis_retry composer require satooshi/php-coveralls:dev-master --no-update
- travis_retry composer install
before_script:
- phpenv rehash
script:
- phpunit -c phpunit.xml
after_success:
- php vendor/bin/coveralls -v
cache:
apt: true
... | language: php
php:
- 5.4
- 5.5
- 5.6
install:
- travis_retry composer self-update
- travis_retry composer require satooshi/php-coveralls:dev-master --no-update
- travis_retry composer install
before_script:
- phpenv rehash
script:
- phpunit --debug -c phpunit.xml.dist
after_success:
- php vendor/bin/coveralls -v
cache:... |
Add Travis support for OTP20 | sudo: false
language: erlang
otp_release:
- 19.3
- 18.3
- 17.5
- R16B03-1
before_script:
- wget https://s3.amazonaws.com/rebar3-nightly/rebar3
- chmod u+x rebar3
script: "make travis"
| sudo: false
language: erlang
otp_release:
- 20.0
- 19.3
- 18.3
- 17.5
- R16B03-1
before_script:
- wget https://s3.amazonaws.com/rebar3-nightly/rebar3
- chmod u+x rebar3
script: "make travis"
|
Remove deprecated `sudo: false` option | sudo: false
dist: trusty
language: node_js
node_js:
- "10"
branches:
only:
- master
# npm version tags
- /^v\d+\.\d+\.\d+/
cache:
yarn: true
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn install
script:
- yarn test... | language: node_js
node_js:
- "10"
branches:
only:
- master
# npm version tags
- /^v\d+\.\d+\.\d+/
cache:
yarn: true
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn install
script:
- yarn test
jobs:
fail_fast: true
... |
Revert "Check all branches in Travis." | rvm:
- 1.9.2
- 1.8.7
- ree-1.8.7
| rvm:
- 1.9.2
- 1.8.7
- ree-1.8.7
branches:
only:
- master
|
Allow PHP-nightly build to fail on CI, PHP v8 isn't compatible with released PHPUnit. | group: travis_latest
language: php
matrix:
include:
- php: 7.1
env: lowest=1
- php: 7.2
env: csfixer=1
- php: 7.3
- php: nightly
cache:
directories:
- $HOME/.composer/cache
- $HOME/.cache/composer
- $HOME/.cache/opcache
install:
- phpenv config-rm xdebug.ini || true;
-... | group: travis_latest
language: php
php:
- 7.3
- 7.2
- 7.1
- nightly
matrix:
include:
- php: 7.1
env: lowest=1
- php: 7.2
env: csfixer=1
allow_failures:
- php: nightly
cache:
directories:
- $HOME/.composer/cache
- $HOME/.cache/composer
- $HOME/.cache/opcache
install:... |
Add apt-get update and ignore missing option | language: ruby
rvm:
- 2.0.0
services:
- elasticsearch
before_install:
- sudo apt-get install aspell*
script: bundle exec rspec spec
| language: ruby
rvm:
- 2.0.0
services:
- elasticsearch
before_install:
- sudo apt-get update
- sudo apt-get install aspell* --ignore-missing
script: bundle exec rspec spec
|
Drop Node v7 from TravisCI | sudo: false
language: node_js
install:
- npm install
before_script:
node_js:
- "6"
- "7"
- "node"
notifications:
email: false
| sudo: false
language: node_js
install:
- npm install
before_script:
node_js:
- "6"
- "node"
notifications:
email: false
|
Revert "Revert "chore(ci): add slack message after master deploy"" | cache: bundler
language: ruby
sudo: false
addons:
apt:
packages:
- aspell
- aspell-en
- aspell-fr
- jq
install:
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
script:
- bundle exec rake
after_success:
- ./bin/deploy-pr... | cache: bundler
language: ruby
sudo: false
addons:
apt:
packages:
- aspell
- aspell-en
- aspell-fr
- jq
install:
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
script:
- bundle exec rake
after_success:
- ./bin/deploy-pr... |
Remove Python 3.6 for now | language: python
python:
- 3.5
- 3.6
install:
- pip install tox coveralls
script:
- tox
after_success:
- coveralls
notifications:
email: false
| language: python
python:
- 3.5
install:
- pip install tox coveralls
script:
- tox
after_success:
- coveralls
notifications:
email: false
|
Add Ruby 2.0.0 to Travis | language: ruby
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
| language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
|
Add node 8 and 10 to build environments | language: node_js
node_js:
- "node"
- "6"
notifications:
email: false
| language: node_js
node_js:
- "6"
- "8"
- "10"
notifications:
email: false
|
Use latest DITA-OT version (2.5.3) for CI builds | sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=2.5.2
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=2.5.3
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
|
Update the version of ruby used to build project in TravisCI. | # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
services:
- postgresql
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
services:
- postgresql
install:
- rvm use 2.6.6
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
|
Install black thanks to super call to dev-requirements.txt | language: python
python:
- 3.6
sudo: false
# Pre-install packages for the ubuntu distribution
cache:
apt: true
directories:
- $HOME/.cache/pip
addons:
apt:
packages:
- libblas-dev
- liblapack-dev
- libatlas3gf-base
- libatlas-dev
# comm... | language: python
python:
- 3.6
sudo: false
# Pre-install packages for the ubuntu distribution
cache:
apt: true
directories:
- $HOME/.cache/pip
addons:
apt:
packages:
- libblas-dev
- liblapack-dev
- libatlas3gf-base
- libatlas-dev
# comm... |
Test against more recent Python3 versions | language: python
python:
- "2.7"
- "3.3"
- "3.4"
install:
- "pip install pep8 coverage coveralls"
- "pip install -r requirements.txt"
before_script:
"./pep8.sh"
script:
"LANGUAGE=en_GB:en coverage run --source=flask_table setup.py test"
after_success:
coveralls
| language: python
python:
- "2.7"
- "3.5"
- "3.6"
install:
- "pip install pep8 coverage coveralls"
- "pip install -r requirements.txt"
before_script:
"./pep8.sh"
script:
"LANGUAGE=en_GB:en coverage run --source=flask_table setup.py test"
after_success:
coveralls
|
Update xctool to latest version with brew | language: objective-c
script:
- xctool test -project XCDYouTubeVideoPlayerViewController.xcodeproj -scheme XCDYouTubeVideoPlayerViewController\ Tests -sdk iphonesimulator
| language: objective-c
before_install: brew update
install: brew upgrade xctool
script:
- xctool test -project XCDYouTubeVideoPlayerViewController.xcodeproj -scheme XCDYouTubeVideoPlayerViewController\ Tests -sdk iphonesimulator
|
Remove j flag from build | language: cpp
matrix:
include:
- os: linux
dist: trusty
addons: { apt: { packages: [g++-6], sources: [ubuntu-toolchain-r-test] } }
env: MATRIX_EVAL="CC=gcc-6 && CXX=g++-6" BUILD_TYPE=Release
- os: linux
dist: trusty
addons: { apt: { packages: [g++-6], sources: [ubuntu-toolchain... | language: cpp
matrix:
include:
- os: linux
dist: trusty
addons: { apt: { packages: [g++-6], sources: [ubuntu-toolchain-r-test] } }
env: MATRIX_EVAL="CC=gcc-6 && CXX=g++-6" BUILD_TYPE=Release
- os: linux
dist: trusty
addons: { apt: { packages: [g++-6], sources: [ubuntu-toolchain... |
Add script dependency to Travis | language: bash
script:
- diff <(./generate-docs) README.md | language: bash
before_script:
- npm install -g dox
script:
- diff <(./generate-docs) README.md
|
Remove openJDK version 6 target, since SleekSlick2D targets JDK version 7+. | language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
before_install:
- git submodule update --init --recursive
install: mvn install | language: java
jdk:
- oraclejdk7
- openjdk7
before_install:
- git submodule update --init --recursive
install: mvn install |
Fix path to gpg file | language: bash
before_install:
- mkdir -p ~/.config
- echo "${gpg_password}" | gpg aurup.gpg -o ~/.config/aurup
install:
- PATH=$PWD/bin:$PATH
- juju -f echo 'Installing juju'
- sed -i -e "s/#Server/Server/" ~/.juju/etc/pacman.d/mirrorlist
- juju -f pacman --noconfirm -Syy
- juju -f pacman --noconfirm -S base-devel -... | language: bash
before_install:
- mkdir -p ~/.config
- echo "${gpg_password}" | gpg archlinux/aurup.gpg -o ~/.config/aurup
install:
- PATH=$PWD/bin:$PATH
- juju -f echo 'Installing juju'
- sed -i -e "s/#Server/Server/" ~/.juju/etc/pacman.d/mirrorlist
- juju -f pacman --noconfirm -Syy
- juju -f pacman --noconfirm -S ba... |
Use Travis CI's new infrastructure | language: android
android:
components:
- build-tools-22.0.1
- android-22
- extra-android-m2repository
script:
- cd opacclient
- ./gradlew check lint
| language: android
sudo: false
android:
components:
- build-tools-22.0.1
- android-22
- extra-android-m2repository
script:
- cd opacclient
- ./gradlew check lint
|
Test using ChefDK in Travis | sudo: false
cache: bundler
language: ruby
bundler_args: --without kitchen_common kitchen_vagrant
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec foodcritic -f any .
- bundle exec rubocop
- bundle exec rspec --color --format progress
| # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefd... |
Add setting for ndarray-linalg in test | language: rust
dist: trusty
sudo: false
cache: cargo
script:
- cargo update
- cargo test -vv --no-default-features --features=$FEATURE
jobs:
include:
- env: RUST_BACKTRACE=1 FEATURE=source
addons:
apt:
packages:
- make
- env: RUST_BACKTRACE=1 FEATURE=system
add... | language: rust
dist: trusty
sudo: false
cache: cargo
script:
- cargo update
- cargo test -vv --no-default-features --features=$FEATURE
addons:
apt:
packages:
- cmake
- gfortran
jobs:
include:
- env: RUST_BACKTRACE=1 FEATURE=source
addons:
apt:
packages:
... |
Fix build against rbx-19mode => rbx-2.1.1 . | language: ruby
before_install:
- "gem install bundler -v '~> 1.5, != 1.5.0'"
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- rbx-19mode
services:
- redis-server
notifications:
email:
recipients:
- tp@tiredpixel.com
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-19mode
| language: ruby
before_install:
- "gem install bundler -v '~> 1.5, != 1.5.0'"
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- rbx-2.1.1
services:
- redis-server
notifications:
email:
recipients:
- tp@tiredpixel.com
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-2.1.1
|
Add quotes to versions in the Travis config | language: node_js
node_js:
- 0.12
- 0.10
sudo: false
| language: node_js
node_js:
- "0.12"
- "0.10"
sudo: false
|
Drop unused TravisCI directive sudo: false | sudo: false
language: ruby
rvm:
- 2.4.5
- 2.5.3
- 2.6.1
gemfile:
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.2.gemfile
- gemfiles/6.0.gemfile
matrix:
fast_finish: true
exclude:
- gemfile: gemfiles/6.0.gemfile
rvm: 2.4.5
before_install:
- gem unins... | language: ruby
rvm:
- 2.4.5
- 2.5.3
- 2.6.1
gemfile:
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.2.gemfile
- gemfiles/6.0.gemfile
matrix:
fast_finish: true
exclude:
- gemfile: gemfiles/6.0.gemfile
rvm: 2.4.5
before_install:
- gem uninstall -v '>= ... |
Encrypt IRC channel name for Travis notifications. | language: "rust"
notifications:
email: false
irc:
channels:
- "chat.freenode.net#ruma"
use_notice: true
rust:
- "nightly"
| language: "rust"
notifications:
email: false
irc:
channels:
- secure: "bI2kShW50RpX6ptnZQEzv8BSnejCskATLMvhKndXsTEJhrBIxC/IgOyWi9WTwmYWXYgupuKYRe+z5dk/BEWBa+JfKh+UYOGtwE5Y5T9S4JV2rDQjxb7xSI/vwLTqlDHhzBvqK+9JxfsqitS7FFVGtmNEXFc27f2NwC3/uW/CAM1iPD+K+Xe9ZoqAT0+03tdJtPY9kVE8+h3k5V/KAo4ENx8MqQ7g31r8ch8twFUjukn... |
Enable Travis CI for AVAE project | sudo: required
dist: trusty
language: python
git:
depth: 10
quiet: true
python:
- "3.6"
env:
matrix:
- PROJECT="tvt"
- PROJECT="cs_gan"
- PROJECT="iodine"
- PROJECT="transporter"
- PROJECT="polygen"
- PROJECT="learning_to_simulate"
before_script:
- sudo apt-get update -qq
- pip insta... | sudo: required
dist: trusty
language: python
git:
depth: 10
quiet: true
python:
- "3.6"
env:
matrix:
- PROJECT="tvt"
- PROJECT="cs_gan"
- PROJECT="iodine"
- PROJECT="transporter"
- PROJECT="polygen"
- PROJECT="learning_to_simulate"
- PROJECT="avae"
before_script:
- sudo apt-get upd... |
Change Travis CI after success coveralls target | language: java
jdk:
- openjdk7
after_success:
- mvn clean test jacoco:report coveralls:report
| language: java
jdk:
- openjdk7
after_success:
- mvn jacoco:report coveralls:jacoco
|
Test Puppet 3.1 on Ruby 1.9.3. | ---
language: ruby
rvm: 2.3.0
script: "bundle exec rake spec"
| ---
language: ruby
script: "bundle exec rake spec"
matrix:
include:
- rvm: 2.3.0
- rvm: 1.9.3
env: PUPPET_GEM_VERSION='3.1.0'
|
Use the pre-release builds of chefdk | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk... | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefd... |
Validate Travis CI config file from now on | sudo: false
language: node_js
node_js:
- "10"
- "14"
addons:
apt:
packages:
- graphicsmagick
- mediainfo
script:
- gm version
- mediainfo --Version || true # help exits with 255
- npm run lint
- npm test
after_script: "npm run coverage"
cache:
directories:
- node_modules
matrix:
fa... | # https://docs.travis-ci.com/user/build-config-validation/
version: ~> 1.0
language: node_js
node_js:
- "10"
- "14"
addons:
apt:
packages:
- graphicsmagick
- mediainfo
script:
- gm version
- mediainfo --Version || true # help exits with 255
- npm run lint
- npm test
after_script: "npm run... |
Test up to `io.js` `v2.0` | language: node_js
node_js:
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
matrix:
fast_fini... | language: node_js
node_js:
- "iojs-v2.0"
- "iojs-v1.8"
- "iojs-v1.7"
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] |... |
Test the gem with ruby versions 2.2+ | sudo: true
language: ruby
rvm:
- 2.3.4
before_install:
- gem install bundler -v 1.15.3
services:
- memcached
| sudo: true
language: ruby
rvm:
- 2.2
- 2.3
- 2.4
before_install:
- gem install bundler -v 1.15.3
services:
- memcached
|
Update node version for tests | language: node_js
node_js:
- "8"
script: npm run coverage
after_success: npm run coveralls | language: node_js
node_js:
- "14"
script: npm run coverage
after_success: npm run coveralls
|
Test with PHP 7 and lower dependencies | language: php
php:
- 5.5
- 5.6
- hhvm
before_script:
- composer update
script: vendor/bin/behat
| language: php
matrix:
include:
- php: 5.5
- php: 5.6
- php: 5.5
env: deps=low
- php: nightly
- php: hhvm-nightly
allow_failures:
- php: nightly
- php: hhvm-nightly
fast_finish: true
env:
global:
- deps=no
before_script:
- c... |
Use trusty distribution for all version in TravisCI | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
matrix:
include:
- php: hhvm
dist: trusty
sudo: required
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit --v... | language: php
dist: trusty
sudo: required
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=coverage.xm... |
Remove rubocup from code climate engines | ---
engines:
rubocop:
enabled: true
golint:
enabled: true
gofmt:
enabled: true
govet:
enabled: true
fixme:
enabled: true
duplication:
enabled: true
config:
languages:
- go
ratings:
paths:
- "**.go"
exclude_paths:
- vendor/
| ---
engines:
golint:
enabled: true
gofmt:
enabled: true
govet:
enabled: true
fixme:
enabled: true
duplication:
enabled: true
config:
languages:
- go
ratings:
paths:
- "**.go"
exclude_paths:
- vendor/
|
Add support for 5.1, drop support for 4.5, 4.6, and 5.0 | # Copyright (c) 2014-2016 Software Architecture Group (Hasso Plattner Institute)
language: smalltalk
sudo: false
smalltalk:
- Squeak-trunk
- Squeak-5.0
- Squeak-4.6
- Squeak-4.5
| # Copyright (c) 2014-2016 Software Architecture Group (Hasso Plattner Institute)
language: smalltalk
sudo: false
smalltalk:
- Squeak-trunk
- Squeak-5.1
- Squeak-5.0
- Squeak-4.6
- Squeak-4.5
matrix:
allow_failures:
- smalltalk: Squeak-5.0
- smalltalk: Squeak-4.6
- smalltalk: Squeak-4.5
fast... |
Fix nunit version to match ubuntu 12.04 | language: c
install:
- sudo apt-get install mono-devel mono-gmcs mono-dmcs nunit-console libpoppler-cil libnunit2.6-cil
script:
- xbuild CI.proj
- nunit-console ./ReportTests/bin/Debug/ReportTests.dll -exclude Integration,NotWorkingOnMono
| language: c
install:
- sudo apt-get install mono-devel mono-gmcs mono-dmcs nunit-console libpoppler-cil libnunit2.5-cil
script:
- xbuild CI.proj
- nunit-console ./ReportTests/bin/Debug/ReportTests.dll -exclude Integration,NotWorkingOnMono
|
Allow PHP nightly to fail | language: php
sudo: false
env:
- COMPOSER_OPTIONS="
php:
- 7.1
matrix:
include:
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-lowest"
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-stable"
- php: nightly
fast_finish: true
cache:
directories:
- $HOME/.composer/... | language: php
sudo: false
env:
- COMPOSER_OPTIONS="
php:
- 7.1
matrix:
fast_finish: true
include:
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-lowest"
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-stable"
- php: nightly
allow_failures:
- php: nightly
cache:
... |
Test against major versions only | language: node_js
node_js:
- 4.0
- 4.1
- 4.2
- 4.3
- 4.4
- 4.5
- 4.6
- 5.0
- 5.1
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- 5.7
- 5.8
- 5.9
- 5.10
- 5.11
- 5.12
- 6.0
- 6.1
- 6.2
- 6.3
- 6.4
- 6.5
- 6.6
- 6.7
| language: node_js
node_js:
- 4
- 5
- 6
|
Test against Node.js 4.3 and 5.6 | language: node_js
node_js:
- 0.10
- 0.11
- 0.12
- 4.0
- 4.1
- 4.2
- 5.0
- 5.1
- 5.2
- 5.3
- 5.4
- 5.5
before_install:
- npm install -g npm@latest
| language: node_js
node_js:
- 0.10
- 0.11
- 0.12
- 4.0
- 4.1
- 4.2
- 4.3
- 5.0
- 5.1
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
before_install:
- npm install -g npm@latest
|
Install deps on Travis manually | language: node_js
notifications:
email: true
node_js:
- '6'
script:
- npm test && npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
| language: node_js
notifications:
email: true
install: rm -rf node_modules && npm install
node_js:
- '6'
script:
- npm test && npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
|
Add search for lastest boost | language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository -y ppa:boost-latest/ppa
- sudo apt-get -y update
- sudo apt-get install doxygen
- sudo apt-get install libboost1.54-dev
- sudo apt-get install libxerces-c-dev
- sudo apt-get install libhdf5-serial-dev
script: ./travis-ci-build.sh
| language: cpp
compiler:
- gcc
before_install:
# - sudo add-apt-repository -y ppa:boost-latest/ppa
- sudo apt-get -y update
- sudo apt-cache search boost
- sudo apt-get install doxygen
# - sudo apt-get install libboost1.54-dev
- sudo apt-get install libxerces-c-dev
- sudo apt-get install libhdf5-serial-dev... |
Add the correc path to test project | language: csharp
solution: Msg.sln
install:
- nuget restore Msg.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Msg.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./Core/Msg.Core.csproj
| language: csharp
solution: Msg.sln
install:
- nuget restore Msg.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Msg.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./Core/Msg.Core.Specs/Msg.Core.Specs.csproj
|
Remove old grunt cli requirement. | language: node_js
node_js:
- stable
services:
- mongodb
install:
- npm install
before_script:
- npm install grunt-cli -g
script:
- npm run cover
after_script: "cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js" | language: node_js
node_js:
- stable
services:
- mongodb
install:
- npm install
script:
- npm run cover
after_script: "cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js" |
Correct config of allowed failures | language: ruby
before_install: gem install bundler
script: bundle exec rake ci
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
- jruby-19mode
matrix:
allow_failures: rbx-2
| language: ruby
before_install: gem install bundler
script: bundle exec rake ci
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
- jruby-19mode
matrix:
allow_failures:
- rbx-2
|
Fix invalid deps and move AttributeFactory to component | language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --dev --prefer-source
script: bin/phpspec run -fpretty --verbose
| language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --no-interaction --prefer-source
script: bin/phpspec run -fpretty --verbose
|
Update from Hackage at 2016-11-07T21:09:49Z | homepage: https://github.com/ciez/regex-do
changelog-type: ''
hash: e57e426cf8f04a5fefa04eac1df07c0d76cf78045dab8ad42cf276c53acaa2fc
test-bench-deps:
regex-pcre: -any
bytestring: -any
base: <=5.0
hspec: -any
text: -any
stringsearch: -any
array: -any
regex-base: -any
regex-do: -any
QuickCheck: -any
m... | homepage: https://github.com/ciez/regex-do
changelog-type: ''
hash: e57e426cf8f04a5fefa04eac1df07c0d76cf78045dab8ad42cf276c53acaa2fc
test-bench-deps:
regex-pcre: -any
bytestring: -any
base: <=5.0
hspec: -any
text: -any
stringsearch: -any
array: -any
regex-base: -any
regex-do: -any
QuickCheck: -any
m... |
Correct issue with adjustment sample data | <% 1.upto(100) do |i| %>
tax_<%= i %>:
order: order_<%= i %>
amount: 0
source: order_<%= i %>
source_type: Order
originator:
originator_type:
label: Tax
frozen: false
mandatory: true
<% end %>
<% 1.upto(100) do |i| %>
ship_<%= i %>:
order: order_<%= i %>
amount: 5
source: shipment_<%= i %>
sou... | <% 1.upto(100) do |i| %>
tax_<%= i %>:
order: order_<%= i %>
amount: 0
source: order_<%= i %>
source_type: Order
originator:
originator_type:
label: Tax
locked: false
mandatory: true
<% end %>
<% 1.upto(100) do |i| %>
ship_<%= i %>:
order: order_<%= i %>
amount: 5
source: shipment_<%= i %>
sou... |
Add a test step to the YAML template for Go (like CircleCI's template) | # Go
# Build your Go application.
# https://aka.ms/yaml
queue: 'Hosted Linux Preview'
steps:
- task: GoTool@0
- task: Go@0
inputs:
command: 'get'
arguments: '-d'
- task: Go@0
inputs:
command: 'build'
arguments: '-o "$(build.repository.name)"'
#- task: ArchiveFiles@2
# inputs:
# rootFolderOr... | # Go
# Build your Go application.
# https://aka.ms/yaml
queue: 'Hosted Linux Preview'
steps:
- task: GoTool@0
inputs:
version: '1.10'
- task: Go@0
inputs:
command: 'get'
arguments: '-v -t -d'
- task: Go@0
inputs:
command: 'test'
arguments: '-v'
- task: Go@0
inputs:
command: 'build'
... |
Change markdown generator to handle nested lists | name: mopsled
description:
meta_description:
aboutPage: true
markdown: redcarpet
highlighter: pygments
paginate: 20
baseurl: /
domain_name: 'http://yourblog-domain.com'
google_analytics: 'UA-XXXXXXXX-X'
disqus: false
disqus_shortname: 'your-disqus-shortname'
# Details for the RSS feed generator
url: 'htt... | name: mopsled
description:
meta_description:
aboutPage: true
markdown: rdiscount
highlighter: pygments
paginate: 20
baseurl: /
domain_name: 'http://yourblog-domain.com'
google_analytics: 'UA-XXXXXXXX-X'
disqus: false
disqus_shortname: 'your-disqus-shortname'
# Details for the RSS feed generator
url: 'htt... |
Fix baseurl for static files | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... |
Change config option to latest | ---
title: FiniteMachine Ruby gem
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: ""
hig... | ---
title: FiniteMachine Ruby gem
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: ""
hig... |
Revert "update markdown and highlighter" | # Dependencies
markdown: kramdown
highlighter: rouge
# Permalinks
permalink: pretty
# Setup
name: njtierney
title: Nicholas Tierney
tagline: 'Original witty remark'
description: 'Statistics, Coffee, Photography, and Me'
url: http://tierneyn.githu... | # Dependencies
markdown: redcarpet
redcarpet:
extensions: ["tables"]
highlighter: pygments
# Permalinks
permalink: pretty
# Setup
name: njtierney
title: Nicholas Tierney
tagline: 'Original witty remark'
description: 'Statistics, Coffee, Photography, and Me'... |
Change to noarch build with python>=3.4 | {% set name = "singledispatchmethod" %}
{% set version = "1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/singledispatchmethod-{{ version }}.tar.gz
sha256: 183a7fbeab53b9c9d182f8b8f9c2d7e109a7d40afaa30261d81dd8de68cd73bf
bui... | {% set name = "singledispatchmethod" %}
{% set version = "1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/singledispatchmethod-{{ version }}.tar.gz
sha256: 183a7fbeab53b9c9d182f8b8f9c2d7e109a7d40afaa30261d81dd8de68cd73bf
bui... |
Use normative types ALIEN12 for release | tosca_definitions_version: alien_dsl_1_1_0
template_name: marathon-plugin-types
template_author: Alien 4 Cloud
template_version: ${project.version}
description: "Defines resources for marathon"
imports:
- tosca-normative-types:1.0.0-SNAPSHOT
node_types:
alien.nodes.marathon.Container:
derived_from: tosca.no... | tosca_definitions_version: alien_dsl_1_1_0
template_name: marathon-plugin-types
template_author: Alien 4 Cloud
template_version: 1.0.0-SNAPSHOT
description: "Defines resources for marathon"
imports:
- tosca-normative-types:1.0.0-ALIEN12
node_types:
alien.nodes.marathon.Container:
derived_from: tosca.nodes.C... |
Use wagtail-ci image on Drone | image: kaedroho/django-base
script:
- python3.4 setup.py install
- pip3.4 install -r requirements-dev.txt
- python3.4 runtests.py
| image: wagtail-ci
script:
- python3.4 setup.py install
- pip3.4 install -r requirements-dev.txt
- python3.4 runtests.py
|
Add Python3 victoria unit tests | - project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- openstack-lower-constraints-jobs
- openstack-python3-ussuri-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- openstack-lower-constraints-jobs
- openstack-python3-victoria-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
|
Add Python3 victoria unit tests | - project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- horizon-nodejs10-jobs
- openstack-lower-constraints-jobs-horizon
- openstack-python3-ussuri-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
-... | - project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- horizon-nodejs10-jobs
- openstack-lower-constraints-jobs-horizon
- openstack-python3-victoria-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
... |
Replace make with mage in CircleCI build | defaults: &defaults
working_directory: /go/src/github.com/gohugoio
docker:
- image: bepsays/ci-goreleaser:0.34.2-1
version: 2
jobs:
build:
<<: *defaults
steps:
- checkout:
path: hugo
- run:
command: |
git clone git@github.com:gohugoio/hugoDocs.g... | defaults: &defaults
working_directory: /go/src/github.com/gohugoio
docker:
- image: bepsays/ci-goreleaser:0.34.2-1
version: 2
jobs:
build:
<<: *defaults
steps:
- checkout:
path: hugo
- run:
command: |
git clone git@github.com:gohugoio/hugoDocs.g... |
Add CI test for SyntaxMapBuilder on GitHub Action | name: Test
on: [push, pull_request]
jobs:
macOS:
runs-on: macOS-latest
steps:
- name: Show environments
run: |
sw_vers
xcodebuild -version
swift --version
- uses: actions/checkout@v1
- name: Checkout submodules
run: git submodule update --init
- name: Lin... | name: Test
on: [push, pull_request]
jobs:
macOS:
runs-on: macOS-latest
steps:
- name: Show environments
run: |
sw_vers
xcodebuild -version
swift --version
- uses: actions/checkout@v1
- name: Checkout submodules
run: git submodule update --init
- name: Lin... |
Add more information about which compressed formats are supported in the unpack app PTV-976 | name : Unpack Staging File - v1.0.12
subtitle : Unpack A Staging Compressed File
tooltip : Unpack A Staging Compressed File
icon: data-orange.png
screenshots :
[]
suggestions :
apps:
related :
[]
next :
[]
methods:
related :
[]
next... | name : Unpack Staging File - v1.0.12
subtitle : Unpack A Staging Compressed File
tooltip : Unpack A Staging Compressed File
icon: data-orange.png
screenshots :
[]
suggestions :
apps:
related :
[]
next :
[]
methods:
related :
[]
next... |
Add Elasticsearch Kibana Sense to fucking amazing docker | version: '3'
services:
db:
image: mysql
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: dirty
web:
build:
context: .
dockerfile: ./Dockerfile/rails
command: puma
volumes:
- .:/usr/src/app
ports:
- "3000:3000"
depends_on:
- db
| version: '3'
services:
db:
image: mysql
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: dirty
web:
build:
context: .
dockerfile: ./Dockerfile/rails
command: puma
volumes:
- .:/usr/src/app
ports:
- "3000:3000"
depends_on:
- db
elast... |
Update from Hackage at 2021-02-19T22:22:40Z | homepage: https://github.com/adamflott/network-types-icmp#readme
changelog-type: markdown
hash: a3a0d2f0beaebe0aa349054f5719e70f950c688903473bae7421906ecdbf3bc2
test-bench-deps:
network-types-icmp: -any
base: '>=4.7 && <5'
maintainer: adam@adamflott.com
synopsis: Types for representing ICMP and ICMPv6 messages.
cha... | homepage: https://github.com/adamflott/network-types-icmp#readme
changelog-type: markdown
hash: 418fb1945b5f3fd17a6f96ca505ff596a55f1dfaa5052553592dcabe4572cdaa
test-bench-deps:
network-types-icmp: -any
base: '>=4.7 && <5'
maintainer: adam@adamflott.com
synopsis: Types for representing ICMP and ICMPv6 messages.
cha... |
Move ci to pip from pip3 | ---
name: CI
on:
pull_request:
push:
branches:
- master
schedule:
- cron: "0 5 * * 0"
defaults:
run:
working-directory: cookiecutter-ansible-role
jobs:
pytest:
name: Pytest
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
... | ---
name: CI
on:
pull_request:
push:
branches:
- master
schedule:
- cron: "0 5 * * 0"
defaults:
run:
working-directory: cookiecutter-ansible-role
jobs:
pytest:
name: Pytest
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v2
... |
Drop Python 3.5 from testing | name: build ⚙️
on: [ push, pull_request ]
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
toxenv: [py35-sqlite, py36-sqlite, py37-sqlite, py38-sqlite]
env:
TOXENV: ${{ matrix.toxenv }}
steps:
- uses: actions/checkout@v2
... | name: build ⚙️
on: [ push, pull_request ]
jobs:
main:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
toxenv: [py36-sqlite, py37-sqlite, py38-sqlite]
env:
TOXENV: ${{ matrix.toxenv }}
steps:
- uses: actions/checkout@v2
- uses: actions/se... |
Add x64 to AppVeyor build matrix | branches:
except:
- gh-pages
platform:
- x86
environment:
matrix:
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_INSTALL_DIR: C:\Program Files (x86)\Rust
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-$Env:RUST_INSTALL_TRIPLE.exe"
- rust-nightly-i686-pc-wind... | branches:
except:
- gh-pages
platform:
- x86
- x64
environment:
matrix:
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_INSTALL_DIR: C:\Program Files (x86)\Rust
- RUST_INSTALL_TRIPLE: x86_64-pc-windows-gnu
RUST_INSTALL_DIR: C:\Program Files\Rust
install:
- ps: Start-FileDownload "htt... |
Remove hard coded session handler | framework:
annotations:
cache: oro.cache.annotations
session:
handler_id: snc_redis.session.handler
doctrine:
orm:
entity_managers:
default:
metadata_cache_driver:
type: service
id: oro.cache.doctrine.metadata
... | framework:
annotations:
cache: oro.cache.annotations
doctrine:
orm:
entity_managers:
default:
metadata_cache_driver:
type: service
id: oro.cache.doctrine.metadata
query_cache_driver:
type: s... |
Add the chat_service and slack_domain vars | ---
site_name: addis
ansible_user: ubuntu
prerequisites:
Debian:
- vim
- make
- git
- python-pip
- python-setuptools
- python-dev
- libssl-dev
- gcc
- nano
- joe
RedHat:
- vim
- make
- git
- python-pip
- python-setuptools
- python-devel
- gcc
# Ad... | ---
site_name: addis
slack_domain: africa-arabia-roc
ansible_user: ubuntu
chat_service: slack # or rocket chat
prerequisites:
Debian:
- vim
- make
- git
- python-pip
- python-setuptools
- python-dev
- libssl-dev
- gcc
- nano
- joe
RedHat:
- vim
- make
- git
- ... |
Make time format more legible, fix minutes | # Sample localization file for English. Add more files in this directory for other locales.
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
date:
formats:
govuk_date: "%-e %B %Y" # 1 January 2013 - https://www.gov.uk/design-principles/style-guide/style-poin... | # Sample localization file for English. Add more files in this directory for other locales.
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
date:
formats:
govuk_date: "%-e %B %Y" # 1 January 2013 - https://www.gov.uk/design-principles/style-guide/style-poin... |
Remove cryptography version limit in Azure tests. | - name: install cryptography requirement
# preempt the installation of cryptography from requirements-azure.txt to limit the version installed
# requests[security] requires cryptography >= 1.3.4
# cryptography 2.1 requires pip 8.1.2+
command: pip install cryptography>=1.3.4,<2.1
- pip:
requirements: '{{ ro... | - pip:
requirements: '{{ role_path }}/../../../../packaging/requirements/requirements-azure.txt'
|
Switch to a matrix build style. | sudo: false
language: python
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=runner
- TOX_ENV=flake8
- TOX_ENV=integration
- TOX_ENV=coverage
- TOX_ENV=language_ar
- TOX_ENV=language_de
- TOX_ENV=language_es
- TOX_ENV=language_fr
- T... | sudo: false
language: python
matrix:
include:
- os: linux
python: 2.6
env: TOX_ENV=py26
install:
- pip install tox
script: tox -e $TOX_ENV
|
Remove redundant lockscreen unlock commands, restructure commands | machine:
java:
version: openjdk8
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter tools,extra-android-m2repository,extra-android-support,extra-google-google_play_services,extra-google-m2repository,android-23
- echo y | android update sdk --no-ui --all --filter build-tools-23.0.2
t... | machine:
java:
version: openjdk8
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter tools,extra-android-m2repository,extra-android-support,extra-google-google_play_services,extra-google-m2repository,android-23
- echo y | android update sdk --no-ui --all --filter build-tools-23.0.2
t... |
Build after creating secret file | machine:
pre:
- curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0
- docker -v
timezone: Asia/Tokyo
services:
- docker
dependencies:
cache_directories:
- ~/.docker
pre:
- sudo pip install docker-compose
override:
- docker-compose build... | machine:
pre:
- curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0
- docker -v
timezone: Asia/Tokyo
services:
- docker
dependencies:
cache_directories:
- ~/.docker
pre:
- sudo pip install docker-compose
test:
pre:
- mkdir -p $HOME/$GI... |
Add automated heroku deployment to CI | dependencies:
pre:
# Replace default bundler version, which is a bit older
- yes y | gem uninstall bundler
- gem install bundler --pre
post:
- npm run build
machine:
# Ruby version specified in .ruby-version
node:
version: 7.5.0
test:
override:
# Generate junit xml reports that can b... | dependencies:
pre:
# Replace default bundler version, which is a bit older
- yes y | gem uninstall bundler
- gem install bundler --pre
post:
- npm run build
deployment:
staging:
branch: master
heroku:
appname: cs1332qna
machine:
# Ruby version specified in .ruby-version
node:
... |
Use variables to more effectively control flow | ---
- hosts: all
tasks:
- name: Download Couchbase deb
get_url: url=http://packages.couchbase.com/releases/2.2.0/couchbase-server-community_2.2.0_x86_64.deb
dest=~/.
- name: Install Couchbase deb
command: /usr/bin/dpkg -i ~/couchbase-server-community_2.2.0_x86_64.deb
... | ---
- hosts: all
tasks:
- name: Check if Couchbase is installed
command: /usr/bin/dpkg-query -l couchbase-server
register: couchbase_check
failed_when: "couchbase_check.rc not in (0, 1)"
changed_when: False
- name: Download Couchbase deb
get_url: url=http://packages.couchbase.com... |
Remove the default DB and users from mysql | ---
- name: Install MariaDB repo for CentOS 7
copy: src=../files/centos7.repo dest=/etc/yum.repos.d/mariadb.repo
tags:
- mariadb
- name: Install MariaDB server and client
action: yum name={{ item }}
with_items:
- MariaDB-server
- MariaDB-client
tags:
- mariadb
- name: Start the MariaDB serv... | ---
- name: Install MariaDB repo for CentOS 7
copy: src=../files/centos7.repo dest=/etc/yum.repos.d/mariadb.repo
tags:
- mariadb
- name: Install MariaDB server and client
action: yum name={{ item }}
with_items:
- MariaDB-server
- MariaDB-client
tags:
- mariadb
# 'localhost' needs to be the ... |
Remove threads from coverage until re-enabled | coverage:
precision: 2
round: down
range: "70...100"
status:
project:
default:
threshold: 0.1%
patch:
default:
threshold: 50%
changes: false
ignore:
- examples
- tests
- scripts
# Auto-generated files
- include/occa/kernelOperators.hpp
- src/kernelOperators.... | coverage:
precision: 2
round: down
range: "70...100"
status:
project:
default:
threshold: 0.1%
patch:
default:
threshold: 50%
changes: false
ignore:
- examples
- tests
- scripts
# Auto-generated files
- include/occa/kernelOperators.hpp
- src/kernelOperators.... |
Fix wrong namespace for the HABTM cop | inherit_from: .rubocop_todo.yml
AllCops:
Exclude:
- spec/dummy/**/*
- tmp/**/*
- vendor/**/*
- bin/*
TargetRubyVersion: 2.3
# Style cops
Style/ExtraSpacing:
Enabled: false
Style/AutoResourceCleanup:
Enabled: true
Style/CollectionMethods:
Enabled: true
Style/Send:
Enabled: true
Style/St... | inherit_from: .rubocop_todo.yml
AllCops:
Exclude:
- spec/dummy/**/*
- tmp/**/*
- vendor/**/*
- bin/*
TargetRubyVersion: 2.3
# Style cops
Style/ExtraSpacing:
Enabled: false
Style/AutoResourceCleanup:
Enabled: true
Style/CollectionMethods:
Enabled: true
Style/Send:
Enabled: true
Style/St... |
Improve CI build times through smarter caching | name: "build protobufs"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
env:
BAZEL: bazelisk-linux-amd64
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
-... | name: "build protobufs"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
env:
BAZEL: bazelisk-linux-amd64
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
-... |
Rollback ubuntu for qemu to not segfault | name: CI
on:
push:
tags:
- '*'
jobs:
test:
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4']
runs-on: ubuntu-latest
name: PHP ${{ matrix.php-versions }} Tests
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup PHP
uses: shivamma... | name: CI
on:
push:
tags:
- '*'
jobs:
test:
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4']
runs-on: ubuntu-16.04
name: PHP ${{ matrix.php-versions }} Tests
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammat... |
Upgrade circleci to use haskell/build 1.6.0 | version: 2.1
orbs:
haskell: haskell-works/haskell-build@1.5.3
github: haskell-works/github-release@1.2.1
hackage: haskell-works/hackage@1.0.0
workflows:
multiple-ghc-build:
jobs:
- haskell/build:
name: GHC 8.2.2
executor: haskell/ghc-8_2_2
- haskell/build:
name: ... | version: 2.1
orbs:
haskell: haskell-works/haskell-build@1.6.0
github: haskell-works/github-release@1.2.1
hackage: haskell-works/hackage@1.0.0
workflows:
multiple-ghc-build:
jobs:
- haskell/build:
name: GHC 8.2.2
executor: haskell/ghc-8_2_2
- haskell/build:
name: ... |
Rename a CI job name because it builds nothing | version: 2
jobs:
build:
docker:
- image: node:alpine
steps:
- checkout
- restore_cache:
key: eslint-alpine
- run:
name: Install ESLint
command: npm install eslint
- save_cache:
paths:
- ./node_modules
- ./package-loc... | version: 2
jobs:
lint:
docker:
- image: node:alpine
steps:
- checkout
- restore_cache:
key: eslint-alpine
- run:
name: Install ESLint
command: npm install eslint
- save_cache:
paths:
- ./node_modules
- ./package-lock... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.