Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Remove osx for now (Travis builds fail). | language: cpp
os:
- linux
- osx
sudo: false
notifications:
email:
on_success: change # [always|never|change] # default: change
on_failure: always # [always|never|change] # default: always
script:
- mkdir build
- pushd build
- cmake .. -DCMAKE_BUILD_TYPE=RELEASE || exit 1
- cmake --build . -- -j2 || exit 1
... | language: cpp
os:
- linux
sudo: false
notifications:
email:
on_success: change # [always|never|change] # default: change
on_failure: always # [always|never|change] # default: always
script:
- mkdir build
- pushd build
- cmake .. -DCMAKE_BUILD_TYPE=RELEASE || exit 1
- cmake --build . -- -j2 || exit 1
- popd
... |
Allow GHC 7.8 build to fail | # explicitly request container-based infrastructure
sudo: false
matrix:
include:
- env: GHCVER=7.8.4 STACK_YAML=stack-7.8.yaml
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-7.8.4
- env: GHCVER=7.10.2 STACK_YAML=stack.yaml
addons:
apt:
sources:
... | # explicitly request container-based infrastructure
sudo: false
matrix:
include:
- env: GHCVER=7.8.4 STACK_YAML=stack-7.8.yaml
addons:
apt:
sources:
- hvr-ghc
packages:
- ghc-7.8.4
- env: GHCVER=7.10.2 STACK_YAML=stack.yaml
addons:
apt:
sources:
... |
Fix coveralls SNIMissingWarning on Travis | language: node_js
# 4.3.2 is what AWS Lambda currently uses
node_js:
- "5"
- "4.3.2"
python:
- "2.7"
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- gem install coveralls-lcov
- pip install --user pytest pytest-cov coveralls flake8 virtualenv
- pip install --user -r requirements.txt
... | language: node_js
# 4.3.2 is what AWS Lambda currently uses
node_js:
- "5"
- "4.3.2"
python:
- "2.7"
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- gem install coveralls-lcov
- pip install --user pytest pytest-cov coveralls flake8 virtualenv urllib3[secure]
- pip install --user -r r... |
Update Travis node version to match package.json | language: node_js
node_js:
- "6.2.2"
branches:
only:
- master
| language: node_js
node_js:
- "6.11.1"
branches:
only:
- master
|
Add Node 6 to Travis | language: node_js
node_js:
- "4.0.0"
- "4"
- "5.0.0"
- "5"
| language: node_js
node_js:
- "4.0.0"
- "4"
- "5.0.0"
- "5"
- "6.0.0"
- "6"
|
Update Bundler because Travis won't. >:( | language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
script: bundle exec rspec
before_install:
- gem update --system
services:
- redis-server
notifications:
email: false
webhooks:
urls:
- http://util.perceptes.com:8080/travis
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
script: bundle exec rspec
before_install:
- gem update --system
- gem update bundler
services:
- redis-server
notifications:
email: false
webhooks:
urls:
- http://util.perceptes.com:8080/travis
|
Update Better schedule to 1.4 (7) | AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Science & Education
License: GPL-3.0-or-later
AuthorName: Vít Skalický
AuthorEmail: vit.skalicky@email.cz
SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh
IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues
AutoName: Better schedule
RepoTyp... | AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Science & Education
License: GPL-3.0-or-later
AuthorName: Vít Skalický
AuthorEmail: vit.skalicky@email.cz
SourceCode: https://github.com/vitSkalicky/lepsi-rozvrh
IssueTracker: https://github.com/vitSkalicky/lepsi-rozvrh/issues
AutoName: Better schedule
RepoTyp... |
Test gem under ruby 2.3.0 | language: ruby
sudo: false
rvm:
- "1.9.3"
- "2.1"
- "2.2"
| language: ruby
sudo: false
rvm:
- "1.9.3"
- "2.1"
- "2.2"
- "2.3.0"
|
Add Node 7 to testing environments | language: node_js
node_js:
- "4.0.0"
- "4"
- "5.0.0"
- "5"
- "6.0.0"
- "6"
| language: node_js
node_js:
- "4.0.0"
- "4"
- "5.0.0"
- "5"
- "6.0.0"
- "6"
- "7.0.0"
- "7"
|
Update uuid dependency for ubuntu | language: node_js
node_js:
- "0.10"
script:
- npm test
| language: node_js
node_js:
- "0.10"
before_install:
- sudo apt-get update
- sudo apt-get install uuid-dev
script:
- npm test
|
Upgrade PHP test environment to PHP 5.4. | language: php
install:
- pear install package.xml
php:
- 5.2
script: phpunit tests/
| language: php
php:
- '5.4'
install:
- pear install package.xml
script: phpunit tests/
|
Use Xcode 7.1 for tests | language: objective-c
osx_image: xcode7
install:
- gem install xcpretty
script:
- set -o pipefail && xcodebuild -project Bond.xcodeproj -scheme Bond -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.0' test | xcpretty
- set -o pipefail && xcodebuild -project Bond.xcodeproj -scheme Bon... | language: objective-c
osx_image: xcode7.1
install:
- gem install xcpretty
script:
- set -o pipefail && xcodebuild -project Bond.xcodeproj -scheme Bond -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.0' test | xcpretty
- set -o pipefail && xcodebuild -project Bond.xcodeproj -scheme B... |
Update Travis CI build matrix | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.2.2
branches:
only:
- master
before_install:
- gem update --system
- gem update bundler
script: "bundle exec rake spec"
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.4
- 2.3.0
branches:
only:
- master
before_install:
- gem update --system
- gem update bundler
script: "bundle exec rake spec"
|
Update Chrome configuration for switch to Xenial | dist: xenial
addons:
chrome: stable
services:
- xvfb
language: python
python:
- '3.7'
before_install:
- wget https://chromedriver.storage.googleapis.com/2.33/chromedriver_linux64.zip
- unzip chromedriver_linux64.zip
- sudo mv chromedriver /usr/local/bin
- sudo chmod a+x /usr/local/bin/chromedriver
install:
- pip inst... | dist: xenial
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
services:
- xvfb
language: python
python:
- '3.7'
before_install:
- wget https://chromedriver.storage.googleapis.com/2.33/chromedriver_linux64.zip
- unzip chromedriver_linux64.zip
- sudo mv chromedriver /usr/lo... |
Fix JAVA_HOME path for Travis CI | language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq openjdk-7-jdk libzip-dev
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4... | language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install -qq openjdk-7-jdk libzip-dev
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4... |
Fix typo in Travis config | language: cpp
compiler:
- g++
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -yqq g++-4.8 gcc-4.8 valgrind
- export CXX="g++-4.8"
- export CC="g++-4.8"
script: mkdir build && cd build && cmake .. && make && ./test/test-d... | language: cpp
compiler:
- g++
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -yqq g++-4.8 gcc-4.8 valgrind
- export CXX="g++-4.8"
- export CC="gcc-4.8"
script: mkdir build && cd build && cmake .. && make && ./test/test-d... |
Add lms-preview to nginx for suclass | - hosts: ~tag_Name_{{machine}}_{{ env }}
pre_tasks:
- fail: msg="This playbook only runnable on 'app' machines"
when: "'app' not in machine"
sudo: True
vars:
secure_dir: '../../../edx-secret/ansible'
local_dir: '../../../edx-secret/ansible/local'
not_prod: false
vars_files:
- "{{ secure_d... | - hosts: ~tag_Name_{{machine}}_{{ env }}
pre_tasks:
- fail: msg="This playbook only runnable on 'app' machines"
when: "'app' not in machine"
sudo: True
vars:
secure_dir: '../../../edx-secret/ansible'
local_dir: '../../../edx-secret/ansible/local'
not_prod: false
vars_files:
- "{{ secure_d... |
Add ddcctl to CI, bump Xcode version | name: Build
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
formula: [btag, mmkcmd, monkeys-audio, synconv]
os: [macos-10.15]
xcode: ['11.4.1']
head: [false]
include:
- formula: tinyemu
os: macos-10.15
xcode: '... | name: Build
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
formula: [btag, mmkcmd, monkeys-audio, synconv]
os: [macos-10.15]
xcode: ['12.1']
head: [false]
include:
- formula: ddcctl
os: macos-10.15
xcode: '12.... |
Update to ruby 2.7.2 on Travsi CI | anguage: ruby
rvm:
- 2.6.5
services:
- postgresql
before_script:
- psql -c 'create database database_test;' -U postgres
| anguage: ruby
rvm:
- 2.7.2
services:
- postgresql
before_script:
- psql -c 'create database database_test;' -U postgres
|
Disable Node 0.6 on Travis CI. | language: "node_js"
node_js:
- "0.10"
- "0.8"
- "0.6"
- "0.4"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
| language: "node_js"
node_js:
- "0.10"
- "0.8"
# - "0.6"
- "0.4"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
|
Update rubies to be tested by TravisCI | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.2.2
- 2.3.0
before_install: gem install bundler -v 1.10.6
| language: ruby
rvm:
- 2.2.2
- 2.3.0
- 2.3.3
before_install: gem install bundler -v 1.10.6
|
Fix error in Ruby 2.2 build | language: ruby
sudo: false
cache: bundler
notifications:
webhooks: https://www.travisbuddy.com
on_success: never
before_install:
# Install Code Climate test reporter
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
... | language: ruby
sudo: false
cache: bundler
notifications:
webhooks: https://www.travisbuddy.com
on_success: never
before_install:
# Install Code Climate test reporter
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
... |
Update Travis dist to xenial. | sudo: false
language: python
cache: pip
dist: trusty
python:
- 3.7
services:
- postgresql
- docker
addons:
postgresql: 9.6
apt:
packages:
- postgresql-9.6-postgis-2.3
branches:
only:
- master
env:
global:
- SECRET_KEY="SecretKeyForTravisCI"
- DATAB... | sudo: false
language: python
cache: pip
dist: xenial
python:
- 3.7
services:
- postgresql
- docker
addons:
postgresql: 9.6
apt:
packages:
- postgresql-9.6-postgis-2.3
branches:
only:
- master
env:
global:
- SECRET_KEY="SecretKeyForTravisCI"
- DATAB... |
Remove the deprecated sudo option and run on the latest version | language: php
php:
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit
- vendor/bin/composer-require-checker
- vendor/b... | language: php
php:
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit
- vendor/bin/composer-require-checker
- vendor/b... |
Add the latest ruby versions | language: ruby
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "ruby-head"
- "jruby"
| language: ruby
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- "ruby-head"
- "jruby"
|
Fix license acceptance for kitchen | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTAN... | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTAN... |
Remove hhvm completely as not officially supported | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
allow_failures:
php: 7.0
php: hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --n... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
allow_failures:
php: 7.0
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
... |
Add Ruby versions & sudo false | language: ruby
rvm:
- 2.2.2
| language: ruby
rvm:
- 2.0.0
- 2.1.3
- 2.1.5
- 2.1.6
- 2.2.0
- 2.2.1
- 2.2.2
sudo: false
|
Remove 1.8 since server code needed for testing | language: go
sudo: false
go:
- 1.10.x
- 1.9.x
- 1.8.x
install:
- go get -t ./...
- go get github.com/nats-io/gnatsd
- go get github.com/mattn/goveralls
- go get github.com/wadey/gocovmerge
- go get -u honnef.co/go/tools/cmd/megacheck
- go get -u github.com/client9/misspell/cmd/misspell
before_script:
- $(exit $(go fmt ... | language: go
sudo: false
go:
- 1.10.x
- 1.9.x
install:
- go get -t ./...
- go get github.com/nats-io/gnatsd
- go get github.com/mattn/goveralls
- go get github.com/wadey/gocovmerge
- go get -u honnef.co/go/tools/cmd/megacheck
- go get -u github.com/client9/misspell/cmd/misspell
before_script:
- $(exit $(go fmt ./... | ... |
Remove HHVM test target from Travis CI | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
env:
- LARAVEL_VERSION=5.2
- LARAVEL_VERSION=5.3
- LARAVEL_VERSION=5.4
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
before_script:
- chmod +x scripts/change-laravel-version.sh && bash scripts/chan... | language: php
php:
- 5.6
- 7.0
- 7.1
env:
- LARAVEL_VERSION=5.2
- LARAVEL_VERSION=5.3
- LARAVEL_VERSION=5.4
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
before_script:
- chmod +x scripts/change-laravel-version.sh && bash scripts/change-larave... |
Use the new TravisCI infrastructure for faster tests | language: ruby
bundler_args: --without profile
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby... | language: ruby
sudo: false
cache: bundler
bundler_args: --without profile
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allo... |
Use Travis's new container-based infrastructure. | language: ruby
addons:
postgresql: '9.3'
before_script:
- psql -c 'CREATE DATABASE pg_audit_log_test;' -U postgres
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2"
#- jruby-19mode
- rbx-2.2
env:
- RAILS_VERSION="~> 4.2.0"
- RAILS_VERSION="~> 4.1.0"
- RAILS_VERSION="~> 4.0.0"
- RAILS_VERSION="~> 3.2.0"
... | language: ruby
sudo: false
addons:
postgresql: '9.3'
before_script:
- psql -c 'CREATE DATABASE pg_audit_log_test;' -U postgres
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2"
#- jruby-19mode
- rbx-2.2
env:
- RAILS_VERSION="~> 4.2.0"
- RAILS_VERSION="~> 4.1.0"
- RAILS_VERSION="~> 4.0.0"
- RAILS_VERSION=... |
Install OpenFisca-Core in develop mode for Travis. | language: python
python: "2.7"
virtualenv:
system_site_packages: true
before_install:
- sudo add-apt-repository ppa:pylab/stable -y # For SciPY
- sudo apt-get update -qq
- sudo apt-get install -qq python-scipy
install:
- pip install flake8 # Not yet available in Debian stable
- pip install .
script: make ... | language: python
python: "2.7"
virtualenv:
system_site_packages: true
before_install:
- sudo add-apt-repository ppa:pylab/stable -y # For SciPY
- sudo apt-get update -qq
- sudo apt-get install -qq python-scipy
install:
- pip install flake8 # Not yet available in Debian stable
- pip install -e .
script: ma... |
Revert "removed ruby 1.8.6 from CI due to Rack 1.2.2 not being compatible" | script: "rake test:live"
rvm:
- 1.8.7
- 1.9.1
- 1.9.2
- jruby
- rbx
- ree
- ruby-head
| script: "rake test:live"
rvm:
- 1.8.6
- 1.8.7
- 1.9.1
- 1.9.2
- jruby
- rbx
- ree
- ruby-head
|
Change go version 1.4.1 -> 1.4.2 in build matrix | sudo: false
language: go
go:
- 1.3.3
- 1.4.1
- tip
env:
global:
- secure: "PXt6fucUeI+eToxV+6lxwVZQWRZ/QLe/rexgPHUMBHcuevQFjRPZ3lcSCcKr9onLkb7REdDZj4Pct2zojPHtzvLV6QBl8LOF0QiGF+NmIZqhJMcJsEU476hKMuxotPMj6zKVhbRFKp/K7NmzezhMbkJembZhA4CMIZf+Buu6cqs="
before_install:
- if ! go get code.google.com/p/go.tools/cm... | sudo: false
language: go
go:
- 1.3.3
- 1.4.2
- tip
env:
global:
- secure: "PXt6fucUeI+eToxV+6lxwVZQWRZ/QLe/rexgPHUMBHcuevQFjRPZ3lcSCcKr9onLkb7REdDZj4Pct2zojPHtzvLV6QBl8LOF0QiGF+NmIZqhJMcJsEU476hKMuxotPMj6zKVhbRFKp/K7NmzezhMbkJembZhA4CMIZf+Buu6cqs="
before_install:
- if ! go get code.google.com/p/go.tools/cm... |
Add testing on Python 3 | env:
matrix:
- TRAVIS_PYTHON_VERSION="2.7"
global:
secure: gsF0tK0qZ1jFk/fjBdwYDMmAmedXFxd0jtFlroEU2vpozsR+a9VKtTCBMOfbP9sLPIDNpoKCbYdfGw91rH4+27fen1o5AIvomTeLcyGbsMxmfDEr0o/WCcx144EWZHi/x5D1QTr0ph3c0QOG8RfJCaWjjKc7cR3MAWVGEjko8og=
os:
- linux
- osx
sudo: required
before_install:
- echo "Build on $... | env:
matrix:
- TRAVIS_PYTHON_VERSION="2.7"
- TRAVIS_PYTHON_VERSION="3.5"
global:
secure: gsF0tK0qZ1jFk/fjBdwYDMmAmedXFxd0jtFlroEU2vpozsR+a9VKtTCBMOfbP9sLPIDNpoKCbYdfGw91rH4+27fen1o5AIvomTeLcyGbsMxmfDEr0o/WCcx144EWZHi/x5D1QTr0ph3c0QOG8RfJCaWjjKc7cR3MAWVGEjko8og=
os:
- linux
- osx
sudo: required
be... |
Remove deprecated clippy option from CI | language: rust
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- rust: 1.17.0
script: cargo check
- rust: 1.21.0
- rust: nightly
env: CLIPPY
script: |
if rustup component add clippy-preview; then
cargo clippy -- -Dclippy
fi
scr... | language: rust
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- rust: 1.17.0
script: cargo check
- rust: 1.21.0
- rust: nightly
env: CLIPPY
script: |
if rustup component add clippy-preview; then
cargo clippy
fi
script:
- car... |
Disable Nightwatch in Travis config | sudo: required
language: node_js
services:
- docker
node_js:
- "0.12.7"
- "stable"
addons:
apt:
packages:
- google-chrome-stable
- xvfb
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some ... | sudo: required
language: node_js
services:
- docker
node_js:
- "0.12.7"
- "stable"
addons:
apt:
packages:
- google-chrome-stable
- xvfb
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some ... |
Use absolute path to sdkmanager. | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-26.0.2
- platform-tools
- tools # Running this twice get's you the latest build tools
before_install:
- touch /home/travis/.android/repositories.cfg
install:
- echo yes | sdkmanager "tools"
- echo yes | sdkmanager... | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-26.0.2
- platform-tools
- tools # Running this twice get's you the latest build tools
before_install:
- touch /home/travis/.android/repositories.cfg
install:
- echo yes | $ANDROID_HOME/tools/bin/sdkmanager "tools"
... |
Replace Java 15 with Java 16 in Travis CI. | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... |
Add python test target 3.6 | language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
install: python setup.py -q install
script:
- python setup.py test
notifications:
email:
on_success: change
on_failure: always
recipients:
- grauwoelfchen@gmail.com
| language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
install: python setup.py -q install
script:
- python setup.py test
notifications:
email:
on_success: change
on_failure: always
recipients:
- grauwoelfchen@gmail.com
|
Refactor to use less code | ---
- name: Install Vim
homebrew:
name: vim
state: latest
tags:
- brew
- name: Create Dirctory ~/.vim/bundle
file:
name: ~/.vim/bundle
state: directory
- name: Create Dirctory ~/.vim/backups
file:
name: ~/.vim/backups
state: directory
- name: Create Dirctory ~/.vim/swaps
file:
... | ---
- name: Install Vim
homebrew:
name: vim
state: latest
tags:
- brew
- name: Create Directory
file:
name: "{{ item }}"
state: directory
with_items:
- ~/.vim/bundle
- ~/.vim/backups
- ~/.vim/swaps
- ~/.vim/undo
- name: Install NeoBundle for managing vim packages
git:
... |
Modify heap size for Travis | language: scala
jdk: oraclejdk8
scala:
- 2.12.3
env:
global:
_JAVA_OPTIONS=-Xmx3000
script:
- sbt ++$TRAVIS_SCALA_VERSION -J-Xmx3000m test
# Use container-based infrastructure
sudo: false
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
-... | language: scala
jdk: oraclejdk8
scala:
- 2.12.3
env:
global:
_JAVA_OPTIONS=-Xmx2500
script:
- sbt ++$TRAVIS_SCALA_VERSION -J-Xmx2500m test
# Use container-based infrastructure
sudo: false
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
-... |
Add encrypted credentials for testing on Travis CI | language: node_js
node_js:
- "0.10"
| language: node_js
node_js:
- '0.10'
env:
global:
secure: lMMzNhMw7H5+FNxRO0PQ8cKQa3QQtIxkygSrWy90Typ89ZvWFOoHz4q+QUggZcg2RvTWOpHvFuZSFz4ndr1VVtFNM7Sn8MEec7Xfqntpojw3F3QJVaLcIkpY95G6HCDh0ZXoKnHBYxCOamWaopScRXRuYl6q/+liSdDRNfABX5g=
|
Remove python 3.4, add python 3.8 | language: python
cache: pip
matrix:
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.4"
env: TOXENV=py34
- python: "3.5"
env: TOXENV=py35
- python: "3.6"
env: TOXENV=py36
- python: "3.7"
env: TOXENV=py37
dist: xenial
sudo: required
- env: TOXENV... | language: python
cache: pip
matrix:
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
- python: "3.6"
env: TOXENV=py36
- python: "3.8"
env: TOXENV=py38
- python: "3.7"
env: TOXENV=py37
dist: xenial
sudo: required
- env: TOXENV... |
Update from Hackage at 2015-08-01T14:38:42+0000 | homepage: https://github.com/bacher09/hostandport
changelog-type: ''
hash: 5ad1783e80502877a1de17cb92308dd9e0cc003a1302c5d4c09103b1c98bd627
test-bench-deps:
HostAndPort: -any
base: ! '>=4.5 && <5'
hspec: -any
doctest: -any
maintainer: slava@bacher09.org
synopsis: Parser host and port pairs like localhost:22
cha... | homepage: https://github.com/bacher09/hostandport
changelog-type: ''
hash: 05f537153a06c34ad232bba6ca73ed20453fa73d1c8b28f7c695da3941ab0b00
test-bench-deps:
HostAndPort: -any
base: ! '>=4.5 && <5'
hspec: -any
criterion: -any
doctest: -any
maintainer: slava@bacher09.org
synopsis: Parser for host and port pairs... |
Use debug builds in Travis. | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository --yes ppa:kalakris/cmake
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install cmake -y
- sudo apt-get install qt5-default -y
script: cmake . -Dbuild_tests=ON && make && make ... | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository --yes ppa:kalakris/cmake
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install cmake qt5-default -y
script: cmake . -Denable_tests=ON -DCMAKE_BUILD_TYPE=Debug && make && make te... |
Bring back the example on Travis too. | language: rust
before_install:
- sudo apt-get install -y libfuse-dev
script:
- cargo build
- cargo run --bin=day2
- cargo run --bin=day3
- cargo run --bin=day4
# - cargo run --bin=day5
- cargo run --bin=day6
- cargo run --bin=day7
- cargo run --bin=day9
- cargo run --bin=day10
# ... | language: rust
before_install:
- sudo apt-get install -y libfuse-dev
script:
- cargo build
- cargo run --bin=day2
- cargo run --bin=day3
- cargo run --bin=day4
# - cargo run --bin=day5
- cargo run --bin=day6
- cargo run --bin=day7
- cargo run --bin=day9
- cargo run --bin=day10
... |
Build branches other than master | language: python
python:
- 3.5
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=lxml23
install:
- pip install -U tox
script:
- tox
branches:
only:
- master
notifications:
email:
- stix-commits-list@lists.mitre.org
| language: python
python:
- 3.5
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=lxml23
install:
- pip install -U tox
script:
- tox
notifications:
email:
- stix-commits-list@lists.mitre.org
|
Increase the number of news posts shown in homepage to 5. | markdown: kramdown
pygments: false
safe: true
exclude:
# we generate those files ourselves
- "*.css"
- "*.js"
# permalinks
permalink: pretty
# server
source: ./source/
destination: ./_site/
port: 8000
baseurl: /
# custom variables
version:
short: 1.7.1... | markdown: kramdown
pygments: false
safe: true
exclude:
# we generate those files ourselves
- "*.css"
- "*.js"
# permalinks
permalink: pretty
# server
source: ./source/
destination: ./_site/
port: 8000
baseurl: /
# custom variables
version:
short: 1.7.1... |
Remove baseurl (not necessary anymore) | ### your site title here
title: Paulo Diovani
description: A personal blog about romance, technology and tabletop games
repository: github.com/paulodiovani/blog.diovani.com
baseurl: /blog.diovani.com # name of the repository
social:
email: paulo AT diovani DOT com
linkedin: linkedin.com/in/paulodiovani
twitter:... | ### your site title here
title: Paulo Diovani
description: A personal blog about romance, technology and tabletop games
repository: github.com/paulodiovani/blog.diovani.com
social:
email: paulo AT diovani DOT com
linkedin: linkedin.com/in/paulodiovani
twitter: paulodiovani
github: github.com/paulodiovani
hig... |
Fix removal of curl and jdk packages. | ---
- name: Remove package 'curl'
yum: name=curl state=absent
when: curl_installed|success
ignore_errors: yes
sudo: yes
- name: Remove package 'java-1.7.0-openjdk'
yum: pkg=java-1.7.0-openjdk state=absent
when: java_installed|success
ignore_errors: yes
sudo: yes
| ---
- name: Remove package 'curl'
yum: name=curl state=absent
when: not curl_install|skipped
ignore_errors: yes
sudo: yes
- name: Remove package 'java-1.7.0-openjdk'
yum: pkg=java-1.7.0-openjdk state=absent
when: not java_install|skipped
ignore_errors: yes
sudo: yes
|
Update TravisCI to use goclean script. | language: go
go: release
install: go get -d -t -v ./...
| language: go
go: release
before_install:
- gocleandeps=c16c849abae90c23419d
- git clone https://gist.github.com/$gocleandeps.git
- goclean=71d0380287747d956a26
- git clone https://gist.github.com/$goclean.git
install:
- go get -d -t -v ./...
- bash $gocleandeps/gocleandeps.sh
script:
- export PATH=$PATH:$... |
Use bundle exec for now | services:
- elasticsearch
before_script:
- bin/rake app:db:create
- bin/rake app:index:reset
rvm:
- 2.1.2
env:
- "GEM=ar:mysql2"
- "GEM=ar:postgresql"
| services:
- elasticsearch
before_script:
- bundle exec rake app:db:create
- bundle exec rake app:index:reset
rvm:
- 2.1.2
env:
- "GEM=ar:mysql2"
- "GEM=ar:postgresql"
|
Remove debug output in Travis build | language: php
matrix:
fast_finish: true
include:
- php: 5.6
env: DB=sqlite
- php: 5.6
env: DB=mysql
# - php: 5.6
# env: DB=pgsql
- php: 5.5
env: DB=sqlite
cache:
directories:
- $HOME/.composer/cache
before_install:
- cd ..
- git clone https://github.com/neos/flow-deve... | language: php
matrix:
fast_finish: true
include:
- php: 5.6
env: DB=sqlite
- php: 5.6
env: DB=mysql
# - php: 5.6
# env: DB=pgsql
- php: 5.5
env: DB=sqlite
cache:
directories:
- $HOME/.composer/cache
before_install:
- cd ..
- git clone https://github.com/neos/flow-deve... |
Set DATABASE_URL environment variable for Travis builds | language: python
python:
- "2.7"
# command to install dependencies
install: "pip install --use-mirrors -q -r requirements.txt"
# command to run tests
script: python manage.py test
| language: python
python:
- "2.7"
# Environment variables to use
env:
- DATABASE_URL=sqlite:///test.db
# command to install dependencies
install: "pip install --use-mirrors -q -r requirements.txt"
# command to run tests
script: python manage.py test
|
Add Python 3.4 builds in Travis CI config | language: python
env:
TRAVISBUG="#1027"
matrix:
exclude:
- env: TRAVISBUG="#1027"
include:
- python: "2.7"
env: BUILDENV=precise
- python: "2.7"
env: BUILDENV=latest
- python: "pypy"
env: BUILDENV=latest
allow_failures:
- python: "pyp... | language: python
env:
TRAVISBUG="#1027"
matrix:
exclude:
- env: TRAVISBUG="#1027"
include:
- python: "2.7"
env: BUILDENV=precise
- python: "2.7"
env: BUILDENV=latest
- python: "3.4"
env: BUILDENV=latest
- python: "pypy"
env: BUI... |
Support Node 7 and 8 | language: node_js
dist: trusty
sudo: required
cache:
apt: true
yarn: true
ccache: true
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-6', 'libbz2-dev', 'libstxxl-dev', 'libstxxl1', 'libxml2-dev', 'libzip-dev', 'lua5.1', 'liblua5.1-0-dev', 'libtbb-dev', 'libgdal-dev', 'libluabind-d... | language: node_js
dist: trusty
sudo: required
cache:
apt: true
yarn: true
ccache: true
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-6', 'gcc-6', 'build-essential', 'git', 'wget', 'cmake3', 'pkg-config', 'libbz2-dev', 'libstxxl-dev', 'libstxxl1', 'libxml2-dev', 'libzip-dev', 'lib... |
Remove Rubinius and 1.8.7 from Travis CI requirements | language: ruby
rvm:
- "1.8.7"
- "1.9.3"
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
before_script:
- npm install
- rake initialize
- rake setup
script: bundle exec rake test:unit
| language: ruby
rvm:
- "1.9.3"
- jruby-19mode
before_script:
- npm install
- rake initialize
- rake setup
script: bundle exec rake test:unit
|
Fix gdal_version hieradata for CI agents | ---
mongodb::server::version: '3.2.7'
mongodb::server::development: true
mongodb::server::replicaset_members:
"%{::hostname}":
clamav::use_service: false
govuk_ci::agent::postgresql::mapit_role_password: 'mapit'
govuk_ci::agent::postgresql::email_alert_api_role_password: 'email-alert-api'
govuk_ci::agent::gdal_vers... | ---
mongodb::server::version: '3.2.7'
mongodb::server::development: true
mongodb::server::replicaset_members:
"%{::hostname}":
clamav::use_service: false
govuk_ci::agent::postgresql::mapit_role_password: 'mapit'
govuk_ci::agent::postgresql::email_alert_api_role_password: 'email-alert-api'
govuk_ci::agent::gdal_vers... |
Revert "Version bump to 0.0.6" | ---
:minor: 0
:patch: 4
:major: 0
<<<<<<< HEAD:VERSION.yml
:minor: 0
:patch: 6
=======
>>>>>>> 3b38f14... Version bump to 0.1.0:VERSION.yml
| ---
:minor: 0
:patch: 4
:major: 0
<<<<<<< HEAD:VERSION.yml
<<<<<<< HEAD:VERSION.yml
:minor: 0
:patch: 6
=======
>>>>>>> 3b38f14... Version bump to 0.1.0:VERSION.yml
=======
:minor: 1
:patch: 0
>>>>>>> 3a30f21... Version bump to 0.0.6:VERSION.yml
|
Use Xcode 9.1 image with Travis | language: objective-c
osx_image: xcode9
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install:
- pod repo update
- gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3... | language: objective-c
osx_image: xcode9.1
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install:
- pod repo update
- gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3t... |
Rename parameter as jekyll recommended | # Site settings
title: "Ilios"
email: support@iliosproject.org
description: Curriculum Management for the Health Professions
baseurl: ""
url: "https:/iliosproject.org"
github_username: ilios
# Build settings
markdown: kramdown
exclude: [Gemfile, Gemfile.lock, LICENSE]
gems:
- jekyll-mentions
- jekyll-redirect-from... | # Site settings
title: "Ilios"
email: support@iliosproject.org
description: Curriculum Management for the Health Professions
baseurl: ""
url: "https:/iliosproject.org"
github_username: ilios
# Build settings
markdown: kramdown
exclude: [Gemfile, Gemfile.lock, LICENSE]
plugins:
- jekyll-mentions
- jekyll-redirect-f... |
Set token to correct config bit | language: node_js
node_js:
- "0.12"
cache:
directories:
- node_modules
before_install:
- npm install -g grunt-cli karma
- npm install coveralls
before_script:
- jspm config endpoints.github.auth $GITHUBTOKEN
- jspm install
after_success:
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
| language: node_js
node_js:
- "0.12"
cache:
directories:
- node_modules
before_install:
- npm install -g grunt-cli karma
- npm install coveralls
before_script:
- jspm config registries.github.auth $GITHUBTOKEN
- jspm install
after_success:
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls... |
Remove the node_modules on start of CI testing |
stages:
- build
- test
before_script:
- echo 'drop database if exists irida_test; create database irida_test' | mysql -u test -ptest
- echo 'db.dropDatabase()' | mongo test
- pushd lib
- ./install-libs.sh
- popd
- rm -rf /tmp/irida/*
service_job:
#running service layer tests
script:
- mvn clean v... |
stages:
- build
- test
before_script:
- echo 'drop database if exists irida_test; create database irida_test' | mysql -u test -ptest
- echo 'db.dropDatabase()' | mongo test
- pushd lib
- ./install-libs.sh
- popd
- rm -rf /tmp/irida/*
- rm -rf src/main/webapp/node_modules/*
service_job:
#running ser... |
Set the CXX_CALCULATOR_SERVER variable in CI. | before_script:
# Report the versions of varioius software, to make diagnosing problems
# easier:
- ghc --version
- cabal --version
- capnp --version
- stylish-haskell --version
- hlint --version
# Update the hackage databse:
- cabal update
test:alltests:
image: zenhack/haskell-capnp-ci
variables:
... | before_script:
# Report the versions of varioius software, to make diagnosing problems
# easier:
- ghc --version
- cabal --version
- capnp --version
- stylish-haskell --version
- hlint --version
# Update the hackage databse:
- cabal update
test:alltests:
image: zenhack/haskell-capnp-ci
variables:
... |
Add console cleanup to CI |
stages:
- build
- unit_test
- functional_test
build_job:
stage: build
artifacts:
paths:
- build/bin/
- build/test/
expire_in: 3d
script:
- ./waf configure clean build
only:
- master
unit_test_job:
stage: unit_test
script:
- ./waf test
dependencies:
- build_job
... |
stages:
- build
- unit_test
- functional_test
build_job:
stage: build
artifacts:
paths:
- build/bin/
- build/test/
expire_in: 3d
script:
- ./waf configure clean build
only:
- master
unit_test_job:
stage: unit_test
script:
- ./waf test
dependencies:
- build_job
... |
Update description with equivalent html tag name | # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: pretty
relative_permalinks: true
# Setup
title: Andrew Gurung
tagline: 'Portfolio'
description: '<software-developer> A Journey Through Front End Web Development. Follow <a href="https://twitt... | # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: pretty
relative_permalinks: true
# Setup
title: Andrew Gurung
tagline: 'Portfolio'
description: '<software-developer> A Journey Through Front End Web Development. Follow <a href="https:/... |
Revert "Forced update of JDK8 in linux builds in order to avoid bugs causing crash during testing in jdk1.8.0_31" | # Use docker-based build environment (instead of openvz)
sudo: false
# Force the update of the JDK8 installation due to bugs in jdk1.8.0_31
addons:
apt:
packages:
- oracle-java8-installer
# Select JDKs >= Java 6 for testing
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
# Tes... | # Use docker-based build environment (instead of openvz)
sudo: false
# Select JDKs >= Java 6 for testing
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
# Test execution
install: true
script: "mvn -e clean compile test"
|
Update from Hackage at 2015-07-28T09:19:12+0000 | homepage: https://github.com/audreyt/MoeDict.hs
changelog-type: ''
hash: 80c9b5fdac8d6ace4be20ccbcecc49ff7ff1da08b74ec78327bedaef183714ca
test-bench-deps: {}
maintainer: audreyt@audreyt.org
synopsis: Utilities working with MoeDict.tw JSON dataset
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=2 && <5'
unor... | homepage: https://github.com/audreyt/MoeDict.hs
changelog-type: ''
hash: 6c7d220bbb7a75a08c17cd6b63a925bd6769328e12b0e78955c47234a58682a8
test-bench-deps: {}
maintainer: audreyt@audreyt.org
synopsis: Utilities working with MoeDict.tw JSON dataset
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=2 && <5'
unor... |
Exclude package-lock.json from build dir | assets:
digest: true
compression: true
source_maps: false
precompile: [
avatar-180.jpg,
avatar-196.jpg,
avatar-300.jpg,
moon.svg,
moon-dark.svg
]
author: Alex Gibson
domain: https://alxgbsn.co.uk
url: https://alxgbsn.co.uk
exclude:
- config.rb
- node_modules
- script
- Gemfile
- ... | assets:
digest: true
compression: true
source_maps: false
precompile: [
avatar-180.jpg,
avatar-196.jpg,
avatar-300.jpg,
moon.svg,
moon-dark.svg
]
author: Alex Gibson
domain: https://alxgbsn.co.uk
url: https://alxgbsn.co.uk
exclude:
- config.rb
- node_modules
- script
- Gemfile
- ... |
Update site pages (disabled About page) | # Permalinks
permalink: pretty
# Setup
title: M4M Geek Blog
tagline: Blog by M4M developers
url: https://move4mobile.github.io
paginate: 1
baseurl: ""
# Assets
#
# We specify the directory for Jekyll so we can use @imports.
sass:
sass_dir: ... | # Permalinks
permalink: pretty
# Setup
title: M4M Geek Blog
tagline: Blog by M4M developers
url: https://move4mobile.github.io
paginate: 1
baseurl: ""
# Assets
#
# We specify the directory for Jekyll so we can use @imports.
sass:
sass_dir: ... |
Add NodeJS 6 to the set of versions to test | sudo: false
os:
- linux
- osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
- TRAVIS_NODE_VERSION="0.10"
- TRAVIS_NODE_VERSION="0.12"
- TRAVIS_NODE_VERSION="iojs"
- TRAVIS_NODE_VERSION="4"
language: cpp
install:
- rm -rf ~/.nvm
- git clone https://github.... | sudo: false
os:
- linux
- osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
- TRAVIS_NODE_VERSION="0.10"
- TRAVIS_NODE_VERSION="0.12"
- TRAVIS_NODE_VERSION="iojs"
- TRAVIS_NODE_VERSION="4"
- TRAVIS_NODE_VERSION="6"
language: cpp
install:
- rm -rf ~/.nvm
... |
Include Django 2.1 in matrix testing | language: python
python:
- 2.7
- 3.5
- 3.6
install:
- pip install ${DJANGO}
- pip install -r requirements.txt
- pip install -r optional-requirements.txt
script: python manage.py test
env:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
- DJANGO="Django>=1.11,... | language: python
python:
- 2.7
- 3.5
- 3.6
install:
- pip install ${DJANGO}
- pip install -r requirements.txt
- pip install -r optional-requirements.txt
script: python manage.py test
env:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
- DJANGO="Django>=1.11,... |
Revert "Travis: allow ruby-head to fail since it's outdated" | sudo: false
language: ruby
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
install:
- git clone https://github.com/ruby/mspec.git ../mspec
script:
- ../mspec/bin/mspec
branches:
only:
- master
- /^try/
notifications:
email:
on_success: change
on_fa... | sudo: false
language: ruby
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
install:
- git clone https://github.com/ruby/mspec.git ../mspec
script:
- ../mspec/bin/mspec
branches:
only:
- master
- /^try/
notifications:
email:
on_success: change
on_failure: change
|
Use Bionic instead of Xenial in Travis | language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9-dev"
install:
- pip install -r requirements.txt
script:
- pylint --output-format colorized --reports no setup.py expect_exception tests && python -m unittest --verbose tests.expect_exception_test
| dist: bionic
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9-dev"
install:
- pip install -r requirements.txt
script:
- pylint --output-format colorized --reports no setup.py expect_exception tests && python -m unittest --verbose tests.expect_exception_test
|
Drop end of life python versions and add support for latest Python 3 versions | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python setup.py t... | # Config file for automatic testing at travis-ci.org
language: python
dist: xenial
python:
- "3.8"
- "3.7"
- "3.6"
- "3.5"
- "2.7"
- "pypy"
- "pypy3"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command ... |
Add ClusterIP as type as proposed to avoid that OpenShift Online switches to LoadBalancer which is not allowed on AWS. OBST-28 | apiVersion: v1
kind: Service
metadata:
name: springboot-rest
spec:
ports:
- protocol: TCP
port: 8080
targetPort: 8080
| apiVersion: v1
kind: Service
metadata:
name: springboot-rest
spec:
ports:
- protocol: TCP
port: 8080
targetPort: 8080
type: ClusterIP
|
Update Mastercom Workbook to 5.0 (500) | AntiFeatures:
- NonFreeNet
Categories:
- Science & Education
- Internet
License: GPL-3.0-or-later
AuthorName: Stypox
AuthorEmail: stypox@pm.me
SourceCode: https://github.com/Stypox/mastercom-workbook
IssueTracker: https://github.com/Stypox/mastercom-workbook/issues
Changelog: https://github.com/Stypox/mastercom-w... | AntiFeatures:
- NonFreeNet
Categories:
- Science & Education
- Internet
License: GPL-3.0-or-later
AuthorName: Stypox
AuthorEmail: stypox@pm.me
SourceCode: https://github.com/Stypox/mastercom-workbook
IssueTracker: https://github.com/Stypox/mastercom-workbook/issues
Changelog: https://github.com/Stypox/mastercom-w... |
Update Travis config for Android SDK installation. | language: java
jdk: oraclejdk7
before_install:
# Install base Android SDK
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq libc6:i386 libgcc1:i386 gcc-4.6-base:i386 libstdc++5:i386 libstdc++6:i386 lib32z1 libreadline6-dev:i386 libncurses5-dev:i386; fi
- wget -O andr... | language: java
jdk: oraclejdk7
before_install:
# Install base Android SDK
- sudo apt-get install -qq libstdc++6:i386 lib32z1
- export COMPONENTS=build-tools-18.0.0,android-17,android-16,extra-android-support,extra-google-m2repository,extra-android-m2repository
- curl -L https://raw.github.com/embarkmob... |
Update rubygems at start of CI | language: ruby
# cache: bundler
# We would like to enable travis' bundler cache (cache: bundler) but for some reason
# travis installs our bundle under the test directory (test/vendor/bundle/*) and, as a
# result, travis tries to run all of the tests of all of our dependencies!
# TODO: There's probably a way to config... | language: ruby
# cache: bundler
# We would like to enable travis' bundler cache (cache: bundler) but for some reason
# travis installs our bundle under the test directory (test/vendor/bundle/*) and, as a
# result, travis tries to run all of the tests of all of our dependencies!
# TODO: There's probably a way to config... |
Use more recent version of MongoDB | language: python
python: 2.7
sudo: false
install:
- pip install -e .[dev]
services:
- mongodb
script:
- trial benchmark
| language: python
python: 2.7
sudo: false
install:
- pip install -e .[dev]
addons:
apt:
sources:
- mongodb-upstart
- mongodb-3.0-precise
packages:
- mongodb-org-server
- mongodb-org-shell
before_script:
- "until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done"
s... |
Drop go 1.5 from the builds | language: go
go:
- 1.5
- 1.6
matrix:
- fast_finish: true
install:
- export GOPATH=$HOME/gopath
- export PATH=$PATH:$HOME/gopath/bin
- make clean
script:
- export GOPATH=$HOME/gopath
- export PATH=$HOME/gopath/bin:$PATH
- make build
- make test
| language: go
go:
- 1.6
matrix:
- fast_finish: true
install:
- export GOPATH=$HOME/gopath
- export PATH=$PATH:$HOME/gopath/bin
- make clean
script:
- export GOPATH=$HOME/gopath
- export PATH=$HOME/gopath/bin:$PATH
- make build
- make test
|
Add LUA_PC=luajit LUA="luajit -joff" to Travis build matrix | language: c
compiler:
- clang
- gcc
env:
- LUA_PC=lua5.1 PACKAGES="lua5.1 liblua5.1-dev"
- LUA_PC=lua5.2 PACKAGES="lua5.2 liblua5.2-dev"
- LUA_PC=luajit PACKAGES="luajit libluajit-5.1-dev" PPA=mwild1/ppa
before_install:
- if test -n "${PPA}"; then sudo add-apt-repository -y "ppa:${PPA}"; fi
... | language: c
compiler:
- clang
- gcc
env:
- LUA_PC=lua5.1 PACKAGES="lua5.1 liblua5.1-dev"
- LUA_PC=lua5.2 PACKAGES="lua5.2 liblua5.2-dev"
- LUA_PC=luajit PACKAGES="luajit libluajit-5.1-dev"
- LUA_PC=luajit PACKAGES="luajit libluajit-5.1-dev" LUA="luajit -joff"
before_install:
- test luajit... |
Remove 'sudo'; It's over use | language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
sudo: required
before_install: chmod a+x ./phpunit.phar
script: sudo ./phpunit.phar AdderTest
| language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
sudo: required
before_install: chmod a+x ./phpunit.phar
script: ./phpunit.phar AdderTest
|
Correct bad paths in code coverage upload | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
install:
- composer install --prefer-source
after_script:
- bash -c '[[ -f "build/logs/clover.xml" ]] && wget https://scrutinizer-ci.com/ocular.phar'
- bash -c '[[ -f "build/logs/clover.xml" ]] && php ocu... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
install:
- composer install --prefer-source
after_script:
- bash -c '[[ -f "build/clover.xml" ]] && wget https://scrutinizer-ci.com/ocular.phar'
- bash -c '[[ -f "build/clover.xml" ]] && php ocular.phar c... |
Use Xcode 11 on CI | language: ruby
cache:
directories:
- bundle
rvm:
- 2.6.0
- 2.5.3
script:
- bundle exec rake spec
| language: ruby
cache:
directories:
- bundle
os: osx
osx_image: xcode11
rvm:
- 2.6.0
- 2.5.3
script:
- bundle exec rake spec
|
Update notebook recipe to version 4.4.1 | {% set version = "4.3.2" %}
package:
name: notebook
version: {{ version }}
source:
fn: notebook-{{ version }}.tar.gz
url: https://pypi.io/packages/source/n/notebook/notebook-{{ version }}.tar.gz
sha256: fc77edf4ec295542172aa66a3e9d527e75038fcaadd3ed20afbf8596e5629aa9
build:
script: pip install --no-deps... | {% set version = "4.4.1" %}
package:
name: notebook
version: {{ version }}
source:
fn: notebook-{{ version }}.tar.gz
url: https://pypi.io/packages/source/n/notebook/notebook-{{ version }}.tar.gz
sha256: dfadef2babd7c04c6c257df7d07d7ba587e503dbb4e4c95305f9a95b8d3a9765
build:
script: pip install --no-deps... |
Deploy to the github pages | language: node_js
node_js:
- "0.11"
before_install:
- bundle install
- npm install -g grunt-cli
- npm install -g bower
- bower install
install:
- npm install
script:
- grunt build
| language: node_js
node_js:
- '0.11'
before_install:
- bundle install
- npm install -g grunt-cli
- npm install -g bower
- bower install
install:
- npm install
script:
- grunt build
after_success:
- cd dist
- git add -A
- git commit -m 'Update'
- '[ "$TRAVIS_BRANCH" == "master" ] && [ $GH_TOKEN ] &&... |
Remove ruby-head and mri-1.9.2 from matrix | language: ruby
script: 'bundle exec rake ci'
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
notifications:
irc:
channels:
- irc.freenode.org#rom-rb
on_success: never
on_failure: change
| language: ruby
script: 'bundle exec rake ci'
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- jruby-head
- rbx-19mode
notifications:
irc:
channels:
- irc.freenode.org#rom-rb
on_success: never
on_failure: change
|
Clean up nvm node versions | ---
nodejs_nvm_ver: "0.29.0"
nodejs_nvm_install_url: "https://raw.githubusercontent.com/creationix/nvm/v{{nodejs_nvm_ver}}/install.sh"
nodejs_nvm_install_script: "{{home_dir}}/tmp/install.sh"
nodejs_default_ver: "6.5"
nodejs_versions:
- "0.10"
- "0.12"
- "4.6"
- "6.5"
nodejs_versions_to_remove:
- "0.10.43"
... | ---
nodejs_nvm_ver: "0.29.0"
nodejs_nvm_install_url: "https://raw.githubusercontent.com/creationix/nvm/v{{nodejs_nvm_ver}}/install.sh"
nodejs_nvm_install_script: "{{home_dir}}/tmp/install.sh"
nodejs_default_ver: "6.9"
nodejs_versions:
- "6.9"
nodejs_versions_to_remove:
- "0.10.43"
- "0.12.12"
- "0.10.44"
- "... |
Remove connectedCheck from Travis script | language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-24.0.2
- android-25
- extra-android-m2repository
script:
- ./gradlew build connectedCheck | language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-24.0.2
- android-25
- extra-android-m2repository
script:
- ./gradlew check -PdisablePreDex --continue --stacktrace |
Update Travis CI to test latest point releases. | rvm:
- 2.0.0
- 2.1.2
- 2.2.0
| rvm:
- 2.0.0
- 2.1.5
- 2.2.1
|
Remove PHP 5.5 from Travis for now. | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit | language: php
php:
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit
|
Fix typo on release note for bug/1226003 | ---
features:
- |
Floating IP can be released when it is disassociated from a server.
"Release Floating IP" checkbox is now available in "Disassociate
Floating IP" form.
upgrade:
- |
``simple_ip_management`` setting in ``HORIZON_CONFIG`` was dropped.
This actually has no meaning after nova-netwo... | ---
features:
- |
Floating IP can be released when it is disassociated from a server.
"Release Floating IP" checkbox is now available in "Disassociate
Floating IP" form.
upgrade:
- |
``simple_ip_management`` setting in ``HORIZON_CONFIG`` was dropped.
This actually has no meaning after nova-netwo... |
Create permalinks for section headers | site_name: lcobucci/jwt
theme: readthedocs
nav:
- Intro:
- 'index.md'
- 'installation.md'
- Usage:
- 'configuration.md'
- 'issuing-tokens.md'
- 'parsing-tokens.md'
- 'validating-tokens.md'
- Guides:
- 'extending-the-library.md'
- 'upgrading.md'
markdown_extensions:
- admonition... | site_name: lcobucci/jwt
theme: readthedocs
nav:
- Intro:
- 'index.md'
- 'installation.md'
- Usage:
- 'configuration.md'
- 'issuing-tokens.md'
- 'parsing-tokens.md'
- 'validating-tokens.md'
- Guides:
- 'extending-the-library.md'
- 'upgrading.md'
markdown_extensions:
- admonition... |
Use Kramdown instead of Redcarpet | title: Joe Duffy's Blog
url: http://joeduffyblog.com
description: Adventures in the high-tech underbelly
email: joeduffy@acm.org
highlighter: pygments
markdown: redcarpet
excerpt_separator: "\n\n"
permalink: /:year/:month/:day/:title/
timezone: America/Los_Angeles
paginate: 15
safe: true
lsi: false
exclude: [.gitig... | title: Joe Duffy's Blog
url: http://joeduffyblog.com
description: Adventures in the high-tech underbelly
email: joeduffy@acm.org
highlighter: pygments
markdown: kramdown
excerpt_separator: "\n\n"
permalink: /:year/:month/:day/:title/
timezone: America/Los_Angeles
paginate: 15
safe: true
lsi: false
exclude: [.gitign... |
Use new CDN bucket URL for remote libraries | name: Nasjonal Turbase
description: 'Dokumentasjon for Nasjonal Turbase'
cdn: http://cdn.turistforeningen.no
terms: https://docs.google.com/document/d/13aB_C9CGDYYUvfbVgSwjpHnzoUx2uR2NmeEvk7OGnZU/pub
ga_id: UA-45821478-1
encoding: UTF-8
relative_permalinks: false
permalink: /nyheter/:year/:month/:day/:title/
excerpt_s... | name: Nasjonal Turbase
description: 'Dokumentasjon for Nasjonal Turbase'
cdn: https://s3-eu-west-1.amazonaws.com/turistforeningen
terms: https://docs.google.com/document/d/13aB_C9CGDYYUvfbVgSwjpHnzoUx2uR2NmeEvk7OGnZU/pub
ga_id: UA-45821478-1
encoding: UTF-8
relative_permalinks: false
permalink: /nyheter/:year/:month/:... |
Drop obsolete Image.derivatives in favour of File.derivatives | ##
# Copyright (c) 2011-2012 Sprymix Inc.
# All rights reserved.
#
# See LICENSE for details.
##
%SCHEMA metamagic.caos.backends.yaml.schemas.Semantics
%IMPORT metamagic.utils.fs.file AS file
---
links:
derivatives:
properties:
name: str
concepts:
Image:
extends: file.File
... | ##
# Copyright (c) 2011-2013 Sprymix Inc.
# All rights reserved.
#
# See LICENSE for details.
##
%SCHEMA metamagic.caos.backends.yaml.schemas.Semantics
%IMPORT metamagic.utils.fs.file AS file
---
concepts:
Image:
extends: file.File
ImageContainer:
abstract: True
links:
i... |
Add manual trigger for the bot | name: Bot schedule
on:
schedule:
- cron: "0 */12 * * *"
jobs:
bot:
runs-on: ubuntu-latest
steps:
- name: Run bot
run: docker run -it ${{ github.repository_owner }}/rol-automizer -u ${{ secrets.ROL_USERNAME }} -p ${{ secrets.ROL_PASSWORD }}
| name: Bot schedule
on:
schedule:
- cron: "0 */12 * * *"
workflow_dispatch:
inputs: {}
jobs:
bot:
runs-on: ubuntu-latest
steps:
- name: Run bot
run: docker run -it ${{ github.repository_owner }}/rol-automizer -u ${{ secrets.ROL_USERNAME }} -p ${{ secrets.ROL_PASSWORD }}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.