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/... | 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.ema... |
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/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3O... | 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/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI... |
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 ... | 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
- ... |
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... | 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*** Runn... |
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" ]]... | 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_scrip... |
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 ... | 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
... |
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"
... |
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... | 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-u... |
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]+... | 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... |
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 --r... | 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 --r... |
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
... | 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
... |
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-he... | 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:... |
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 ... |
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_K... | 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 exte... |
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
for... | 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: wind... |
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_typ... | ---
# 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_typ... |
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 "androi... | \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 "andro... |
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:
ove... | 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 e... |
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.... |
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... | 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" ))... |
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
b... | 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
b... |
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%"... | 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%"... |
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:
pro... | 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... |
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: pl... | ---
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: pl... |
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... | 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... |
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 ... | 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 ... |
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 ... | 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 ... |
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=$... | 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... |
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 fr... | 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 fr... |
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
eithe... | 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
eithe... |
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: meta... | databaseChangeLog:
- changeSet:
id: 42
author: camsaul
changes:
- dropForeignKeyConstraint:
baseTableName: query_queryexecution
constraintName: fk_queryexecution_ref_query_id
- dropColumn:
tableName: query_queryexecution
columnName: que... |
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_dir... |
# 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_dir... |
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: ... | 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... |
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:
- secu... | 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: "Xa3ZSmQPQytDFrM... |
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/activerec... | 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/activerec... |
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 -... |
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
... | 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
... |
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 ... | # 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 ... |
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:
postg... | 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.... |
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
e... |
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 --coverall... |
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=2db4... | 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_S... |
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: t... |
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 ... | 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:
- mkd... |
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|chan... | 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|chan... |
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-c... | 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-... |
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 insta... | # 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 inst... |
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/t3jchds6RSahdI... | 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' tes... |
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*||... | 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"
-... |
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 ... | # 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 ... |
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:
d... | 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 te... |
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'
dictiona... | 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'
dictiona... |
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:
- mast... |
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:
-... |
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/DeveloopAu... | 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/DeveloopAu... |
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
- he... | 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
- he... |
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:
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... |
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
c... | 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-R... |
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:
... | 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_s... |
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: Sec... | 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: Sec... |
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: ContinuousDe... | 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:
... |
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 &... | 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 &... |
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... | 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_PA... |
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_... | ## 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_... |
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/codeclim... | 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/codeclim... |
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:
produc... | 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:
... |
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
... | 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
... |
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
o... | 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_V... |
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.