Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Fix NPM for node v0.8
language: node_js node_js: - "0.8" - "0.10" - "0.11" - "0.12" - "iojs" - "iojs-v1.4.2" before_script: - iojs -e 'new Promise(function(){}, function(){});' || node -e 'new Promise(function(){}, function(){});' || npm install bluebird
language: node_js node_js: - "0.8" - "0.10" - "0.11" - "0.12" - "iojs" - "iojs-v1.4.2" before_script: - iojs -e 'new Promise(function(){}, function(){});' || node -e 'new Promise(function(){}, function(){});' || npm install npm -g && npm install bluebird
Update to only test Python 3.6 and higher.
####################################### # Travis CI script ####################################### language: python sudo: required cache: pip python: - "2.7" - "3.5" - "3.6" install: - pip install -r requirements.txt script: - pytest tellurium
####################################### # Travis CI script ####################################### language: python sudo: required cache: pip python: - "3.6" - "3.7" - "3.8" install: - pip install -r requirements.txt script: - pytest tellurium
Test python 3.8 and pypy
language: python python: - 2.7 - 3.5 - 3.6 - 3.7 script: # pytest==4.6 fallback for Python 2.7 - pip install pytest==5.4 || pip install pytest==4.6 - python setup.py develop - python -m pytest
language: python python: - 2.7 - 3.5 - 3.6 - 3.7 - 3.8 - pypy - pypy3 script: # pytest==4.6 fallback for Python 2.7 - pip install pytest==5.4 || pip install pytest==4.6 - python setup.py develop - python -m pytest
Add gcc-4.7, gcc-4.8 and gcc-4.9 to Travis CI configuration.
language: cpp compiler: - gcc - clang script: make -C tests test
language: cpp matrix: include: - compiler: gcc env: GCC=4.7 - compiler: gcc env: GCC=4.8 - compiler: gcc env: GCC=4.9 - compiler: clang before_install: - if [ -n "$GCC" ]; then sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y; fi - if [ -n "$GCC" ]; then sudo apt-get update...
Test under newest Ruby 2.1 release
script: "bundle exec rake spec" language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head - jruby - rbx-19mode matrix: allow_failures: - rvm: ruby-head - rvm: jruby - rvm: rbx-19mode gemfile: - gemfiles/rails_32.gemfile - gemfiles/rails_40.gemfile - gemfiles/rails_41.gemfile
script: "bundle exec rake spec" language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - ruby-head - jruby - rbx-19mode matrix: allow_failures: - rvm: ruby-head - rvm: jruby - rvm: rbx-19mode gemfile: - gemfiles/rails_32.gemfile - gemfiles/rails_40.gemfile - gemfiles/rails_41.gemfile
Stop building with tip since it didn't have `go yacc`
language: go go: - 1.3 - 1.4 - 1.5 - 1.6 - tip sudo: false
language: go go: - 1.3 - 1.4 - 1.5 - 1.6 # - tip sudo: false
Remove Travis work around for ruby v1.8.7
--- # Broken bundler on travis CI - https://github.com/bundler/bundler/issues/2784 before_install: - gem update --system 2.1.11 - gem --version env: - PUPPET_VERSION=2.7.23 - PUPPET_VERSION=3.3.2 notifications: email: false rvm: - 1.9.3 - 1.8.7 matrix: allow_failures: - env: PUPPET_VERSION=2.7.23 language: ruby...
--- env: - PUPPET_VERSION=2.7.23 - PUPPET_VERSION=3.3.2 notifications: email: false rvm: - 1.9.3 - 1.8.7 matrix: allow_failures: - env: PUPPET_VERSION=2.7.23 language: ruby before_script: "gem install --no-ri --no-rdoc bundler" script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--format docum...
Test against multiple versions in Travis
sudo: false language: ruby rvm: - 2.5.3 before_install: gem install bundler -v 1.17.1
sudo: false language: ruby rvm: - 2.5.3 gemfile: - gemfiles/rails_5.1.gemfile - gemfiles/rails_5.2.gemfile before_install: gem install bundler -v 1.17.1
Update from Hackage at 2020-04-16T12:45:41Z
homepage: '' changelog-type: markdown hash: 6d9b0f9bbf55add4338f76b7f0de5fd25890c0fab75a5c2fd4bd391cfd75852f test-bench-deps: {} maintainer: bennye@tcd.ie synopsis: HTML Canvas graphics, animations and simulations. changelog: | # Revision history for Gleam ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on ...
homepage: '' changelog-type: markdown hash: 8c62ea250aab71f01667ee12d959255ead9d25f60289342df3d0dbe3c972a92f test-bench-deps: {} maintainer: bennye@tcd.ie synopsis: HTML Canvas graphics, animations and simulations. changelog: | # Revision history for Gleam ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on ...
Update from Hackage at 2017-02-01T10:16:41Z
homepage: https://github.com/minad/colorful-monoids#readme changelog-type: '' hash: 636af4cd69db82f1e73c8a330728bd8742f6e0e48cf7e996a40752fac0aed656 test-bench-deps: colorful-monoids: -any base: ! '>=4.8 && <5' semigroups: ! '>=0.9 && <1' maintainer: Daniel Mendler <mail@daniel-mendler.de> synopsis: Styled consol...
homepage: https://github.com/minad/colorful-monoids#readme changelog-type: '' hash: f927c7c654708baee541e4ffc44bcc1376096d493bd2b7869a1a3ce098b55b4d test-bench-deps: colorful-monoids: -any base: ! '>=4.8 && <5' semigroups: ! '>=0.9 && <1' maintainer: Daniel Mendler <mail@daniel-mendler.de> synopsis: Styled consol...
Build with Node.js 14 on GitHub Actions.
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} ...
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version...
Change the package name to conda-kapsel from conda_kapsel
package: name: conda_kapsel version: {{ environ.get('GIT_DESCRIBE_TAG', '').replace('v', '') }} source: git_url: ../ # If you're trying to test build changes, you have to add this # pointing to the branch you're modifying. # git_tag: package-script build: number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0)...
package: name: conda-kapsel version: {{ environ.get('GIT_DESCRIBE_TAG', '').replace('v', '') }} source: git_url: ../ # If you're trying to test build changes, you have to add this # pointing to the branch you're modifying. # git_tag: package-script build: number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0)...
Add explicit repo to publish doc step.
--- name: CI on: [push, pull_request, workflow_dispatch] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: token: ${{ secrets.STUDIO_GITHUB_TOKEN }} - uses: actions/setup-node@v1 with: node-version: '16' - uses: ./.github/actions...
--- name: CI on: [push, pull_request, workflow_dispatch] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: token: ${{ secrets.STUDIO_GITHUB_TOKEN }} - uses: actions/setup-node@v1 with: node-version: '16' - uses: ./.github/actions...
Allow failures for phpcs and phpmd
build_settings: verbose: false ignore: - "vendor" - "Tests" - "PHPCI/Command" # PHPMD complains about un-used parameters, but they are required. - "public/install.php" # PHPCS really doesn't like PHP mixed with HTML (and so it shouldn't) - "PHPCI/Migrations" # Ignore the migrations directory, as...
build_settings: verbose: false ignore: - "vendor" - "Tests" - "PHPCI/Command" # PHPMD complains about un-used parameters, but they are required. - "public/install.php" # PHPCS really doesn't like PHP mixed with HTML (and so it shouldn't) - "PHPCI/Migrations" # Ignore the migrations directory, as...
Create CNAME file when auto-deploying to develop.bitshares.org
# This workflow will do a clean install of node dependencies, build the source code and push the binaries to the deployment repository. name: Continuous Delivery and Deployment on: push: branches: [develop] jobs: build: runs-on: ubuntu-latest strategy: matrix: ...
# This workflow will do a clean install of node dependencies, build the source code and push the binaries to the deployment repository. name: Continuous Delivery and Deployment on: push: branches: [develop] jobs: build: runs-on: ubuntu-latest strategy: matrix: ...
Fix authorization enabled incorrectly by default
apiVersion: kafka.strimzi.io/v1alpha1 kind: Kafka metadata: name: my-cluster spec: kafka: replicas: 3 listeners: plain: {} tls: {} authorization: type: simple resources: requests: memory: 2Gi cpu: 500m limits: memory: 2Gi cpu: 1000m r...
apiVersion: kafka.strimzi.io/v1alpha1 kind: Kafka metadata: name: my-cluster spec: kafka: replicas: 3 listeners: plain: {} tls: {} readinessProbe: initialDelaySeconds: 15 timeoutSeconds: 5 livenessProbe: initialDelaySeconds: 15 timeoutSeconds: 5 config: ...
Add example to import a mysql schema
version: "2" services: datastore: image: busybox container_name: ${PROJECT_ID}-datastore volumes: - .:/app web: image: xtreamwayz/nginx container_name: ${PROJECT_ID}-web ports: - "80:80" volumes_from: - datastore links: - php php: image: xtreamwayz/ph...
version: "2" services: datastore: image: busybox container_name: ${PROJECT_ID}-datastore volumes: - .:/app web: image: xtreamwayz/nginx container_name: ${PROJECT_ID}-web ports: - "80:80" volumes_from: - datastore links: - php php: image: xtreamwayz/ph...
Revert Travis notifications to defaults.
language: node_js node_js: - 0.6 before_script: "npm install --dev" script: "make test" notifications: email: on_success: change on_failure: change
language: node_js node_js: - 0.6 before_script: "npm install --dev" script: "make test"
Update from Hackage at 2020-02-16T03:16:14Z
homepage: https://git.sr.ht/~singpolyma/gsasl-haskell changelog-type: '' hash: f8290d372e8062b1546e852ffaf7c27411ed989e85533179b9a7858ac10cd8db test-bench-deps: {} maintainer: Stephen Paul Weber <singpolyma@singpolyma.net> synopsis: Bindings for GNU libgsasl changelog: '' basic-deps: bytestring: ! '>=0.9' base: ! '...
homepage: https://git.sr.ht/~singpolyma/gsasl-haskell changelog-type: '' hash: 36d278b6e4c6a64eecd0be5ca5a6337f09032298bc06e87a9f30342c903200b1 test-bench-deps: {} maintainer: Stephen Paul Weber <singpolyma@singpolyma.net> synopsis: Bindings for GNU libgsasl changelog: '' basic-deps: bytestring: ! '>=0.9' base: ! '...
Revert "Add site task to publish dev reports on CI builds."
--- name: CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: node: [ '13', '14' ] name: node ${{ matrix.node }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run...
--- name: CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: node: [ '13', '14' ] name: node ${{ matrix.node }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run...
Update Travis to test against golang 1.4.2
language: go go: - 1.3.3 - 1.4.1 sudo: false before_install: - gotools=golang.org/x/tools - if [ "$TRAVIS_GO_VERSION" = "go1.3.3" ]; then gotools=code.google.com/p/go.tools; fi install: - go get -d -t -v ./... - go get -v $gotools/cmd/cover - go get -v $gotools/cmd/vet - go get -v github.com/bradfitz/go...
language: go go: - 1.3.3 - 1.4.2 sudo: false before_install: - gotools=golang.org/x/tools - if [ "$TRAVIS_GO_VERSION" = "go1.3.3" ]; then gotools=code.google.com/p/go.tools; fi install: - go get -d -t -v ./... - go get -v $gotools/cmd/cover - go get -v $gotools/cmd/vet - go get -v github.com/bradfitz/go...
Include haddock build in pipeline.
sudo: false dist: xenial language: c env: global: - GCC=gcc-5 - GXX=g++-5 - LLVM_VER=7.0.0 cache: directories: - $HOME/.stack/ addons: apt: packages: - gcc-5 - g++-5 - libgmp-dev - llvm-7-dev sources: - llvm-toolchain-xenial-7 - ubuntu-toolchain-r-tes...
sudo: false dist: xenial language: c env: global: - GCC=gcc-5 - GXX=g++-5 - LLVM_VER=7.0.0 cache: directories: - $HOME/.stack/ addons: apt: packages: - gcc-5 - g++-5 - libgmp-dev - llvm-7-dev sources: - llvm-toolchain-xenial-7 - ubuntu-toolchain-r-tes...
Update Rubies in Travis CI
language: ruby rvm: - 2.4.0 - 2.3.3 - 2.2.6 - 2.1.10 env: global: - secure: n0mxwnyjuXI4mJO4mp++2TnsPJ+XgCF/J1U2L5piE5j3xMhSU+5V0JrA1uFlS0Pemb44M7BjgmF9S4G35BwyAQpctpCYhqy9tFa6+Y6nxEv5hCv2cZz7BSAZM6eb+zq20409hxTHRaQOr1DBeE4R5S2PrmOXRqvYfTRv3LNSLFk= matrix: - OJ=0 - OJ=1 before_install: - gem update --...
language: ruby rvm: - 2.4.1 - 2.3.4 - 2.2.7 - 2.1.10 env: global: - secure: n0mxwnyjuXI4mJO4mp++2TnsPJ+XgCF/J1U2L5piE5j3xMhSU+5V0JrA1uFlS0Pemb44M7BjgmF9S4G35BwyAQpctpCYhqy9tFa6+Y6nxEv5hCv2cZz7BSAZM6eb+zq20409hxTHRaQOr1DBeE4R5S2PrmOXRqvYfTRv3LNSLFk= matrix: - OJ=0 - OJ=1 before_install: - gem update --...
Write npm auth token to home dir
language: node_js node_js: - "8" before_install: - echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc - npm whoami before_script: - npm config set spin false --global - npm config set package-lock false - npm install -g gulp - npm run cf-link - gulp build after_success: - git checkout pack...
language: node_js node_js: - "8" before_install: - echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > ~/.npmrc - npm whoami before_script: - npm config set spin false --global - npm config set package-lock false - npm install -g gulp - npm run cf-link - gulp build after_success: - git checkout pa...
Add baamenabar in the email notifcation:
language: php services: - docker before_install: - docker build -t flyimg . - docker run -t -d -i -v $(pwd):/var/www/html --name flyimg flyimg - docker exec flyimg composer install script: - docker exec flyimg ./vendor/bin/phpunit notifications: email: - sadoknet@gmail.com
language: php services: - docker before_install: - docker build -t flyimg . - docker run -t -d -i -v $(pwd):/var/www/html --name flyimg flyimg - docker exec flyimg composer install script: - docker exec flyimg ./vendor/bin/phpunit notifications: email: - sadoknet@gmail.com - baamenabar@gmail.com...
Add Ruby 3.1 to test matrix
name: tests on: push: pull_request: schedule: - cron: '11 11 14 * *' # at 11:11 am on the 14th of every month jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: [ '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', 'ruby-head' ] steps: - uses: actions/checkout@v2 - n...
name: tests on: push: pull_request: schedule: - cron: '11 11 14 * *' # at 11:11 am on the 14th of every month jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: [ '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', 'ruby-head' ] steps: - uses: actions/checkout@v2 ...
Test on the latest ruby releases in Travis
sudo: false language: ruby matrix: include: - rvm: 2.4.4 - rvm: 2.5.1 - rvm: ruby-head allow_failures: - rvm: ruby-head bundler_args: "--jobs 7 --without docs debug" branches: only: - 2.0-stable - 3.0-stable - master before_install: - gem --version - rvm @global do gem uninstall b...
cache: bundler language: ruby dist: xenial matrix: include: - rvm: 2.4.5 - rvm: 2.5.3 - rvm: 2.6.0 - rvm: ruby-head allow_failures: - rvm: ruby-head bundler_args: "--jobs 7 --without docs debug" branches: only: - 2.0-stable - 3.0-stable - master before_install: - gem --version ...
Revert "Try removing the install section from the Travis config"
language: go go: - 1.2
language: go go: - 1.2 install: - go get -v -t ./... - go get -v github.com/onsi/ginkgo - go get -v github.com/onsi/gomega
Allow failures on 0.11, for now.
language: node_js node_js: - "0.8" - "0.10" - "0.11" before_install: - npm install -g grunt-cli - bash prepare-postgresql.sh
language: node_js node_js: - "0.8" - "0.10" - "0.11" matrix: allow_failures: - node_js: "0.11" before_install: - npm install -g grunt-cli - bash prepare-postgresql.sh
Make Travis builds run against 1.9 compatible rbx
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx - ree gemfile: - Gemfile - Gemfile_rails31 - Gemfile_rails30 - Gemfile_rails23 script: "bundle exec rake test:units" notifications: email: - integrations-team@shopify.com - nathaniel@talbott.ws
rvm: - 1.9.3 - 1.9.2 - rbx-19mode - 1.8.7 - ree gemfile: - Gemfile - Gemfile_rails31 - Gemfile_rails30 - Gemfile_rails23 script: "bundle exec rake test:units" notifications: email: - integrations-team@shopify.com - nathaniel@talbott.ws
Add capistrano2 and capistrano3 to Travis
language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.1" - "jruby-19mode" - "rbx" gemfile: - "gemfiles/no_dependencies.gemfile" - "gemfiles/rails-3.0.gemfile" - "gemfiles/rails-3.1.gemfile" - "gemfiles/rails-3.2.gemfile" - "gemfiles/rails-4.0.gemfile" - "gemfiles/rails-4.1.gemfile" - "gemfiles/sinatr...
language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.1" - "jruby-19mode" - "rbx" gemfile: - "gemfiles/capistrano2.gemfile" - "gemfiles/capistrano3.gemfile" - "gemfiles/no_dependencies.gemfile" - "gemfiles/rails-3.0.gemfile" - "gemfiles/rails-3.1.gemfile" - "gemfiles/rails-3.2.gemfile" - "gemfiles/ra...
Update Travis to use openjdk8
language: java jdk: - oraclejdk8 notifications: webhooks: urls: - https://webhooks.gitter.im/e/9d082586e459ec0fb134 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false ...
language: java jdk: - openjdk8 notifications: webhooks: urls: - https://webhooks.gitter.im/e/9d082586e459ec0fb134 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false de...
Disable xdebug extension in Travis CI
distro: trusty sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 services: - mysql before_script: - npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev - mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci" - mysql -u root ...
distro: trusty sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 services: - mysql before_script: - npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev - mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci" - mysql -u root ...
Change Travis target to RunTests.
language: objective-c env: matrix: - MONO_VERSION="3.2.5" install: - wget "http://download.xamarin.com/MonoFrameworkMDK/Macx86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" - sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target / before_script: - chmod +x bu...
language: objective-c env: matrix: - MONO_VERSION="3.2.5" install: - wget "http://download.xamarin.com/MonoFrameworkMDK/Macx86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" - sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target / before_script: - chmod +x bu...
Test only on npm v4 and v5
language: node_js node_js: - v5 - v4 - '0.12' - '0.10'
language: node_js node_js: - v5 - v4
Add PHP 5.5 to test environment
language: php php: - 5.4 - 5.3 before_script: - composer install --dev
language: php php: - 5.5 - 5.4 - 5.3 before_script: - composer install --dev
Debug Solr issues in Travis build
# Configuration file for building this project with Travis CI language: python python: - "2.7" jdk: - openjdk7 install: pip install -r REQUIREMENTS --use-mirrors && pip install Fabric==1.4.0 --use-mirrors script: python manage.py test storybase_messaging storybase_asset storybase_geo storybase_help storybase_story...
# Configuration file for building this project with Travis CI language: python python: - "2.7" jdk: - openjdk7 install: pip install -r REQUIREMENTS --use-mirrors && pip install Fabric==1.4.0 --use-mirrors script: python manage.py test storybase_messaging storybase_asset storybase_geo storybase_help storybase_story...
Fix Bundler in Travis CI
language: node_js node_js: - "0.10" before_install: - bundle install script: - rspec test/slim_spec.rb - npm test
language: node_js node_js: - "0.10" before_install: - bundler install script: - rspec test/slim_spec.rb - npm test
Update Travis CI config to get latest apt cache
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" before_install: sudo make sysdeps # command to install dependencies install: - make install # command to run tests script: py.test -q --tb native -s tests
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" before_install: sudo apt-get update # command to install dependencies install: - sudo make sysdeps - make install # command to run tests script: py.test -q --tb native -s tests
Install up to date pyflakes that works in Python 3
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" env: - DJANGO=1.3 - DJANGO=1.4 - DJANGO=1.5 - DJANGO=1.6 - DJANGO=1.7 install: - pip install --timeout=30 -q Django==$DJANGO --use-mirrors - pip install --timeout=30 pep8 --use-mirrors - pip install --timeout=30 https://github.com/dcramer/...
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" env: - DJANGO=1.3 - DJANGO=1.4 - DJANGO=1.5 - DJANGO=1.6 - DJANGO=1.7 install: - pip install --timeout=30 -q Django==$DJANGO - pip install --timeout=30 pep8 - pip install --timeout=30 pyflakes - pip install --timeout=30 -q -e . before_sc...
Add test for ruby 2.2.1
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - 2.2.0 script: - rspec spec
language: ruby sudo: false rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - 2.2.0 - 2.2.1 script: - rspec spec
Remove Ruby 1.8 from Travis build matrix
language: ruby rvm: - 1.8.7 - 1.9.3 - 2.0.0 gemfile: src/Gemfile env: - SUITE=cucumber - SUITE=spec before_install: - sed -i s/'pg'/'sqlite3'/ src/Gemfile install: - cd src - bundle install --path bundle before_script: - cp config/database.sqlite config/database.yml - bundle exec rake dc:oauth_key...
language: ruby rvm: - 1.9.3 - 2.0.0 gemfile: src/Gemfile env: - SUITE=cucumber - SUITE=spec before_install: - sed -i s/'pg'/'sqlite3'/ src/Gemfile install: - cd src - bundle install --path bundle before_script: - cp config/database.sqlite config/database.yml - bundle exec rake dc:oauth_keys - bund...
Add caching. Attempt to avoid timeouts in build
sudo: required language: java jdk: - openjdk8 install: /bin/true script: mvn clean install -V -Prun-its -B -e
sudo: required language: java jdk: - openjdk8 cache: directories: - $HOME/.m2 install: /bin/true script: travis_wait 60 mvn clean install -V -Prun-its -B -e
Disable Coveralls until we have tests
language: node_js matrix: include: - node_js: '0.10' - node_js: '0.12' - node_js: iojs - node_js: 4 - node_js: 5 - node_js: 6 - node_js: node env: COVERALLS=1
language: node_js matrix: include: - node_js: '0.10' - node_js: '0.12' - node_js: iojs - node_js: 4 - node_js: 5 - node_js: 6 - node_js: node
Use Debug builds for Travis CI
language: csharp solution: GraphQL.Net.sln install: - nuget restore GraphQL.Net.sln - nuget install NUnit.Runners -Version 3.2.0 -OutputDirectory testrunner script: - xbuild /p:Configuration=Release GraphQL.Net.sln - mono ./testrunner/NUnit.ConsoleRunner.3.2.0/tools/nunit3-console.exe ./Tests/bin/Releas...
language: csharp solution: GraphQL.Net.sln install: - nuget restore GraphQL.Net.sln - nuget install NUnit.Runners -Version 3.2.0 -OutputDirectory testrunner script: - xbuild /p:Configuration=Debug GraphQL.Net.sln - mono ./testrunner/NUnit.ConsoleRunner.3.2.0/tools/nunit3-console.exe ./Tests/bin/Release/...
Remove coveralls from Travis CI.
sudo: false language: node_js node_js: - '12' branches: only: - master - travis-ci install: - npm install -g npm - npm install --no-package-lock --no-save - npm install -g istanbul coveralls
sudo: false language: node_js node_js: - '12' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
Enable testing against Mapserver 6.2.0
# Configuration file for Travis-CI testing language: node_js node_js: - 0.8 - 0.9 env: # - MAPSERVER_COMMIT=rel-6-0-0 # v6.0.0 # - MAPSERVER_COMMIT=rel-6-0-1 # v6.0.1 # - MAPSERVER_COMMIT=rel-6-0-2 # v6.0.2 # - MAPSERVER_COMMIT=rel-6-0-3 # v6.0.3 # - MAPSERVER_COMMIT=rel-6-2-0 # v6.2.0 - MAPSERVER_COMM...
# Configuration file for Travis-CI testing language: node_js node_js: - 0.8 - 0.9 env: # - MAPSERVER_COMMIT=rel-6-0-0 # v6.0.0 # - MAPSERVER_COMMIT=rel-6-0-1 # v6.0.1 # - MAPSERVER_COMMIT=rel-6-0-2 # v6.0.2 # - MAPSERVER_COMMIT=rel-6-0-3 # v6.0.3 - MAPSERVER_COMMIT=rel-6-2-0 # v6.2.0 - MAPSERVER_COMMI...
Fix Travis CI builds for pull requests
language: java before_install: - sudo apt-get update -qq - sudo apt-get install -qq protobuf-compiler - sudo apt-get install -qq libboost-dev libboost-test-dev libboost-program-options-dev libevent-dev automake libtool flex bison pkg-config g++ libssl-dev - wget -nv http://archive.apache.org/dist/thrift/0.9.3/t...
language: java dist: precise before_install: - sudo apt-get update -qq - sudo apt-get install -qq protobuf-compiler - sudo apt-get install -qq libboost-dev libboost-test-dev libboost-program-options-dev libevent-dev automake libtool flex bison pkg-config g++ libssl-dev - wget -nv http://archive.apache.org/dist/...
Test with more versions of Ruby
language: ruby sudo: false cache: bundler rvm: - 2.4.3 - 2.5.0 - ruby-head - jruby-head matrix: fast_finish: true allow_failures: - rvm: ruby-head - rvm: jruby-head include: - rvm: 2.2.9 env: BRANCH=5-0-stable - rvm: 2.2.9 env: BRANCH=5-1-stable - rvm: 2.2.9 env: BR...
language: ruby sudo: false cache: bundler rvm: - 2.3.8 - 2.4.5 - 2.5.3 - ruby-head - jruby-head matrix: fast_finish: true allow_failures: - rvm: ruby-head - rvm: jruby-head include: - rvm: 2.2.10 env: BRANCH=5-0-stable - rvm: 2.2.10 env: BRANCH=5-1-stable - rvm: 2.2.10 ...
Disable python 3.5 in Travis unit tests for now as we don't support it
language: python python: - 2.7 - 3.5 sudo: false virtualenv: before_install: - export PYTHONPATH=$HOME/builds/dissemin/oabot/src - export PIP_USE_MIRRORS=true install: - pip install setuptools --upgrade - pip install -r requirements.txt --upgrade - pip install coveralls - pip freeze script: - c...
language: python python: - 2.7 sudo: false virtualenv: before_install: - export PYTHONPATH=$HOME/builds/dissemin/oabot/src - export PIP_USE_MIRRORS=true install: - pip install setuptools --upgrade - pip install -r requirements.txt --upgrade - pip install coveralls - pip freeze script: - cd src ...
Fix typo in Travis config
language: python python: - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.1 - DJANGO_VERSION=1.4 install: - pip install -q Django==$DJANGO_VERSION --use-mirrors - pip install -q django-nose --use-mirrors - pip install -q pep8 --use-mirrors - pip install -q pyflakes --use-mirrors script: - pep8 --ignore=E50...
language: python python: - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.1 - DJANGO_VERSION=1.4 install: - pip install -q Django==$DJANGO_VERSION --use-mirrors - pip install -q django-nose --use-mirrors - pip install -q pep8 --use-mirrors - pip install -q pyflakes --use-mirrors script: - pep8 --ignore=E501,...
Use azure-sdk-for-python insted of azure
package: name: bcbio-nextgen version: '0.9.2a' build: number: 2 source: git_url: https://github.com/chapmanb/bcbio-nextgen.git git_tag: master requirements: build: - python - setuptools run: - python - setuptools - argparse [py26] - azure - biopython - boto - bx-py...
package: name: bcbio-nextgen version: '0.9.2a' build: number: 2 source: git_url: https://github.com/chapmanb/bcbio-nextgen.git git_tag: master requirements: build: - python - setuptools run: - python - setuptools - argparse [py26] - azure-sdk-for-python - biopython - b...
Package pre-downloads should cause failure if required packages can not be found
--- # input variables: # - openshift_service_type # - component # - openshift_pkg_version # - openshift_is_atomic # Pre-pull new node rpm, but don't install - name: download new node packages command: "{{ ansible_pkg_mgr }} install -y --downloadonly {{ openshift_node_upgrade_rpm_list | join(' ')}}" register: resul...
--- # input variables: # - openshift_service_type # - component # - openshift_pkg_version # - openshift_is_atomic # Pre-pull new node rpm, but don't install - name: download new node packages command: "{{ ansible_pkg_mgr }} install -y --downloadonly {{ openshift_node_upgrade_rpm_list | join(' ')}}" register: resul...
Drop node 12.x and add 18.x
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Node.js CI on: push: branc...
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Node.js CI on: push: branc...
Add missing empty line at end of file
version: "2" checks: argument-count: enabled: true config: threshold: 5 file-lines: enabled: true config: threshold: 500 method-count: enabled: true config: threshold: 30 method-lines: enabled: true config: threshold: 40 plugins: fixme: enabled: true...
version: "2" checks: argument-count: enabled: true config: threshold: 5 file-lines: enabled: true config: threshold: 500 method-count: enabled: true config: threshold: 30 method-lines: enabled: true config: threshold: 40 plugins: fixme: enabled: true...
Build Docker image with Conveyor.
machine: timezone: America/Los_Angeles checkout: post: - rm -rf ~/.go_workspace/src/github.com/remind101 - mkdir -p ~/.go_workspace/src/github.com/remind101 - cp -R ~/empire ~/.go_workspace/src/github.com/remind101/empire dependencies: pre: - sudo pip install awscli - sudo service docker sto...
machine: timezone: America/Los_Angeles checkout: post: - rm -rf ~/.go_workspace/src/github.com/remind101 - mkdir -p ~/.go_workspace/src/github.com/remind101 - cp -R ~/empire ~/.go_workspace/src/github.com/remind101/empire dependencies: pre: - sudo pip install awscli - go install -a -race std...
Update eduroamCAT to 1.2.14 (59)
Categories: - Internet License: Apache-2.0 SourceCode: https://github.com/GEANT/CAT-Android IssueTracker: https://github.com/GEANT/CAT-Android/issues Changelog: https://github.com/GEANT/CAT-Android/releases AutoName: eduroamCAT Description: |- ''EduroamCAT'' is an eduroam Configuration Assistant Tool correspondi...
Categories: - Internet License: Apache-2.0 SourceCode: https://github.com/GEANT/CAT-Android IssueTracker: https://github.com/GEANT/CAT-Android/issues Changelog: https://github.com/GEANT/CAT-Android/releases AutoName: eduroamCAT Description: |- ''EduroamCAT'' is an eduroam Configuration Assistant Tool correspondi...
Update ocaml-version to ocaml-compiler for ocaml setup action
name: Main workflow on: - pull_request - push jobs: build: services: rabbitmq: image: rabbitmq ports: - 5672/tcp strategy: fail-fast: false matrix: os: - ubuntu-latest ocaml-version: - 4.12.0 - 4.05.0 concur...
name: Main workflow on: - pull_request - push jobs: build: services: rabbitmq: image: rabbitmq ports: - 5672/tcp strategy: fail-fast: false matrix: os: - ubuntu-latest ocaml-compiler: - 4.12.0 - 4.05.0 concu...
Add default for upper and lower
%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://stsci.edu/schemas/asdf/0.1.0/transform/domain" tag: "tag:stsci.edu:asdf/0.1.0/transform/domain" title: > Defines the domain of an input axis. description: > Describes the range of acceptable input values to a particular axis of a ...
%YAML 1.1 --- $schema: "http://stsci.edu/schemas/yaml-schema/draft-01" id: "http://stsci.edu/schemas/asdf/0.1.0/transform/domain" tag: "tag:stsci.edu:asdf/0.1.0/transform/domain" title: > Defines the domain of an input axis. description: > Describes the range of acceptable input values to a particular axis of a ...
Fix parameters of the obstacle avoidance
max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot obstacle_range: 2.5 raytrace_range: 3.0 robot_radius: 0.30 inflation_radius: 0.35 # voxel map configuration; z-voxels 0 are filled by bumpers and 1 by laser scan (kinect) map_type: voxel origin_z: 0.0 z_resolution: 0.2 z_voxels: 2...
max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot obstacle_range: 8.0 raytrace_range: 8.0 robot_radius: 0.30 inflation_radius: 0.35 # voxel map configuration; z-voxels 0 are filled by bumpers and 1 by laser scan (kinect) map_type: voxel origin_z: 0.0 z_resolution: 0.2 z_voxels: 2...
Add a literal string for now, as we need to figure out how to nest hiera values another time.
--- classes: [''] puppetroot: '/usr/local/etc/puppet' modroot: ${puppetroot}/modules
--- classes: [''] puppetroot: '/usr/local/etc/puppet' modroot: '/usr/local/etc/puppet/modules'
Change poets webroot to what it is on platform
--- # Set a default sites path. sites_path: '~/Sites' # List sites, indexed by path to web root. sites: /: - dent - eecs - eight - greenbiz - hsa - kalablog - kcom - msdw - seven - stamp - trulymad - usfi /web: - kalablog8 - progmi /www: - accelerate ...
--- # Set a default sites path. sites_path: '~/Sites' # List sites, indexed by path to web root. sites: /: - dent - eecs - eight - greenbiz - hsa - kalablog - kcom - msdw - seven - stamp - trulymad - usfi /web: - kalablog8 - progmi /www: - accelerate ...
Add cmd parameter to builded docker image
box: ruby build: steps: - bundle-install deploy: # box: ubuntu vultr: - internal/docker-push: username: $DOCKERHUB_USERNAME password: $DOCKERHUB_PASSWORD tag: test2 repository: webwurst/parkleitsystemapi registry: https://registry.hub.docker.com - script: ...
box: ruby build: steps: - bundle-install deploy: # box: ubuntu vultr: - internal/docker-push: username: $DOCKERHUB_USERNAME password: $DOCKERHUB_PASSWORD tag: test2 repository: webwurst/parkleitsystemapi registry: https://registry.hub.docker.com cmd: clock...
Check for shadowed outer variable.
AllCops: DisabledByDefault: true DisplayCopNames: true Exclude: - rails_event_store_active_record/lib/rails_event_store_active_record/generators/templates/* - bounded_context/lib/generators/templates/* - support/helpers/0_18_2_migration_template.rb - contrib/**/* - railseventstore.org/**/* T...
AllCops: DisabledByDefault: true DisplayCopNames: true Exclude: - rails_event_store_active_record/lib/rails_event_store_active_record/generators/templates/* - bounded_context/lib/generators/templates/* - support/helpers/0_18_2_migration_template.rb - contrib/**/* - railseventstore.org/**/* T...
Update DECC CEO TNA Timestamp
--- site: decc_ceo host: ceo.decc.gov.uk redirection_date: 23rd January 2013 tna_timestamp: 20121217150421 title: Department of Energy and Climate Change furl: www.gov.uk/decc homepage: https://www.gov.uk/government/organisations/department-of-energy-climate-change ---
--- site: decc_ceo host: ceo.decc.gov.uk redirection_date: 23rd January 2013 tna_timestamp: 20121220093401 title: Department of Energy and Climate Change furl: www.gov.uk/decc homepage: https://www.gov.uk/government/organisations/department-of-energy-climate-change ---
Update X Server to 1.31 (31)
Categories: - System License: MIT AuthorName: Daniel Giritzer AuthorWebSite: http://page.nwrk.biz/giri SourceCode: https://github.com/nwrkbiz/android-xserver IssueTracker: https://github.com/nwrkbiz/android-xserver/issues Changelog: https://github.com/nwrkbiz/android-xserver/releases AutoName: X Server RepoType: gi...
Categories: - System License: MIT AuthorName: Daniel Giritzer AuthorWebSite: http://page.nwrk.biz/giri SourceCode: https://github.com/nwrkbiz/android-xserver IssueTracker: https://github.com/nwrkbiz/android-xserver/issues Changelog: https://github.com/nwrkbiz/android-xserver/releases AutoName: X Server RepoType: gi...
Add workaround for .pub id
dependencies: pre: - echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update - sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json - sudo /...
dependencies: pre: - echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update - sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json - sudo /...
Save the coverage.html and scope image after each build.
general: branches: ignore: - gh-pages machine: services: - docker environment: GOPATH: /home/ubuntu:$GOPATH SRCDIR: /home/ubuntu/src/github.com/weaveworks/scope PATH: $PATH:$HOME/.local/bin dependencies: post: - go get github.com/golang/lint/golint - go get github.com/fzipp/g...
general: branches: ignore: - gh-pages machine: services: - docker environment: GOPATH: /home/ubuntu:$GOPATH SRCDIR: /home/ubuntu/src/github.com/weaveworks/scope PATH: $PATH:$HOME/.local/bin dependencies: post: - go get github.com/golang/lint/golint - go get github.com/fzipp/g...
Update from Hackage at 2015-07-12T15:19:15+0000
homepage: https://github.com/srijs/haskell-operational-class changelog-type: '' hash: dc1c8b6fa15bdc7d60c28c97efb124556bd360861af56e975156141c24964c42 test-bench-deps: {} maintainer: srijs@airpost.net synopsis: MonadProgram typeclass for the operational package changelog: '' basic-deps: base: ! '>=4.6 && <5' operat...
homepage: https://github.com/srijs/haskell-operational-class changelog-type: '' hash: 55aa4d2d9382cf4c115ae44bc8653848fcc054c27be1c2887e8db28665f5fa83 test-bench-deps: {} maintainer: srijs@airpost.net synopsis: MonadProgram typeclass for the operational package changelog: '' basic-deps: base: ! '>=4.6 && <5' operat...
Add cms website configuration for jenkins host
imports: - { resource: '@PrestaCMSThemeBasicBundle/Resources/config/theme/creative.yml' } parameters: presta_cms.page.factory.class: Application\Presta\CMSCoreBundle\Factory\PageFactory sonata_admin: dashboard: blocks: - { position: right, type: presta_cms.block.dashboard.cms } presta_cms_c...
imports: - { resource: '@PrestaCMSThemeBasicBundle/Resources/config/theme/creative.yml' } parameters: presta_cms.page.factory.class: Application\Presta\CMSCoreBundle\Factory\PageFactory sonata_admin: dashboard: blocks: - { position: right, type: presta_cms.block.dashboard.cms } presta_cms_c...
Fix another references to seasonalcalendar
- hosts: calendars roles: - java - common - mongodb - tomcat - apache - seasonalcalendar
- hosts: calendars roles: - java - common - mongodb - tomcat - apache - calendars
Install node-parent role on servers.
--- - hosts: pulp1.example.org become: true become_user: root remote_user: vagrant vars: roles: - qpidd - db - pulp_ca - pulp_server - pulp_consumer
--- - hosts: pulp1.example.org become: true become_user: root remote_user: vagrant vars: roles: - db - qpidd - node_parent - pulp_ca - pulp_server - pulp_consumer
Fix querying resource-classes for quota-sets
{{- if and (.Capabilities.APIVersions.Has "kos-operator.stable.sap.cc/v1") }} apiVersion: kos-operator.stable.sap.cc/v1 kind: KosQuery metadata: name: ironic-quota-classes execute: True requirements: - name: ironic-seed kind: OpenstackSeed context: ironic@Default/service python: | resource_classes = set(node....
{{- if and (.Capabilities.APIVersions.Has "kos-operator.stable.sap.cc/v1") }} apiVersion: kos-operator.stable.sap.cc/v1 kind: KosQuery metadata: name: ironic-quota-classes execute: True requirements: - name: ironic-seed kind: OpenstackSeed context: ironic@Default/service python: | from ironicclient import cli...
Update ruby versions for CI
name: Tests on: pull_request: branches: - "*" push: branches: - master jobs: tests: runs-on: ubuntu-latest strategy: matrix: ruby: ["1.9", "2.0", "2.7", "3.0"] steps: - uses: actions/checkout@master - name: Set up Ruby uses: ruby/setup-ruby@v1 ...
name: Tests on: pull_request: branches: - "*" push: branches: - master jobs: tests: runs-on: ubuntu-latest strategy: matrix: ruby: ["2.2", "2.3", "2.4", "2.5", "2.6", "2.7", "3.0"] steps: - uses: actions/checkout@master - name: Set up Ruby uses:...
Update CV of HACS to 2.6.5 (36)
AntiFeatures: - NonFreeNet Categories: - Internet License: MIT SourceCode: https://github.com/ktt-ol/hacs IssueTracker: https://github.com/ktt-ol/hacs/issues Changelog: https://github.com/ktt-ol/hacs/blob/HEAD/CHANGELOG.md AutoName: HACS Description: An app for our "keyholder" to view and manage the door states of...
AntiFeatures: - NonFreeNet Categories: - Internet License: MIT SourceCode: https://github.com/ktt-ol/hacs IssueTracker: https://github.com/ktt-ol/hacs/issues Changelog: https://github.com/ktt-ol/hacs/blob/HEAD/CHANGELOG.md AutoName: HACS Description: An app for our "keyholder" to view and manage the door states of...
Build on push to master for badge / coverage
name: Node.js CI on: [pull_request] jobs: build: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] node: [14.x, 12.x, 10.x] exclude: # On Windows, run tests with only the LTS environments. - os: windows-latest node: 10.x ...
name: Node.js CI on: [pull_request, push] jobs: build: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] node: [14.x, 12.x, 10.x] exclude: # On Windows, run tests with only the LTS environments. - os: windows-latest node: 10.x ...
Add caching to CI workflow
name: CI on: [push] jobs: build: name: CI runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up JDK 11 uses: actions/setup-java@v1 with: java-version: 11 - name: Build run: mvn compile --file pom.xml - name: Test run: mvn test --file p...
name: CI on: [push] jobs: build: name: CI runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up JDK 11 uses: actions/setup-java@v1 with: java-version: 11 - name: Cache local Maven repository uses: actions/cache@v2 with: path: ~/.m...
Update from Hackage at 2016-06-26T18:42:58+0000
homepage: http://github.com/owainlewis/http-dispatch#readme changelog-type: '' hash: 8b4bc68dc52c4a7c08e5417bb28e2b3b2133e8244531bd8c668c8aabe4aba6ab test-bench-deps: base: -any hspec: -any http-dispatch: -any aeson: -any maintainer: owain@owainlewis.com synopsis: High level HTTP client for Haskell changelog: '...
homepage: http://github.com/owainlewis/http-dispatch#readme changelog-type: '' hash: 0caee299f2507d62246698c4d7bfedc7fc438480b1ab3f4eeeae80b3a6ae4d33 test-bench-deps: base: -any hspec: -any http-dispatch: -any aeson: -any maintainer: owain@owainlewis.com synopsis: High level HTTP client for Haskell changelog: '...
Fix AppVeyor - Part 4
# Test against the latest version of this Node.js version environment: nodejs_version: "14" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:nodejs_version # Install modules - npm install # Build binaries - npm run p...
# Test against the latest version of this Node.js version environment: nodejs_version: "14.0.0" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:nodejs_version # Install modules - npm install # Build binaries - npm r...
Use clang really in windows based clang job
name: build on: [push] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: include: - os: windows-2019 compiler: MSVC script: windows - os: windows-2019 compiler: clang script: windows - os: ubuntu-20.04 ...
name: build on: [push] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: include: - os: windows-2019 compiler: MSVC script: windows - os: windows-2019 compiler: clang script: windows cmake-options: "-TClangCL ...
Add reference to the header
site_name: TripGo Developer site_author: SkedGo Pty Ltd pages: - Getting Started: index.md # - Specs: https://developer.tripgo.com/ - F.A.Q.: faq.md # - Guides: # - SDKs: guides/sdks.md - Extensions: extensions.md - Enterprise: - Push Notifications: enterprise/push.md - Bookings (API): enterprise/bookings-api.md ...
site_name: TripGo Developer site_author: SkedGo Pty Ltd pages: - Getting Started: index.md - Reference: https://developer.tripgo.com/specs/ - F.A.Q.: faq.md # - Guides: # - SDKs: guides/sdks.md - Extensions: extensions.md - Enterprise: - Push Notifications: enterprise/push.md - Bookings (API): enterprise/bookings...
Fix env name in git actions, remove old commented out code.
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python package on: push: branches: [ master, dev ] pull_request: branches:...
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python package on: push: branches: [ master, dev ] pull_request: branches:...
Move pusher component status to ready
notes: | Push an element to the right if the space allows it, otherwise display it below. status: wip variants: - name: middle notes: Vertically align content in the middle. context: modifier: pusher--middle - name: bottom notes: Vertically align content to the bottom. context: modifie...
notes: | Push an element to the right if the space allows it, otherwise display it below. variants: - name: middle notes: Vertically align content in the middle. context: modifier: pusher--middle - name: bottom notes: Vertically align content to the bottom. context: modifier: pusher--b...
Update flake8-bugbear in pre-commit config
repos: - repo: https://github.com/asottile/pyupgrade rev: v1.16.3 hooks: - id: pyupgrade exclude: docopt.py - repo: https://github.com/python/black rev: 19.3b0 hooks: - id: black language_version: python3 - repo: https://gitlab.com/pycqa/flake8 rev: 3.7.7 hooks: - id: flake8 additional_dep...
repos: - repo: https://github.com/asottile/pyupgrade rev: v1.16.3 hooks: - id: pyupgrade exclude: docopt.py - repo: https://github.com/python/black rev: 19.3b0 hooks: - id: black language_version: python3 - repo: https://gitlab.com/pycqa/flake8 rev: 3.7.7 hooks: - id: flake8 additional_dep...
Stop pre-commit being quite so zealous
repos: - repo: https://github.com/ambv/black rev: 19.10b0 hooks: - id: black language_version: python3 language: python_venv - repo: https://github.com/asottile/blacken-docs rev: v1.4.0 hooks: - id: blacken-docs additional_dependencies: [black==19.10b0] language: python_venv - repo: https://...
repos: - repo: https://github.com/ambv/black rev: 19.10b0 hooks: - id: black language_version: python3 language: python_venv - repo: https://github.com/asottile/blacken-docs rev: v1.4.0 hooks: - id: blacken-docs additional_dependencies: [black==19.10b0] language: python_venv - repo: https://...
Update from Hackage at 2021-07-04T16:49:33Z
homepage: https://github.com/liisikerik/kawaii_parser changelog-type: '' hash: 40bf9799f1d1ce9058e6d3a2a60cb811e983c3efc7b1734c4a8e291c62dd0df2 test-bench-deps: {} maintainer: liisikerik@hotmail.com synopsis: A simple parsing library. changelog: '' basic-deps: base: <4.15 containers: -any mtl: -any all-versions: ...
homepage: https://github.com/liisikerik/kawaii_parser changelog-type: '' hash: 5fc6d6ce1f39682c085fc140417eccdc186c9b3b500f1de0aeb4d3fe4859bec6 test-bench-deps: {} maintainer: liisikerik@hotmail.com synopsis: A simple parsing library. changelog: '' basic-deps: base: <4.15 containers: -any mtl: -any all-versions: ...
Add Ruby 2.7.1 + bump previous ruby
language: ruby rvm: - 2.5.3 - 2.6.0 branches: only: - master - rails-5-x
language: ruby rvm: - 2.5.8 - 2.6.6 - 2.7.2 branches: only: - master - rails-5-x before_install: - gem install bundler - bundle update --bundler
Build against Go 1.3 but don't fail builds if it has issues
language: go go: - 1.2 services: - rabbitmq - redis-server script: make notifications: email: false
language: go go: - 1.2 - 1.3 matrix: allow_failures: - go: 1.3 fast_finish: true services: - rabbitmq - redis-server script: make notifications: email: false
Exclude PHP 5.3 from Travis tests
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details sudo: false language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 env: - DB=MYSQL CORE_RELEASE=3.2 matrix: include: - php: 5.6 env: DB=MYSQL CORE_RELEASE=3 - php: 5.6 env: DB=MYSQL CORE_RELEASE=3.1...
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details sudo: false language: php php: - 5.4 - 5.5 - 5.6 - 7.0 env: - DB=MYSQL CORE_RELEASE=3.2 matrix: include: - php: 5.6 env: DB=MYSQL CORE_RELEASE=3 - php: 5.6 env: DB=MYSQL CORE_RELEASE=3.1 - p...
Change supported rubies to >= 1.9.3
language: ruby jdk: - oraclejdk7 services: - mongodb rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode matrix: allow_failures: - rvm: rbx-19mode - rvm: rbx-18mode
language: ruby jdk: - oraclejdk7 services: - mongodb rvm: - 1.9.3 - 2.1.6 - 2.2.2 - jruby-19mode - rbx-19mode matrix: allow_failures: - rvm: rbx-19mode
Set TZ env variable to 'Europe/Paris'
language: c script: make test notifications: email: on_success: never
language: c script: make test env: global: - TZ=Europe/Paris notifications: email: on_success: never
Remove redundant ln from Travis CI code
# Config file for automatic testing at travis-ci.org language: python sudo: false python: - "2.6" - "2.7" - "3.4" - "3.5" - "3.6" # matrix: # include: # - python: "3.7" # dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069) # sudo: required # required for Python 3.7 (trav...
# Config file for automatic testing at travis-ci.org language: python sudo: false python: - "2.6" - "2.7" - "3.4" - "3.5" - "3.6" # matrix: # include: # - python: "3.7" # dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069) # sudo: required # required for Python 3.7 (trav...
Use the latest Rubies on Travis CI
language: ruby before_install: - gem install bundler gemfile: - Gemfile rvm: - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 - ruby-head script: - bundle exec rspec spec
language: ruby before_install: - gem install bundler gemfile: - Gemfile rvm: - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 - ruby-head script: - bundle exec rspec spec
Add Ruby 2.0.0 and allow failures on Travis CI
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx-18mode - rbx-19mode - ree matrix: allow_failures: - rvm: rbx-18mode - rvm: rbx-19mode - rvm: jruby-18mode - rvm: jruby-19mode before_script: - "psql -c 'create database pg_search_test;' -U postgres >/dev/null" script: "bundle exec rsp...
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx-18mode - rbx-19mode - ree matrix: allow_failures: - rvm: 2.0.0 - rvm: rbx-18mode - rvm: rbx-19mode - rvm: jruby-18mode - rvm: jruby-19mode before_script: - "psql -c 'create database pg_search_test;' -U postgres >/dev/null" script:...
Remove option passed to pip
sudo: false language: python python: - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 env: - DB=mongodb - DB=mysql - DB=redis-server before_script: - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE IF NOT EXISTS testdb;'; fi" services: - mongodb - redis-server install: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip ...
sudo: false language: python python: - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 env: - DB=mongodb - DB=mysql - DB=redis-server before_script: - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE IF NOT EXISTS testdb;'; fi" services: - mongodb - redis-server install: - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip ...
Load the timezones for mysql
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" env: - DATABASE_ENGINE=sqlite - DATABASE_ENGINE=postgres - DATABASE_ENGINE=mysql install: - pip install -U setuptools - python bootstrap.py - ./bin/buildout -c travis.cfg before_script: - ./bin/flake8 --exclude=migratio...
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" env: - DATABASE_ENGINE=sqlite - DATABASE_ENGINE=postgres - DATABASE_ENGINE=mysql install: - pip install -U setuptools - python bootstrap.py - ./bin/buildout -c travis.cfg before_script: - ./bin/flake8 --exclude=migratio...
Use codecov instead of coveralls
# Branch definition: only build master and PRs branches: only: master # Build definition; language, deps, scripts language: python python: - 2.7 - 3.4 - 3.5 - 3.6 install: - pip install -r requirements/dev.txt script: - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then tox -e py27-dj18,py27-dj19,py27-dj11...
# Branch definition: only build master and PRs branches: only: master # Build definition; language, deps, scripts language: python python: - 2.7 - 3.4 - 3.5 - 3.6 install: - pip install -r requirements/dev.txt script: - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then tox -e py27-dj18,py27-dj19,py27-dj11...
Add automatic PyPI deploy to Travis CI config
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - pip install lxml -e . - pip install -U codecov pytest-cov script: py.test --cov-report term --cov=cssselect after_success: codecov
language: python python: - '2.6' - '2.7' - '3.3' - '3.4' - '3.5' - '3.6' install: - pip install lxml -e . - pip install -U codecov pytest-cov script: py.test --cov-report term --cov=cssselect after_success: codecov deploy: provider: pypi distributions: sdist bdist_wheel user: redapple pa...
Add Ruby 2.3.0 for CI
language: ruby script: "bundle exec rspec" rvm: - 2.2.3 before_install: gem install bundler -v 1.10.6 gemfile: - Gemfile notifications: email: false
language: ruby script: "bundle exec rspec" rvm: - 2.3.0 - 2.2.3 before_install: gem install bundler -v 1.10.6 gemfile: - Gemfile notifications: email: false
Add ci targets and fix bundler issue in 1.9.3
language: ruby rvm: - 1.9.3 - "2.0" - "2.1" - ruby-head gemfile: - gemfiles/rspec2.gemfile - gemfiles/rspec3.gemfile
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - 2.3 - ruby-head install: - "gem install bundler" - "bundle install --jobs=3 --retry=3" gemfile: - gemfiles/rspec2.gemfile - gemfiles/rspec3.gemfile