Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add LTS node versions and remove EOL versions | sudo: false
language: node_js
node_js:
- 4
- 5
- stable
| sudo: false
language: node_js
node_js:
- 4
- 6
- 8
- stable
|
Allow 5.3.3 failures since they dont have openssl | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
before_script:
- echo '' > ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- composer install --dev --prefer-source
- git config --global user.name travis-ci
- git config --global user.email travis@example.com
script: ./vendor/bin/phpunit -c tests/complete.phpunit.xml
| language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.3.3
before_script:
- echo '' > ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- composer install --dev --prefer-source
- git config --global user.name travis-ci
- git config --global user.email travis@example.com
script: ./vendor/bin/phpunit -c tests/complete.phpunit.xml
|
Extend Testing to multiple Versions | language: ruby
rvm:
- 2.2.1
notifications:
email: false
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.2.1
- jruby-18mode
- jruby-19mode
notifications:
email: false
|
Use the Travis Xcode 7.2 image | language: objective-c
osx_image: xcode7
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install: gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
| language: objective-c
osx_image: xcode7.2
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install: gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
|
Fix Travis config wrt ninja | language: d
sudo: false
install:
- gem install bundler
- bundle install
- git clone https://github.com/martine/ninja.git
- cd ninja
- ./configure.py --bootstrap
- export PATH=$CWD:$PATH
- cd ..
- dub fetch unit-threaded --version=0.4.10
- dub fetch cerealed --version=0.6.1
script:
- ./bootstrap.sh make
- bin/ut
- cucumber --tags ~@tup
| language: d
sudo: false
install:
- gem install bundler
- bundle install
- git clone https://github.com/martine/ninja.git
- cd ninja
- ./configure.py --bootstrap
- export PATH=$PWD:$PATH
- cd ..
- dub fetch unit-threaded --version=0.4.10
- dub fetch cerealed --version=0.6.1
script:
- echo $PATH
- which ninja
- ./bootstrap.sh make
- bin/ut
- cucumber --tags ~@tup
|
Update Travis build process to generate resolution-independent CSS files. | language: node_js
node_js:
- "0.10"
install:
npm -g install jshint &&
echo -e "\x1b\x5b35;1m*** Checking out Enyo\x1b\x5b0m" &&
cd .. &&
git clone --depth 1 https://github.com/enyojs/enyo.git enyo &&
mkdir lib &&
mv moonstone lib/moonstone
script:
echo -e "\x1b\x5b35;1m*** Running JSHint\x1b\x5b0m" &&
cd lib/moonstone &&
jshint . &&
echo -e "\x1b\x5b35;1m*** Running lessc.sh to compile library CSS\x1b\x5b0m" &&
cd css &&
mv moonstone-dark.css moonstone-dark.css.fromgit &&
mv moonstone-light.css moonstone-light.css.fromgit &&
../../../enyo/tools/lessc.sh -enyo ../../../enyo/enyo.js all-package.js &&
echo -e "\x1b\x5b35;1m*** Comparing generated CSS to last checked in version\x1b\x5b0m" &&
diff moonstone-dark.css moonstone-dark.css.fromgit &&
diff moonstone-light.css moonstone-light.css.fromgit &&
echo -e "\x1b\x5b35;1m*** Moonstone tests complete\x1b\x5b0m" | language: node_js
node_js:
- "0.10"
install:
npm -g install jshint &&
echo -e "\x1b\x5b35;1m*** Checking out Enyo\x1b\x5b0m" &&
cd .. &&
git clone --depth 1 -b 2.5-gordon https://github.com/enyojs/enyo.git enyo &&
mkdir lib &&
mv moonstone lib/moonstone
script:
echo -e "\x1b\x5b35;1m*** Running JSHint\x1b\x5b0m" &&
cd lib/moonstone &&
jshint . &&
echo -e "\x1b\x5b35;1m*** Running lessc.sh to compile library CSS\x1b\x5b0m" &&
cd css &&
mv moonstone-dark.css moonstone-dark.css.fromgit &&
mv moonstone-light.css moonstone-light.css.fromgit &&
../../../enyo/tools/lessc.sh -ri -enyo ../../../enyo/enyo.js all-package.js &&
echo -e "\x1b\x5b35;1m*** Comparing generated CSS to last checked in version\x1b\x5b0m" &&
diff moonstone-dark.css moonstone-dark.css.fromgit &&
diff moonstone-light.css moonstone-light.css.fromgit &&
echo -e "\x1b\x5b35;1m*** Moonstone tests complete\x1b\x5b0m" |
Allow builds with PHP 5.3. | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then composer require --dev php-coveralls/php-coveralls; fi
script:
- ant
after_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then php vendor/bin/php-coveralls -v; fi
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
include:
- php: 5.3
dist: precise
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then composer require --dev php-coveralls/php-coveralls; fi
script:
- ant
after_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then php vendor/bin/php-coveralls -v; fi
|
Use container-based builds on Travis | language: ruby
bundler_args: --without development
rvm:
- 1.9.3
before_install:
- sudo service elasticsearch stop
- wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.13.deb
- sudo dpkg --force-confnew -i elasticsearch-0.90.13.deb
- sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-lang-javascript/1.3.0
- sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-river-couchdb/1.2.0
- sudo service elasticsearch start
before_script:
- ./bin/travis-before-script.rb
script:
- ./bin/test-full-app.sh
services:
- couchdb | language: ruby
bundler_args: --without development
rvm:
- 1.9.3
before_install:
- wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.13.tar.gz
- tar zxf elasticsearch-0.90.13.tar.gz
- elasticsearch-0.90.13/bin/plugin -install elasticsearch/elasticsearch-lang-javascript/1.3.0
- elasticsearch-0.90.13/bin/plugin -install elasticsearch/elasticsearch-river-couchdb/1.2.0
- elasticsearch-0.90.13/bin/elasticsearch
before_script:
- ./bin/travis-before-script.rb
script:
- ./bin/test-full-app.sh
services:
- couchdb
sudo: false |
Revert "Test on Linux and OS X." | language: python
python:
- "2.7"
- "3.5"
os:
- linux
- osx
sudo: false
install:
- pip install -r requirements.txt
- pip install codecov
script:
- py.test
after_success:
- py.test --cov=avena
- codecov
| language: python
python:
- "2.7"
- "3.5"
sudo: false
install:
- pip install -r requirements.txt
- pip install codecov
script:
- py.test
after_success:
- py.test --cov=avena
- codecov
|
Check test coverage with luaconv and report it to coveralls.io | # Really lua, but that's not an option on Travis
language: generic
sudo: false
cache: apt
addons:
apt:
packages:
- lua5.2
- python-yaml
script:
- make
- make check
| # Really lua, but that's not an option on Travis
language: generic
sudo: false
cache: apt
addons:
apt:
packages:
- lua5.1
- luarocks
- python-yaml
before_install:
- luarocks install --local luacov-coveralls
script:
- make
- make check
- LUA_PATH="?;?.lua;$HOME/.luarocks/share/lua/5.1/?.lua"
find . -name 'test-*.lua' -exec lua -lluacov {} \;
after_success:
- $HOME/.luarocks/bin/luacov-coveralls
|
Test on latest versions of Node | language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
| language: node_js
node_js:
- "0.12"
- iojs
- "4.0"
- "4.1"
- stable
|
Install test-unit gem to make ruby-head work again. | language: ruby
before_install:
- sudo apt-get update
- sudo apt-get install wget
- wget http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-9.27.tar.gz
- tar -xzf Image-ExifTool-9.27.tar.gz
- cd Image-ExifTool-9.27
- perl Makefile.PL
- make
- sudo make install
- cd ..
- exiftool -ver
- gem install rim json regtest
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
# - ruby-head
notifications:
email:
- janfri26@gmail.com
| language: ruby
before_install:
- sudo apt-get install wget
- wget http://www.sno.phy.queensu.ca/~phil/exiftool/Image-ExifTool-9.27.tar.gz
- tar -xzf Image-ExifTool-9.27.tar.gz
- cd Image-ExifTool-9.27
- perl Makefile.PL
- make
- sudo make install
- cd ..
- exiftool -ver
- gem install rim json test-unit regtest
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- ruby-head
notifications:
email:
- janfri26@gmail.com
|
Remove workaround for missing docker-compose on Travis CI | language: java
sudo: required
services:
- docker
jdk:
- oraclejdk8
before_install:
- |
if [ ! -e /usr/local/bin/docker-compose ]; then
# get latest docker compose released tag
docker_compose_version="$(git ls-remote https://github.com/docker/compose | grep "refs/tag" | grep -oP "[0-9]+\.[0-9]+\.[0-9]+" | tail -n1)"
# install docker-compose
sudo sh -c "curl -L https://github.com/docker/compose/releases/download/$docker_compose_version/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose"
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
fi
script:
- ./gradlew check installDist &&
cp docker/Dockerfile georocket-server/build/install/Dockerfile &&
docker build -t georocket/georocket georocket-server/build/install &&
cd georocket-server/integration-tests &&
./test.sh &&
cd ../.. &&
if ([ "$TRAVIS_BRANCH" == "master" ] || [ ! -z "$TRAVIS_TAG" ]) && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
docker push georocket/georocket;
fi
cache:
directories:
- $HOME/.gradle
| language: java
sudo: required
services:
- docker
jdk:
- oraclejdk8
script:
- ./gradlew check installDist &&
cp docker/Dockerfile georocket-server/build/install/Dockerfile &&
docker build -t georocket/georocket georocket-server/build/install &&
cd georocket-server/integration-tests &&
./test.sh &&
cd ../.. &&
if ([ "$TRAVIS_BRANCH" == "master" ] || [ ! -z "$TRAVIS_TAG" ]) && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
docker push georocket/georocket;
fi
cache:
directories:
- $HOME/.gradle
|
Drop OTP 17.x in Travis | language: erlang
# http://stackoverflow.com/a/24600210/1793234
# Handle git submodules yourself
git:
submodules: false
# Use sed to replace the SSH URL with the public URL, then initialize submodules
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
install: true
before_script:
- wget https://s3.amazonaws.com/rebar3/rebar3
- chmod 755 rebar3
script:
- ./rebar3 eunit
notifications:
recipients:
- quasiquoting@gmail.com
otp_release:
- 18.1
- 17.5
- 17.3
| language: erlang
# http://stackoverflow.com/a/24600210/1793234
# Handle git submodules yourself
git:
submodules: false
# Use sed to replace the SSH URL with the public URL, then initialize submodules
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
install: true
before_script:
- wget https://s3.amazonaws.com/rebar3/rebar3
- chmod 755 rebar3
script:
- ./rebar3 eunit
notifications:
recipients:
- quasiquoting@gmail.com
otp_release:
- 18.1
- 18.0
|
Test the latest 2.1 version of Ruby. | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- ruby-head
gemfile:
- gemfiles/sidekiq_2_x.gemfile
- gemfiles/sidekiq_3_x.gemfile
- gemfiles/sidekiq_edge.gemfile
script:
- bundle exec rspec
matrix:
allow_failures:
- rvm: ruby-head
- gemfile: gemfiles/sidekiq_edge.gemfile
| language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1
- ruby-head
gemfile:
- gemfiles/sidekiq_2_x.gemfile
- gemfiles/sidekiq_3_x.gemfile
- gemfiles/sidekiq_edge.gemfile
script:
- bundle exec rspec
matrix:
allow_failures:
- rvm: ruby-head
- gemfile: gemfiles/sidekiq_edge.gemfile
|
Use Rubinius 2.2 on Travis CI | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0-preview2
- jruby-19mode
- rbx-2.1
script:
- bundle exec rspec
- bundle exec rubocop
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0-preview2
- jruby-19mode
- rbx-2.2
script:
- bundle exec rspec
- bundle exec rubocop
|
Add support for PHP 7.2 & remove HHVM | language: php
dist: trusty
sudo: false
cache:
directories:
- vendor/
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
notifications:
email: false
irc: "irc.iiens.net#Erebot"
before_script:
- rm composer.lock
- composer self-update -n
- composer install -n
script:
- vendor/bin/phpunit --coverage-clover clover.xml
- vendor/bin/phpcs
after_success:
- composer require --dev satooshi/php-coveralls
- travis_retry vendor/bin/coveralls -n -v
| language: php
dist: trusty
sudo: false
cache:
directories:
- vendor/
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
notifications:
email: false
irc: "irc.iiens.net#Erebot"
before_script:
- rm composer.lock
- composer self-update -n
- composer install -n
script:
- vendor/bin/phpunit --coverage-clover clover.xml
- vendor/bin/phpcs
after_success:
- composer require --dev satooshi/php-coveralls
- travis_retry vendor/bin/coveralls -n -v
|
Use latest JRuby and allow failures for it | language: ruby
sudo: false
services:
- mongodb
gemfile:
- Gemfile
- Gemfile.rails42
- Gemfile.rails51
- Gemfile.mongo_mapper
rvm:
- 2.2.7
- 2.3.3
- 2.4.1
- jruby-9.1.6.0
matrix:
allow_failures:
- gemfile: Gemfile.rails42
rvm: ruby-head
- gemfile: Gemfile.mongo_mapper
rvm: ruby-head
branches:
only:
- master
notifications:
email: false
| language: ruby
sudo: false
services:
- mongodb
gemfile:
- Gemfile
- Gemfile.rails42
- Gemfile.rails51
- Gemfile.mongo_mapper
rvm:
- 2.2.7
- 2.3.3
- 2.4.1
- jruby-9.1.8.0
matrix:
allow_failures:
- rvm: jruby-9.1.8.0
branches:
only:
- master
notifications:
email: false
|
Add path of test codes explicitly. | machine:
php:
version: 5.6.14
test:
override:
- vendor/bin/phpunit --bootstrap tests/bootstrap.php tests
| machine:
php:
version: 5.6.14
test:
override:
- vendor/bin/phpunit --bootstrap tests/bootstrap.php tests/*
|
Use readyfile instead of wget |
machine:
services:
- docker
dependencies:
post:
- wget https://saucelabs.com/downloads/sc-4.3-linux.tar.gz
- tar -xzf sc-4.3-linux.tar.gz
override:
- docker info
- docker build -t accounts-cbd-int .
test:
override:
- sc-4.3-linux/bin/sc -P 4444 -u $SAUCE_USERNAME -k $SAUCE_ACCESS_KEY:
background: true
- docker run -d -p 8000:8000 accounts-cbd-int
- wget --retry-connrefused 10 http://localhost:4444
- wget --retry-connrefused 10 http://localhost:8000
- docker run --net host -e SAUCE_USERNAME=$SAUCE_USERNAME -e SAUCE_ACCESS_KEY=$SAUCE_ACCESS_KEY accounts-cbd-int protractor spec/conf.js
|
machine:
services:
- docker
dependencies:
post:
- wget https://saucelabs.com/downloads/sc-4.3-linux.tar.gz
- tar -xzf sc-4.3-linux.tar.gz
override:
- docker info
- docker build -t accounts-cbd-int .
test:
override:
- sc-4.3-linux/bin/sc -P 4444 -u $SAUCE_USERNAME -k $SAUCE_ACCESS_KEY --readyfile ~/sauce_is_ready:
background: true
- while [ ! -e ~/sauce_is_ready ]; do sleep 1; done
- docker run -d -p 8000:8000 accounts-cbd-int
- docker run --net host -e SAUCE_USERNAME=$SAUCE_USERNAME -e SAUCE_ACCESS_KEY=$SAUCE_ACCESS_KEY accounts-cbd-int protractor spec/conf.js
|
Remove key value after testing is done | general:
artifacts:
- "extension/"
- "apiary.crx"
- "apiary.zip"
machine:
node:
version: 7.9.0
hosts:
api.xyz.com: 127.0.0.1
console.apiary.dev: 127.0.0.1
dependencies:
post:
- echo 'NODE_ENV=CI' > .env && cd server && npm install
- cd extension && echo $CHROME_EXTENSION_RSA_KEY > key.pem
- cd client && echo 'NODE_ENV=CI' > .env && npm install
- cd client && zip -u apiary.zip ../extension/key.pem -j
cache_directories:
- "server/node_modules"
test:
pre:
- npm run build:extension
- cd server && npm start:
background: true
- npm start:
background: true
deployment:
production:
branch: master
commands:
- npm run semantic-release || true
post:
- cd client && npm run prepublish
| general:
artifacts:
- "extension/"
- "apiary.crx"
- "apiary.zip"
machine:
node:
version: 7.9.0
hosts:
api.xyz.com: 127.0.0.1
console.apiary.dev: 127.0.0.1
dependencies:
pre:
- sudo apt-get install jq
post:
- echo 'NODE_ENV=CI' > .env && cd server && npm install
- cd extension && echo $CHROME_EXTENSION_RSA_KEY > key.pem
- cd client && echo 'NODE_ENV=CI' > .env && npm install
cache_directories:
- "server/node_modules"
test:
pre:
- npm run build:extension
- cd server && npm start:
background: true
- npm start:
background: true
post:
- jq 'del(.key)' ./extension/manifest.json > tmp.$$.json && mv tmp.$$.json ./extension/manifest.json
- cd client && npm run prepublish
- cd client && zip -u apiary.zip ../extension/key.pem -j
deployment:
production:
branch: master
commands:
- npm run semantic-release || true
|
Make sure meteor is properly installed | machine:
pre:
- curl https://install.meteor.com
# node:
# version: v0.10.32
| machine:
pre:
- curl https://install.meteor.com | sh
# node:
# version: v0.10.32
|
Add Charlie to Derek file | maintainers:
- alexellis
- rgee0
- johnmccabe
- jockdarock
- ericstoekl
- itscaro
- kenfdev
- BurtonR
- iyovcheva
- stefanprodan
- ovation22
features:
- dco_check
- comments
| maintainers:
- alexellis
- rgee0
- johnmccabe
- jockdarock
- ericstoekl
- itscaro
- kenfdev
- BurtonR
- iyovcheva
- stefanprodan
- ovation22
- cpitkin
features:
- dco_check
- comments
|
Make archive template the same as the build one | before:
hooks:
- go mod tidy
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
goarch:
- 386
- amd64
binary: "mdt{{ .Version }}.{{ .Os }}-{{ .Arch }}"
no_unique_dist_dir: true
archives:
- format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
| before:
hooks:
- go mod tidy
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
goarch:
- 386
- amd64
binary: "{{.ProjectName}}{{ .Version }}.{{ .Os }}-{{ .Arch }}"
no_unique_dist_dir: true
archives:
- format_overrides:
- goos: windows
format: zip
name_template: "{{.ProjectName}}{{.Version}}.{{.Os}}-{{.Arch}}"
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
|
Use SSD and delete volume after termination | ---
# The following environment variables are required:
# - AWS_ACCESS_KEY_ID
# - AWS_SECRET_ACCESS_KEY
# - AWS_SSH_KEY_ID
# - AWS_REGION
#
# Optional environment variables:
# - AWS_SECURITY_GROUP
# - AWS_SUBNET
# - KITCHEN_NO_CONCURRENCY set it to true if you do not want concurrency
driver:
name: ec2
instance_type: t2.micro
associate_public_ip: true
region: <%= ENV['AWS_REGION'] || 'us-west-2' %>
subnet_filter:
tag: 'Name'
value: <%= ENV['AWS_SUBNET'] || 'chef-testing-opensource-vpc-subnet' %>
security_group_filter:
tag: 'Name'
value: <%= ENV['AWS_SECURITY_GROUP'] || 'chef-testing-opensource-vpc-security-group' %>
transport:
ssh_key: <%= ENV['HOME'] %>/.ssh/id_rsa
provisioner:
name: chef_zero_scheduled_task
platforms:
- name: centos-6
driver:
image_id: ami-05cf2265
suites:
- name: default
run_list:
- recipe[centreon-engine::default]
| ---
# The following environment variables are required:
# - AWS_ACCESS_KEY_ID
# - AWS_SECRET_ACCESS_KEY
# - AWS_SSH_KEY_ID
# - AWS_REGION
#
# Optional environment variables:
# - AWS_SECURITY_GROUP
# - AWS_SUBNET
# - KITCHEN_NO_CONCURRENCY set it to true if you do not want concurrency
driver:
name: ec2
instance_type: t2.micro
associate_public_ip: true
region: <%= ENV['AWS_REGION'] || 'us-west-2' %>
subnet_filter:
tag: 'Name'
value: <%= ENV['AWS_SUBNET'] || 'chef-testing-opensource-vpc-subnet' %>
security_group_filter:
tag: 'Name'
value: <%= ENV['AWS_SECURITY_GROUP'] || 'chef-testing-opensource-vpc-security-group' %>
block_device_mappings:
- device_name: /dev/sda1
ebs:
volume_type: gp2
delete_on_termination: true
transport:
ssh_key: <%= ENV['HOME'] %>/.ssh/id_rsa
provisioner:
name: chef_zero_scheduled_task
platforms:
- name: centos-6
driver:
image_id: ami-05cf2265
suites:
- name: default
run_list:
- recipe[centreon-engine::default]
|
Fix config for Circle CI | machine:
environment:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError"'
java:
version: oraclejdk8
dependencies:
pre:
# Android SDK Platform
- if [ ! -d "/usr/local/android-sdk-linux/platforms/android-25" ]; then echo y | android update sdk --no-ui --all --filter "android-25"; fi
# Android SDK Build-tools
- if [ ! -d "/usr/local/android-sdk-linux/build-tools/25.0.2" ]; then echo y | android update sdk --no-ui --all --filter "build-tools-25.0.2"; fi
# Android Support Repository / Local Maven repository for Support Libraries
- if [ ! -d "/usr/local/android-sdk-linux/extras/android/m2repository/com/android/support/design/25.1.1" ]; then echo y | android update sdk --no-ui --all --filter "extra-android-m2repository"; fi
cache_directories:
- /usr/local/android-sdk-linux/platforms/android-25
- /usr/local/android-sdk-linux/build-tools/25.0.2
- /usr/local/android-sdk-linux/extras/android/m2repository
test:
override:
- ./gradlew assembleRelease
- cp -r app/build/outputs $CIRCLE_ARTIFACTS | \machine:
environment:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError"'
java:
version: oraclejdk8
dependencies:
pre:
# Android SDK Platform
- if [ ! -d "/usr/local/android-sdk-linux/platforms/android-25" ]; then echo y | android update sdk --no-ui --all --filter "android-25"; fi
# Android SDK Build-tools
- if [ ! -d "/usr/local/android-sdk-linux/build-tools/25.0.3" ]; then echo y | android update sdk --no-ui --all --filter "build-tools-25.0.3"; fi
# Android Support Repository / Local Maven repository for Support Libraries
- if [ ! -d "/usr/local/android-sdk-linux/extras/android/m2repository/com/android/support/design/25.1.1" ]; then echo y | android update sdk --no-ui --all --filter "extra-android-m2repository"; fi
cache_directories:
- /usr/local/android-sdk-linux/platforms/android-25
- /usr/local/android-sdk-linux/build-tools/25.0.3
- /usr/local/android-sdk-linux/extras/android/m2repository
test:
override:
- ./gradlew assembleRelease
- cp -r app/build/outputs $CIRCLE_ARTIFACTS |
Fix CircleCI SSH key changes | machine:
ruby:
version: 2.1.5
environment:
KITCHEN_LOCAL_YAML: .kitchen.cloud.yml
dependencies:
cache_directories:
- "~/bundle"
pre:
- ssh-keygen -y -f ~/.ssh/build_key.rsa > ~/.ssh/id_rsa.pub
override:
- bundle install --path=~/bundle --jobs=4 --retry=3:
timeout: 600
test:
override:
- bundle exec rake style:
timeout: 120
- bundle exec rake spec:
timeout: 120
- bundle exec rake integration:cloud:
timeout: 600
| machine:
ruby:
version: 2.1.5
environment:
KITCHEN_LOCAL_YAML: .kitchen.cloud.yml
dependencies:
cache_directories:
- "~/bundle"
pre:
- ssh-keygen -f ~/.ssh/id_rsa -q -N ""
override:
- bundle install --path=~/bundle --jobs=4 --retry=3:
timeout: 600
test:
override:
- bundle exec rake style:
timeout: 120
- bundle exec rake spec:
timeout: 120
- bundle exec rake integration:cloud:
timeout: 600
|
Build Glowkit before Glowstone in CircleCI. | machine:
java:
version: oraclejdk8
test:
override:
- ./setup.sh
post:
- cp -r target/glowstone*.jar $CIRCLE_ARTIFACTS/
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
| machine:
java:
version: oraclejdk8
dependencies:
pre:
- git config --global user.email "momothereal"
- git config --global user.name "momothereal.mc@gmail.com"
- git clone --recursive https://github.com/GlowstoneMC/Glowkit.git glowkit
- (cd glowkit && chmod +x applyPatches.sh && ./applyPatches.sh)
- (cd glowkit/Glowkit-Patched && mvn package install)
test:
override:
- ./setup.sh
post:
- cp -r target/glowstone*.jar $CIRCLE_ARTIFACTS/
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
|
Change AppVeyor server address back | environment:
TMC_PASSWORD:
secure: yHwF55rZGpgUDCEGjHQtuw==
TMC_USERNAME:
secure: yHwF55rZGpgUDCEGjHQtuw==
TMC_SERVER_ADDRESS:
secure: mGLqF/XXSWBgTAeL3TZT3vHHfGT8CFz4xa8Y88hOgkHyhlYZ0+nEhIkeUu5nYS8d
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip', 'C:\maven-bin.zip')
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;%PATH%
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
build_script:
- mvn clean install --batch-mode
cache:
- C:\maven\
- C:\Users\appveyor\.m2
| environment:
TMC_PASSWORD:
secure: yHwF55rZGpgUDCEGjHQtuw==
TMC_USERNAME:
secure: yHwF55rZGpgUDCEGjHQtuw==
TMC_SERVER_ADDRESS:
secure: mGLqF/XXSWBgTAeL3TZT3vIX0VTyvNdt0XM2V3yA1As=
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip', 'C:\maven-bin.zip')
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;%PATH%
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
build_script:
- mvn clean install --batch-mode
cache:
- C:\maven\
- C:\Users\appveyor\.m2
|
Remove race flag when testing on windows environment | version: "0.0.1-{build}-unofficial-ci-appveyor"
clone_folder: c:\gopath\src\github.com\bpicode\fritzctl
environment:
GOPATH: c:\gopath
CC: gcc.exe
install:
- set PATH=c:\go\bin;%GOPATH%\bin;C:\msys64\mingw64\bin\;C:\Program Files (x86)\NSIS\;%PATH%
- echo %PATH%
- echo %GOPATH%
- go version
- go env
build_script:
- go build
- gcc --version
test_script:
- for /f "" %%G in ('go list ./... ^| find /i /v "/vendor/"') do ( go test -race %%G & IF ERRORLEVEL == 1 EXIT 1)
| version: "0.0.1-{build}-unofficial-ci-appveyor"
clone_folder: c:\gopath\src\github.com\bpicode\fritzctl
environment:
GOPATH: c:\gopath
CC: gcc.exe
install:
- set PATH=c:\go\bin;%GOPATH%\bin;C:\msys64\mingw64\bin\;C:\Program Files (x86)\NSIS\;%PATH%
- echo %PATH%
- echo %GOPATH%
- go version
- go env
build_script:
- go build
- gcc --version
test_script:
- for /f "" %%G in ('go list ./... ^| find /i /v "/vendor/"') do ( go test %%G & IF ERRORLEVEL == 1 EXIT 1)
|
Install Python 3.8 on Appveyor | version: build-{build}-{branch}
environment:
matrix:
# https://www.appveyor.com/docs/installed-software#python lists available
# versions
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
## - PYTHON: "C:\\Python38"
init:
- "echo %PYTHON%"
install:
- ps: if (-not (Test-Path $env:PYTHON)) { throw "No $env:PYTHON" }
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- pip install -U virtualenv # upgrade pip in tox's virtualenvs
- pip install tox
- choco install graphviz
- "set PATH=c:\\Program Files (x86)\\graphviz2.38\\bin;%PATH%"
- dot -V
build: off
test_script:
- tox -e py
| version: build-{build}-{branch}
environment:
matrix:
# https://www.appveyor.com/docs/installed-software#python lists available
# versions
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python38"
init:
- "echo %PYTHON%"
install:
- ps: |
if (-not (Test-Path $env:PYTHON)) {
curl -o install_python.ps1 https://raw.githubusercontent.com/matthew-brett/multibuild/11a389d78892cf90addac8f69433d5e22bfa422a/install_python.ps1
.\install_python.ps1
}
- ps: if (-not (Test-Path $env:PYTHON)) { throw "No $env:PYTHON" }
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- pip install -U virtualenv # upgrade pip in tox's virtualenvs
- pip install tox
- choco install graphviz
- "set PATH=c:\\Program Files (x86)\\graphviz2.38\\bin;%PATH%"
- dot -V
build: off
test_script:
- tox -e py
|
Build tools packages too in CI | os: Visual Studio 2017
build_script:
- cmd: echo /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" >> msbuild.rsp
- cmd: mkdir %TEMP%\packages || echo Local packages directory already exists
- cmd: msbuild src\corebuild.nuproj /t:restore
- cmd: msbuild src\corebuild.nuproj
nuget:
project_feed: true
disable_publish_on_pr: false
deploy:
- provider: NuGet
api_key:
secure: 7MS5+XWaFchMXFqzgneQCqo9U0DlxiPXe/KWWUnbCBDEizVn06EjdQZkWu1gbNOJ
artifact: Package
on:
branch: master
artifacts:
- path: 'src\*.nupkg'
name: Package | os: Visual Studio 2017
build_script:
- cmd: echo /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" >> msbuild.rsp
- cmd: mkdir %TEMP%\packages || echo Local packages directory already exists
- cmd: mkdir out
- cmd: msbuild src\corebuild.nuproj /t:restore
- cmd: msbuild tools\CoreBuild.Tools.sln /t:restore
- cmd: msbuild src\corebuild.nuproj /p:PackageOutputPath=%cd%\out
- cmd: msbuild tools\CoreBuild.Tools.sln /p:PackageOutputPath=%cd%\out
nuget:
project_feed: true
disable_publish_on_pr: false
deploy:
- provider: NuGet
api_key:
secure: 7MS5+XWaFchMXFqzgneQCqo9U0DlxiPXe/KWWUnbCBDEizVn06EjdQZkWu1gbNOJ
artifact: Package
on:
branch: master
artifacts:
- path: 'out\*.nupkg'
name: Package |
Add query-string for correct canonicalisation | ---
site: dclg_planning
whitehall_slug: department-for-communities-and-local-government
title: Department for Communities and Local Government
redirection_date: 31st December 2014
homepage: https://www.gov.uk/government/organisations/department-for-communities-and-local-government
tna_timestamp: 20140320163321
host: planningguidance.planningportal.gov.uk
furl: www.gov.uk/dclg
| ---
site: dclg_planning
whitehall_slug: department-for-communities-and-local-government
title: Department for Communities and Local Government
redirection_date: 31st December 2014
homepage: https://www.gov.uk/government/organisations/department-for-communities-and-local-government
tna_timestamp: 20140320163321
host: planningguidance.planningportal.gov.uk
furl: www.gov.uk/dclg
options: --query-string p
|
Update Planisphere to 1.2.0 (3) | Categories:
- Science & Education
License: GPL-3.0-or-later
WebSite: https://github.com/tengel/AndroidPlanisphere#androidplanisphere
SourceCode: https://github.com/tengel/AndroidPlanisphere
IssueTracker: https://github.com/tengel/AndroidPlanisphere/issues
AutoName: Planisphere
RepoType: git
Repo: https://github.com/tengel/AndroidPlanisphere.git
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 2
commit: v1.1.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+\.\d+
CurrentVersion: 1.1.0
CurrentVersionCode: 2
| Categories:
- Science & Education
License: GPL-3.0-or-later
WebSite: https://github.com/tengel/AndroidPlanisphere#androidplanisphere
SourceCode: https://github.com/tengel/AndroidPlanisphere
IssueTracker: https://github.com/tengel/AndroidPlanisphere/issues
AutoName: Planisphere
RepoType: git
Repo: https://github.com/tengel/AndroidPlanisphere.git
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 2
commit: v1.1.0
subdir: app
gradle:
- yes
- versionName: 1.2.0
versionCode: 3
commit: v1.2.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+\.\d+
CurrentVersion: 1.2.0
CurrentVersionCode: 3
|
Remove Arm64 manifest entry for initial testing from Travis-CI | image: bkimminich/juice-shop:snapshot
manifests:
- image: bkimminich/juice-shop:snapshot-amd64
platform:
architecture: amd64
os: linux
- image: bkimminich/juice-shop:snapshot-arm64v8
platform:
architecture: arm64
os: linux
variant: v8 | image: bkimminich/juice-shop:snapshot
manifests:
- image: bkimminich/juice-shop:snapshot-amd64
platform:
architecture: amd64
os: linux |
Update from Hackage at 2017-01-11T17:28:54Z | homepage: https://github.com/jwiegley/runmany
changelog-type: markdown
hash: 367a639d491ec4dbcc960aaab8dd46f3e72da9e6b953267937bbcabf021d80b6
test-bench-deps: {}
maintainer: johnw@newartisans.com
synopsis: Run multiple commands, interleaving output and errors
changelog: ! '# Revision history for runmany
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
bytestring: -any
stm: -any
base: ! '>=4.9 && <4.10'
process: -any
async: -any
optparse-applicative: ! '>=0.12 && <0.13'
all-versions:
- '0.1.0.0'
author: John Wiegley
latest: '0.1.0.0'
description-type: haddock
description: Run multiple commands, interleaving output and errors
license-name: MIT
| homepage: https://github.com/jwiegley/runmany
changelog-type: markdown
hash: 0b4a20afcb36898860b03cdf0d8753adfde068358a3471d8440d62312dd1cc3d
test-bench-deps: {}
maintainer: johnw@newartisans.com
synopsis: Run multiple commands, interleaving output and errors
changelog: ! '# Revision history for runmany
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
bytestring: -any
stm: -any
base: ! '>=4.9 && <4.10'
process: -any
async: -any
optparse-applicative: ! '>=0.12 && <0.14'
all-versions:
- '0.1.0.0'
- '0.1.1'
author: John Wiegley
latest: '0.1.1'
description-type: haddock
description: Run multiple commands, interleaving output and errors
license-name: MIT
|
Update GitHub Actions Audit workflow | name: Audit
on:
push:
branches:
- master
jobs:
audit:
runs-on: ubuntu-latest
container:
image: homebrew/brew
steps:
- uses: actions/checkout@master
- run: brew audit homebrew-xorg/homebrew-xorg/Formula/*.rb
| name: Audit
on:
push:
branches:
- master
jobs:
audit:
runs-on: ubuntu-latest
container:
image: homebrew/brew
steps:
- uses: actions/checkout@master
- run: brew audit ./homebrew-xorg/homebrew-xorg/Formula/*.rb
|
Add related programming challenges to modulo lesson | modulo:
duration: 30
computational-thinking-links: modulo-ct-links.md
generated-resources:
modulo-clock:
description: Clock face with blank, 2, and 10 digit combinations.
train-stations:
description: Train stations with circular or twisted tracks.
piano-keys:
description: Piano keys with optional highlighted keys.
classroom-resources:
- Counters to mark positions.
| modulo:
duration: 30
computational-thinking-links: modulo-ct-links.md
generated-resources:
modulo-clock:
description: Clock face with blank, 2, and 10 digit combinations.
train-stations:
description: Train stations with circular or twisted tracks.
piano-keys:
description: Piano keys with optional highlighted keys.
classroom-resources:
- Counters to mark positions.
programming-challenges:
check-if-divisor
check-if-divisor-series
find-factors
check-prime
generate-primes
find-prime-factors
|
Remove security check from build, hook implemented at repo level | machine:
node:
version: 5.1.1
general:
artifacts:
- $CIRCLE_TEST_REPORTS
- coverage
test:
override:
- npm run security:check
- npm test -- --reporter mocha-junit-reporter --reporter-options mochaFile=$CIRCLE_TEST_REPORTS/junit/results.xml
- npm run coverage
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_REPO_TOKEN ./node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info
| machine:
node:
version: 5.1.1
general:
artifacts:
- $CIRCLE_TEST_REPORTS
- coverage
test:
override:
- npm test -- --reporter mocha-junit-reporter --reporter-options mochaFile=$CIRCLE_TEST_REPORTS/junit/results.xml
- npm run coverage
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_REPO_TOKEN ./node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info
|
Update from Hackage at 2016-11-18T12:33:41Z | homepage: https://github.com/tolysz/rawstring-qm
changelog-type: text
hash: d856c4c9407a2bf37aa5c129a34109bdbeec1cecbdcd91f84be9efcb972ab954
test-bench-deps: {}
maintainer: tolysz@gmail.com
synopsis: Simple raw string quotation and dictionary interpolation
changelog: ! '0.2.0
* remove lookup i.e. {} will not work from qm
* add tl qtl
* drop monster `haskell-src-meta` dependency
0.1.6
*Bounds for 7.6.3
0.1.5
* updating for 7.11...
0.1.4
* Initial public version'
basic-deps:
bytestring: -any
base: ! '>4.6 && <5'
text: -any
template-haskell: -any
all-versions:
- '0.1.6'
- '0.2.2.1'
- '0.2.2.2'
author: Marcin Tolysz
latest: '0.2.2.2'
description-type: haddock
description: ! 'Supply a couple of usefull QuasiQuotes so we can use functions to
lookup values
This is an initial, and unstable package.'
license-name: BSD3
| homepage: https://github.com/tolysz/rawstring-qm
changelog-type: text
hash: 1ed7b0af853a075336752297731829951951829cfc3e58fddebb3b7c164a72a6
test-bench-deps: {}
maintainer: tolysz@gmail.com
synopsis: Simple raw string quotation and dictionary interpolation
changelog: ! '0.2.0
* remove lookup i.e. {} will not work from qm
* add tl qtl
* drop monster `haskell-src-meta` dependency
0.1.6
*Bounds for 7.6.3
0.1.5
* updating for 7.11...
0.1.4
* Initial public version'
basic-deps:
bytestring: -any
base: ! '>4.6 && <5'
text: -any
template-haskell: -any
all-versions:
- '0.1.6'
- '0.2.2.1'
- '0.2.2.2'
- '0.2.3.0'
author: Marcin Tolysz
latest: '0.2.3.0'
description-type: haddock
description: ! 'Supply a couple of usefull QuasiQuotes so we can use functions to
lookup values
It has quasiquotes for Strings, Text and Builders'
license-name: BSD3
|
Update from Hackage at 2016-05-17T11:40:24+0000 | homepage: http://github.com/wereHamster/avers-server
changelog-type: ''
hash: 33fa91deb658871ef79a0c223a70422fa743044101830f278c2261fd9347c9c6
test-bench-deps: {}
maintainer: tomas.carnecky@gmail.com
synopsis: Server implementation of the Avers API
changelog: ''
basic-deps:
cookie: -any
wai-websockets: -any
either: -any
bytestring: -any
wai: -any
bytestring-conversion: -any
stm: -any
base: ! '>=4.7 && <5'
time: -any
base64-bytestring: -any
text: -any
resource-pool: -any
websockets: -any
avers-api: -any
rethinkdb-client-driver: -any
servant-server: -any
servant: -any
containers: -any
mtl: -any
transformers: -any
avers: -any
http-types: -any
aeson: -any
cryptohash: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
author: Tomas Carnecky
latest: '0.0.4'
description-type: haddock
description: See README.md
license-name: MIT
| homepage: http://github.com/wereHamster/avers-server
changelog-type: ''
hash: e263c64bedfc770f4b2f4a9f8cabce62c28432fd096301e5fdbd512065eb98e9
test-bench-deps: {}
maintainer: tomas.carnecky@gmail.com
synopsis: Server implementation of the Avers API
changelog: ''
basic-deps:
cookie: -any
wai-websockets: -any
either: -any
bytestring: -any
wai: -any
bytestring-conversion: -any
stm: -any
base: ! '>=4.7 && <5'
time: -any
base64-bytestring: -any
text: -any
resource-pool: -any
websockets: -any
avers-api: -any
rethinkdb-client-driver: -any
servant-server: -any
servant: -any
containers: -any
mtl: -any
transformers: -any
avers: -any
http-types: -any
aeson: -any
cryptohash: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
author: Tomas Carnecky
latest: '0.0.5'
description-type: haddock
description: See README.md
license-name: MIT
|
Fix migration for MySQL :wrench: | databaseChangeLog:
- changeSet:
id: 42
author: camsaul
changes:
- dropColumn:
tableName: query_queryexecution
columnName: query_id
- dropColumn:
tableName: core_user
columnName: is_staff
- dropColumn:
tableName: metabase_database
columnName: organization_id
- dropColumn:
tableName: report_card
columnName: organization_id
- dropColumn:
tableName: report_dashboard
columnName: organization_id
- dropTable:
tableName: annotation_annotation
- dropTable:
tableName: core_permissionsviolation
- dropTable:
tableName: core_userorgperm
- dropTable:
tableName: core_organization
- dropTable:
tableName: metabase_foreignkey
- dropTable:
tableName: metabase_tablesegment
- dropTable:
tableName: query_query
- dropTable:
tableName: report_dashboardsubscription
- dropTable:
tableName: report_emailreport_recipients
- dropTable:
tableName: report_emailreportexecutions
- dropTable:
tableName: report_emailreport
| databaseChangeLog:
- changeSet:
id: 42
author: camsaul
changes:
- dropForeignKeyConstraint:
baseTableName: query_queryexecution
constraintName: fk_queryexecution_ref_query_id
- dropColumn:
tableName: query_queryexecution
columnName: query_id
- dropColumn:
tableName: core_user
columnName: is_staff
- dropColumn:
tableName: metabase_database
columnName: organization_id
- dropColumn:
tableName: report_card
columnName: organization_id
- dropColumn:
tableName: report_dashboard
columnName: organization_id
- dropTable:
tableName: annotation_annotation
- dropTable:
tableName: core_permissionsviolation
- dropTable:
tableName: core_userorgperm
- dropTable:
tableName: core_organization
- dropTable:
tableName: metabase_foreignkey
- dropTable:
tableName: metabase_tablesegment
- dropTable:
tableName: query_query
- dropTable:
tableName: report_dashboardsubscription
- dropTable:
tableName: report_emailreport_recipients
- dropTable:
tableName: report_emailreportexecutions
- dropTable:
tableName: report_emailreport
|
Remove deployment job in Circle |
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build-job:
docker:
# specify the version you desire here
- image: circleci/node:8.9.4
environment:
- NODE_ENV: development
working_directory: ~/repo
steps:
- checkout
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: yarn test
deploy-job:
docker:
# specify the version you desire here
- image: circleci/node:8.9.4
environment:
- NODE_ENV: development
working_directory: ~/repo
steps:
- checkout
- run: yarn install
- run: yarn deploy:remove-inactive
- run: yarn deploy
workflows:
version: 2
build-deploy:
jobs:
- build-job
- deploy-job:
requires:
- build-job
filters:
branches:
only: next
|
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build-job:
docker:
# specify the version you desire here
- image: circleci/node:8.9.4
environment:
- NODE_ENV: development
working_directory: ~/repo
steps:
- checkout
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: yarn test
workflows:
version: 2
build-deploy:
jobs:
- build-job
|
Update from Hackage at 2019-10-06T06:59:17Z | homepage: https://github.com/MnO2/hopencc
changelog-type: ''
hash: 015ee4714b084b0a946e2e302ce3d1b6431d68d626149c3767aee94fb666eee1
test-bench-deps:
base: ! '>=4 && <5'
hopencc: -any
QuickCheck: ==2.4.*
maintainer: mno2.csie@gmail.com
synopsis: Haskell binding to libopencc
changelog: ''
basic-deps:
bytestring: ==0.9.*
base: ! '>=4 && <5'
utf8-string: ==0.3.*
all-versions:
- 0.1.0.0
author: Paul Meng
latest: 0.1.0.0
description-type: haddock
description: Haskell binding to libopencc
license-name: BSD-3-Clause
| homepage: https://github.com/MnO2/hopencc
changelog-type: ''
hash: 736abf2a184128b74ed1d8f796cf0bc4d0428e73fd4eabf67b08d5b5665bf438
test-bench-deps:
base: -any
hopencc: -any
QuickCheck: -any
maintainer: me@paulme.ng
synopsis: Haskell binding to libopencc
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.5 && <5'
utf8-string: -any
all-versions:
- 0.1.0.0
- 0.2.0.0
author: Paul Meng
latest: 0.2.0.0
description-type: haddock
description: opencc is the library for Simplified and Tranditional Chinese conversion.
And this library is a binding for Haskell
license-name: BSD-3-Clause
|
Test against JRuby in additional modes | bundler_args: --without development
language: ruby
rvm:
- jruby-18mode
- jruby-19mode
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- rbx
| bundler_args: --without development
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- jruby-20mode
- jruby-21mode
- jruby-head
- rbx
|
Remove OSX from Travis config | sudo: false
language: d
os:
- linux
- osx
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
matrix:
allow_failures:
- os: osx
d: gdc-5.2.0
- env: ARCH=x86
d: gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDFrMBMdhO0ObnrIb0GdvUsz0LEKxHerQN/+qSos5In5WI7ATddJyCxK1RvvzaxWdiMRurfQSSW5vAW0KCRpXnEIZ1q70+WGgXH7eOT5ZVt0bHo3L2Jo9kYXwCSWxEfiQsREliEj5RXyD4SCbGFbeP2a/4x9A1VuI="
matrix:
- ARCH=x86
- ARCH=x86_64
script:
dub test --arch=$ARCH;
after_success:
- ./push-ddoc.sh
| sudo: false
language: d
os:
- linux
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
matrix:
allow_failures:
d: gdc-5.2.0
- env: ARCH=x86
d: gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDFrMBMdhO0ObnrIb0GdvUsz0LEKxHerQN/+qSos5In5WI7ATddJyCxK1RvvzaxWdiMRurfQSSW5vAW0KCRpXnEIZ1q70+WGgXH7eOT5ZVt0bHo3L2Jo9kYXwCSWxEfiQsREliEj5RXyD4SCbGFbeP2a/4x9A1VuI="
matrix:
- ARCH=x86
- ARCH=x86_64
script:
dub test --arch=$ARCH;
after_success:
- ./push-ddoc.sh
|
Test with Go 1.6, 1.7 and 1.8 | language: go
go:
- 1.7
- tip
sudo: false
install:
- curl -L -s https://github.com/Masterminds/glide/releases/download/v0.12.3/glide-v0.12.3-linux-amd64.tar.gz | tar zxC ./
- ./linux-amd64/glide install
script:
- go test
| language: go
go:
- 1.6
- 1.7
- 1.8
- tip
sudo: false
install:
- curl -L -s https://github.com/Masterminds/glide/releases/download/v0.12.3/glide-v0.12.3-linux-amd64.tar.gz | tar zxC ./
- ./linux-amd64/glide install
script:
- go test
|
Allow some builds to fail | language: ruby
script: bundle exec rake test
cache: bundler
sudo: false
before_install:
- gem i bundler -v=1.9.4
rvm:
- 2.0.0
- 2.1
- 2.2
- ruby-head
- jruby-head
- rbx-2.4.1
- rbx-2.5.2
gemfile:
- gemfiles/activerecord_32.gemfile
- gemfiles/activerecord_40.gemfile
- gemfiles/activerecord_41.gemfile
- gemfiles/activerecord_42.gemfile
- gemfiles/activerecord_edge.gemfile
| language: ruby
script: bundle exec rake test
cache: bundler
sudo: false
before_install:
- gem i bundler -v=1.9.4
rvm:
- 2.0.0
- 2.1
- 2.2
- ruby-head
- jruby-head
- rbx-2.4.1
- rbx-2.5.2
gemfile:
- gemfiles/activerecord_32.gemfile
- gemfiles/activerecord_40.gemfile
- gemfiles/activerecord_41.gemfile
- gemfiles/activerecord_42.gemfile
- gemfiles/activerecord_edge.gemfile
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2.4.1
- gemfile: gemfiles/activerecord_32.gemfile
- gemfile: gemfiles/activerecord_edge.gemfile
|
Revert "Try running the CI test without creating a db first" | language: go
addons:
- postgresql: "9.6"
services:
- postgresql
go:
- 1.8
- 1.9
- "1.10"
- tip
| language: go
addons:
- postgresql: "9.6"
services:
- postgresql
before_script:
- psql -c "CREATE DATABASE test;" -U postgres
go:
- 1.8
- 1.9
- "1.10"
- tip
|
Update Travis-CI to use GHC 7.10.1 | language: haskell
notifications:
email:
- erkokl@gmail.com
on_success: always
on_failure: always
| language: haskell
env:
- GHCVER=7.10.1
notifications:
email:
- erkokl@gmail.com
on_success: always
on_failure: always
before_install:
- |
if [ $GHCVER = `ghc --numeric-version` ]; then
echo "No need to install GHC, already have $GHCVER";
else
travis_retry sudo add-apt-repository -y ppa:hvr/ghc
travis_retry sudo apt-get update
travis_retry sudo apt-get install ghc-$GHCVER
export PATH=/opt/ghc/$GHCVER/bin:$PATH
fi
- $CABAL update
install:
- $CABAL install --dependencies-only --enable-tests
- $CABAL configure
script:
- $CABAL build
- $CABAL test --show-details=always
- cabal sdist
- export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}') ;
cd dist/;
if [ -f "$SRC_TGZ" ]; then
cabal install --force-reinstalls "$SRC_TGZ";
else
echo "expected '$SRC_TGZ' not found";
exit 1;
fi
|
Test both the normal and the ucs4 build | language: c
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y texinfo
script: ./autogen.sh && ./configure && make && make check
| language: c
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y texinfo
script:
- ./autogen.sh && ./configure && make && make check
- ./autogen.sh && ./configure --enable-ucs4 && make && make check
|
Use structure instead of schema | language: ruby
rvm:
- 2.1.3
services:
- postgresql
- redis-server
env:
- RAILS_ENV=test
before_install:
- bundle config build.nokogiri --use-system-libraries
before_script:
- bundle exec rake db:create db:schema:load
script:
- bundle exec rspec spec
addons:
postgresql: "9.3"
| language: ruby
rvm:
- 2.1.3
services:
- postgresql
- redis-server
env:
- RAILS_ENV=test
before_install:
- bundle config build.nokogiri --use-system-libraries
before_script:
- bundle exec rake db:create db:structure:load
script:
- bundle exec rspec spec
addons:
postgresql: "9.3"
|
Add --verbose=3 to sdist step, trying to figure out what's the problem on Travis CI. | env:
- GHCVER=7.0.4
- GHCVER=7.2.2
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.3
- GHCVER=head
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update -qq
- sudo apt-get install -qq cabal-install-1.18 ghc-$GHCVER
- export PATH="/opt/ghc/$GHCVER/bin:$PATH"
install:
- cabal-1.18 update
- ghc --version
- ghc-pkg list
script:
- cabal-1.18 install --enable-documentation
- cabal-1.18 sdist
- ghc-pkg list
| env:
- GHCVER=7.0.4
- GHCVER=7.2.2
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.3
- GHCVER=head
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update -qq
- sudo apt-get install -qq cabal-install-1.18 ghc-$GHCVER
- export PATH="/opt/ghc/$GHCVER/bin:$PATH"
install:
- cabal-1.18 update
- ghc --version
- ghc-pkg list
script:
- cabal-1.18 install --enable-documentation
- cabal-1.18 sdist --verbose=3
- ghc-pkg list
|
Build on Node 0.8 at Travis CI. | language: node_js
node_js:
- 0.6
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
| language: node_js
node_js:
- 0.6
- 0.8
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
|
Replace Java 14 with 15. | # 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 this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk8
- openjdk11
- openjdk14
after_success:
- mvn -V clean cobertura:cobertura coveralls:report --no-transfer-progress
| # 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 this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk8
- openjdk11
- openjdk15
after_success:
- mvn -V clean cobertura:cobertura coveralls:report --no-transfer-progress
|
Add Ruby 2.2 and 2.3 to Travis. | language: ruby
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "rbx-2"
- "jruby-1.7.5"
before_script:
- psql -c 'create database "que-test"' -U postgres
- bundle exec ruby -r sequel -r ./lib/que -e 'Que.connection=Sequel.connect("postgres://localhost/que-test"); Que.migrate!'
script: "./spec/travis.rb"
addons:
postgresql: 9.3
| language: ruby
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- "rbx-2"
- "jruby-1.7.5"
before_script:
- psql -c 'create database "que-test"' -U postgres
- bundle exec ruby -r sequel -r ./lib/que -e 'Que.connection=Sequel.connect("postgres://localhost/que-test"); Que.migrate!'
script: "./spec/travis.rb"
addons:
postgresql: 9.3
|
Update build to gcc4.9+ and clang3.6+ for C++11 support | language: cpp
compiler:
- gcc
- clang
before_script:
- mkdir build
- cd build
- cmake ..
script: make
| # referenced https://github.com/genbattle/dkm/blob/9c893efb556516f4b121a6201b66e000f838dd59/.travis.yml
sudo: required
dist: precise
language: cpp
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
env: COMPILER=g++-4.9
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env: COMPILER=g++-5
- compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
- clang-3.6
env: COMPILER=clang++-3.6
- compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- clang-3.7
env: COMPILER=clang++-3.7
compiler:
- gcc
- clang
before_script:
- mkdir build
- cd build
- cmake ..
script: make
|
Add test info for coveralls | language: rust | language: rust
after_success: |
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev &&
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz && mkdir kcov-master/build && cd kcov-master/build && cmake .. && make &&
sudo make install && cd ../.. &&
kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo target/kcov target/debug/pvm-* |
Add Python 3.4 to tested Python versions. | language: python
python:
- "3.3"
- "2.7"
- "2.6"
install:
- "pip install flake8"
- "pip install ."
script:
- "python -m test.test_facebook"
- "flake8 --ignore=E402,F401 examples"
- "flake8 facebook"
- "flake8 test"
env:
global:
- FACEBOOK_APP_ID=198798870326423
- FACEBOOK_SECRET=2db4d76fe8a336cf292470c20a5a5684
| language: python
python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
install:
- "pip install flake8"
- "pip install ."
script:
- "python -m test.test_facebook"
- "flake8 --ignore=E402,F401 examples"
- "flake8 facebook"
- "flake8 test"
env:
global:
- FACEBOOK_APP_ID=198798870326423
- FACEBOOK_SECRET=2db4d76fe8a336cf292470c20a5a5684
|
Add a TravisCI build script | language: haskell
ghc:
- 7.8
notifications:
email: false
| # NB: don't set `language: haskell` here
# The following enables several GHC versions to be tested; often it's
# enough to test only against the last release in a major GHC version. Feel
# free to omit lines listings versions you don't need/want testing for.
env:
- GHCVER=7.8.2 # see note about Alex/Happy
# Note: the distinction between `before_install` and `install` is not
# important.
before_install:
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-1.18 ghc-$GHCVER # see note about happy/alex
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/1.18/bin:$PATH
- |
if [ $GHCVER = "head" ] || [ ${GHCVER%.*} = "7.8" ]; then
travis_retry sudo apt-get install happy-1.19.4 alex-3.1.3
export PATH=/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:$PATH
else
travis_retry sudo apt-get install happy alex
fi
install:
- cabal update
- cabal install --only-dependencies --enable-tests
# Here starts the actual work to be performed for the package under test;
# any command which exits with a non-zero exit code causes the build to
# fail.
script:
- cabal configure --enable-tests -v2 # -v2 provides useful information for debugging
- cabal build # this builds all libraries and executables (including tests/benchmarks)
- cabal test
- cabal sdist # tests that a source-distribution can be generated
# The following scriptlet checks that the resulting source distribution can
# be built & installed
- export SRC_TGZ=$(cabal-1.18 info . | awk '{print $2 ".tar.gz";exit}') ;
cd dist/;
if [ -f "$SRC_TGZ" ]; then
cabal install "$SRC_TGZ";
else
echo "expected '$SRC_TGZ' not found";
exit 1;
fi
|
Use composer's --prefer-lowest on Travis CI | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
env:
- BRICK_MATH_VERSION=~0.7.3
- BRICK_MATH_VERSION=~0.8.0
matrix:
allow_failures:
- php: 7.4snapshot
before_script:
- composer require brick/math:${BRICK_MATH_VERSION}
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/php-coveralls -v
| language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
matrix:
include:
- php: 7.1.0
env: dependencies=lowest
allow_failures:
- php: 7.4snapshot
before_script:
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --prefer-stable; else composer update; fi;
script:
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/php-coveralls -v
|
Add gtest build for ubuntu since it doesn't come with libs | language: c
dist: bionic
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/2abb0e79562ccc0d19b8
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
before_install:
- sudo apt update -qq
- curl -1sLf 'https://dl.cloudsmith.io/public/openmama/openmama/cfg/setup/bash.deb.sh' | sudo bash
- sudo apt install -y openmama libgtest-dev
script:
- git clone https://github.com/OpenMAMA/OpenMAMA.git om_src
- cmake -DOPENMAMA_SRC=$(pwd)/om_src -DCMAKE_INSTALL_PREFIX=$(pwd) .
- make install
- find / -type f -name "libgtest*"
- ./bin/unittests
- ./bin/UnitTestMamaMsgC -m qpid -p omnmmsg -i O
- ./bin/UnitTestMamaPayloadC -m qpid -p omnmmsg -i O --gtest_filter=-PayloadSubMsgTests.UpdateSubMsg
| language: c
dist: bionic
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/2abb0e79562ccc0d19b8
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
before_install:
- sudo apt update -qq
- curl -1sLf 'https://dl.cloudsmith.io/public/openmama/openmama/cfg/setup/bash.deb.sh' | sudo bash
- sudo apt install -y openmama libgtest-dev
script:
- (mkdir gtest_bld && cd gtest_bld && cmake /usr/src/googletest/googletest -DCMAKE_INSTALL_PREFIX=/usr && make install)
- git clone https://github.com/OpenMAMA/OpenMAMA.git om_src
- cmake -DOPENMAMA_SRC=$(pwd)/om_src -DCMAKE_INSTALL_PREFIX=$(pwd) .
- make install
- find / -type f -name "libgtest*"
- ./bin/unittests
- ./bin/UnitTestMamaMsgC -m qpid -p omnmmsg -i O
- ./bin/UnitTestMamaPayloadC -m qpid -p omnmmsg -i O --gtest_filter=-PayloadSubMsgTests.UpdateSubMsg
|
Simplify Travis config and fix ChefDK 2.0 failures | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
matrix:
include:
- script:
- /opt/chefdk/bin/chef exec delivery local all
env: UNIT_AND_LINT=1
| sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
|
Put apt-get commands in before_install instead of before_script and added a more debuggy command to get the postgis stuff set up. | # Configuration file for building this project with Travis CI
language: python
python:
- "2.7"
install: pip install -r REQUIREMENTS --use-mirrors
script: python manage.py test --settings=settings.travis
postgres:
adapter: postgresql
database: atlas_test
username: postgres
before_script:
- "sudo apt-get install binutils gdal-bin libproj-dev postgis"
- "sudo apt-get install python-dev libfreetype6-dev zlib1g-dev libjpeg8-dev"
- "sudo -u postgres bash ./scripts/create_template_postgis-debian.sh"
- "createdb -T template_postgis atlas_test -U postgres"
branches:
only:
- develop
| # Configuration file for building this project with Travis CI
language: python
python:
- "2.7"
install: pip install -r REQUIREMENTS --use-mirrors
script: python manage.py test --settings=settings.travis
postgres:
adapter: postgresql
database: atlas_test
username: postgres
before_install:
- "sudo apt-get install binutils gdal-bin libproj-dev postgis"
- "sudo apt-get install libfreetype6-dev zlib1g-dev libjpeg8-dev"
- "sudo -u postgres cat ./scripts/create_template_postgis-debian.sh"
before_script:
- "createdb -T template_postgis atlas_test -U postgres"
branches:
only:
- develop
|
Change Travis CI install step | sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
cache:
directories:
- $HOME/.m2
script:
- mvn clean install -DdryRun=true -Dlicense.failOnMissingHeader=true -Dlicense.failOnNotUptodateHeader=true
| sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
cache:
directories:
- $HOME/.m2
install:
- mvn install -DskipTests=true -DdryRun=true
script:
- mvn clean install -DdryRun=true -Dlicense.failOnMissingHeader=true -Dlicense.failOnNotUptodateHeader=true
|
Add Node.js 8 to Travis CI build matrix | language: node_js
node_js:
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
| language: node_js
node_js:
- '8'
- '7'
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
|
Use same jruby version as in ruby-mime-types gem | language: ruby
cache: bundler
rvm:
- 2.2
- 2.3.1
- ruby-head
- jruby-21mode
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq -y graphicsmagick imagemagick
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
| language: ruby
cache: bundler
rvm:
- 2.2
- 2.3.1
- ruby-head
- jruby-9.0.0.0.pre2
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq -y graphicsmagick imagemagick
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
|
Add unit tests against sweetalert.all.min.js | language: node_js
dist: trusty
node_js: 8.1
addons:
firefox: latest
google-chrome: latest
before_script:
- gulp
script:
- xvfb-run testem ci --reporter dot
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then
node test/puppeteer/visual-tests.js;
fi
deploy:
api_key:
secure: TaF0rF0+n/t3jchds6RSahdIwV+VozFEzGXdnwKzX8TnW2afGU7hh50BJHdQA6/mm0VbgxwAfIDMYU2luLwQn8CJCcJYp7g3+g8xsH15q8ny2AUmIkQQ2sWY43Vk1yMHIwzuAlHy5Pv5qKk8cYRVY5fwaCl/4KfvpIn4F2/DjwU=
email: limon.monte@gmail.com
provider: npm
notifications:
email:
on_success: never
| language: node_js
dist: trusty
node_js: 8.1
addons:
firefox: latest
google-chrome: latest
before_script:
- gulp
script:
# unit tests against dist/sweetalert2.js
- xvfb-run testem ci --reporter dot
# unit tests against dist/sweetalert2.all.min.js
- sed -i 's/sweetalert2.js/sweetalert2.all.min.js/g' testem.json
- xvfb-run testem ci --reporter dot
# visual tests (puppeteer)
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then
node test/puppeteer/visual-tests.js;
fi
deploy:
api_key:
secure: TaF0rF0+n/t3jchds6RSahdIwV+VozFEzGXdnwKzX8TnW2afGU7hh50BJHdQA6/mm0VbgxwAfIDMYU2luLwQn8CJCcJYp7g3+g8xsH15q8ny2AUmIkQQ2sWY43Vk1yMHIwzuAlHy5Pv5qKk8cYRVY5fwaCl/4KfvpIn4F2/DjwU=
email: limon.monte@gmail.com
provider: npm
notifications:
email:
on_success: never
|
Add 7.0 and HHVM to test for | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit | language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly |
Stop testing in node 12 | language: node_js
node_js:
- node
- lts/*
sudo: false
script:
- npm run lint
- npm test
after_script:
- npx nyc report --reporter=text-lcov | npx coveralls
| language: node_js
node_js:
- node
sudo: false
script:
- npm run lint
- npm test
after_script:
- npx nyc report --reporter=text-lcov | npx coveralls
|
Comment out flake8 for now. | language: python
python:
- "2.7"
install:
- pip install flake8 --use-mirrors
- pip install -r pip_requirements.txt --use-mirrors
script:
- flake8 `find . -iname "*.py" -not -ipath "*migration*"`
- ./runtests.sh
| language: python
python:
- "2.7"
install:
- pip install flake8 --use-mirrors
- pip install -r pip_requirements.txt --use-mirrors
script:
#- flake8 `find . -iname "*.py" -not -ipath "*migration*"`
- ./runtests.sh
|
Test both master/2.0 branches in Travis CI and allow for multiple driver versions | language: php
php:
- 5.3
- 5.4
before_script:
- wget http://pecl.php.net/get/mongo-1.2.7.tgz
- tar -xzf mongo-1.2.7.tgz
- sh -c "cd mongo-1.2.7 && phpize && ./configure --enable-mongo && make && sudo make install"
- echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install
| language: php
php:
- 5.3
- 5.4
branches:
only:
- master
- 2.0
env:
- MONGO_VERSION=1.2.11
before_script:
- wget http://pecl.php.net/get/mongo-${MONGO_VERSION}.tgz
- tar -xzf mongo-${MONGO_VERSION}.tgz
- sh -c "cd mongo-${MONGO_VERSION} && phpize && ./configure && make && sudo make install"
- echo "extension=mongo.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install
|
Add openjdk8 to Travis build. | # 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 this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
script:
- mvn
after_success:
- mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura | # 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 this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk7
- openjdk8
- oraclejdk8
- oraclejdk9
script:
- mvn
after_success:
- mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura |
Drop support for node 0.10 | sudo: false
language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
| sudo: false
language: node_js
node_js:
- iojs
- "0.12"
|
Use containers on Travis CI. | language: python
python:
- "2.7"
- "3.2"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y python-opencv
- pip install -r requirements.txt
script:
- python setup.py build
virtualenv:
system_site_packages: true
| language: python
python:
- "2.7"
- "3.2"
sudo: false
addons:
apt:
packages:
- python-opencv
install:
- pip install -r requirements.txt
script:
- python setup.py build
virtualenv:
system_site_packages: true
|
Add cabal test run in CI | sudo: required
script:
- git config --global user.email "travis-ci@example.com"
- git config --global user.name "Travis-CI"
- git clone https://github.com/reflex-frp/reflex-platform ../reflex-platform
- ../reflex-platform/work-on ghcjs ../reflex-jsx --command "cabal configure --ghcjs && cabal build"
cache:
directories:
- /nix
os:
- linux
| sudo: required
script:
- git config --global user.email "travis-ci@example.com"
- git config --global user.name "Travis-CI"
- git clone https://github.com/reflex-frp/reflex-platform ../reflex-platform
- ../reflex-platform/work-on ghcjs ../reflex-jsx --command "cabal configure --ghcjs && cabal build && cabal test"
cache:
directories:
- /nix
os:
- linux
|
Add JRuby to allowed failures | sudo: false
language: ruby
rvm:
- 2.6
- 2.5
- 2.4
- 2.3
- ruby-head
- jruby-9.2.6.0
- truffleruby
matrix:
allow_failures:
- rvm: ruby-head
- rvm: truffleruby
- rvm: 2.3
# fast_finish: true
| sudo: false
language: ruby
rvm:
- 2.6
- 2.5
- 2.4
- 2.3
- ruby-head
- jruby-9.2.6.0
- truffleruby
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-9.2.6.0
- rvm: truffleruby
- rvm: 2.3
# fast_finish: true
|
Set Travis to Build with go 1.12beta1 | language: go
go:
- "1.11.x"
env:
- GO111MODULE=on
| language: go
go:
- "1.12beta1"
env:
- GO111MODULE=on
|
Update from Hackage at 2017-12-07T19:11:43Z | homepage: ''
changelog-type: ''
hash: 9478052bd30be77888bd80562a993639ee77f997d64db82a5ce9c09da3a019d6
test-bench-deps: {}
maintainer: jonas.duregard@chalmers.se
synopsis: Sized functors, for size-based enumerations
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
testing-type-modifiers: ! '>=0.1 && <1.0'
dictionary-sharing: ! '>=0.1 && <1.0'
template-haskell: ! '>=2.5 && <2.12'
all-versions:
- '0.1.0.0'
author: Jonas Duregård
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 2b2732c9177efcabc524fe1a506ba57e9982246145504b36206f46028c202921
test-bench-deps: {}
maintainer: jonas.duregard@chalmers.se
synopsis: Sized functors, for size-based enumerations
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
testing-type-modifiers: ! '>=0.1 && <1.0'
dictionary-sharing: ! '>=0.1 && <1.0'
template-haskell: ! '>=2.5 && <2.13'
all-versions:
- '0.1.0.0'
author: Jonas Duregård
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: BSD3
|
Increase worker TTL to 2h | ---
Name: addonsjobs
---
Symbiote\QueuedJobs\Jobs\CleanupJob:
is_enabled: true
cleanup_method: age
cleanup_value: 3
cleanup_statuses:
- Complete
- Broken
- Paused
- Cancelled
| ---
Name: addonsjobs
---
Symbiote\QueuedJobs\Jobs\CleanupJob:
is_enabled: true
cleanup_method: age
cleanup_value: 3
cleanup_statuses:
- Complete
- Broken
- Paused
- Cancelled
Symbiote\QueuedJobs\Services\QueuedJobService:
worker_ttl: 'PT120M'
|
Add a better self-test to CI |
before_script:
- python3 -m venv myenv
- source myenv/bin/activate
- pip3 install -r requirements.txt
stages:
- test
#unit_test_job:
# stage: test
# script:
# - python3 -m unittest discover
# only:
# - master
smoke_test_job:
stage: test
script:
- ./GenerateUnitTests.py -h
only:
- master
|
before_script:
- python3 -m venv myenv
- source myenv/bin/activate
- pip3 install -r requirements.txt
stages:
- test
#unit_test_job:
# stage: test
# script:
# - python3 -m unittest discover
# only:
# - master
smoke_test_help_job:
stage: test
script:
- ./GenerateUnitTests.py -h
only:
- master
smoke_test_self_job:
stage: test
script:
- ./GenerateUnitTests.py -m test2 PyTestStub
only:
- master
|
Fix nav, maybe edit link | site_name: AudioKit
repo_url: https://github.com/AudioKit/AudioKit/
theme:
name: readthedocs
nav:
- Home: README.md
- Migration Guide: MigrationGuide.md
- Packages:
- AudioKit: /Packages/AudioKit.md
- AudioKitUI: /Packages/AudioKitUI.md
- Develoop AudioKit: /Packages/DeveloopAudioKit.md
- Dunne AudioKit: /Packages/DunneAudioKit.md
- Soul AudioKit: /Packages/SoulAudioKit.md
- Soundpipe AudioKit: /Packages/SoundpipeAudioKit.md
- Sporth AudioKit: /Packages/SporthAudioKit.md
- STK AudioKit: /Packages/STKAudioKit.md
- About:
- About Us: /About/AboutUs.md
- Contributing Code: /About/Contributing.md
| site_name: AudioKit
repo_url: https://github.com/AudioKit/AudioKit/tree/develop
theme:
name: readthedocs
nav:
- Home: README
- Migration Guide: MigrationGuide
- Packages:
- AudioKit: /Packages/AudioKit
- AudioKitUI: /Packages/AudioKitUI
- Develoop AudioKit: /Packages/DeveloopAudioKit
- Dunne AudioKit: /Packages/DunneAudioKit
- Soul AudioKit: /Packages/SoulAudioKit
- Soundpipe AudioKit: /Packages/SoundpipeAudioKit
- Sporth AudioKit: /Packages/SporthAudioKit
- STK AudioKit: /Packages/STKAudioKit
- About:
- About Us: /About/AboutUs
- Contributing Code: /About/Contributing
|
Use rake default task for test | deployment:
production:
branch: master
commands:
- heroku maintenance:on --app savanna
- git push git@heroku.com:willnet-lokka-ceder.git $CIRCLE_SHA1:refs/heads/master
- heroku run rake db:migrate --app willnet-lokka-ceder:
timeout: 400 # if your deploys take a long time
- heroku maintenance:off --app willnet-lokka-ceder
machine:
ruby:
version: 2.1.5
test:
override:
- bundle exec rake spec
notify:
webhooks:
- url: https://idobata.io/hook/circle_ci/debc5621-f694-47bf-8f52-01aafec16b1d | deployment:
production:
branch: master
commands:
- heroku maintenance:on --app savanna
- git push git@heroku.com:willnet-lokka-ceder.git $CIRCLE_SHA1:refs/heads/master
- heroku run rake db:migrate --app willnet-lokka-ceder:
timeout: 400 # if your deploys take a long time
- heroku maintenance:off --app willnet-lokka-ceder
machine:
ruby:
version: 2.1.5
test:
override:
- bundle exec rake
notify:
webhooks:
- url: https://idobata.io/hook/circle_ci/debc5621-f694-47bf-8f52-01aafec16b1d |
Build carthage with verbose option | machine:
xcode:
version: "6.3.1"
dependencies:
pre:
- sudo chown :wheel /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ *.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
- brew install carthage
test:
override:
- scripts/cibuild
| machine:
xcode:
version: "6.3.1"
dependencies:
pre:
- sudo chown :wheel /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ *.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
- brew install carthage --verbose
test:
override:
- scripts/cibuild
|
Prepare Tutum staging stack to use green-blue deployment | mongo-staging:
image: mongo:3
command: --auth
volumes:
- /var/data/mongodb:/data/db
ports:
- "27017:27017"
tags:
- staging
autorestart: always
muzhack-staging:
image: quay.io/aknuds1/muzhack:latest
links:
- mongo-staging:db
environment:
- ROOT_URL=https://staging.muzhack.com
- MONGO_URL
- METEOR_SETTINGS
tags:
- staging
autorestart: always
nginx-staging:
image: aknudsen/meteor-frontend-server
command: /start.sh
tags:
- staging
autorestart: always
ports:
- "443:443"
- "80:80"
volumes:
- /etc/nginx/ssl/bundle.crt:/bundle.crt
- /etc/nginx/ssl/private.key:/private.key
links:
- muzhack-staging:backend
logspout-staging:
image: gliderlabs/logspout
command: syslog://logs3.papertrailapp.com:19740
tags:
- staging
autorestart: always
volumes:
- /var/run/docker.sock:/tmp/docker.sock
deployment_strategy: every_node
| mongo:
image: mongo:3
command: --auth
volumes:
- /var/data/mongodb:/data/db
ports:
- "27017:27017"
tags:
- staging
restart: always
muzhack-green:
image: quay.io/aknuds1/muzhack:latest
links:
- mongo:db
environment:
- ROOT_URL=https://staging.muzhack.com
- MONGO_URL
- METEOR_SETTINGS
tags:
- staging
restart: always
deployment_strategy: high_availability
muzhack-blue:
image: quay.io/aknuds1/muzhack:latest
links:
- mongo:db
environment:
- ROOT_URL=https://staging.muzhack.com
- MONGO_URL
- METEOR_SETTINGS
tags:
- staging
restart: always
deployment_strategy: high_availability
lb:
image: tutum/haproxy
tags:
- staging
restart: always
ports:
- "443:443"
- "80:80"
volumes:
- /etc/nginx/ssl/bundle.crt:/bundle.crt
- /etc/nginx/ssl/private.key:/private.key
links:
- muzhack-green
roles:
- global
logspout:
image: gliderlabs/logspout
command: syslog://logs3.papertrailapp.com:19740
tags:
- staging
restart: always
volumes:
- /var/run/docker.sock:/tmp/docker.sock
deployment_strategy: every_node
|
Update from Hackage at 2016-09-23T22:35:23+00:00 | homepage: http://msgpack.org/
changelog-type: ''
hash: 738e2713a8adac891520740568b19a9b6b5054bd0123f3a8495de7605156b4de
test-bench-deps:
base: <5
hspec: -any
network: -any
async: -any
network-msgpack-rpc: -any
mtl: -any
maintainer: Iphigenia Df <iphydf@gmail.com>
synopsis: A MessagePack-RPC Implementation
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
base: <5
monad-control: -any
network: -any
conduit: -any
conduit-extra: -any
binary-conduit: -any
binary: -any
data-msgpack: -any
mtl: -any
all-versions:
- '0.0.1'
author: Hideyuki Tanaka
latest: '0.0.1'
description-type: haddock
description: A MessagePack-RPC Implementation <http://msgpack.org/>
license-name: BSD3
| homepage: http://msgpack.org/
changelog-type: ''
hash: e755d8271a4b4cff25422c387cb413780a2efcbc443e4196516f2d1fd3f4f0d2
test-bench-deps:
bytestring: -any
base: <5
hspec: -any
network: -any
async: -any
network-msgpack-rpc: -any
mtl: -any
maintainer: Iphigenia Df <iphydf@gmail.com>
synopsis: A MessagePack-RPC Implementation
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
base: <5
data-default-class: -any
monad-control: -any
network: -any
conduit: -any
conduit-extra: -any
tagged: -any
binary-conduit: -any
binary: -any
data-msgpack: ! '>=0.0.4'
mtl: -any
all-versions:
- '0.0.1'
- '0.0.2'
author: Hideyuki Tanaka
latest: '0.0.2'
description-type: haddock
description: ! 'A MessagePack-RPC Implementation <http://msgpack.org/>
This is a fork of msgpack-haskell <https://github.com/msgpack/msgpack-haskell>,
since the original author is unreachable. This fork incorporates a number of
bugfixes and is actively being developed.'
license-name: BSD3
|
Add python 3.6 to build | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
addons:
apt:
packages:
- libopenblas-dev
- liblapack-dev
- libatlas-dev
before_install:
- pip install numpy
- pip install coveralls
script:
- coverage run --source=pyDNase setup.py test
after_success:
- coveralls
| sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
addons:
apt:
packages:
- libopenblas-dev
- liblapack-dev
- libatlas-dev
before_install:
- pip install numpy
- pip install coveralls
script:
- coverage run --source=pyDNase setup.py test
after_success:
- coveralls
|
Fix issues with Travis CI build | language: go
go:
- 1.8
- 1.9
- tip
before_script:
- make vet
install:
- go get -v github.com/jteeuwen/go-bindata/...
- go get -v github.com/elazarl/go-bindata-assetfs/...
- go get -v github.com/golang/dep/cmd/dep
- dep ensure
script:
- make build
| language: go
go_import_path: github.com/bellinghamcodes/website
go:
- "1.10"
before_script:
- make vet
install:
- go get -v github.com/golang/dep/cmd/dep
- dep ensure
script:
- go build
|
Upgrade Travis Go to 1.12.x | language: go
go:
- "1.11.x"
os:
- linux
- osx
- windows
script:
- env GO111MODULE=on make build
- env GO111MODULE=on make test
| language: go
go:
- "1.12.x"
os:
- linux
- osx
- windows
script:
- make build
- make test
|
Update Secure File Manager Beta to 0.1.4-beta (6) | Categories:
- Security
- System
License: GPL-3.0-or-later
SourceCode: https://github.com/Secure-File-Manager/Secure-File-Manager
IssueTracker: https://github.com/Secure-File-Manager/Secure-File-Manager/issues
Changelog: https://github.com/Secure-File-Manager/Secure-File-Manager/blob/HEAD/CHANGELOG.md
AutoName: Secure File Manager Beta
RepoType: git
Repo: https://github.com/Secure-File-Manager/Secure-File-Manager
Builds:
- versionName: 0.1.2-beta2
versionCode: 4
commit: v0.1.2-beta2
subdir: app
gradle:
- yes
- versionName: 0.1.3-beta
versionCode: 5
commit: v0.1.3-beta
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.1.3-beta
CurrentVersionCode: 5
| Categories:
- Security
- System
License: GPL-3.0-or-later
SourceCode: https://github.com/Secure-File-Manager/Secure-File-Manager
IssueTracker: https://github.com/Secure-File-Manager/Secure-File-Manager/issues
Changelog: https://github.com/Secure-File-Manager/Secure-File-Manager/blob/HEAD/CHANGELOG.md
AutoName: Secure File Manager Beta
RepoType: git
Repo: https://github.com/Secure-File-Manager/Secure-File-Manager
Builds:
- versionName: 0.1.2-beta2
versionCode: 4
commit: v0.1.2-beta2
subdir: app
gradle:
- yes
- versionName: 0.1.3-beta
versionCode: 5
commit: v0.1.3-beta
subdir: app
gradle:
- yes
- versionName: 0.1.4-beta
versionCode: 6
commit: v0.1.4-beta
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.1.4-beta
CurrentVersionCode: 6
|
Set next version to 4.1.0 | assembly-versioning-scheme: Major
assembly-file-versioning-scheme: MajorMinorPatchTag
mode: ContinuousDeployment
branches:
master:
mode: ContinuousDeployment
tag: rc
prevent-increment-of-merged-branch-version: true
track-merge-target: false
is-release-branch: true
develop:
mode: ContinuousDeployment
tag: alpha
prevent-increment-of-merged-branch-version: true
track-merge-target: true
pull-request:
mode: ContinuousDelivery
ignore:
sha: []
| assembly-versioning-scheme: Major
assembly-file-versioning-scheme: MajorMinorPatchTag
next-version: 4.1.0
mode: ContinuousDeployment
branches:
master:
mode: ContinuousDeployment
tag: rc
prevent-increment-of-merged-branch-version: true
track-merge-target: false
is-release-branch: true
develop:
mode: ContinuousDeployment
tag: alpha
prevent-increment-of-merged-branch-version: true
track-merge-target: true
pull-request:
mode: ContinuousDelivery
ignore:
sha: []
|
Update from Hackage at 2017-06-09T03:10:41Z | homepage: http://khumba.net/projects/hoppy
changelog-type: ''
hash: 03c2b038939479882e6ce8b87b191fb6214a5f6469a20e428b8f809f5d5c0a3f
test-bench-deps: {}
maintainer: Bryan Gardiner <bog@khumba.net>
synopsis: C++ FFI generator - Documentation
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
hoppy-generator: ! '>=0.3 && <0.4'
hoppy-runtime: ! '>=0.3 && <0.4'
haskell-src: ! '>=1.0 && <1.1'
all-versions:
- '0.2.0'
- '0.2.1'
- '0.3.0'
- '0.3.1'
author: Bryan Gardiner <bog@khumba.net>
latest: '0.3.1'
description-type: haddock
description: ! 'Hoppy generates Haskell bindings to C++ libraries.
This package contains documentation linking to the other Hoppy packages.'
license-name: AGPL-3
| homepage: http://khumba.net/projects/hoppy
changelog-type: ''
hash: 8d4ee7cf92d8ef05e2ca17f5e2ae8498856ea629cfced4fd574f33666deb679c
test-bench-deps: {}
maintainer: Bryan Gardiner <bog@khumba.net>
synopsis: C++ FFI generator - Documentation
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
hoppy-generator: ! '>=0.3 && <0.4'
hoppy-runtime: ! '>=0.3 && <0.4'
haskell-src: ! '>=1.0 && <1.1'
all-versions:
- '0.2.0'
- '0.2.1'
- '0.3.0'
- '0.3.1'
- '0.3.2'
author: Bryan Gardiner <bog@khumba.net>
latest: '0.3.2'
description-type: haddock
description: ! 'Hoppy generates Haskell bindings to C++ libraries.
This package contains documentation linking to the other Hoppy packages.'
license-name: AGPL-3
|
Enable docker builds for all branches | machine:
post:
- cd $HOME && git clone --depth 1 -v git@github.com:clever/ci-scripts.git && cd ci-scripts && git show --oneline -s
services:
- docker
test:
override:
- echo "no tests"
deployment:
all:
branch: master
owner: Clever
commands:
- $HOME/ci-scripts/circleci/docker-publish $DOCKER_USER $DOCKER_PASS "$DOCKER_EMAIL" $DOCKER_ORG
- $HOME/ci-scripts/circleci/catapult-publish $CATAPULT_URL $CATAPULT_USER $CATAPULT_PASS elbs-stats
| machine:
post:
- cd $HOME && git clone --depth 1 -v git@github.com:clever/ci-scripts.git && cd ci-scripts && git show --oneline -s
services:
- docker
test:
override:
- echo "no tests"
deployment:
master:
owner: Clever
commands:
- $HOME/ci-scripts/circleci/docker-publish $DOCKER_USER $DOCKER_PASS "$DOCKER_EMAIL" $DOCKER_ORG
- $HOME/ci-scripts/circleci/catapult-publish $CATAPULT_URL $CATAPULT_USER $CATAPULT_PASS elbs-stats
branch: master
non-master:
owner: Clever
commands:
- $HOME/ci-scripts/circleci/docker-publish $DOCKER_USER $DOCKER_PASS "$DOCKER_EMAIL" $DOCKER_ORG
- $HOME/ci-scripts/circleci/catapult-publish $CATAPULT_URL $CATAPULT_USER $CATAPULT_PASS elbs-stats
branch: /^(?!master$).*$/
|
Build docker image only in v* branches | ## Circle CI configuration
machine:
services:
- docker
timezone:
America/Los_Angeles
# Override /etc/hosts
hosts:
circlehost: 127.0.0.1
# Add some environment variables
environment:
GOPATH: $HOME/go
PATH: $GOPATH/bin:$PATH
CIRCLE_ENV: test
DOCKER_ACCOUNT: infradash
DOCKER_EMAIL: docker@infradash.com
DOCKER_AUTH: aW5mcmFkYXNoOnd1YzR5NmxiUFpHNA==
BUILD_LABEL: $CIRCLE_BUILD_NUM
BUILD_DIR: build/bin
## Customize dependencies
dependencies:
pre:
- go version
# Set up authentication to Docker Registry
- sed "s/<EMAIL>/$DOCKER_EMAIL/;s/<AUTH>/$DOCKER_AUTH/" < ./docker/dockercfg.template > ~/.dockercfg
override:
- source ./hack/env.sh
post:
- source ./hack/env.sh && make GODEP=godep all
## Customize test commands
test:
override:
- echo "Running tests."
- godep go test ./pkg/... -v -check.vv -logtostderr
## Customize deployment commands
deployment:
docker:
branch: /release\/.*/
commands:
- cp $BUILD_DIR/dash $CIRCLE_ARTIFACTS
- cp $BUILD_DIR/dash docker/dash
- cd docker/dash && make push && cd ..
- make deploy-git
| ## Circle CI configuration
machine:
services:
- docker
timezone:
America/Los_Angeles
# Override /etc/hosts
hosts:
circlehost: 127.0.0.1
# Add some environment variables
environment:
GOPATH: $HOME/go
PATH: $GOPATH/bin:$PATH
CIRCLE_ENV: test
DOCKER_ACCOUNT: infradash
DOCKER_EMAIL: docker@infradash.com
DOCKER_AUTH: aW5mcmFkYXNoOnd1YzR5NmxiUFpHNA==
BUILD_LABEL: $CIRCLE_BUILD_NUM
BUILD_DIR: build/bin
## Customize dependencies
dependencies:
pre:
- go version
# Set up authentication to Docker Registry
- sed "s/<EMAIL>/$DOCKER_EMAIL/;s/<AUTH>/$DOCKER_AUTH/" < ./docker/dockercfg.template > ~/.dockercfg
override:
- source ./hack/env.sh
post:
- source ./hack/env.sh && make GODEP=godep all
- cp $BUILD_DIR/dash $CIRCLE_ARTIFACTS
- source ./hack/env.sh && make deploy-git
## Customize test commands
test:
override:
- echo "Running tests."
- godep go test ./pkg/... -v -check.vv -logtostderr
## Customize deployment commands
deployment:
docker:
branch: /v[0-9]+(\\.[0-9]+)*/
commands:
- cp $BUILD_DIR/dash docker/dash
- cd docker/dash && make push && cd ..
|
Add yarn build for better test | machine:
node:
version: 6.10.2
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
dependencies:
override:
- yarn
cache_directories:
- ~/.cache/yarn
test:
override:
- yarn test
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_REPO_TOKEN ./node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info
| machine:
node:
version: 6.10.2
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
dependencies:
override:
- yarn
cache_directories:
- ~/.cache/yarn
test:
override:
- yarn test
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_REPO_TOKEN ./node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info
- yarn build
|
Install deps for example before running | dependencies:
pre:
- curl -o- -L https://yarnpkg.com/install.sh | bash
cache_directories:
- ~/.yarn-cache
override:
- yarn
test:
pre:
- yarn run lint
override:
- yarn test
post:
- cd examples && node ../bin.js build --env prod
machine:
node:
version: v6.2.0
deployment:
production:
branch: master
commands: []
| dependencies:
pre:
- curl -o- -L https://yarnpkg.com/install.sh | bash
cache_directories:
- ~/.yarn-cache
override:
- yarn
test:
pre:
- yarn run lint
override:
- yarn test
post:
- cd examples && yarn && node ../bin.js build --env prod
machine:
node:
version: v6.2.0
deployment:
production:
branch: master
commands: []
|
Add note to test for iPhone legal notice | licenses:
- aes-128-3.0
- bsd-new
- bsd-original-uc
- bsd-simplified
- bsla
- cryptopp
- freetype
- gpl-2.0-plus
- ietf
- ijg
- isc
- lgpl-2.0
- lgpl-2.1
- libpng
- mit-license-1998
- isc
- mpl-1.1
- openldap-2.8
- openssl-ssleay
- pcre
- public-domain
- ruby
- ssleay-windows
- sun-rpc
- tidy
- unicode-mappings
- unlicense
- x11-lucent
- zlib
expected_failure: yes
| licenses:
- aes-128-3.0
- bsd-new
- bsd-original-uc
- bsd-simplified
- bsla
- cryptopp
- freetype
- gpl-2.0-plus
- ietf
- ijg
- isc
- lgpl-2.0
- lgpl-2.1
- libpng
- mit-license-1998
- isc
- mpl-1.1
- openldap-2.8
- openssl-ssleay
- pcre
- public-domain
- ruby
- ssleay-windows
- sun-rpc
- tidy
- unicode-mappings
- unlicense
- x11-lucent
- zlib
expected_failure: yes
notes: this is a notice from an iPhone (1 or 2) |
Switch to Travis Xenial image | language: c
sudo: true
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
matrix:
- OCAML_VERSION=4.02
TESTS=false
- OCAML_VERSION=4.03
- OCAML_VERSION=4.04
- OCAML_VERSION=4.05
- OCAML_VERSION=4.06
- OCAML_VERSION=4.07
os:
- linux
| language: c
sudo: true
dist: xenial
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
matrix:
- OCAML_VERSION=4.02
TESTS=false
- OCAML_VERSION=4.03
- OCAML_VERSION=4.04
- OCAML_VERSION=4.05
- OCAML_VERSION=4.06
- OCAML_VERSION=4.07
os:
- linux
|
Add MRI Ruby 2.3.x to Travis CI config | language: ruby
cache: bundler
rvm:
- ruby-head
- 2.2
- 2.1
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby-head
- jruby-19mode
- jruby-18mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
| language: ruby
cache: bundler
rvm:
- ruby-head
- 2.3
- 2.2
- 2.1
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby-head
- jruby-19mode
- jruby-18mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
|
Use nosetests to run tests. | language: python
python:
- "3.5"
- "3.6"
script:
- pytest
| language: python
python:
- "3.5"
- "3.6"
script:
- nosetests
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.