commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
1f02629c41d279c109a0c55b1a4fe78bf48daf03 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
before_install:
- gem update bundler
notifications:
email:
- ogataken@gmail.com
branches:
only:
- master
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.4
before_install:
- gem update bundler
notifications:
email:
- ogataken@gmail.com
branches:
only:
- master
| Use Ruby 2.1.4 on Travis-CI | Use Ruby 2.1.4 on Travis-CI
| YAML | mit | sanemat/tachikoma,togusafish/sanemat-_-tachikoma |
39b2399e3ccc7b29086c1990e7cc4919c447a6ce | .travis.yml | .travis.yml | language: java
sudo: false
env:
# Give Maven 1GB of memory to work with
- MAVEN_OPTS=-Xmx1024M
install:
- "echo 'Skipping install stage, dependencies will be downloaded during build and test stages.'"
script:
- "mvn clean package -Dmaven.test.skip=false"
| language: java
sudo: false
jdk:
- oraclejdk8
- oraclejdk7
- openjdk8
- openjdk7
env:
# Give Maven 1GB of memory to work with
- MAVEN_OPTS=-Xmx1024M
install:
- "echo 'Skipping install stage, dependencies will be downloaded during build and test stages.'"
script:
- "mvn clean package -Dmaven.test.skip... | Add multiple JDKs to Travis | Add multiple JDKs to Travis
| YAML | bsd-3-clause | vivo-project/Vitro,vivo-project/Vitro,vivo-project/Vitro,vivo-project/Vitro |
28b912afb33435ad717e78cb7326acab4338bf41 | .travis.yml | .travis.yml | dist: xenial
sudo: false
language: python
python:
- '2.7'
- '3.6'
- '3.7'
install:
- pip install -U --force setuptools pip
- ./setup.py develop
- pip install -e '.[tests]'
script:
- pylama
- py.test
| dist: xenial
language: python
python:
- '2.7'
- '3.6'
- '3.7'
install:
- pip install -U --force setuptools pip
- ./setup.py develop
- pip install -e '.[tests]'
script:
- pylama
- py.test
| Remove obsolete Travis CI configuration | Remove obsolete Travis CI configuration
Remove the `sudo` configuration, the builds run now always in the same
(new) infrastructure regardless of the configuration.
Signed-off-by: thc202 <43af82ef30812a20fbcf38b99a6f72cdd3a89ac1@gmail.com>
| YAML | apache-2.0 | zaproxy/zap-api-python |
c6f9d74e0cfc0615621f214d32349f2c42582817 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "5"
- "4"
- "0.12"
- "0.10"
env:
- MONGODB_VERSION="2.4.14"
- MONGODB_VERSION="2.6.11"
- MONGODB_VERSION="3.0.7"
- MONGODB_VERSION="3.2.0"
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB_VERSION}.tgz -O /tmp/mongodb.tgz
... | language: node_js
sudo: false
node_js:
- "5"
- "4"
- "0.12"
- "0.10"
env:
- MONGODB_VERSION="2.6.11"
- MONGODB_VERSION="3.0.7"
- MONGODB_VERSION="3.2.0"
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB_VERSION}.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz... | Remove mongodb 2.4 from test matrix due to compatibility issues | Remove mongodb 2.4 from test matrix due to compatibility issues
| YAML | mit | lionvs/mongojs,mafintosh/mongojs |
948db771a06da21aa56732e8af703e9f7da68baa | .travis.yml | .travis.yml | sudo: false # run in a docker container
language: perl
perl:
- "5.24"
- "5.22"
- "5.20"
- "5.18"
env:
- TRAVIS_RUST_VERSION=stable
- TRAVIS_RUST_VERSION=beta
- TRAVIS_RUST_VERSION=nightly
before_install:
- curl -sSf https://build.travis-ci.org/files/rustup-init.sh | sh -s -- --default-toolchain=$TRAVIS... | sudo: false # run in a docker container
language: perl
perl:
- "5.26"
- "5.24"
- "5.24-shrplib"
- "5.22"
- "5.20"
env:
- TRAVIS_RUST_VERSION=stable
- TRAVIS_RUST_VERSION=beta
- TRAVIS_RUST_VERSION=nightly
before_install:
- curl -sSf https://build.travis-ci.org/files/rustup-init.sh | sh -s -- --defaul... | Update list of perl versions to test against. | Update list of perl versions to test against.
Removed 5.18 because it is not supported by perl-xs.
Added 5.26 which was released recently.
Also nice to have at least one version with threading support, as it has
different XS ABI.
| YAML | bsd-2-clause | vickenty/perl-xs,vickenty/perl-xs |
94be663cb5df31c0e26e707517fc107454a4d711 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8
before_install:
- gem install cocoapods --version 1.1.0.rc2
env:
- DESTINATION='platform=iOS Simulator,name=iPhone 6,OS=9.1' UI=true
- DESTINATION='platform=iOS S... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8
before_install:
- gem install cocoapods --version 1.1.0.rc2
env:
- DESTINATION='platform=iOS Simulator,name=iPhone 6,OS=9.1' UI=true
- DESTINATION='platform=iOS S... | Update to iOS 10.3 simulator | Update to iOS 10.3 simulator
| YAML | apache-2.0 | net-a-porter-mobile/XCTest-Gherkin,net-a-porter-mobile/XCTest-Gherkin,net-a-porter-mobile/XCTest-Gherkin,net-a-porter-mobile/XCTest-Gherkin |
7d8c09a88b5087a9819586653f9c686a74e6e36f | .travis.yml | .travis.yml | language: rust
sudo: false
| language: rust
sudo: false
rust:
- "stable"
- "beta"
- "nightly"
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = stable ] &&
cargo doc &&
echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > ta... | Build against all three trains & upload docs | ci: Build against all three trains & upload docs
| YAML | cc0-1.0 | emk/substudy,emk/substudy,emk/substudy,emk/substudy,emk/substudy |
0013787066f7908f3564cf0df5edcec014c77122 | .travis.yml | .travis.yml | language: objective-c
osx_image: beta-xcode6.3
#xcode_project: 'SwiftGraphics.xcodeproj'
#xcode_scheme: 'All'
#xcode_sdk: 'iphonesimulator'
script:
- xctool -project SwiftUtilities.xcodeproj -scheme SwiftUtilities_OSX build test
- xctool -project SwiftUtilities.xcodeproj -scheme SwiftUtilities_iOS -sdk iphonesimu... | language: objective-c
osx_image: beta-xcode7
#xcode_project: 'SwiftGraphics.xcodeproj'
#xcode_scheme: 'All'
#xcode_sdk: 'iphonesimulator'
script:
- xctool -project SwiftUtilities.xcodeproj -scheme SwiftUtilities_OSX build test
- xctool -project SwiftUtilities.xcodeproj -scheme SwiftUtilities_iOS -sdk iphonesimula... | Use Xcode 7 in Travis | Use Xcode 7 in Travis
| YAML | bsd-2-clause | carabina/SwiftUtilities,slightair/SwiftUtilities,carabina/SwiftUtilities,slightair/SwiftUtilities,slightair/SwiftUtilities,carabina/SwiftUtilities |
06eb84f1509f7d52077c575b64fccd9e26b261e8 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.4
- 0.6
before_script:
- "mysql -uroot -e \"CREATE DATABASE IF NOT EXISTS test DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;\""
- "mysql -uroot -e \"CREATE DATABASE IF NOT EXISTS test_denied DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;\""
- "mysql -uroot -e \"GRANT ... | language: node_js
node_js:
- 0.4
- 0.5
- 0.6
before_script:
- "mysql -uroot -e \"CREATE DATABASE IF NOT EXISTS test DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;\""
- "mysql -uroot -e \"CREATE DATABASE IF NOT EXISTS test_denied DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;\""
- "mysql -uroot -e ... | Return testing on node v0.5.x in Travis CI config | Return testing on node v0.5.x in Travis CI config
| YAML | mit | Sannis/node-mysql-libmysqlclient,Sannis/node-mysql-libmysqlclient,Sannis/node-mysql-libmysqlclient,Sannis/node-mysql-libmysqlclient |
8d8b9d8bbb1a6cf4aafd55d61331d5e32828e394 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
- 2.0.0
notifications:
email: false
env:
global:
secure: FC19i/qIjqV7dzd8bZS+yc5HC3XbssU/lBn7+pNsfhsXZp2FpZ4u3v2HPCRZPZ7IsCpsLtUraq6rub290dXecEr1gzSwmaMdfvJz8f2lr1YR58BF9xnTwBUinZOcv9auhWHwCzYRQMHyILUa2NvmVqq0QzYbWVa9X1gwejqyoaQ=
matrix:
secure: EX0FinqK+va3hTUWNVk7HeFIZqwC0OFl... | language: ruby
rvm:
- 2.0.0
notifications:
email: false
env:
global:
secure: FC19i/qIjqV7dzd8bZS+yc5HC3XbssU/lBn7+pNsfhsXZp2FpZ4u3v2HPCRZPZ7IsCpsLtUraq6rub290dXecEr1gzSwmaMdfvJz8f2lr1YR58BF9xnTwBUinZOcv9auhWHwCzYRQMHyILUa2NvmVqq0QzYbWVa9X1gwejqyoaQ=
matrix:
secure: EX0FinqK+va3hTUWNVk7HeFIZqwC0OFlmvW7GX+v... | Remove Travis matrix to avoid test conflicts | Remove Travis matrix to avoid test conflicts
If you run tests in parallel on Travis, then one test might destroy
the subscription that the other test just built, causing tests to
fail.
If you do want a matrix of test suites, we need different credentials
for each one of them
| YAML | mit | CodesScripts/yt,amalagaura/yt,Vydia/yt,bohdan-malets/yt,shredder-rull/yt,hellaxe/yt,jacknguyen/yt,Fullscreen/yt,claudiofullscreen/yt,mhui/yt |
78c12764fcce0682971290457467e4da105c480c | .travis.yml | .travis.yml | language: objective-c
notifications:
email:
- hazem.khaled@gmail.com
env:
matrix:
- PLATFORM="ios"
- ANDROID_TARGET=android-21 ANDROID_ABI=armeabi-v7a
android:
components:
# The BuildTools version used by your project
- build-tools-21.0.1
# Additional components
- extra-goog... | language: objective-c
notifications:
email:
- hazem.khaled@gmail.com
env:
matrix:
- PLATFORM="ios"
- ANDROID_TARGET=android-21 ANDROID_ABI=armeabi-v7a
android:
components:
# The BuildTools version used by your project
- build-tools-21.0.1
# Additional components
- extra-goog... | Replace idk with OS X version | Replace idk with OS X version
| YAML | mit | HazemKhaled/TiMapExample,HazemKhaled/TiMapExample |
fcf1bbe7503cf40fbd789ae1febbb63de2e17bc9 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.2
# Travis is currently experiencing issues with Xcode builds: https://github.com/travis-ci/travis-ci/issues/6675#issuecomment-257964767
# When this is resolved, remove the entire `before_install` block, as well as the `travis_retry` command below.
before_install:
- export IOS... | language: objective-c
osx_image: xcode8.2
# Travis is currently experiencing issues with Xcode builds: https://github.com/travis-ci/travis-ci/issues/6675#issuecomment-257964767
# When this is resolved, remove the entire `before_install` block, as well as the `travis_retry` command below.
before_install:
- export IOS... | Add Swift build & test to the list of TravisCI steps | Add Swift build & test to the list of TravisCI steps
| YAML | mit | ReactiveKit/Bond,tonyarnold/Bond,tonyarnold/Bond,SwiftBond/Bond,SwiftBond/Bond,ReactiveKit/Bond |
a6be7c3196114fef09e8c7c0531d74f206fdd549 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 4 on Travis CI. | Test with latest Node.js 4 on Travis CI.
| YAML | mit | bigeasy/signal,bigeasy/vestibule,bigeasy/vestibule |
cc04d22a0935e087f8e172e46e5d04be92c72b62 | .travis.yml | .travis.yml | language: php
matrix:
allow_failures:
- php: hhvm
include:
- php: 5.5
- php: 5.6
- php: 7.0
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=cov... | language: php
matrix:
allow_failures:
- php: hhvm
include:
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-text --cove... | Add PHP 7.1 to Travis build | Add PHP 7.1 to Travis build
| YAML | mit | hassankhan/config |
7cb9f5f281cc35215806bf2ff46bc4bbb08135a6 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install:
- pip install --use-mirrors -r requirements.txt
- pip install --use-mirrors -r requirements-test.txt
- python setup.py install
script:
- rake lint
- nosetests tests/unit tests/integration
| language: python
python:
- "2.6"
- "2.7"
#env:
# - COMPILER="gfortran"
before_install:
- sudo apt-get install gfortran g77 liblapack-dev
install:
- pip install --use-mirrors -r requirements.txt
- pip install --use-mirrors -r requirements-test.txt
- python setup.py install
script:
- rak... | Add Fortran to build (so that numpy builds better) | Add Fortran to build (so that numpy builds better)
| YAML | bsd-3-clause | hughdbrown/QSTK-nohist,hughdbrown/QSTK-nohist,hughdbrown/QSTK-nohist,hughdbrown/QSTK-nohist,hughdbrown/QSTK-nohist,hughdbrown/QSTK-nohist |
7a25d412e49cc93f2c7bd66473c34971643be6c9 | .travis.yml | .travis.yml | before_script:
- "ruby --version"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- master
| before_script:
- "ruby --version"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- master
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
| Build against multiple rubies for better coverage. | Build against multiple rubies for better coverage.
| YAML | bsd-3-clause | fahidnasir/spree,priyank-gupta/spree,kewaunited/spree,freerunningtech/spree,lyzxsc/spree,yomishra/pce,Boomkat/spree,carlesjove/spree,kitwalker12/spree,jordan-brough/spree,madetech/spree,codesavvy/sandbox,dotandbo/spree,sliaquat/spree,abhishekjain16/spree,beni55/spree,vinsol/spree,omarsar/spree,softr8/spree,urimikhli/sp... |
ec025d7bde24e3712f3ee3a90925e8507fabd620 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci:metrics"
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- ruby-head
- rbx-2.2.10
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --debug --1.9" # for simplecov
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --... | language: ruby
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci:metrics"
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- ruby-head
- rbx-2.2.10
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --debug --1.9" # for simplecov
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --... | Remove ruby-head from allowed failures since it now passes | Remove ruby-head from allowed failures since it now passes
| YAML | mit | dkubb/axiom |
41aa526aed5925e2581949a86888bc4400047d26 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer
env:
- LARAVEL_VERSION=5.3.*
- LARAVEL_VERSION=5.4.*
- LARAVEL_VERSION=5.5.*
matrix:
exclude:
- php: '5.6'
env: LARAVEL_VERSION=5.5.*
before_script:
- composer self-update
- if [ "$LARAVEL_VER... | language: php
php:
- 5.6
- 7.0
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer
env:
- LARAVEL_VERSION=5.3.*
- LARAVEL_VERSION=5.4.*
- LARAVEL_VERSION=5.5.*
matrix:
exclude:
- php: 5.6
env: LARAVEL_VERSION=5.5.*
before_script:
- composer self-update
- if [ "$LARAVEL_VERSI... | Fix php version having single quotes | Fix php version having single quotes
| YAML | mit | rafflesargentina/l5-resource-controller |
51b81ec11781cd50c91bbdcdb679bc26526a3f5d | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7-dev"
script: python setup.py test -a --pylama -vvv
install:
- pip install -e .
| language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7-dev"
script: python setup.py test -a --pylama -vvv
install:
- pip install --upgrade setuptools pip
- pip install -e .
| Upgrade pip before installing package | Upgrade pip before installing package
| YAML | mit | B3QL/pep263 |
835c6109c2446ead78f5bb5a57387553717a8a4a | .travis.yml | .travis.yml | before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libzmq3-dev
- sudo -E ./install-protobuf.sh
- java -Xmx1g -version
- javac -J-Xmx1g -version
- export JRUBY_OPTS=-J-Xmx1g
# Required for rainbow installation issue, https://github.com/sickill/rainbow/issues/44
- gem update --system
- ... | before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libzmq3-dev
- sudo -E ./install-protobuf.sh
- java -Xmx1g -version
- javac -J-Xmx1g -version
- export JRUBY_OPTS=-J-Xmx1g
# Required for rainbow installation issue, https://github.com/sickill/rainbow/issues/44
- gem update --system
- ... | Remove support for jruby 1.7 | Remove support for jruby 1.7
It is not supported anymore and has divergent NameError#name behavior
that activesupport relies on.
| YAML | mit | brianstien/protobuf,localshred/protobuf,ruby-protobuf/protobuf,brianstien/protobuf,lookout/protobuffy,localshred/protobuf,lookout/protobuffy,ruby-protobuf/protobuf |
ed2eb7a6baefa76d65b02c88431382c9505521ab | .travis.yml | .travis.yml | dist: trusty
sudo: required
language: node_js
node_js:
- "8"
services:
- docker
before_install:
- docker pull ethereum/client-go:latest
env:
- INTEGRATION=true
- GETH=true
- PACKAGES=true
matrix:
allow_failures:
- env: GETH=true
install:
- npm install -g lerna
- npm install -g yarn
- npm ru... | dist: trusty
sudo: required
language: node_js
services:
- docker
before_install:
- docker pull ethereum/client-go:latest
matrix:
fast_finish: true
include:
- node_js: 8
env: GETH=true
- node_js: 8
env: PACKAGES=true
- node_js: 8
env: INTEGRATION=true
- node_js: 6
env: ... | Add Node 6 to CI | Add Node 6 to CI
| YAML | mit | ConsenSys/truffle |
8090f907d945784bfc7213e6d908f3144c0dc7b8 | .travis.yml | .travis.yml | language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- "0.10"
- "0.11"
- "0.12"
- "iojs"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- ./node_modules/.bin/gulp tsd
- ./node_modules/.bin/gulp browserify-test
| language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- "4.1"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- ./node_modules/.bin/gulp tsd
- ./node_modules/.bin/gulp browserify-test
| Update node version for Travis CI. | Update node version for Travis CI.
| YAML | cc0-1.0 | pocke/brainfuck-playground,pocke/brainfuck-playground,pocke/brainfuck-playground,pocke/brainfuck-playground |
8f8d49d490655df05e4aae84ab05299d4511784d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_install:
- sudo apt-get update
- sudo apt-get install libproj-dev libgeos-dev libffi-dev libsparsehash-dev postgis postgresql-contrib postgresql-9.1-postgis
before_script:
- "rake travis:prepare"
- "rake db:create"
- "rake db:migrate"
script: "rake spec" | language: ruby
rvm:
- 1.9.3
before_install:
- sudo apt-get update
- sudo apt-get install libproj-dev libgeos-dev libffi-dev libsparsehash-dev postgis postgresql-contrib
before_script:
- "rake travis:prepare"
- "rake db:create"
- "rake db:migrate"
script: "rake spec" | Revert "Add postgresql-postgis package for postgres" | Revert "Add postgresql-postgis package for postgres"
This reverts commit c4655ea2f8361bb9f60d0f4418fce16df9c88efa.
| YAML | mit | cityway-soft/activeroad,cityway-soft/activeroad,cityway-soft/activeroad,cityway-soft/activeroad |
fad9a9abcdd8c3c0c07a35c424201316259ded22 | .travis.yml | .travis.yml | language: node_js
node_js: '6.2'
cache:
directories:
- node_modules
script:
- npm test
- make SETTINGS_FILE=settings/chrome-prod.json dist/$(date +'%Y%m%d')-chrome-prod.zip
- make SETTINGS_FILE=settings/chrome-stage.json dist/$(date +'%Y%m%d')-chrome-stage.zip
- make SETTINGS_FILE=settings/firefox-prod.js... | language: node_js
node_js: 'lts/*'
cache:
directories:
- node_modules
script:
- npm test
- make SETTINGS_FILE=settings/chrome-prod.json dist/$(date +'%Y%m%d')-chrome-prod.zip
- make SETTINGS_FILE=settings/chrome-stage.json dist/$(date +'%Y%m%d')-chrome-stage.zip
- make SETTINGS_FILE=settings/firefox-prod.... | Update Node version on Travis | Update Node version on Travis
The current version of `web-ext` depends on Node >= v6.3 or later due to
use of `fs.constants`.
This commit configures Travis to use the current LTS release of Node,
which should hopefully always be current enough without running into
occassional issues with dependencies that sometimes h... | YAML | bsd-2-clause | hypothesis/browser-extension,hypothesis/browser-extension,hypothesis/browser-extension,hypothesis/browser-extension |
0ebb1b5658ecda212c0d86c6abb766e63fd283fd | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
cache: bundler
rvm:
- jruby-9.1
- jruby
- "2.0.0"
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
before_install:
- type bundle || gem install bundler
- gem install --pre ya_kansuji # TODO: remove
| ---
sudo: false
language: ruby
cache: bundler
rvm:
- jruby-9.1
- jruby
- "2.0.0"
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
before_install:
- type bundle || gem install bundler
| Remove pre ya_kansuji gem installation. | Remove pre ya_kansuji gem installation.
| YAML | bsd-2-clause | sugi/wareki |
c19301a3611880e8d3c725cf9dd59dcd6939fd25 | .travis.yml | .travis.yml | before_install:
- sudo apt-get -qq update
- sudo apt-get -qq install tidy
install: travis_retry bundle install --without=benchmark
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
notifications:
email: false
| before_install:
- sudo apt-get -qq update
- sudo apt-get -qq install tidy
install: travis_retry bundle install --without=benchmark
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
notifications:
email: false
| Remove ruby-head on Travis CI | Remove ruby-head on Travis CI
| YAML | mit | increments/greenmat,increments/greenmat,increments/greenmat,increments/greenmat |
d540bc6a752dec1177b1d49c78cc5db02860a9ef | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- SCRIPT=test
matrix:
include:
- node_js: "6"
env: SCRIPT=test:lint
cache:
directories:
$HOME/.npm
before_install:
# prevent the npm loading indicator
- npm config --global set spin false
# if npm version is less ... | language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- SCRIPT=test
matrix:
include:
- node_js: "6"
env: SCRIPT=test:lint
cache:
directories:
$HOME/.npm
before_install:
# prevent the npm loading indicator
- npm config --global set spin false
# if npm version is less 3.0.0 (lets s... | Remove deprecated `sudo: false` option | TravisCI: Remove deprecated `sudo: false` option
see https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration
| YAML | mit | broccolijs/broccoli-concat,rlivsey/broccoli-concat,ember-cli/broccoli-concat,broccolijs/broccoli-concat,rlivsey/broccoli-concat,ember-cli/broccoli-concat |
6fdac4aa02e48eea89ca54ad3f0e8d478fbd4af9 | .travis.yml | .travis.yml | before_install:
- gem update bundler
branches:
only:
- master
env:
global:
- secure: | # CODECLIMATE_REPO_TOKEN
lK3tYDk/63jRamEfGKbC27mPAoV7XsebCurx6doeisv1r4926lyPY4B9ZoSu
OeVmjXQWHX9U7IgPH1C+zoIh1wVHVA8h5FVuqlGUMlA6IJi2xaI+ChEo3WeD
FRlk1Q5fGhgp1mt59sMn3GZZ/mv31v+sd9iYC3AVIM0KrlMG... | before_install:
- gem update bundler rake
branches:
only:
- master
env:
global:
- secure: | # CODECLIMATE_REPO_TOKEN
lK3tYDk/63jRamEfGKbC27mPAoV7XsebCurx6doeisv1r4926lyPY4B9ZoSu
OeVmjXQWHX9U7IgPH1C+zoIh1wVHVA8h5FVuqlGUMlA6IJi2xaI+ChEo3WeD
FRlk1Q5fGhgp1mt59sMn3GZZ/mv31v+sd9iYC3AVIM0... | Update rake before the Travis build | Update rake before the Travis build
| YAML | mit | alejanderl/rspec-wait,mklitte/rspec-wait,laserlemon/rspec-wait |
96c27e6cec18c14fb20450cd972a3fa5dd4350cc | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: bundle exec rspec
rvm:
- 1.9.3
- 2.0.0
| language: ruby
bundler_args: --without debug
script: bundle exec rspec
rvm:
- 2.1
- 2.3
| Update ruby version to test against | Update ruby version to test against
| YAML | mit | b4mboo/git-review |
7c19c58f6d762c05c481993283b9f6b70b8740c4 | .travis.yml | .travis.yml | rvm: 2.2
sudo: required
# install the pre-release chef-dk. Use chef-stable-precise to install the stable release
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
# Don't `bundle install... | sudo: required
# install the pre-release chef-dk. Use chef-stable-precise to install the stable release
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
# Don't `bundle install`
install:... | Remove RVM from Travis since we use Ruby in ChefDK | Remove RVM from Travis since we use Ruby in ChefDK
| YAML | apache-2.0 | chef-cookbooks/yum-epel,juliandunn/yum-epel |
71fdcd53c421f4f0a1734f6a4e1c5b440164c99a | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- test
- build
before_script:
- ./scripts/get-ci-version
python3.4:
image: python:3.4-alpine
stage: test
script:
- pip install -e .[test]
- pylint --errors-only fwgen
- PYTHONPATH=. pytest --cov=fwgen -vv
tags:
- docker
python3.6:
image: python:3.6-alpine
stage: test
scrip... | stages:
- test
- build
before_script:
- ./scripts/get-ci-version
python3.4:
image: python:3.4-alpine
stage: test
script:
- pip install -e .[test]
- pylint --errors-only fwgen
- PYTHONPATH=. pytest --cov=fwgen -vv
tags:
- docker
dist:
image: python:3.4-alpine
stage: build
script:
... | Remove python 3.6 from tests. It _should_ be redundant | Remove python 3.6 from tests. It _should_ be redundant
| YAML | mit | hkbakke/fwgen |
e3c0e35e5fbf1ede36e6426b39986392e9024427 | .gitlab-ci.yml | .gitlab-ci.yml | image: gilmrjc/all-py
before_script:
- pip install coverage django-coverage-plugin codacy-coverage codeclimate-test-reporter coveralls
- pip install tox
after_script:
- coverage combine
- coverage report
- coverage xml
testing:
script:
- coverage erase
- tox --skip-missing
| image: gilmrjc/all-py:dockerfile
before_script:
- pip install coverage django-coverage-plugin codacy-coverage codeclimate-test-reporter coveralls
- pip install tox
after_script:
- coverage combine
- coverage report
- coverage xml
testing:
script:
- coverage erase
- tox --skip-missing
| Use tagged version of docker custom image | Use tagged version of docker custom image
| YAML | mit | gilmrjc/djangopress,gilmrjc/djangopress,gilmrjc/djangopress |
8ab0fc08da1314373fac9bc908171a69c628653d | .travis.yml | .travis.yml | language: cpp
install:
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
- echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
- echo "deb http://download.mono-project.com/repo/deb... | language: cpp
install:
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
- echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
- echo "deb http://download.mono-project.com/repo/deb... | Use apt-get to install the Mono packages. | Use apt-get to install the Mono packages.
| YAML | mit | Samana/CppSharp,u255436/CppSharp,genuinelucifer/CppSharp,inordertotest/CppSharp,nalkaro/CppSharp,xistoso/CppSharp,zillemarco/CppSharp,mydogisbox/CppSharp,ktopouzi/CppSharp,SonyaSa/CppSharp,ddobrev/CppSharp,u255436/CppSharp,mono/CppSharp,ktopouzi/CppSharp,nalkaro/CppSharp,mono/CppSharp,mono/CppSharp,nalkaro/CppSharp,Son... |
d199c2e982532ab90d65e8f7ad40ad65baedc6da | .travis.yml | .travis.yml | language: perl
perl:
- 5.14
- 5.16
- 5.18
- 5.20
before_install:
cpanm -n Devel::Cover::Report::Coveralls
script:
perl Build.PL && ./Build && cover -test -report coveralls
| language: perl
perl:
- 5.14
- 5.16
- 5.18
- 5.20
- 5.22
before_install:
cpanm -n Devel::Cover::Report::Coveralls
script:
perl Build.PL && ./Build && cover -test -report coveralls
| Revert "Revert "Add Perl 5.22 to Travis builds"" | Revert "Revert "Add Perl 5.22 to Travis builds""
This reverts commit f7487d0b63f9fed89dd2224d0ff86f6176c86325.
Haha lol
| YAML | mit | zakame/hashids.pm,zakame/hashids.pm |
888f759cba0a906a2e9e63122d5dd4e33dda9cc8 | .travis.yml | .travis.yml | language: ruby
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libvirt-dev libvirt-bin
rvm:
- 1.9.3
- 2.0.0
script: "bundle exec rspec spec/vagrant-kvm/"
| language: ruby
before_install:
- sudo add-apt-repository ppa:miurahr/vagrant
- sudo apt-get update -qq
- sudo apt-get install -qq libvirt-dev libvirt-bin qemu-kvm qemu
rvm:
- 1.9.3
- 2.0.0
script: "bundle exec rspec spec/vagrant-kvm/"
| Add ppa repo and more deps | Add ppa repo and more deps
| YAML | mit | rainforestapp/vagrant-kvm |
0543ab26af672e2f9503cbbbb84e2946aa9dbfa5 | .gitlab-ci.yml | .gitlab-ci.yml | image: golang:1.7
test:
script:
- mkdir -p $GOPATH/src/github.com/davars
- cp -a . $GOPATH/src/github.com/davars/sohop
- go get -t -v github.com/davars/sohop...
- go test github.com/davars/sohop... | image: golang:1.8
test:
script:
- mkdir -p $GOPATH/src/github.com/davars
- cp -a . $GOPATH/src/github.com/davars/sohop
- cd $GOPATH/src/github.com/davars/sohop
- go get -u github.com/golang/dep/...
- dep ensure
- go test $(go list ./... | grep -v /vendor/) | Update ci to use dep | Update ci to use dep
| YAML | isc | davars/sohop |
ddfe6f42c38ef178d5c2e63cbf29d00739323a85 | .gitlab-ci.yml | .gitlab-ci.yml | stages:
- build
build-backend:
image: jsherz/lsd-members-backend
stage: build
script:
- cd backend
- sbt clean compile test
build-frontend:
image: jsherz/lsd-members-frontend
stage: build
script:
- cd frontend
- npm install
- npm run lint
- npm run build-prod
- npm run test-c... | stages:
- build
build-backend:
image: jsherz/lsd-members-backend
stage: build
script:
- |
cat <<REPOS > ~/.sbt/repositories
[repositories]
local
my-ivy-proxy-releases: http://vms:8081/artifactory/sbt-release/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[re... | Make CI use local package repos. | Make CI use local package repos.
| YAML | mit | jSherz/lsd-members,jSherz/lsd-members,jSherz/lsd-members,jSherz/lsd-members,jSherz/lsd-members |
9282ee25cded14dae00f984c33e87950a497cb53 | .gitlab-ci.yml | .gitlab-ci.yml | before_script:
- docker info
build_image:
script:
- docker build -t my-docker-image ./BHCDatabase/
- docker run my-docker-image ./bin/rails t | before_script:
- docker info
build_image:
script:
- docker build -t my-docker-image ./BHCDatabase/
- docker run my-docker-image ./BHCDatabase/bin/rails t | Fix the fix of the fix | Fix the fix of the fix | YAML | mit | DaBrown95/BHCDatabase,DaBrown95/BHCDatabase,DaBrown95/BHCDatabase |
bab96660e81b1c7bb69c31fffa583f8cfe4108da | .gitlab-ci.yml | .gitlab-ci.yml | image: registry.gitlab.gnome.org/gnome/glib-networking/master:v8
fedora-x86_64:
script:
# Sadly, GCC 9's LeakSanitizer is quite crashy, #86.
# So we will run our tests under asan only once.
- meson -Db_sanitize=address
-Dgnutls=enabled
-Dopenssl=enabled
-Dlibproxy=enab... | image: registry.gitlab.gnome.org/gnome/glib-networking/master:v8
fedora-x86_64:
script:
# Sadly, GCC 9's LeakSanitizer is quite crashy, #86.
# So we will run our tests under asan only once.
- meson -Db_sanitize=address
-Dgnutls=enabled
-Dopenssl=enabled
-Dlibproxy=enab... | Increase CI timeout for asan run | Increase CI timeout for asan run
It's rare, but we have hit the 3x (90s) timeout, so let's increase it
even further to 10x (300s, five minutes).
| YAML | lgpl-2.1 | GNOME/glib-networking,GNOME/glib-networking,GNOME/glib-networking |
299e9dc7704443420fd1faa1ce4d1842a4ce172c | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 0.11
| language: node_js
node_js:
- "node"
- "iojs"
- "0.10"
| Add iojs and latest node to Travis | Add iojs and latest node to Travis
| YAML | mit | beaugunderson/ip-address,beaugunderson/ip-address,beaugunderson/ip-address |
a8d567441d19d78748373d4ebb0048f7eea6104b | .travis.yml | .travis.yml | language: objective-c
rvm: 2.1.0
before_install:
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- brew update
- cd Tests && pod install && cd $TRAVIS_BUILD_DIR
script: rake test
| language: objective-c
rvm: 2.0.0
before_install:
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- brew update
- cd Tests && pod install && cd $TRAVIS_BUILD_DIR
script: rake test
| Revert back to Ruby 2.0.0, as it is the default for the current version of OS X. | Revert back to Ruby 2.0.0, as it is the default for the current version of OS X.
| YAML | mit | level1james/RedditKit,rdougan/RedditKit,klanchman/RedditKit,davbeck/RedditKit,pmick/RedditKit,samsymons/RedditKit |
d5c35dfbc4494843002cf5024084345322c96699 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
install:
- gem install bundler
- bundle install
script: buildr clean package
| language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
install:
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| Reduce the size of the git repository downloaded during TravisCI testing. | Reduce the size of the git repository downloaded during TravisCI testing.
| YAML | apache-2.0 | realityforge/proxy-servlet,realityforge/proxy-servlet |
85cb8636d464cee4416172dcfc18a442d8d18aa7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
before_install:
# This is a workaround for a problem with a specific version of bundler and
# rubygems
- gem update --system
| language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
before_install:
# This is a workaround for a problem with a specific version of bundler and
# rubygems
- gem update --system
| Remove testing for Ruby 2.1 | Remove testing for Ruby 2.1
I need to run gem update --system in order to fix a compatibility
issue between ruby gems and bundler on Runy 2.5. However, this command
fails on Ruby 2.1, given that version 2.1 was EOL'd two years ago
this should be a safe change to make.
| YAML | mit | fullfabric/sablon,senny/sablon |
c08f659c45723883401e4c18e96e832d0a4b543c | .travis.yml | .travis.yml | env:
global:
- NODEJS_VERSION=0.10
- NODEJS_CMD=node
install:
- sudo pip install git+https://github.com/google/closure-linter.git
- nvm install ${NODEJS_VERSION} && nvm alias default ${NODEJS_VERSION}
- ./do.sh install_deps
script:
- ./do.sh lint
- ./do.sh build_app debug
- ./do.sh test_compat_e... | env:
global:
- NODEJS_VERSION=0.10
- NODEJS_CMD=node
install:
- export PATH=$HOME/.local/bin:$PATH
- pip install --user $USER hh git+https://github.com/google/closure-linter.git
- nvm install ${NODEJS_VERSION} && nvm alias default ${NODEJS_VERSION}
- ./do.sh install_deps
script:
- ./do.sh lint
-... | Install Closure Linter without sudo. | Install Closure Linter without sudo.
| YAML | apache-2.0 | koto/end-to-end-1,sirdarckcat/end-to-end,sirdarckcat/end-to-end,rcchan/end-to-end,koto/end-to-end-1,kbsriram/end-to-end,dconnolly/google-end-to-end,sirdarckcat/end-to-end,Endika/end-to-end,koto/end-to-end-1,digideskio/end-to-end,sirdarckcat/end-to-end,koto/end-to-end-1,adhintz/end-to-end,rcchan/end-to-end,koto/end-to-e... |
df8b7a16d2d67f05ab8af84cbafa016f6d97e940 | .travis.yml | .travis.yml | language: objective-c
before_install:
- rvm get stable
- rvm use ruby-2.0.0-p247
script: rake ci
| language: objective-c
script: rake ci
| Revert workaround for broken Travis box | Revert workaround for broken Travis box
| YAML | mit | yujinakayama/NAKPlaybackIndicatorView |
1ecaa464f1cc3f107b0357e22deaf02d6c266722 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk8
install: true
script:
- mvn -B clean verify -Pes-1x
- mvn -B clean verify -Pes-2x
- mvn -B clean verify
after_success:
- "[[ ${TRAVIS_PULL_REQUEST} == 'false' ]] && [[ ${TRAVIS_TAG} == '' ]] && mvn deploy -DskipTests --settings deploy-settings.xml"
| language: java
sudo: false
jdk:
- oraclejdk8
before_script:
- echo "MAVEN_OPTS=-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn" > ~/.mavenrc
install: true
script:
- mvn -B clean verify -Pes-1x
- mvn -B clean verify -Pes-2x
- mvn -B clean verify
after_success:
- "[[... | Make sure Travis does not ignore our MAVEN settings | Make sure Travis does not ignore our MAVEN settings
| YAML | apache-2.0 | dadoonet/fsriver,dadoonet/fsriver,dadoonet/fscrawler,kneubi/fscrawler,kneubi/fscrawler,kneubi/fscrawler,dadoonet/fscrawler,dadoonet/fsriver,dadoonet/fscrawler |
5e467e111c53d6ce5e62a8bbf1bd635aa9c62d39 | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- build-tools-26.0.0
- android-26
- extra-android-m2repository
jdk: oraclejdk8
script:
- mvn -q android:lint
- mvn -q test
- ./gradlew build
| language: android
android:
components:
- tools
- build-tools-26.0.0
- android-26
- extra-android-m2repository
jdk: oraclejdk8
script:
- mvn -q android:lint
- mvn -q test
- mvn -q clean
- ./gradlew build
| Clean between builds, so roboelectric doesn't pick up on library unpacked by maven when run from gradle. | Clean between builds, so roboelectric doesn't pick up on library unpacked by maven when run from gradle.
| YAML | apache-2.0 | ashh87/sms-backup-plus,ashh87/sms-backup-plus |
55b0cce2e7cab6d952f74a96e4fc729c74e77eb7 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- PILLOW_VERSION=2.9.0
- PILLOW_VERSION=3.0.0
- PILLOW_VERSION=3.1.0.rc1
before_install:
# Dependencies to build PIL
- sudo apt-get update -qq
- sudo apt-get install -qq ubuntu-restricted-extras
- sudo apt-get install -q... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- PILLOW_VERSION=2.9.0
- PILLOW_VERSION=3.0.0
- PILLOW_VERSION=3.1.0
before_install:
# Dependencies to build PIL
- sudo apt-get update -qq
- sudo apt-get install -qq ubuntu-restricted-extras
- sudo apt-get install -qq li... | Use final release of Pillow 3.1.0 | Use final release of Pillow 3.1.0
| YAML | mit | kontza/sigal,kontza/sigal,kontza/sigal |
2df4e95e90e99860fc730e26d48cad499ac67df2 | .travis.yml | .travis.yml | language: csharp
sudo: required
dist: trusty
mono: none
dotnet: 2.0.0
env:
global:
- marten_testing_database="Host=localhost;Port=5432;Database=marten_test;Username=postgres;Password=Password12!"
addons:
postgresql: "9.5"
before_install:
- sudo apt-get install postgresql-9.5-plv8
- nvm install 6.0.0
ins... | language: csharp
sudo: required
dist: trusty
mono: none
dotnet: 2.1.400
env:
global:
- marten_testing_database="Host=localhost;Port=5432;Database=marten_test;Username=postgres;Password=Password12!"
addons:
postgresql: "9.5"
before_install:
- sudo apt-get install postgresql-9.5-plv8
- nvm install 6.0.0
i... | Update dotnet sdk version to 2.1.400 for TravisCI [skip appveyor] | Update dotnet sdk version to 2.1.400 for TravisCI [skip appveyor]
| YAML | mit | mysticmind/marten,mysticmind/marten,mdissel/Marten,ericgreenmix/marten,mdissel/Marten,ericgreenmix/marten,mysticmind/marten,JasperFx/Marten,JasperFx/Marten,JasperFx/Marten,ericgreenmix/marten,mysticmind/marten,ericgreenmix/marten |
8f5ce745cf0da839c9ec170edd71324e0a34d154 | .travis.yml | .travis.yml | language: python
python:
- 2.7
env:
- CFLAGS=-I/usr/include/gdal
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo add-apt-repository -y ppa:bkgaley/ppa
- sudo apt-get -qq update
- sudo apt-get -y install libgdal-dev libgdal1h libboost1.58-all-dev gdal-bin
install:
- ... | language: python
python:
- 2.7
env:
- CFLAGS=-I/usr/include/gdal
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo add-apt-repository -y ppa:bkgaley/ppa
- sudo apt-get -qq update
- sudo apt-get -y install libgdal-dev libgdal1h gdal-bin
libboost-atomic1.58-dev libboos... | Add remaining build deps from python-mapnik | Add remaining build deps from python-mapnik
| YAML | bsd-3-clause | bkg/django-spillway |
1bc2652319e409b9128e632b3fa046d1d9355ae6 | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
- '7.1'
- hhvm
- nightly
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- composer install --dev --prefer-source --no-interaction | language: php
php:
- '5.6'
- '7.0'
- '7.1'
- nightly
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- composer install --prefer-source --no-interaction | Remove hhmv, remove --dev flag from composer | Remove hhmv, remove --dev flag from composer
| YAML | mit | rjvandoesburg/laravel-jira-webhook |
e2f66099b8e5435b51688284182638e817648cf2 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script:
- ./gradlew build --console plain
| language: java
jdk:
- openjdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script:
- ./gradlew build --console plain
| Switch to openjdk for Travis checks. | Switch to openjdk for Travis checks.
Travis started switching to Ubuntu 16.04 (Xenial) from 14.04 (Trusty)
for all builds. The Oracle JDK does not come pre-installed any more and
is causing the issue during install:
```
Installing oraclejdk8
$ export JAVA_HOME=~/oraclejdk8
$ export PATH="$JAVA_HOME/bin:$PATH"
$ ~/bin/... | YAML | apache-2.0 | sixninetynine/pygradle,sixninetynine/pygradle,sixninetynine/pygradle,sixninetynine/pygradle |
f3fe18b8138c43f2a8c33970e6c3a03c3110b9a9 | .travis.yml | .travis.yml | language: swift
os:
- osx
script:
- swift build
- swift test
| language: swift
os:
- osx
osx_image: xcode8.3
script:
- swift build
- swift test
| Use Xcode 8.3 image on macOS | [Travis] Use Xcode 8.3 image on macOS
| YAML | mit | iosdevzone/Emarcam,iosdevzone/Emarcam,iosdevzone/Emarcam |
afd2ffe539018ae24767b223acecabd6c95c4f8c | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
env:
matrix:
- RAILS_VERSION='~> 4.2.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.0.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.1.0'
- RAILS_VERSION='~> 5.2.0'
- RAILS_VERSION='~> 6.0.0'
matrix:
excl... | language: ruby
cache: bundler
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
env:
matrix:
- RAILS_VERSION='~> 4.2.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.0.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.1.0'
- RAILS_VERSION='~> 5.2.0'
- RAILS_VERSION='~> 6.0.0'
matrix:
excl... | Use full env for matrix exclude | Use full env for matrix exclude | YAML | mit | jhawthorn/discard,jhawthorn/discard |
383c17e387b833a7a1d1db15a3c738505fb996b2 | .travis.yml | .travis.yml | language: ruby
cache: bundler
dist: trusty
sudo: false
env:
- VAULT_VERSION=0.9.6
- VAULT_VERSION=0.8.3
- VAULT_VERSION=0.7.3
- VAULT_VERSION=0.6.5
- VAULT_VERSION=0.5.3
- VAULT_VERSION=0.4.1
- VAULT_VERSION=0.3.1
before_install:
- wget -O vault.zip -q https://releases.hashicorp.com/vault/${VAULT_VERS... | language: ruby
cache: bundler
dist: trusty
sudo: false
env:
- VAULT_VERSION=0.9.6
- VAULT_VERSION=0.8.3
- VAULT_VERSION=0.7.3
- VAULT_VERSION=0.6.5
- VAULT_VERSION=0.5.3
- VAULT_VERSION=0.4.1
- VAULT_VERSION=0.3.1
before_install:
# Downgrade Bundler to 1.x
- gem uninstall -v '>= 2' -i $(rvm gemdir)@... | Use Bundler 1.X on Travis | Use Bundler 1.X on Travis
| YAML | mpl-2.0 | hashicorp/vault-rails,hashicorp/vault-rails |
29a75fe1a4d2bd4bb33eb297f7e0b9ed9e3802fd | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
branches:
only:
- master
services:
- redis-server
notifications:
email: false
script:
- bundle exec rake test
before_script:
- psql -c 'create database ontohub_test;' -U postgres
- sudo apt-add-repository -y ppa:hets/hets
- sudo apt-add-repository -y "deb http://arc... | language: ruby
rvm:
- 1.9.3
branches:
only:
- master
- CRUD
services:
- redis-server
notifications:
email: false
script:
- bundle exec rake test
before_script:
- psql -c 'create database ontohub_test;' -U postgres
- sudo apt-add-repository -y ppa:hets/hets
- sudo apt-add-repository -y "deb... | Test branch CRUD on Travis CI, too. | Test branch CRUD on Travis CI, too.
| YAML | agpl-3.0 | ontohub/ontohub,ontohub/ontohub,ontohub/ontohub,ontohub/ontohub,ontohub/ontohub,ontohub/ontohub |
0c218695366ef92082d91b98d12e74ec73c014f9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install: "pip install -r requirements.txt --use-mirrors"
before_script:
- npm install -g jshint
- cp settings.sample.py settings.py
- export=LINTREVIEW_SETTINGS=./settings.py
script: "nosetests"
notifications:
email:
on_failure: change
| language: python
python:
- "2.7"
install: "pip install -r requirements.txt --use-mirrors"
before_script:
- npm install -g jshint
- cp settings.sample.py settings.py
env:
- LINTREVIEW_SETTINGS="./settings.py"
script: "nosetests"
notifications:
email:
on_failure: change
| Update how environment vars are set. | Update how environment vars are set.
| YAML | mit | zoidbergwill/lint-review,adrianmoisey/lint-review,markstory/lint-review,markstory/lint-review,adrianmoisey/lint-review,markstory/lint-review,zoidbergwill/lint-review,zoidbergwill/lint-review |
5919d454d84739edf90d3478afaec9fc559e9f2f | 50kafka.yml | 50kafka.yml | apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: kafka
namespace: kafka
spec:
serviceName: "broker"
replicas: 3
template:
metadata:
labels:
app: kafka
spec:
terminationGracePeriodSeconds: 10
containers:
- name: broker
image: solsson/kafka:0.11.0.0-rc2@... | apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: kafka
namespace: kafka
spec:
serviceName: "broker"
replicas: 3
template:
metadata:
labels:
app: kafka
spec:
terminationGracePeriodSeconds: 10
containers:
- name: broker
image: solsson/kafka:0.11.0.0-rc2@... | Support for generic image results in a verbose startup command, make it git friendly | Support for generic image results in a verbose startup command, make it git friendly
| YAML | apache-2.0 | Yolean/kubernetes-kafka |
a9a922c3e1bc9f8b4905dcf9183e91081ed11301 | data/transition-sites/defra_vla.yml | data/transition-sites/defra_vla.yml | ---
site: defra_vla
whitehall_slug: animal-health-and-veterinary-laboratories-agency
title: Animal Health and Veterinary Laboratories Agency
redirection_date: 31st March 2014
homepage: https://www.gov.uk/government/organisations/animal-health-and-veterinary-laboratories-agency
tna_timestamp: 20130904121313
host: vla.de... | ---
site: defra_vla
whitehall_slug: animal-health-and-veterinary-laboratories-agency
title: Animal Health and Veterinary Laboratories Agency
redirection_date: 31st March 2014
homepage: https://www.gov.uk/government/organisations/animal-health-and-veterinary-laboratories-agency
tna_timestamp: 20130904121313
host: vla.de... | Add alias to legacy VLA site | Add alias to legacy VLA site
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
84f5fcd3929bf9d3d4c21ea35470e3c8c313b53f | defaults/main.yml | defaults/main.yml | ---
# defaults file for threatstack
threatstack_url: https://app.threatstack.com
threatstack_v2_pkg_url: 'https://pkg.threatstack.com/v2'
threatstack_pkg_state: present
threatstack_pkg_validate: yes
# to set a version of the agent use threatstack-agent=X.Y.Z (Debian) or threatstack-agent-X.Y.Z (RedHat)
threatstack_pkg:... | ---
# defaults file for threatstack
threatstack_url: https://app.threatstack.com
threatstack_v2_pkg_url: 'https://pkg.threatstack.com/v2'
threatstack_pkg_state: present
threatstack_pkg_validate: yes
# to set a version of the agent use threatstack-agent=X.Y.Z (Debian) or threatstack-agent-X.Y.Z (RedHat)
threatstack_pkg:... | Add back in hostname variable | Add back in hostname variable
| YAML | mit | threatstack/threatstack-ansible |
24faff8b034a8d57a9e67249dbf182c2c1c8ca9c | .github/workflows/build_msw_xml_libs.yml | .github/workflows/build_msw_xml_libs.yml | name: XML MSW binaries
on:
workflow_dispatch:
jobs:
build-xml-libs:
name: Build XML binaries
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Compiler
run: |
sudo apt-get update -qq
sudo apt-get install -qq --no-i... | name: XML MSW binaries
on:
workflow_dispatch:
jobs:
build-xml-libs:
name: Build XML binaries
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Compiler
run: |
sudo apt-get update -qq
sudo apt-get install -qq --no-i... | Fix wrong script name used in the workflow file | Fix wrong script name used in the workflow file
| YAML | bsd-3-clause | vslavik/xmlwrapp,vslavik/xmlwrapp,vslavik/xmlwrapp |
63b34ca9398c6ab0028db42878c79fb28c24a338 | packages/hi/hipchat-hs.yaml | packages/hi/hipchat-hs.yaml | homepage: ''
changelog-type: ''
hash: 38b914e734ae78cc258a91ea4165a5354e7a0f98071848b0d964c9f8baa9e1c5
test-bench-deps: {}
maintainer: oztastic703@gmail.com
synopsis: Hipchat API bindings in Haskell
changelog: ''
basic-deps:
either: -any
bytestring: -any
split: -any
base: ! '>=4.8 && <4.9'
time: -any
servan... | homepage: ''
changelog-type: ''
hash: ea36bc392139d45e0ee519378a17d86dd12f57cc5c34d0e53b8fc660c4092078
test-bench-deps: {}
maintainer: oztastic703@gmail.com
synopsis: Hipchat API bindings in Haskell
changelog: ''
basic-deps:
http-client: -any
either: -any
bytestring: -any
aeson-casing: -any
split: -any
base... | Update from Hackage at 2016-04-15T04:39:54+0000 | Update from Hackage at 2016-04-15T04:39:54+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
be1a65b013da3779f0b66c06106369b8eba08732 | _config.yml | _config.yml | # Site settings
title: Jekyll-Uno
description: 'Jekyll-Uno - a minimal, responsive theme for Jekyll'
url: 'http://joshgerdes.com/jekyll-uno'
baseurl: '/jekyll-uno/'
# google_analytics: 'UA-XXXXXX-X'
# disqus_shortname: 'your-disqus-name'
author:
name: 'Josh Gerdes'
email: josh@joshgerdes.com
twitter_username: jo... | # Site settings
title: Mücahit İNEL
description: 'Hey! I will publish my resume and some blogs anymore'
url: 'https:minel.github.io'
baseurl: '/'
# google_analytics: 'UA-XXXXXX-X'
# disqus_shortname: 'your-disqus-name'
author:
name: 'Mücahit İNEL'
email: mucahit.in@gmail.com
twitter_username: mucahit_inel
face... | Change baseurl and contact information | Change baseurl and contact information
| YAML | mit | minel/minel.github.io,minel/minel.github.io,minel/minel.github.io |
835e312d80bc5c6fc3c2931be66618cec91d0c78 | _config.yml | _config.yml | name: Alykhan Kanji
exclude: [README.md, LICENSE.md, CNAME, Gemfile, Gemfile.lock, vendor]
permalink: blog/:categories/:year/:month/:day/:title/
defaults:
-
scope:
path: ""
type: "pages"
values:
layout: "default"
-
scope:
path: ""
type: "posts"
values:
layout: "po... | name: Alykhan Kanji
exclude: [README.md, LICENSE.md, CNAME, Gemfile, Gemfile.lock, vendor]
permalink: blog/:categories/:year/:month/:day/:title/
defaults:
-
scope:
path: ""
type: "pages"
values:
layout: "default"
-
scope:
path: ""
type: "posts"
values:
layout: "po... | Revert "Set up automatic Atom feed generation" | Revert "Set up automatic Atom feed generation"
This reverts commit 35469e2231d2a9b92bf320b02c7878d2cbf9fa0b.
| YAML | mit | alykhank/alykhank.github.io,alykhank/alykhank.github.io,alykhank/alykhank.github.io |
57df04eee08f5f11c932c521a54570ea38375ffa | ansible/roles/mesos-slave/tasks/start.yml | ansible/roles/mesos-slave/tasks/start.yml | ---
- name: Starting Mesos slave container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
environment:
MESOS_HOSTNAME: "{{ inventory_hostname }}"
MESOS_IP: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
MESOS_MAS... | ---
- name: Starting Mesos slave container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
environment:
MESOS_HOSTNAME: "{{ inventory_hostname }}"
MESOS_IP: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
MESOS_MAS... | Tag Mesos slaves with their OpenStack roles | Tag Mesos slaves with their OpenStack roles
To distinguish controller nodes from compute nodes, we need
to tag Mesos slaves. After that, we can use constraints in
Marathon to orchestrate applictions properly.
Change-Id: Ied5608b3aa34eca6ab2ca707bc4a633a23cab1fb
Partially-Implements: blueprint multinode
| YAML | apache-2.0 | asalkeld/kolla-mesos,openstack/kolla-mesos,openstack/kolla-mesos,openstack/kolla-mesos |
3470ad5fd6a76ebc859ca55a3d44118d50322921 | _config.yml | _config.yml | # Site settings
title: the padded cell
email: ba@sanitarium.se
description: ""
baseurl: ""
url: "http://sanitarium.se"
twitter_username: gaqzi
github_username: gaqzi
facebook_username:
timezone: UTC
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 5
exclude:
- less
- node_modu... | # Site settings
title: the padded cell
email: ba@sanitarium.se
description: ""
baseurl: ""
url: "http://sanitarium.se"
twitter_username: gaqzi
github_username: gaqzi
facebook_username:
timezone: UTC
# Build settings
markdown: kramdown
redcarpet:
extensions:
- footnotes
kramdown:
input: GFM
syntax_highlighte... | Add kramdown configuration for syntax hilighting | Add kramdown configuration for syntax hilighting
Now the markdown works just like on Github in regards to syntax
hilighting.
| YAML | apache-2.0 | gaqzi/sanitarium.se,gaqzi/sanitarium.se,gaqzi/sanitarium.se,gaqzi/sanitarium.se |
defc27b802cdc45550f000be90b388c1f31654e9 | _config.yml | _config.yml | # User Settings | Edit these according to your site
title: Statistical Computing for Bayesian Inference and Forecasting
email: jacobcvt12@gmail.com
author: Jacob Carey
description: A blog about Bayesian statistics with an emphasis on computational challenges
url: "http://jacobcvt12.gitub.io" # the base hostname & pr... | # Blog info
title: Statistical Computing for Bayesian Inference and Forecasting
email: jacobcvt12@gmail.com
author: Jacob Carey
description: A blog about Bayesian statistics with an emphasis on computational challenges
# blog and github path
url: "http://jacobcvt12.gitub.io" # the base hostname & protocol for your sit... | Add comments to config yml | Add comments to config yml
| YAML | mit | jacobcvt12/blog,jacobcvt12/blog,jacobcvt12/blog |
61e05ce25276eb4640abd4c2ab8880c8457b528e | _config.yml | _config.yml | name: Ramblings of a Dev
description: Blogging about code stuff
meta_description: "Ramblings of a Dev, Blogging about code stuff"
aboutPage: false
markdown: redcarpet
highlighter: pygments
paginate: 20
baseurl: /
domain_name: 'http://mitchel.me'
google_analytics: 'UA-51952407-2'
disqus: true
disqus_shortname: 'mitch... | name: Ramblings of a Code Author
description: This blog used to be about programming
meta_description: "Ramblings of a Code Author, This blog used to be about programming"
aboutPage: false
markdown: redcarpet
highlighter: pygments
paginate: 20
baseurl: /
domain_name: 'http://mitchel.me'
google_analytics: 'UA-5195240... | Update blog title and description | Update blog title and description
| YAML | mit | mixxorz/mixxorz.github.io,mixxorz/mixxorz.github.io,mixxorz/mixxorz.github.io |
5778a6141a349de72329745fd26db13dff5e9c09 | chart/templates/storageclass.yaml | chart/templates/storageclass.yaml | kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: longhorn
{{- if .Values.persistence.defaultClass }}
annotations:
storageclass.beta.kubernetes.io/is-default-class: "true"
{{- else }}
annotations:
storageclass.beta.kubernetes.io/is-default-class: "false"
{{- end }}
provisioner: ranche... | kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: longhorn
{{- if .Values.persistence.defaultClass }}
annotations:
storageclass.beta.kubernetes.io/is-default-class: "true"
{{- else }}
annotations:
storageclass.beta.kubernetes.io/is-default-class: "false"
{{- end }}
provisioner: driver... | Update StorageClass with new driver name | helm: Update StorageClass with new driver name
Signed-off-by: Shuo Wu <af3b8ec040de751c52692625d2cecdba877f06bf@rancher.com>
Signed-off-by: Sheng Yang <147fd7034704a96aa91f641610a6d7a9748e39bc@rancher.com>
| YAML | apache-2.0 | rancher/longhorn |
139fe9b125256b9bf8d4b96729d38b52dc7a788d | roles/docker/tasks/main.yml | roles/docker/tasks/main.yml | ---
- name: Download docker install script
get_url:
url: https://get.docker.com
dest: /tmp/docker-install.sh
mode: "a+x"
- name: Run install script
shell: /bin/sh /tmp/docker-install.sh
- name: Remove temporary file
file:
path: /tmp/docker-install.sh
state: absent
- name: Set Docker to auto... | ---
- name: Populate service facts
service_facts:
- name: Download docker install script
get_url:
url: https://get.docker.com
dest: /tmp/docker-install.sh
mode: "a+x"
when: ansible_facts.services['docker.service'] is not defined
- name: Run install script
shell: /bin/sh /tmp/docker-install.sh
wh... | Install Docker and Docker Compose only If they are not already installed | Install Docker and Docker Compose only If they are not already installed
| YAML | apache-2.0 | tkurki/marinepi-provisioning |
d761ea056aca15e3b707df6b4a55a5384328abff | .github/workflows/build-and-test-ALM-conda.yml | .github/workflows/build-and-test-ALM-conda.yml | name: Build and test ALM using Conda
on:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
# os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: [2.7, 3.7, 3.8, 3.9]
name: OS ${{ matrix.os }} P... | name: Conda build
on: [push]
# workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
# os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: [2.7, 3.7, 3.8, 3.9]
name: OS ${{ matrix.os }} Python ${{ ma... | Rename workflow and change to [push] for a trigger | Rename workflow and change to [push] for a trigger | YAML | mit | ttadano/ALM,ttadano/ALM,ttadano/ALM,ttadano/ALM |
f1db31a4a70c3b7882caaababf4c0ce432fec4ca | .github/workflows/linting-and-unit-testing.yml | .github/workflows/linting-and-unit-testing.yml | name: Node.js v14 CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js v14
uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npm ci
- run: npm run lint
- run: npm test
| name: Node.js v14 CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js v14
uses: actions/setup-node@v2
with:
node-version: '14.x'
- run: npm ci
- run: npm run lint
- run: npm test
| Update actions/setup-node action to v2 | Update actions/setup-node action to v2
Signed-off-by: Renovate Bot <c71e7261d37a4f6ae4cfb0cbd79081310a237e67@renovateapp.com>
| YAML | mit | paazmaya/image-foldarizer |
ad7af1a5ccd13bf7fb2e3984371f68b19df80031 | .github/workflows/linting-and-unit-testing.yml | .github/workflows/linting-and-unit-testing.yml | name: Node.js v16 CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js v16
uses: actions/setup-node@v2
with:
node-version: '16.x'
- run: npm ci
- run: npm run lint
- run: npm test
| name: Node.js v16 CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js v16
uses: actions/setup-node@v3
with:
node-version: '16.x'
- run: npm ci
- run: npm run lint
- run: npm test
| Update actions/setup-node action to v3 | Update actions/setup-node action to v3
Signed-off-by: Renovate Bot <c71e7261d37a4f6ae4cfb0cbd79081310a237e67@renovateapp.com>
| YAML | mit | paazmaya/tozan |
6a64c8e7dbc1d3a6cbb444dbcdefbeb4632c01fa | zuul.d/project.yaml | zuul.d/project.yaml | ---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed 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 ... | ---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed 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 ... | Remove unified queue from gate pipeline | Remove unified queue from gate pipeline
Initially the intent for adding this was to better test
any patches for roles together before they merge, but it
has had the unintended side-effect of causing patches to
take much longer to merge (because they all get lined up
in a single queue, rather than independent queues) a... | YAML | apache-2.0 | openstack/openstack-ansible-plugins,openstack/openstack-ansible-plugins |
2e741982813cb1aceffd1bc3473b267e839461dd | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: rikorose/gcc-cmake
working_directory: ~/MeadowsECS
steps:
- checkout
- run:
command: |
mkdir ~/build
cd ~/build
cmake -G"Unix Makefiles"... | version: 2
jobs:
build:
docker:
- image: rikorose/gcc-cmake
working_directory: ~/MeadowsECS
steps:
- checkout
- run:
command: |
mkdir ~/build
cd ~/build
cmake -G"Unix Makefiles"... | Fix test results metadata directory layout for CircleCI | Fix test results metadata directory layout for CircleCI
| YAML | mit | Konijnendijk/Meadows-ECS |
a670687998b6acbb8ee0c839f006325278cc9175 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/python:3
steps:
- checkout
- restore_cache:
key: dedupe_trees-{{ checksum "testing-requirements.txt" }}
- run:
name: Prepare Environment
command: |
... | version: 2
jobs:
build:
docker:
- image: circleci/python:3
steps:
- checkout
- restore_cache:
key: dedupe_trees-{{ checksum "testing-requirements.txt" }}
- run:
name: Prepare Environment
command: |
... | Remove old module name from pytest | Remove old module name from pytest
| YAML | mit | davidmreed/dedupe.py |
e8eb2b00ac524d02d1f81a9d8a9c633e89e6e5c6 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
py3test:
working_directory: ~/megnet
docker:
- image: materialsvirtuallab/circle-ci-pmg-py3:0.0.2
steps:
- checkout
- run:
command: |
export PATH=$HOME/miniconda3/bin:$PATH
conda config --set always_yes yes --set changeps1 no
... | version: 2
jobs:
py3test:
working_directory: ~/megnet
docker:
- image: materialsvirtuallab/circle-ci-pmg-py3:0.0.2
steps:
- checkout
- run:
command: |
export PATH=$HOME/miniconda3/bin:$PATH
conda config --set always_yes yes --set changeps1 no
... | Use conda to install tensorflow. | Use conda to install tensorflow.
| YAML | bsd-3-clause | materialsvirtuallab/megnet,materialsvirtuallab/megnet,materialsvirtuallab/megnet,materialsvirtuallab/megnet,materialsvirtuallab/megnet |
822566fdb45529b9957937308ebe2e08e71692b8 | .circleci/config.yml | .circleci/config.yml | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.6.5@sha256:0e53e4bb368a1ce85dd381ca5b0c61a3bbbd9e6de24bab68e6faf3cbed3d5415
working_directory: ~/repo
steps:
- checko... | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.6.5@sha256:55a914663dd53cdf25adfb6cab1145530977dae44c71321dd23de08f5da94ef1
working_directory: ~/repo
steps:
- checko... | Update circleci/python:3.6.5 Docker digest to 55a914 | Update circleci/python:3.6.5 Docker digest to 55a914 | YAML | bsd-3-clause | kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler |
9531edc573660392bf200ede13ca1461a739f19c | .circleci/config.yml | .circleci/config.yml | version: 2.1
jobs:
ubuntu1604-python2:
docker:
- image: stbtester/circleci:ubuntu1604-python2
environment:
PYTHON: /usr/bin/python2.7
steps:
- checkout
- test
ubuntu1804-python2:
docker:
- image: stbtester/circleci:ubuntu1804
environment:
PYTHON: /usr/bin/py... | version: 2.1
jobs:
ubuntu1604-python2:
docker:
- image: stbtester/circleci:ubuntu1604-python2
environment:
PYTHON: /usr/bin/python2.7
steps:
- checkout
- test
ubuntu1804-python2:
docker:
- image: stbtester/circleci:ubuntu1804
environment:
PYTHON: /usr/bin/py... | Set $TERM to fix tput & curses errors | circleci: Set $TERM to fix tput & curses errors
This should fix
`test_stbt_control_as_stbt_record_control_recorder__default_keymap`
which needs curses.
It should also silence warnings from `tput` which is used by
`run-tests.sh` to output pretty colours.
| YAML | lgpl-2.1 | stb-tester/stb-tester,stb-tester/stb-tester,stb-tester/stb-tester,stb-tester/stb-tester |
59e1cc0b0549ac3bafed93012355b7f835531a70 | appspec.yml | appspec.yml | version: 0.0
os: linux
files:
- source: /index.html
destination: /var/www/html/
hooks:
BeforeInstall:
- location: scripts/install_dependencies
timeout: 300
runas: root
- location: scripts/start_server
timeout: 300
runas: root
- location: scripts/elb/register_with_elb.sh
... | version: 0.0
os: linux
files:
- source: /index.html
destination: /var/www/html/
hooks:
BeforeInstall:
- location: scripts/elb/deregister_from_elb.sh
timeout: 300
runas: root
- location: scripts/install_dependencies
timeout: 300
runas: root
- location: scripts/start_server
... | Test with deregister under BeforeInstall. | Test with deregister under BeforeInstall.
| YAML | apache-2.0 | Jmcfar/codedeploy-sample-app,Jmcfar/codedeploy-sample-app |
3d15169078d26fb0f4f291003372b57c1dddd19f | config/locales/multiple_upload.pl.yml | config/locales/multiple_upload.pl.yml | en:
admin:
actions:
dropzone:
dictDefaultMessage: "Upuść pliki tutaj, żeby przesłać"
dictFallbackMessage: "Twoja przeglądarka nie wspiera przesyłania plików metodą drag'n'drop."
dictFallbackText: "Proszę skorzystać z zastępczego poniżej formularza, aby przesłać pliki tak jak w dawnyc... | en:
admin:
actions:
dropzone:
dictDefaultMessage: "Upuść pliki tutaj, żeby przesłać"
dictFallbackMessage: "Twoja przeglądarka nie wspiera przesyłania plików metodą drag'n'drop."
dictFallbackText: "Proszę skorzystać z zastępczego poniżej formularza, aby przesłać pliki tak jak w dawnyc... | Remove blank line at the end of a file | Remove blank line at the end of a file
| YAML | mit | luizpicolo/rails_admin_dropzone,luizpicolo/rails_admin_dropzone,luizpicolo/rails_admin_dropzone |
4850e792732c3b04f7fbeee13ada78a0d4ae230f | .gitlab-ci.yml | .gitlab-ci.yml | # .gitlab-ci.yml
build:
#image: ubuntu:18.04
#image: xed-testing-container
image: amr-registry-pre.caas.intel.com/xed/xed-testing-container
stage: build
script:
- python3 ci-internal.py
| # .gitlab-ci.yml
variables:
PACKAGE_NAME: xed-common
build:
#image: ubuntu:18.04
#image: xed-testing-container
image: amr-registry-pre.caas.intel.com/xed/xed-testing-container
stage: build
script:
- python3 ci-internal.py
build-conan:
image: amr-registry.caas.intel.com/syssim/teamcity-agent:2020.... | Add GitLab CI trigger for Conan package | Add GitLab CI trigger for Conan package
- Build Conan package as part of CI
- Upload to Artifactory for commits to "main":
- use "PACKAGE/VERSION@xed/stable" reference when tagged with "vVERSION"
- use "PACKAGE/SHA@xed/ci" reference for unversioned commits
- Update alias reference "PACKAGE/latest@xed/ci"
| YAML | apache-2.0 | intelxed/xed,intelxed/xed,intelxed/xed,intelxed/xed |
9c85078c067652f7820603d6930d109260d82d9c | .gitlab-ci.yml | .gitlab-ci.yml | cache:
paths:
- vendor/
before_script:
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --prefer-dist --classmap-authoritative --no-interaction --no-progress
test:7.0:
image: php:7.0-alpine
script:
- php composer.phar test
test:7.1:
image: php:7.1... | cache:
paths:
- vendor/
before_script:
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --prefer-dist --classmap-authoritative --no-interaction --no-progress
test:7.1:
image: php:7.1-alpine
script:
- php composer.phar test
test:7.2:
image: php:7.2... | Drop support for PHP 7.0 | Drop support for PHP 7.0
| YAML | mit | ThePixelDeveloper/Sitemap-v2,ThePixelDeveloper/Sitemap |
8ef818dd96b795db58854235ec3a9d566c46436c | .gitlab-ci.yml | .gitlab-ci.yml | ---
image: gebish/ci:v4
variables:
GRADLE_USER_HOME: .gradle-home
check:
stage: build
cache:
key: "$CI_JOB_NAME"
paths:
- .gradle-home
artifacts:
when: always
expire_in: 4 weeks
paths:
- build/reports
script:
- Xvfb :99 -screen 1 1280x1024x16 -nolisten tcp -fbdir /var/run... | ---
image: gebish/ci:v5
variables:
GRADLE_USER_HOME: .gradle-home
check:
stage: build
cache:
key: "$CI_JOB_NAME"
paths:
- .gradle-home
artifacts:
when: always
expire_in: 4 weeks
paths:
- build/reports
script:
- Xvfb :99 -screen 1 1280x1024x16 -nolisten tcp -fbdir /var/run... | Update docker image used by CI so that a newer version of Chrome is used to run the tests | Update docker image used by CI so that a newer version of Chrome is used to run the tests
| YAML | apache-2.0 | geb/geb-example-gradle |
0b50c78393d4bea0253aeacda8787547daca3d6b | .gitlab-ci.yml | .gitlab-ci.yml | # .gitlab-ci.yml -- configures gitlab.com CI system
#
# The MIT Licence (MIT)
#
# Copyright (c) 2016 Samuel Sirois (sds) <samuel@sirois.info>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software... | # .gitlab-ci.yml -- configures gitlab.com CI system
#
# The MIT Licence (MIT)
#
# Copyright (c) 2016 Samuel Sirois (sds) <samuel@sirois.info>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software... | Add pdf tools (we need pdftohtml) | Add pdf tools (we need pdftohtml)
| YAML | mit | ssirois/hephaestus |
0293bee8aa6c7a6d2150d03df713bd1ac7eb4e7b | .swiftlint.yml | .swiftlint.yml | # Configuration for SwiftLint (https://github.com/realm/SwiftLint)
excluded:
- Carthage
opt_in_rules:
- empty_count
- missing_docs
disabled_rules:
- comma
- cyclomatic_complexity
- function_body_length
- line_length
- opening_brace
- valid_docs
| # Configuration for SwiftLint (https://github.com/realm/SwiftLint)
excluded:
- Carthage
opt_in_rules:
- empty_count
- missing_docs
- vertical_whitespace
disabled_rules:
- comma
- cyclomatic_complexity
- function_body_length
- line_length
- opening_brace
- valid_docs
| Enable the vertical_whitespace SwiftLint rule | Enable the vertical_whitespace SwiftLint rule
| YAML | mit | mattrubin/onetimepassword,mattrubin/onetimepassword |
0141cf1b5cfb9134b8d90081e4beb5c8c519da37 | .swiftlint.yml | .swiftlint.yml | disabled_rules:
- force_cast
- line_length
- variable_name_min_length
- trailing_whitespace
- nesting
- opening_brace
excluded:
- Sources/Container.Arguments.swift
- Sources/SynchronizedResolver.Arguments.swift
- Sources/Resolvable.swift
- Tests
- Sample-iOS.playground
- Carthage
| disabled_rules:
- force_cast
- line_length
- variable_name_min_length
- trailing_whitespace
- nesting
- opening_brace
- valid_docs
excluded:
- Sources/Container.Arguments.swift
- Sources/SynchronizedResolver.Arguments.swift
- Sources/Resolvable.swift
- Tests
- Sample-iOS.playground
- Carthage
| Exclude 'valid_docs' rule because still Swiftlint v0.6.0 has problems on the rule. | Exclude 'valid_docs' rule because still Swiftlint v0.6.0 has problems on the rule.
| YAML | mit | yoichitgy/Swinject,yoichitgy/Swinject,Swinject/Swinject,yoichitgy/Swinject,Swinject/Swinject,Swinject/Swinject,yoichitgy/Swinject,Swinject/Swinject |
28854e7d0b4ca95e9c31fac71801a2b5b67c3d1e | boxfile.yml | boxfile.yml | run.config:
engine: golang
engine.config:
runtime: go-1.8
package: 'github.com/hasit/healthyrepo'
fetch: 'go get'
build: 'go build'
web.api:
start: healthyrepo | run.config:
engine: golang
engine.config:
runtime: go-1.8
package: 'github.com/hasit/healthyrepo'
fetch: 'go get -u'
build: 'go build'
web.api:
start: healthyrepo | Update get fetch hook to 'go get -u' | Update get fetch hook to 'go get -u'
| YAML | mit | hasit/healthyrepo,hasit/healthyrepo,hasit/healthyrepo |
144fa82196f65c4e9a9224e2a0bcb2c1630cd6bf | data/building-hours/1-3-stav.yaml | data/building-hours/1-3-stav.yaml | name: Stav Hall
image: stav
category: Food
schedule:
- title: Breakfast
hours:
- {days: [Mo, Tu, We, Th, Fr, Sa], from: '7:00am', to: '9:45am'}
- {days: [Su], from: '8:30am', to: '10:15am'}
- title: Lunch
hours:
# - {days: [Mo, Tu, We, Th, Fr], from: '10:30am', to: '2:00pm'}
# - {d... | name: Stav Hall
image: stav
category: Food
schedule:
- title: Breakfast
# hours:
# - {days: [Mo, Tu, We, Th, Fr, Sa], from: '7:00am', to: '9:45am'}
# - {days: [Su], from: '8:30am', to: '10:15am'}
hours: []
- title: Lunch
notes: NO MEAL PLANS - department charges, cash, credit, Ole or Flex ... | Update stav hours for interim break | Update stav hours for interim break | YAML | agpl-3.0 | StoDevX/AAO-React-Native,carls-app/carls,carls-app/carls,carls-app/carls,StoDevX/AAO-React-Native,carls-app/carls,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,carls-app/carls,carls-app/carls,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native... |
f7bed64314392d6823f5b7bdb75501a6c06b88cf | handlers/main.yml | handlers/main.yml | ---
#
# Copyright (c) 2014 Davide Guerri <davide.guerri@gmail.com>
#
# Licensed 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 ap... | ---
#
# Copyright (c) 2014 Davide Guerri <davide.guerri@gmail.com>
#
# Licensed 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 ap... | Use command instead of shell | Use command instead of shell
| YAML | apache-2.0 | dguerri/openstack-keystone,openstack-ansible-galaxy/openstack-keystone,openstack-ansible-galaxy/openstack-keystone |
0617e681a56e2dae2e998785a2f81d26ce524a68 | codecov.yml | codecov.yml | ignore:
- "bindata*.go"
- "rice-box.go"
| ignore:
# Generated code
- "bindata*.go"
- "rice-box.go"
# Documentation
- "cmd/lorem-ipsum/*"
| Exclude doc generation, and add comments | Exclude doc generation, and add comments
| YAML | mit | jmcfarlane/Notable,jmcfarlane/Notable,jmcfarlane/Notable,jmcfarlane/Notable |
6f66e0f2a72ce72bd828fe4a36fcba770e6303fb | sdk/identity/ci.yml | sdk/identity/ci.yml | # NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file.
trigger:
branches:
include:
- master
- hotfix/*
- release/*
- restapi*
paths:
include:
- sdk/identity/
- sdk/core/
pr:
branches:
include:
- master
- feature/*
- hotfix/*
- re... | # NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file.
trigger:
branches:
include:
- master
- hotfix/*
- release/*
- restapi*
paths:
include:
- sdk/identity/
- sdk/core/
pr:
branches:
include:
- master
- feature/*
- hotfix/*
- re... | Add Pool name to the additional matrix entry | Add Pool name to the additional matrix entry
Needed to add the Pool name to the additional matrix entry. | YAML | mit | Azure/azure-sdk-for-python,Azure/azure-sdk-for-python,Azure/azure-sdk-for-python,Azure/azure-sdk-for-python |
8660e290a9e36103dcc30b81cedc37815c17eeaa | GitVersion.yml | GitVersion.yml | assembly-versioning-format: '{major}.{minor}.{WeightedPreReleaseNumber}'
assembly-informational-format: '{major}.{minor}{PreReleaseTagWithDash}--{CommitDate}--{ShortSha}'
mode: ContinuousDeployment
branches:
master:
regex: ^master
tag: beta
pre-release-weight: 30000 # 0 after stable release, 15000 before... | assembly-versioning-format: '{major}.{minor}.{WeightedPreReleaseNumber}'
assembly-informational-format: '{major}.{minor}{PreReleaseTagWithDash}--{CommitDate}--{ShortSha}'
mode: ContinuousDeployment
continuous-delivery-fallback-tag: ''
branches:
master:
regex: ^master
tag: beta
pre-release-weight: 30000 ... | Remove ci prefix for releases | Remove ci prefix for releases | YAML | mit | sauliusg/jabref,sauliusg/jabref,sauliusg/jabref,Siedlerchr/jabref,Siedlerchr/jabref,Siedlerchr/jabref,JabRef/jabref,JabRef/jabref,Siedlerchr/jabref,JabRef/jabref,sauliusg/jabref,JabRef/jabref |
9ad580fed8c7c7fbb1288e39d929ced21457e4f1 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ b2.5, b3.0, master]
pull_request:
branches: [ b2.5, b3.0, master, SPARKC-651 ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
scala: ... | name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ b2.5, b3.0, master]
pull_request:
branches: [ b2.5, b3.0, master, SPARKC-651 ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
scala: ... | Switch ccm dependency URL from git to https protocol | Switch ccm dependency URL from git to https protocol
| YAML | apache-2.0 | datastax/spark-cassandra-connector,datastax/spark-cassandra-connector |
ead12256cc8b4bbbf1a49f17d28b797c8f141c8f | .github/workflows/ruby.yml | .github/workflows/ruby.yml | name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs... | name: Ruby
on:
push:
schedule:
- cron: "59 11 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Build and test with Rake
run: |
gem instal... | Add cron to run build each night | Add cron to run build each night
| YAML | mit | psyomn/komplement,psyomn/komplement |
76f66c245ea54627a4d189930df4caf6e3e02dfa | .github/workflows/rust.yml | .github/workflows/rust.yml | on:
pull_request:
push:
branches:
- master
schedule:
- cron: '00 01 * * *'
name: CI
env:
CARGO_INCREMENTAL: 0
jobs:
build-and-test:
name: build
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@... | on:
pull_request:
push:
branches:
- master
schedule:
- cron: '00 01 * * *'
name: CI
env:
CARGO_INCREMENTAL: 0
jobs:
build-and-test:
name: build
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
steps:
- name: Install system dependencies
run: sudo apt-get i... | Install OpenSSL as well for builds and tests. | Install OpenSSL as well for builds and tests.
| YAML | mit | jeschkies/letterboxd-list-sync |
43075a89c5bc89a9174811e77c927e60fd34673a | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-v... | name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-v... | Update actions/setup-node action to v2 | Update actions/setup-node action to v2
| YAML | mit | elliottsj/front-matter-loader |
f43be5455ac896abcbf9475386607f099c190734 | .github/workflows/test.yml | .github/workflows/test.yml | ---
name: Continuous Integration
"on":
- push
- pull_request
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 2.6.8
# TODO - 2.7
gemfile:
- gemfiles/rails4.2.gemfile
- gemfiles/rails5.0.gemfile
- ge... | ---
name: Continuous Integration
"on":
- push
- pull_request
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- 2.6
- 2.7
gemfile:
- gemfiles/rails4.2.gemfile
- gemfiles/rails5.0.gemfile
- gemfiles/ra... | Add ruby 2.7, switch to 2.6 to pick up newer versions. | Add ruby 2.7, switch to 2.6 to pick up newer versions.
| YAML | apache-2.0 | zendesk/kasket |
50c090a5602f3962b87fa0289b60e526832554b2 | .github/workflows/test.yml | .github/workflows/test.yml | name: Perl module test
on: [push, pull_request]
jobs:
perl-job:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
perl: [ 'latest', '5.32', '5.30' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
container:
image: perldocker/perl-tester:${{ matrix.perl ... | name: Perl module test
on: [push, pull_request]
jobs:
perl-job:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest']
perl: [ 'latest', '5.32', '5.30' ]
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
container:
image: perldocker/perl-... | Set fail-fast to false in github action | Set fail-fast to false in github action
| YAML | apache-2.0 | elastic/elasticsearch-perl,elastic/elasticsearch-perl |
0a6a0459d3924f46ba73a42220f15b6db1cd3763 | post.yml | post.yml | ---
- name: set body content from file
set_fact:
payload: "{{ lookup('file', file) }}"
- name: dump payload to terminal
debug: var=payload
when: verbose
- name: POST request
uri:
url: "{{ url }}"
method: POST
user: "{{ user }}"
password: "{{ password }}"
body: "{{ payload }}"
forc... | ---
- name: set body content from file
set_fact:
payload: "{{ lookup('file', file) }}"
- name: dump payload to terminal
debug: var=payload
when: verbose
- name: POST request
uri:
url: "{{ url }}"
method: POST
user: "{{ user }}"
password: "{{ password }}"
body: "{{ payload }}"
forc... | Append POST results to file for easy batch delete | Append POST results to file for easy batch delete
| YAML | mit | lyrasis/csible,lyrasis/csible |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.