Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Test for this fucking Pkgmeta that doesn't work again.
package-as: gCastBars ignore: - gulpfile.js - package.json - pkgmeta.yaml - "*.bak" license-output: Licence test_build: enabled: true paths: - D:/World of Warcraft/Interface/AddOns ignore:
package-as: gCastBars ignore: - gulpfile.js - package.json - pkgmeta.yaml - "*.bak" license-output: Licence #test_build: # enabled: true # paths: # - D:/World of Warcraft/Interface/AddOns # ignore:
Drop support for node 0.6 and 0.8.
language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" - "0.8" - "0.6" - "iojs" before_script: - npm install -g istanbul jasmine script: - npm test
language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" - "iojs" before_script: - npm install -g istanbul jasmine script: - npm test
Update Travis for only builds that may pass eventually
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - nightly env: matrix: - DOCTRINE_ORM_VERSION=~2.1.0 - DOCTRINE_ORM_VERSION=~2.2.0 - DOCTRINE_ORM_VERSION=~2.3.0 - DOCTRINE_ORM_VERSION=~2.4.0 - DOCTRINE_ORM_VERSION=dev-master matrix: exclude: - php: 5.3 env: DOCTRINE_ORM_VERSION=dev-...
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - nightly env: matrix: - DOCTRINE_ORM_VERSION=~2.1.0 - DOCTRINE_ORM_VERSION=~2.2.0 - DOCTRINE_ORM_VERSION=~2.3.0 - DOCTRINE_ORM_VERSION=~2.4.0 matrix: exclude: - php hhvm DOCTRINE_ORM_VERSION=~2.1.0 - php hhvm DOCTRINE_ORM_VERSION=...
Install `shellcheck` using `apt` addon
language: bash sudo: required dist: trusty before_install: - echo "deb http://archive.ubuntu.com/ubuntu/ trusty-backports universe" | sudo tee -a /etc/apt/sources.list - sudo apt-get update -qq - sudo apt-get install shellcheck -y script: - shellcheck $(find . -maxdepth 1 -type f -executable)
language: bash sudo: required dist: trusty addons: apt: sources: - sourceline: "deb http://archive.ubuntu.com/ubuntu/ trusty-backports universe" packages: - shellcheck script: - shellcheck $(find . -maxdepth 1 -type f -executable)
Fix with_build_value example once more
name: with_built_value publish_to: none version: 1.0.0 environment: sdk: '>=2.6.0 <3.0.0' dependencies: moor: ^4.0.0 built_value: ^8.0.0 dev_dependencies: moor_generator: ^4.0.0 built_value_generator: ^8.0.0 build_runner: ^1.11.1 dependency_overrides: moor: path: ../../moor moor_generator: p...
name: with_built_value publish_to: none version: 1.0.0 environment: sdk: '>=2.6.0 <3.0.0' dependencies: moor: ^4.0.0 built_value: ^8.0.0 dev_dependencies: moor_generator: ^4.0.0 built_value_generator: ^8.0.0 build_runner: ^1.11.1 dependency_overrides: moor: path: ../../moor moor_generator: p...
Add ZFS backing store to the container create role
--- # 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 ...
Add oraclejdk7 and oraclejdk8 Travis CI builds
language: java jdk: - openjdk6 - openjdk7 install: mvn install -DskipTests=true -Dgpg.skip=true script: - mvn clean verify -Dgpg.skip=true after_success: - mvn -Pcoverage clean cobertura:cobertura org.eluder.coveralls:coveralls-maven-plugin:report
language: java jdk: - openjdk6 - openjdk7 - oraclejdk7 - oraclejdk8 install: mvn install -DskipTests=true -Dgpg.skip=true script: - mvn clean verify -Dgpg.skip=true after_success: - mvn -Pcoverage clean cobertura:cobertura org.eluder.coveralls:coveralls-maven-plugin:report
Configure Travis to also execute Gatling simulations in CI run
dist: trusty sudo: required language: scala scala: - 2.12.6 jdk: - oraclejdk8
dist: trusty sudo: required language: scala scala: - 2.12.6 jdk: - oraclejdk8 script: sbt ++$TRAVIS_SCALA_VERSION test && sbt ++$TRAVIS_SCALA_VERSION gatling:test
Use appengine 1.8.7 for testing
language: python python: 2.7 before_script: - mkdir -p vendors - wget http://googleappengine.googlecode.com/files/google_appengine_1.8.4.zip -nv - unzip -qd vendors google_appengine_1.8.4.zip - ln -s vendors/google_appengine/dev_appserver.py . install: - pip install -r requirements.txt --use-mirrors :scri...
language: python python: 2.7 before_script: - mkdir -p vendors - wget http://googleappengine.googlecode.com/files/google_appengine_1.8.7.zip -nv - unzip -qd vendors google_appengine_1.8.7.zip - ln -s vendors/google_appengine/dev_appserver.py . install: - pip install -r requirements.txt --use-mirrors :scri...
Use Node 4.2 to test
language: node_js node_js: - "4.1" before_script: - npm install -g gulp script: gulp scripts && gulp test
language: node_js node_js: - "4.2" before_script: - npm install -g gulp script: gulp scripts && gulp test
Exclude rails 4.2 when running ruby 2.7
sudo: false language: ruby cache: bundler rvm: - 2.5 - 2.6 - 2.7 env: - DB=pg - DB=mysql2 - DB=sqlite3 gemfile: - gemfiles/gemfile_42.gemfile - gemfiles/gemfile_50.gemfile - gemfiles/gemfile_51.gemfile - gemfiles/gemfile_52.gemfile - gemfiles/gemfile_60.gemfile services: - mysql - postgres...
sudo: false language: ruby cache: bundler rvm: - 2.5 - 2.6 - 2.7 env: - DB=pg - DB=mysql2 - DB=sqlite3 gemfile: - gemfiles/gemfile_42.gemfile - gemfiles/gemfile_50.gemfile - gemfiles/gemfile_51.gemfile - gemfiles/gemfile_52.gemfile - gemfiles/gemfile_60.gemfile jobs: exclude: - rvm: 2.7 ...
Test on Node.js v7 and drop v5
language: node_js sudo: false node_js: - "6" - "5" - "4"
language: node_js sudo: false node_js: - "7" - "6" - "4"
Switch to openjdk, as Xenial does not include oracle java 8
# 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 in writing, software # distributed un...
# 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 in writing, software # distributed un...
Stop to report codecov temporary
language: java jdk: - openjdk8 branches: only: - master cache: directories: - '$HOME/.m2/repository' - '$HOME/.gradle' before_script: - "chmod +x gradlew" script: - "./gradlew clean build" - "./gradlew clean jacocoTestReport" after_success: - "bash <(curl -s https://codecov.io/bash) -t 173d...
language: java jdk: - openjdk8 branches: only: - master cache: directories: - '$HOME/.m2/repository' - '$HOME/.gradle' before_script: - "chmod +x gradlew" script: - "./gradlew clean build" #- "./gradlew clean jacocoTestReport" after_success: #:- "bash <(curl -s https://codecov.io/bash) -t 1...
Install coveralls command line utils
# Config file for automatic testing at travis-ci.org language: python # Use container based infrastructure sudo: false python: - 2.6 - 2.7 - 3.3 - 3.4 env: matrix: - DJANGO=1.6 CMD=./test - DJANGO=1.7 CMD=./test matrix: allow_failures: - python: 3.3 - python: 3.4 - env: DJANGO=1.7 CMD=....
# Config file for automatic testing at travis-ci.org language: python # Use container based infrastructure sudo: false python: - 2.6 - 2.7 - 3.3 - 3.4 env: matrix: - DJANGO=1.6 CMD=./test - DJANGO=1.7 CMD=./test matrix: allow_failures: - python: 3.3 - python: 3.4 - env: DJANGO=1.7 CMD=....
Fix architecture variant image names for release yaml
image: mplatform/mquery:VERS manifests: - image: mplatform/mquery:linux_ppc64le_VERS platform: architecture: ppc64le os: linux - image: mplatform/mquery:linux_amd64_VERS platform: architecture: amd64 os: linux - image: mplatform/mquery:linux_i386_VERS platform...
image: mplatform/mquery:VERS manifests: - image: mplatform/mquery:linux_ppc64le_VERS platform: architecture: ppc64le os: linux - image: mplatform/mquery:linux_amd64_VERS platform: architecture: amd64 os: linux - image: mplatform/mquery:linux_i386_VERS platform...
Drop support for EOL Ruby versions
after_success: - bundle exec codeclimate-test-reporter before_install: - gem update bundler rake branches: only: - master - v3 env: global: - secure: | # CODECLIMATE_REPO_TOKEN BIemhM273wHZMpuULDMYGPsxYdfw+NMw7IQbOD6gy5r+dha07y9ssTYYE5Gn t1ptAb09lhQ4gexXTr83i6angMrnHgQ1ZX2wfeoZ0FvWDH...
after_success: - bundle exec codeclimate-test-reporter before_install: - gem update bundler rake branches: only: - master - v3 env: global: - secure: | # CODECLIMATE_REPO_TOKEN BIemhM273wHZMpuULDMYGPsxYdfw+NMw7IQbOD6gy5r+dha07y9ssTYYE5Gn t1ptAb09lhQ4gexXTr83i6angMrnHgQ1ZX2wfeoZ0FvWDH...
Test supported versions of Django
language: python sudo: false python: - "2.7" - "3.3" - "3.4" - "3.5" env: - DJANGO="Django<1.4" - DJANGO="Django<1.5" - DJANGO="Django<1.6" - DJANGO="Django<1.7" - DJANGO="Django<1.8" - DJANGO="Django<1.9" install: - pip install -q $DJANGO - pip install flake8 --use-mirrors before_script: ...
language: python sudo: false python: - "2.7" - "3.3" - "3.4" - "3.5" env: - DJANGO="Django<1.9" - DJANGO="Django<1.10" install: - pip install -q $DJANGO - pip install flake8 --use-mirrors before_script: - chmod +x runtravis.sh script: - flake8 --ignore=E501,W391 rpc4django - ./runtravis.sh
Use dist:trusty to workaround icns2png bug
language: node_js node_js: - "4.4" cache: directories: - node_modules - app/node_modules - $HOME/.electron - $HOME/.cache script: - npm run dist
language: node_js node_js: - "4.4" cache: directories: - node_modules - app/node_modules - $HOME/.electron - $HOME/.cache sudo: required dist: trusty script: - npm run dist
Add local maven repository caching.
language: java env: global: secure: EAD4D8NCr0O+5OnUstp7zRWvXKakXUenmMbJ8Uo2kItd0SFe8SAo/c5MjXkIax4cLZiy78BpBacG+hZGi6OfzQsLllS+B/wA3dD08nB9R1vA+02II6dZHWADv2h3Z+4WN+gWzBcZTXbqiAE7c7NLhSsBhWvXZHwV8575+D/hXu0= after_success: - echo "<settings><servers><server><id>ossrh</id><username>\${env.OSSRH_USER}</usernam...
language: java env: global: secure: EAD4D8NCr0O+5OnUstp7zRWvXKakXUenmMbJ8Uo2kItd0SFe8SAo/c5MjXkIax4cLZiy78BpBacG+hZGi6OfzQsLllS+B/wA3dD08nB9R1vA+02II6dZHWADv2h3Z+4WN+gWzBcZTXbqiAE7c7NLhSsBhWvXZHwV8575+D/hXu0= cache: directories: - $HOME/.m2 after_success: - echo "<settings><servers><server><id>ossrh</i...
Add ruby-2.2.3 to build configuration
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.1 - 2.2.2 script: bundle exec rspec spec branches: only: - master
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.1 - 2.2.2 - 2.2.3 script: bundle exec rspec spec branches: only: - master
Revert "Add Ruby v1.9.3 to Travis CI build matrix."
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3
language: ruby rvm: - 2.1.0 - 2.0.0
Set Travis to use Java 8
language: java install: true script: mvn clean install -Dontopia.jetty.port=9090 cache: directories: - $HOME/.m2
language: java install: true jdk: - oraclejdk8 script: mvn clean install -Dontopia.jetty.port=9090 cache: directories: - $HOME/.m2
Add request bin webhook to test Travis
language: ruby branches: only: - master - staging bundler_args: --without mysql development notifications: email: - common-effort@pivotallabs.com webhooks: - http://projectmonitor-staging.pivotallabs.com/projects/d30b8651-bd0f-40ac-87c2-0fd662363e91/status rvm: - 1.9.3 before_script: - "s...
language: ruby branches: only: - master - staging bundler_args: --without mysql development notifications: email: - common-effort@pivotallabs.com webhooks: - http://projectmonitor-staging.pivotallabs.com/projects/d30b8651-bd0f-40ac-87c2-0fd662363e91/status - http://requestb.in/1ays2c01 rvm...
Remove HHVM from allowed failures (no more show-stoppers)
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer selfupdate - composer install --prefer-source --dev install: - composer install script: - php bin/phpunit -c build/ --coverage-clover build/logs/clover.xml - php bin/phpcs -n --standard=PSR1,PSR2 --report=full src/ ## - phpunit...
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer selfupdate - composer install --prefer-source --dev install: - composer install script: - php bin/phpunit -c build/ --coverage-clover build/logs/clover.xml - php bin/phpcs -n --standard=PSR1,PSR2 --report=full src/ ## - php bin...
Use latest and greatest Travis dist (bionic)
dist: xenial language: python python: - '2.7' - '3.4' - '3.5' - '3.6' - '3.7' - '3.8' cache: pip install: - make install-dev before_script: - make lint script: - make test after_success: - pip install codecov - codecov
dist: bionic language: python python: - '2.7' - '3.4' - '3.5' - '3.6' - '3.7' - '3.8' cache: pip install: - make install-dev before_script: - make lint script: - make test after_success: - pip install codecov - codecov
Add Node.js 9 to Travis build matrix
language: node_js node_js: - '8' - '7' - '6' - '5' - '4' - '0.12' - '0.10' notifications: email: - watson@elastic.co slack: rooms: secure: PR+vjohDfGmidHhaIboj896iad3OIa4pked1Mib+XB5FF3tWfpDjBBNmEBizRbpwzxy4oHgOr22LBNvi+zkE674wXY3VUM+Wx9pJztlqotcON/hBjcJd993MfixRHN0RShxn4omaLfiqrZ+8iUFD5MQKdLKqBG/IG2tox...
language: node_js node_js: - '9' - '8' - '7' - '6' - '5' - '4' - '0.12' - '0.10' notifications: email: - watson@elastic.co slack: rooms: secure: PR+vjohDfGmidHhaIboj896iad3OIa4pked1Mib+XB5FF3tWfpDjBBNmEBizRbpwzxy4oHgOr22LBNvi+zkE674wXY3VUM+Wx9pJztlqotcON/hBjcJd993MfixRHN0RShxn4omaLfiqrZ+8iUFD5MQKdLKqBG/...
Fix for coveralls finding coverage data.
language: python install: - pip install tox - pip install coveralls script: - tox env: - TOXENV: py34 after_success: coveralls
language: python install: - pip install tox - pip install coveralls script: - tox env: - TOXENV: py34 after_success: coveralls --rcfile=humantrafficking_tips/.coveragerc
Test against PHP 7.0 and HHVM
language: php php: - 5.4 - 5.5 - 5.6 before_script: - composer install --dev
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm before_script: - travis_retry composer self-update - travis_retry composer install --prefer-dist --dev
Update Travis CI webhooks url
rvm: - 2.1.2 cache: bundler before_script: - 'git submodule init' - 'git submodule update' - 'cd spec/dummy/' - 'cp .env.example ../../.env' - './bin/bootstrap' - 'bundle exec rake db:migrate' - 'rm -rf spec/' - 'cd ../../' script: - 'bundle exec rspec' notifications: webhooks: http://neighborl...
rvm: - 2.1.2 cache: bundler before_script: - 'git submodule init' - 'git submodule update' - 'cd spec/dummy/' - 'cp .env.example ../../.env' - './bin/bootstrap' - 'bundle exec rake db:migrate' - 'rm -rf spec/' - 'cd ../../' script: - 'bundle exec rspec' notifications: webhooks: https://ci.neigh...
Add matrix for newer gcc
language: cpp install: - export INITIAL_DIR=$PWD - wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz - tar -xvf /tmp/cmake.tar.gz - export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH - git clone https://github.com/google/googletest - cd googlete...
language: cpp install: - export INITIAL_DIR=$PWD - wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz - tar -xvf /tmp/cmake.tar.gz - export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH - git clone https://github.com/google/googletest - cd googlete...
Add --ignore-scripts to avoid install error in Travis
language: node_js node_js: - "6" install: - npm install script: - npm run lint
language: node_js node_js: - "6" install: - npm install --ignore-scripts script: - npm run lint
Revert "Try to repair HHVM builds"
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm before_script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-add .travis.php.ini; fi;' - if [[ "$TRAVIS_PHP_VERSION" == hhvm* ]]; then echo -e '\nhhvm.libxml.ext_entity_whitelist = "file"\n ...
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm before_script: - echo 'date.timezone = "UTC"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - travis_retry pecl install SPL_Types - travis_retry composer selfupdate - travis_retry compose...
Fix python3.7 test environment in Travis
sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" install: pip install tox-travis tox script: tox
sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7-dev" install: pip install tox-travis tox script: tox
Use tag instead of branch to publish
language: scala os: - linux scala: - 2.10.4 jdk: - openjdk6 script: - sbt ++$TRAVIS_SCALA_VERSION scripted after_success: - | test "${TRAVIS_BRANCH}" = 'production' && sh "$TRAVIS_BUILD_DIR/.travis.credentials.sh" && sbt publish env: global: - secure: dlkY+lkgveiPgRK6oERBvgl1bbTvSEnYGWw3gZ+Hf11KLhgP60+Uj6UgEu7Zs4...
language: scala os: - linux scala: - 2.10.4 jdk: - openjdk6 script: - sbt ++$TRAVIS_SCALA_VERSION scripted after_success: - | test "${TRAVIS_TAG}" && sh "$TRAVIS_BUILD_DIR/.travis.credentials.sh" && sbt publish env: global: - secure: dlkY+lkgveiPgRK6oERBvgl1bbTvSEnYGWw3gZ+Hf11KLhgP60+Uj6UgEu7Zs4qhMbFF/rulBWAw+c+x...
REmove bad django version from tests.
language: python python: - 2.6 - 2.7 env: - DJANGO_VERSION=Django==1.3.4 - DJANGO_VERSION=Django==1.3.7 - DJANGO_VERSION=Django==1.4.3 - DJANGO_VERSION=Django==1.4.4 - DJANGO_VERSION=Django==1.4.5 - DJANGO_VERSION=Django==1.5 - DJANGO_VERSION=Django==1.5.1 # command to install dependencies install:...
language: python python: - 2.6 - 2.7 env: - DJANGO_VERSION=Django==1.3.4 - DJANGO_VERSION=Django==1.3.7 - DJANGO_VERSION=Django==1.4.3 - DJANGO_VERSION=Django==1.4.5 - DJANGO_VERSION=Django==1.5 - DJANGO_VERSION=Django==1.5.1 # command to install dependencies install: - pip install --use-mirrors -r...
Change future flag to true
# Site title and subtitle. This is used in _includes/header.html title: 'jekyll-docs-template' subtitle: 'Painless documentation for your projects' # Default categories (in order) to appear in the navigation sections: [ ['doc', 'Documentation'], ['tut', 'Tutorial'], ['ref', 'Reference'], ['dev', 'Devel...
# Site title and subtitle. This is used in _includes/header.html title: 'jekyll-docs-template' subtitle: 'Painless documentation for your projects' # Default categories (in order) to appear in the navigation sections: [ ['doc', 'Documentation'], ['tut', 'Tutorial'], ['ref', 'Reference'], ['dev', 'Devel...
Add 'ruby' to the license whitelist
--- - - :whitelist - MIT - :who: :why: :versions: [] :when: 2017-07-23 05:28:27.330309735 Z - - :whitelist - LGPL-2.1+ - :who: :why: :versions: [] :when: 2017-07-23 05:29:14.740010360 Z - - :whitelist - LGPLv2+ - :who: :why: :versions: [] :when: 2017-07-23 05:29:28....
--- - - :whitelist - MIT - :who: :why: :versions: [] :when: 2017-07-23 05:28:27.330309735 Z - - :whitelist - LGPL-2.1+ - :who: :why: :versions: [] :when: 2017-07-23 05:29:14.740010360 Z - - :whitelist - LGPLv2+ - :who: :why: :versions: [] :when: 2017-07-23 05:29:28....
Add typing extensions to conda yaml file
{% set name = "huggingface_hub" %} package: name: "{{ name|lower }}" version: "{{ HUB_VERSION }}" source: path: ../../ build: noarch: python requirements: host: - python - pip - filelock - requests - tqdm run: - python - pip - filelock - requests - tqdm test: i...
{% set name = "huggingface_hub" %} package: name: "{{ name|lower }}" version: "{{ HUB_VERSION }}" source: path: ../../ build: noarch: python requirements: host: - python - pip - filelock - requests - tqdm - typing-extensions run: - python - pip - filelock - reques...
Update from Hackage at 2017-08-29T11:59:30Z
homepage: http://code.haskell.org/~dons/code/strict-concurrency changelog-type: '' hash: 70e871fd6fd7dffa2dc373fda3a062e9b9efde6cbab873b250ff5731ca1a7850 test-bench-deps: {} maintainer: Don Stewart <dons@galois.com> synopsis: Strict concurrency abstractions changelog: '' basic-deps: base: ! '>=4 && <4.6' deepseq: !...
homepage: https://github.com/ygale/strict-concurrency changelog-type: '' hash: 9782540dbda9ca4925573ed9c1fc0e9e613cb7081d7e2976fa68434106cd30f0 test-bench-deps: {} maintainer: Yitz Gale <gale@sefer.org> synopsis: Strict concurrency abstractions changelog: '' basic-deps: base: ! '>=4 && <5' deepseq: ! '>=1' all-vers...
Update CircleCI script for new targets
machine: environment: TERM: 'dumb' ADB_INSTALL_TIMEOUT: 10 PATH: "/home/ubuntu/buck/bin:$PATH" java: version: 'oraclejdk8' dependencies: override: # Buck and Android - if [[ ! -e /home/ubuntu/buck ]]; then git clone https://github.com/facebook/buck.git /home/ubuntu/buck; fi - cd /home...
machine: environment: TERM: 'dumb' ADB_INSTALL_TIMEOUT: 10 PATH: "/home/ubuntu/buck/bin:$PATH" java: version: 'oraclejdk8' dependencies: override: # Buck and Android - if [[ ! -e /home/ubuntu/buck ]]; then git clone https://github.com/facebook/buck.git /home/ubuntu/buck; fi - cd /home...
Use host network mode for Girder
version: '2' services: girder: build: context: . dockerfile: Dockerfile.girder command: -d ${MONGODB_URL} nginx: build: context: . dockerfile: Dockerfile.nginx ports: - 8080:80 depends_on: - 'girder' rabbitmq: image: rabbitmq celery-...
version: '2' services: girder: network_mode: "host" build: context: . dockerfile: Dockerfile.girder command: -d ${MONGODB_URL} nginx: build: context: . dockerfile: Dockerfile.nginx ports: - 8080:80 depends_on: - 'girder' rabbitmq: i...
Remove out of date comment
# You must create an API in kong pointing to this service and tied to /.well-known/acme-challenge # it will always be inaccessible as certbot standalone is the http server, and only exists while # it's trying to acquire certificates # Take note of the namespace below, and change as needed apiVersion: v1 kind: Service m...
# You must create an API in kong pointing to this service and tied to /.well-known/acme-challenge # it will always be inaccessible as certbot standalone is the http server, and only exists while # it's trying to acquire certificates # Take note of the namespace below, and change as needed apiVersion: v1 kind: Service m...
Update zict recipe to version 0.1.2
{% set version = "0.1.1" %} {% set name = "zict" %} package: name: {{ name }} version: "{{ version }}" source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: e4e2758d8f202a5bb7fd94f45b87cccf2092bfc97786cc0c8321ab35d72...
{% set version = "0.1.2" %} {% set name = "zict" %} package: name: {{ name }} version: "{{ version }}" source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 9e4c951c2149c1ed3a201e56c07269b058081370bd1f20558d7fadc0046...
Create a single Ec2 instance.
---
--- - name: Create a named/tagged EC2 instance ec2: key_name: "ec2_instance_demo_key" instance_type: t2.micro image: ami-6d1c2007 wait: yes exact_count: 1 assign_public_ip: yes instance_tags: type: webserver tags: [ 'ec2' ]
Fix Java setup in GitHub Actions
# This is a basic workflow to help you get started with Actions name: Java CI # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the main branch on: [push, pull_request] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs...
# This is a basic workflow to help you get started with Actions name: Java CI # Controls when the action will run. Triggers the workflow on push or pull request # events but only for the main branch on: [push, pull_request] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs...
Adjust nodeTypes to styleguide changes
'DL.Gallery:Gallery': superTypes: 'TYPO3.Neos:Content': TRUE ui: label: 'Gallery' icon: 'icon-picture' position: 300 inspector: groups: source: label: 'Source' presentation: label: 'Presentation' properties: tag: type: string ui: ...
'DL.Gallery:Gallery': superTypes: 'TYPO3.Neos:Content': true ui: label: Gallery icon: icon-picture position: 300 inspector: groups: source: label: Source presentation: label: Presentation properties: tag: type: string ui: label:...
Update from Hackage at 2016-11-07T14:17:30Z
homepage: https://github.com/roelvandijk/modbus-tcp changelog-type: '' hash: 00e3d2ed799651199a1454fb0072edb335e194fd229859cca92827f012ffd4b0 test-bench-deps: {} maintainer: Roel van Dijk <roel@lambdacube.nl> synopsis: Communicate with Modbus devices over TCP changelog: '' basic-deps: cereal: ! '>=0.5.1 && <0.6' by...
homepage: https://github.com/roelvandijk/modbus-tcp changelog-type: '' hash: e0d89cfb45f72f05cc5a3ead3ca90eb258c34fc457a242c3c05bee00f709404a test-bench-deps: {} maintainer: Roel van Dijk <roel@lambdacube.nl> synopsis: Communicate with Modbus devices over TCP changelog: '' basic-deps: cereal: ! '>=0.5.1 && <0.6' by...
Update from Hackage at 2016-06-14T04:22:22+0000
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...
homepage: '' changelog-type: '' hash: 43caab045318d4c8f486b48ea2bf269067d8639fdfe65fade4033348b901842b 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...
Test against Python 3.2 and 3.3
language: python python: - 2.6 - 2.7 env: - DJANGO=Django==1.3.7 - DJANGO=Django==1.4.2 - DJANGO=Django==1.5.0 - DJANGO=https://github.com/django/django/tarball/stable/1.6.x install: - pip install --use-mirrors $DJANGO - pip install --use-mirrors coverage coveralls script: coverage run setup.py test...
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 env: - DJANGO=Django==1.3.7 - DJANGO=Django==1.4.2 - DJANGO=Django==1.5.0 - DJANGO=https://github.com/django/django/tarball/stable/1.6.x install: - pip install --use-mirrors $DJANGO - pip install --use-mirrors coverage coveralls script: coverage r...
Comment out ruby 2.1.0 for testing
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 gemfile: - gemfiles/activemodel_3_2_x.gemfile - gemfiles/activemodel_4_0_x.gemfile # - gemfiles/activemodel_4_1_x.gemfile
language: ruby rvm: - 1.9.3 - 2.0.0 # - 2.1.0 gemfile: - gemfiles/activemodel_3_2_x.gemfile - gemfiles/activemodel_4_0_x.gemfile # - gemfiles/activemodel_4_1_x.gemfile
Add cleanup tasks for disabling IPMI watchdog
--- - name: Remove ZFS modprobe configuration file: dest: /etc/modprobe.d/zfs.conf state: absent when: > (pve_zfs_options is not defined) or (pve_zfs_options is defined and not pve_zfs_options) or (not pve_zfs_enabled) - name: Disable loading of ZFS module on init file: dest: /etc/modules...
--- - name: Remove ZFS modprobe configuration file: dest: /etc/modprobe.d/zfs.conf state: absent when: > (pve_zfs_options is not defined) or (pve_zfs_options is defined and not pve_zfs_options) or (not pve_zfs_enabled) - name: Disable loading of ZFS module on init file: dest: /etc/modules...
Update from Hackage at 2017-12-14T06:08:13Z
homepage: '' changelog-type: '' hash: 1f554e8f992a44df93b0055b3e2eaf3f0729a38b0ebb1b23b23273fa1b41543e test-bench-deps: {} maintainer: strake888@gmail.com synopsis: Induction over natural numbers changelog: '' basic-deps: peano: ! '>=0.1 && <0.2' base: ! '>=4.9 && <5' all-versions: - '0.1.0.0' - '0.1.0.1' author: M...
homepage: '' changelog-type: '' hash: 40184361d998a6fe8d737d58e2b54d66f26f0d55a0cc576dde90a6da848f8c6c test-bench-deps: {} maintainer: strake888@gmail.com synopsis: Induction over natural numbers changelog: '' basic-deps: peano: ! '>=0.1 && <0.2' base: ! '>=4.9 && <5' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.1....
ADD Fixed Mkdocs and new index.md
site_name: Fiware-iotagent-json site_url: https://fiware-iotagent-ul.readthedocs.org repo_url: https://github.com/telefonicaid/iotagent-json.git site_description: IoT Agent JSON (HTTP or MQTT) Documentation docs_dir: / site_dir: html markdown_extensions: [toc,fenced_code] use_directory_urls: false theme: readt...
site_name: Fiware-iotagent-json site_url: https://fiware-iotagent-ul.readthedocs.org repo_url: https://github.com/telefonicaid/iotagent-json.git site_description: IoT Agent JSON (HTTP or MQTT) Documentation docs_dir: docs site_dir: html markdown_extensions: [toc,fenced_code] use_directory_urls: false theme: readthedocs...
Update WairToNow to 5.0 (50000)
Categories: - Navigation License: GPL-2.0-only AuthorName: Mike Rieker WebSite: https://www.outerworldapps.com SourceCode: https://github.com/mrieker/WairToNow IssueTracker: https://github.com/mrieker/WairToNow/issues Changelog: https://github.com/mrieker/WairToNow/releases AutoName: WairToNow RepoType: git Repo: h...
Categories: - Navigation License: GPL-2.0-only AuthorName: Mike Rieker WebSite: https://www.outerworldapps.com SourceCode: https://github.com/mrieker/WairToNow IssueTracker: https://github.com/mrieker/WairToNow/issues Changelog: https://github.com/mrieker/WairToNow/releases AutoName: WairToNow RepoType: git Repo: h...
Add python-virtualenv to the python dependencies
--- - name: update apt index apt: update_cache=yes - name: python dependencies apt: pkg={{ item }} with_items: - python-pip - python-libxml2 - python-lxml - python-greenlet - python-openssl - python-dev - python-httplib2 - python-software-properties - apt: pkg={{ item }} with_i...
--- - name: update apt index apt: update_cache=yes - name: python dependencies apt: pkg={{ item }} with_items: - python-pip - python-libxml2 - python-lxml - python-greenlet - python-openssl - python-dev - python-httplib2 - python-software-properties - python-virtualenv - apt:...
Add frontend and move cd
name: Cypress-Tests on: workflow_dispatch: schedule: - cron: '30 9 * * *' jobs: test_schedule: runs-on: ubuntu-latest steps: - name: setup folder run: | cd .. - name: Run cypress tests run: npx cypress run --config-file false -s ["cypress/integration/FirstVoicesDev/v2_*.spec.js"] ...
name: Cypress-Tests on: workflow_dispatch: schedule: - cron: '30 9 * * *' jobs: test_schedule: runs-on: ubuntu-latest steps: - name: setup folder run: cd .. - name: Run cypress tests run: npx cypress run --config-file false -s ["frontend/cypress/integration/FirstVoicesDev/v2_*.spec.js"] ...
Update from Hackage at 2016-01-29T13:21:19+0000
homepage: '' changelog-type: '' hash: 3454d27a2dcc143773391c2649a1ffd0fa2e0ef444ba8f33c79163d1cf72345d test-bench-deps: {} maintainer: Magnus Carlsson <magnus@carlssonia.org> synopsis: Library for incremental computing. changelog: '' basic-deps: base: <5 all-versions: - '0.1' - '0.22' - '0.23' author: Magnus Carlsson...
homepage: '' changelog-type: '' hash: 36c76cf96db195ede96306358e65aec311211569c236983efb473c3e97b864b5 test-bench-deps: {} maintainer: Magnus Carlsson <magnus@carlssonia.org> synopsis: Library for incremental computing. changelog: '' basic-deps: base: <4.8 all-versions: - '0.1' - '0.22' - '0.23' author: Magnus Carlss...
Revert to manually setting up GCC9
name: Tests on: [push] jobs: tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 with: submodules: 'true' - name: build tests and run env: CC: gcc-9 CXX: g++-9 run: | cd tests mkdir build && cd build cmake .. ...
name: Tests on: [push] jobs: tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 with: submodules: 'true' - name: setup run: | sudo apt install software-properties-common sudo add-apt-repository ppa:ubuntu-toolchain-r/test sudo apt insta...
Use correct version of Python
name: Tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest] python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9'] steps: - uses: actions/checkout@v2...
name: Tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest] python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9'] steps: - uses: actions/checkout@v2...
Fix link to flake8 repository
repos: - repo: https://github.com/psf/black rev: 22.3.0 hooks: - id: black - repo: https://gitlab.com/pycqa/flake8 rev: "3.9.2" hooks: - id: flake8 - repo: https://github.com/asottile/pyupgrade rev: v2.32.1 hooks: - id: pyupgrade args: [--py36-plus]
repos: - repo: https://github.com/psf/black rev: 22.3.0 hooks: - id: black - repo: https://github.com/pycqa/flake8 rev: "3.9.2" hooks: - id: flake8 - repo: https://github.com/asottile/pyupgrade rev: v2.32.1 hooks: - id: pyupgrade args: [--py36-plus]
Fix syntax by removing "mysql:"
mysql: apiVersion: v1 kind: Service metadata: name: accounting-mysql labels: app: accounting spec: clusterIP: ports: - port: 3306 protocol: TCP selector: name: accounting-mysql-rc --- apiVersion: v1 kind: ReplicationController metadata: name: accounting-server-rc spec: replicas: 1 selector...
apiVersion: v1 kind: Service metadata: name: accounting-mysql labels: app: accounting spec: clusterIP: ports: - port: 3306 protocol: TCP selector: name: accounting-mysql-rc --- apiVersion: v1 kind: ReplicationController metadata: name: accounting-server-rc spec: replicas: 1 selector: n...
Enable docker builds for all branches
machine: post: - cd $HOME && git clone --depth 1 -v git@github.com:clever/ci-scripts.git && cd ci-scripts && git show --oneline -s - $HOME/ci-scripts/circleci/golang-install 1.7 services: - docker checkout: post: - $HOME/ci-scripts/circleci/golang-move-project compile: override: - make build test: o...
machine: post: - cd $HOME && git clone --depth 1 -v git@github.com:clever/ci-scripts.git && cd ci-scripts && git show --oneline -s - $HOME/ci-scripts/circleci/golang-install 1.7 services: - docker checkout: post: - $HOME/ci-scripts/circleci/golang-move-project compile: override: - make build test: o...
Update 1010! Klooni to 0.8.5 (850)
Categories: - Games License: GPL-3.0-or-later WebSite: https://lonamiwebs.github.io/klooni SourceCode: https://github.com/LonamiWebs/Klooni1010 IssueTracker: https://github.com/LonamiWebs/Klooni1010/issues Changelog: https://github.com/LonamiWebs/Klooni1010/releases AutoName: 1010! Klooni RepoType: git Repo: https:...
Categories: - Games License: GPL-3.0-or-later WebSite: https://lonamiwebs.github.io/klooni SourceCode: https://github.com/LonamiWebs/Klooni1010 IssueTracker: https://github.com/LonamiWebs/Klooni1010/issues Changelog: https://github.com/LonamiWebs/Klooni1010/releases AutoName: 1010! Klooni RepoType: git Repo: https:...
Extend description of failing tests
freebsd_instance: image: freebsd-11-2-release-amd64 task: install_script: - pkg install -y cmake - pkg install -y git - pkg install -y ninja - pkg install -y yajl script: - mkdir build && cd build # The tests for the process plugin stall on FreeBSD # The test for the network plugin ...
freebsd_instance: image: freebsd-11-2-release-amd64 task: install_script: - pkg install -y cmake - pkg install -y git - pkg install -y ninja - pkg install -y yajl script: - mkdir build && cd build # - The tests for the process plugin and library stall on FreeBSD: https://issues.libelekt...
Move z-schema to separate line
language: csharp dist: trusty sudo: required mono: none dotnet: 1.0.0-preview2.1-003177 mono: - latest os: - linux node_js: - '6.10.2' before_install: - npm install compare-obj diff fs path child_process - npm install -g z-schema eslint coffeelint csslint jshint standard htmlhint jslint stylelint tslint typescript ...
language: csharp dist: trusty sudo: required mono: none dotnet: 1.0.0-preview2.1-003177 mono: - latest os: - linux node_js: - '6.10.2' before_install: - npm install -g z-schema - npm install compare-obj diff fs path child_process - npm install -g eslint coffeelint csslint jshint standard htmlhint jslint stylelint t...
Update from Hackage at 2015-05-15T18:40:49+0000
homepage: https://github.com/michaelochurch/fixedwidth-hs changelog-type: '' hash: c4feff8a5b31f4217e4e61f7d522f3eb79ad04567e7bb1a4e579df1fd96e9c57 test-bench-deps: {} maintainer: michael.o.church@gmail.com synopsis: Quick parsing of fixed-width data formats. changelog: '' basic-deps: bytestring: ! '>=0.10' base: =...
homepage: https://github.com/michaelochurch/fixedwidth-hs changelog-type: '' hash: 95d3a7f3bc7668aa349b40f42b36f307824090b47ddc67bd6df45b39548c8ad9 test-bench-deps: {} maintainer: michael.o.church@gmail.com synopsis: Quick parsing of fixed-width data formats. changelog: '' basic-deps: bytestring: ! '>=0.10' base: =...
Disable JRuby - Sinatra fails
language: ruby rvm: - "1.9.2" - "1.9.3" - jruby-19mode # JRuby in 1.9 mode # Disabled for the time being, see https://github.com/dmytro/nagira/issues/9 # - rbx-19mode env: - RACK_ENV=test branches: only: - master script: bundle exec rspec spec
language: ruby rvm: - "1.9.2" - "1.9.3" # - jruby-19mode # JRuby in 1.9 mode - Sinatra fails. Disabled on Mar/15'13 # Disabled for the time being, see https://github.com/dmytro/nagira/issues/9 # - rbx-19mode env: - RACK_ENV=test branches: only: - master script: bundle exec rspec spec
Test against 2.4 and not 2.1
language: ruby rvm: - 2.1 - 2.2 - 2.3 - jruby - rbx-2 script: "bundle exec rspec spec" before_install: - gem install bundler matrix: allow_failures: - rvm: jruby - rvm: rbx-2 include: - rvm: 2.0 gemfile: gemfiles/ruby20.gemfile
language: ruby rvm: - 2.2 - 2.3 - 2.4.1 - jruby - rbx-2 script: "bundle exec rspec spec" before_install: - gem install bundler matrix: allow_failures: - rvm: jruby - rvm: rbx-2 include: - rvm: 2.0 gemfile: gemfiles/ruby20.gemfile
Update Travis config to test ruby 2.1.2.
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 script: - RAILS_ENV=test bundle exec rake db:schema:load - bundle exec rake test
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.2 script: - RAILS_ENV=test bundle exec rake db:schema:load - bundle exec rake test
Refactor Travis config to use jobs
language: go env: - WITH_COVERAGE=true - GOFLAGS='-race' go_import_path: github.com/google/monologue matrix: fast_finish: true install: - go get -d -t ./... # Install golangci-lint as per https://github.com/golangci/golangci-lint#install - curl -sfL https://install.goreleaser.com/github.com/golangci/gol...
version: ~> 1.0 language: go go_import_path: github.com/google/monologue jobs: include: - name: test with coverage env: - WITH_COVERAGE=true after_success: # Upload coverage info as per https://docs.codecov.io/docs/about-the-codecov-bash-uploader - bash <(curl -s https://codec...
Update build tools version on Travis
language: android os: linux dist: trusty jdk: - oraclejdk8 env: global: - ANDROID_COMPILE_API_LEVEL=28 - ANDROID_BUILD_TOOLS_VERSION=28.0.3 android: components: - tools - platform-tools # The BuildTools version used by your project - build-tools-$ANDROID_BUILD_TOOLS_VERSION # The SD...
language: android os: linux dist: trusty jdk: - oraclejdk8 env: global: - ANDROID_COMPILE_API_LEVEL=30 - ANDROID_BUILD_TOOLS_VERSION=29.0.2 android: components: - tools - platform-tools # The BuildTools version used by your project - build-tools-$ANDROID_BUILD_TOOLS_VERSION # The SD...
Add flag to ignore engines when installing dependencies with yarn
language: node_js node_js: - "10" - "8" - "6" branches: only: - master script: - npm test after_success: - npm run coveralls sudo: false before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3 - export PATH=$HOME/.yarn/bin:$PATH cache: yarn: true
language: node_js node_js: - "10" - "8" - "6" branches: only: - master install: yarn install --ignore-engines script: - npm test after_success: - npm run coveralls sudo: false before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3 - export PATH=$HOME/.yarn/bin:...
Add Node.js 11 to Travis CI
language: node_js cache: yarn node_js: - node - "8" - "6" git: depth: 5
language: node_js cache: yarn node_js: - node - "10" - "8" - "6" git: depth: 5
Replace test and check commands
language: php php: - 7.0 before_script: - composer self-update - composer install script: - (cd test; ../vendor/bin/phpunit -c phpunit.xml) - output=$(./vendor/bin/php-cs-fixer fix --verbose --dry-run .); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; fals...
language: php php: - 7.0 before_script: - composer self-update - composer install script: - (composer test) - output=$(composer cs); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
Adjust order of Travis scripts and add Memcache dependency
# This is the config file for building TileStache and running the test suite # with Travis-ci.org language: python python: - "2.7" before_install: - sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable - sudo apt-get update -qq - sudo apt-get install -qq postgis gdal-bin libgdal-dev libgdal1 libgdal1-...
# This is the config file for building TileStache and running the test suite # with Travis-ci.org language: python python: - "2.7" before_install: - sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable - sudo apt-get update -qq - sudo apt-get install -qq postgis gdal-bin libgdal-dev libgdal1 libgdal1-...
Update to OpenJDK 8 instead of Oracle JDK 8 for Travis CI
language: java jdk: - oraclejdk8 install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Dgpg.skip=true -B -V after_success: mvn test jacoco:report coveralls:report sudo: false addons: apt: packages: - oracle-java8-installer
language: java jdk: - openjdk8 install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -Dgpg.skip=true -B -V after_success: mvn test jacoco:report coveralls:report sudo: false
Use `make` to launch the tests on Travis
branches: only: - master - develop before_install: sudo add-apt-repository -y ppa:ubuntu-elisp/ppa && sudo apt-get -qq update && sudo apt-get -qq -f install && sudo apt-get -qqy install emacs-snapshot; script: emacs -batch -l ert -l core/test/* -f ert-run-tests-batch-and-exit
branches: only: - master - develop before_install: sudo add-apt-repository -y ppa:ubuntu-elisp/ppa && sudo apt-get -qq update && sudo apt-get -qq -f install && sudo apt-get -qqy install emacs-snapshot; script: cd ~/.emacs.d/core make test
Add Ruby 2.4 to Travis-CI build
language: ruby os: - osx osx_image: xcode8.2 rvm: - 2.3.1 - 2.2.5 - 2.1.9 - 2.0.0-p648 script: - bundle exec rake travis:build notifications: slack: secure: Ksji5MDNOWnuzuyu9Hblbxse6kGLdH4kXyYkF98C+wawIGLSONWWkuA65wpdqSLtBN/79RCLMWoBzKAGX4xy9BL6Rxb3rLjAMT+FVur6II2yaApzyJ0dmTVeTXnkchPcrO27FK5taPb0Ghr86DUiG3OViY/q1...
language: ruby os: - osx osx_image: xcode8.2 rvm: - 2.4.0 - 2.3.1 - 2.2.5 - 2.1.9 - 2.0.0-p648 script: - bundle exec rake travis:build notifications: slack: secure: Ksji5MDNOWnuzuyu9Hblbxse6kGLdH4kXyYkF98C+wawIGLSONWWkuA65wpdqSLtBN/79RCLMWoBzKAGX4xy9BL6Rxb3rLjAMT+FVur6II2yaApzyJ0dmTVeTXnkchPcrO27FK5taPb0Ghr86DUiG...
Allow failure of MRI 2.0
language: ruby rvm: - rbx-18mode - rbx-19mode - 1.8.7 - 1.9.2 - 1.9.3 - ruby-head
language: ruby matrix: allow_failures: - rvm: ruby-head rvm: - rbx-18mode - rbx-19mode - 1.8.7 - 1.9.2 - 1.9.3 - ruby-head
Use Ruby 2.2.0 when building with Travis.
language: ruby rvm: - 2.1.0 branches: only: - source env: global: - secure: eAfAIkapwBzL01iOQjEqvbcEr1cM1VEbohi1efcNzCkUCbJ2nsgO44tifu3vD2fJhPrDsZVfpaKXDtGD1zPFMCtMep94yUThVJl3ZEGZy8tnlZuRM/0bElDg2sRhcr9gycSJbF4zo5i/AgXF1tzcqEseIbuet+QykZj7bLHuFCo= script: - scripts/build-ci.sh
language: ruby rvm: - 2.2.0 branches: only: - source script: - scripts/build-ci.sh env: global: - secure: "eAfAIkapwBzL01iOQjEqvbcEr1cM1VEbohi1efcNzCkUCbJ2nsgO44tifu3vD2fJhPrDsZVfpaKXDtGD1zPFMCtMep94yUThVJl3ZEGZy8tnlZuRM/0bElDg2sRhcr9gycSJbF4zo5i/AgXF1tzcqEseIbuet+QykZj7bLHuFCo="
Replace Java 15 with Java 16 in Travis CI.
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use ...
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use ...
Test with development Python versions too
language: python sudo: false python: - "2.7" - "3.3" - "3.4" - "3.5" - "pypy" - "pypy3" install: - pip install nose - pip install . script: nosetests -vv test.py
language: python sudo: false python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.5-dev" - "nightly" - "pypy" - "pypy3" install: - pip install nose - pip install . script: nosetests -vv test.py
Add pull-request time build script
language: node_js node_js: "6.3.0" sudo: false script: - '( [ "$TRAVIS_BRANCH" == "master" ] || [ "$TRAVIS_BRANCH" == "develop" ] ) && [ "$TRAVIS_PULL_REQUEST" == "false" ] && npm run deploy'
language: node_js node_js: "6.3.0" sudo: false script: - 'echo Hello,World!' # TODO: Write Test after_success: - '([ "$TRAVIS_BRANCH" == "master" ] || [ "$TRAVIS_BRANCH" == "develop" ]) && [ "$TRAVIS_PULL_REQUEST" == "false" ] && npm run deploy' - '([ "$TRAVIS_PULL_REQUEST" != "develop" ] && [ "$TRAVIS_PULL_...
Allow failures for PHP 7.1
language: php php: - 5.5.9 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm env: global: - setup=basic matrix: include: - php: 5.5.9 env: setup=lowest - php: 5.5.9 env: setup=stable sudo: false before_install: - travis_retry composer self-update install: - if [[ $setup = 'basic' ]]; then...
language: php php: - 5.5.9 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm env: global: - setup=basic matrix: include: - php: 5.5.9 env: setup=lowest - php: 5.5.9 env: setup=stable sudo: false before_install: - travis_retry composer self-update install: - if [[ $setup = 'basic' ]]; then...
Update from Hackage at 2018-03-15T11:06:54Z
homepage: http://www.geocities.jp/takascience/index_en.html changelog-type: '' hash: afbf3e669f8f3cd8ab8349e653a755c3632fe21e5ecd5cc51b54f534804cd2dd test-bench-deps: {} maintainer: Takayuki Muranushi <muranushi@gmail.com>, <gwern0@gmail.com>, Alan Hawkins <hawk.alan@gmail.com> synopsis: A vector shooter game changel...
homepage: http://www.geocities.jp/takascience/index_en.html changelog-type: '' hash: 7ea20679c809a5d88574a1cd1a9c3cb06e9681bca653cca987abf9023e0d1734 test-bench-deps: {} maintainer: Takayuki Muranushi <muranushi@gmail.com>, <gwern0@gmail.com>, Alan Hawkins <hawk.alan@gmail.com> synopsis: A vector shooter game changel...
Update from Hackage at 2018-01-20T06:40:10Z
homepage: https://hub.darcs.net/vmchale/shake-ext changelog-type: '' hash: d39b33c2e27e20963a060168960b26e144a8c950632eda7f889d1225a787bb51 test-bench-deps: {} maintainer: vamchale@gmail.com synopsis: Helper functions for linting with shake changelog: '' basic-deps: shake: -any composition-prelude: -any base: ! '...
homepage: https://hub.darcs.net/vmchale/shake-ext changelog-type: '' hash: 872e06c4748b42e7174636a673766d5207b672f99a68008537ab637a129c1418 test-bench-deps: {} maintainer: vamchale@gmail.com synopsis: Helper functions for linting with shake changelog: '' basic-deps: shake: -any composition-prelude: -any base: ! '...
Build with Node.js 16 on GitHub Actions.
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x,12.x,14.x,15.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.nod...
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x,12.x,14.x,16.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.nod...
Use configurable default user when installing vburrito
- name: Install virutalenv-burrito for user {{ username }} shell: curl -sL https://raw.githubusercontent.com/brainsik/virtualenv-burrito/master/virtualenv-burrito.sh | $SHELL args: creates: "{{ user_home }}/.venvburrito" sudo_user: "{{ username }}" - name: Create venevburrito first login file command: touc...
- name: Install virutalenv-burrito for user {{ default_user }} shell: curl -sL https://raw.githubusercontent.com/brainsik/virtualenv-burrito/master/virtualenv-burrito.sh | $SHELL args: creates: "{{ default_user_home }}/.venvburrito" sudo_user: "{{ default_user }}" - name: Create venevburrito first login file...
Use runtime-ci docker image when deploying etcd cf.
--- platform: linux image: docker:///cloudfoundry/mega-ci inputs: - name: cf-deployment - name: cf-release - name: deployments-runtime - name: etcd-release - name: mega-ci - name: stemcell run: path: mega-ci/scripts/ci/deploy-etcd-cf/task params: STUB_PATH: STUB_PARTS_PATH: BOSH_DIRECTOR: BOSH...
--- platform: linux image: docker:///cloudfoundry/runtime-ci inputs: - name: cf-deployment - name: cf-release - name: deployments-runtime - name: etcd-release - name: mega-ci - name: stemcell run: path: mega-ci/scripts/ci/deploy-etcd-cf/task params: STUB_PATH: STUB_PARTS_PATH: BOSH_DIRECTOR: B...
Upgrade do arquivo de configuração.
title: Filipe Oliveira email: contato@fmoliveira.com.br description: > Engenheiro de Software e Empreendedor apaixonado por disseminar conhecimento e aprender coisas novas o tempo todo. Gosto de escrever sobre JavaScript, React, Linux, automação de processos e produtividade. url: "https://fmoliveira.com.br" twitt...
title: Filipe Oliveira email: contato@fmoliveira.com.br description: > Engenheiro de Software e Empreendedor apaixonado por disseminar conhecimento e aprender coisas novas o tempo todo. Gosto de escrever sobre JavaScript, React, Linux, automação de processos e produtividade. url: "https://fmoliveira.com.br" twitt...
Set baseurl for github pages
# # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site...
# # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site...
Revert to title as permalink style
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For te...
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For te...
Uninstall services before playbook run
machine: environment: ANSIBLE_FORCE_COLOR: 1 PYTHONUNBUFFERED: 1 dependencies: cache_directories: - '~/.cache/pip/' pre: - sudo pip install ansible - ansible --version test: pre: - echo localhost > inventory override: - ansible-playbook -i inventory --syntax-check playbooks/st2ex...
machine: python: version: 2.7.6 environment: ANSIBLE_FORCE_COLOR: 1 PYTHONUNBUFFERED: 1 pre: # use aptitude to remove dependencies - sudo aptitude remove -y ~npostgresql - sudo aptitude remove -y ~nrabbitmq - sudo aptitude remove -y ~nmongo - sudo aptitude remove -y ~nmysql- depen...
Add OpenJDK 17 to GitHub Actions
name: Java on: - push - pull_request jobs: java: name: ${{ matrix.java-version }} runs-on: ubuntu-latest strategy: matrix: java-version: - 8 - 11 steps: - name: Check out GitHub repository uses: actions/checkout@v2 - name: Set up Java ...
name: Java on: - push - pull_request jobs: java: name: ${{ matrix.java-version }} runs-on: ubuntu-latest strategy: matrix: java-version: - 8 - 11 - 17 steps: - name: Check out GitHub repository uses: actions/checkout@v2 - name: Set ...
Update from Hackage at 2020-02-18T18:03:56Z
homepage: https://github.com/cmk/profunctor-extras changelog-type: markdown hash: 846edf06feea68602a8fa04db84d74ce121549dc6a964fa10ca86f8a609d0e94 test-bench-deps: {} maintainer: Chris McKinlay synopsis: Profunctor arrows changelog: | # Revision history for dioids ## 0.0.1 -- YYYY-mm-dd * First version. Releas...
homepage: https://github.com/cmk/profunctor-optics changelog-type: markdown hash: 9e2a882019024fdef1c95dc214e30c13b25ec54723806341b7e9e4677a096a91 test-bench-deps: {} maintainer: Chris McKinlay synopsis: Profunctor arrows changelog: | # Revision history for dioids ## 0.0.1 -- YYYY-mm-dd * First version. Releas...
Remove preparatioin step from action
name: Telebot Build CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: prepare run: apt install -y pkg-config libcurl4-openssl-dev libjson-c-dev cmake binutils make - name: cmake run: cmake . - name: make run: make
name: Telebot Build CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: cmake run: cmake . - name: make run: make
Use system-wide php.ini for Nette Tester in GitLab CI
image: debian:testing stages: - test - coding-style cache: paths: - vendor/ before_script: - apt-get update -y - apt-get install --no-install-recommends -y ca-certificates curl git php7.1 php7.1-common php7.1-cgi php7.1-curl php7.1-json php7.1-phpdbg php7.1-mbstring php7.1-sqlite php7.1-z...
image: debian:testing stages: - test - coding-style cache: paths: - vendor/ before_script: - apt-get update -y - apt-get install --no-install-recommends -y ca-certificates curl git php7.1 php7.1-common php7.1-cgi php7.1-curl php7.1-json php7.1-phpdbg php7.1-mbstring php7.1-sqlite php7.1-z...
Update aptitude before installing packages.
image: ubuntu:16.04 stages: - build before_script: - apt-get install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev emscripten build-essential cmake 'build linux': stage: build script: - make artifacts: paths: - build/innojam9 'build web': stage: build script: - make...
image: ubuntu:16.10 stages: - build before_script: - apt-get update - apt-get install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev emscripten build-essential cmake 'build linux': stage: build script: - make artifacts: paths: - build/innojam9 'build web': stage: build ...
Test on more Python versions.
name: Python package on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [3.6, 3.9] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: ...
name: Python package on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: ['3.6', '3.9', '3.10'] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 ...