Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add ruby 2.0.0 to the build matrix
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - ree - 1.8.7 - 1.9.3 - rbx-18mode - rbx-19mode
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - ree - 1.8.7 - 1.9.3 - 2.0.0 - rbx-18mode - rbx-19mode
Test with JRuby 9k only
sudo: false language: ruby dist: trusty rvm: - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 - jruby-1.7.26 - rbx - ruby-head matrix: allow_failures: - rvm: rbx
sudo: false language: ruby dist: trusty rvm: - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 - jruby-9.1.7.0 - rbx - ruby-head matrix: allow_failures: - rvm: rbx
Switch to TRAVIS_BUILD_DIR before deploying
language: node_js node_js: - node notifications: email: false install: - npm start script: - cd nin/backend && ../../node_modules/.bin/eslint . - cd ../frontend && make lint after_success: - export PACKAGE_VERSION=$(node -p "require('./package.json').version") - export LATEST_TAG=$(git tag | sed 's/^v\(.*\)/\1/' ...
language: node_js node_js: - node notifications: email: false install: - npm start script: - cd nin/backend && ../../node_modules/.bin/eslint . - cd ../frontend && make lint after_success: - export PACKAGE_VERSION=$(node -p "require('./package.json').version") - export LATEST_TAG=$(git tag | sed 's/^v\(.*\)/\1/' ...
Update Xcode version on Travis
language: objective-c osx_image: xcode7 script: "xcodebuild test -project Heimdall.xcodeproj -scheme Heimdall -destination \"platform=iOS Simulator,name=iPhone 6\""
language: objective-c osx_image: xcode7.1 script: "xcodebuild test -project Heimdall.xcodeproj -scheme Heimdall -destination \"platform=iOS Simulator,name=iPhone 6\""
Add jruby-9 and yank mri temporarily
language: ruby rvm: - 2.2.0 - jruby-1.7.20.1 before_install: gem install bundler -v 1.10.6 before_install: echo 'yes' | gem uninstall ffi -a -I || true
language: ruby rvm: - jruby-1.7.20.1 - jruby-9.0.1.0 before_install: gem install bundler -v 1.10.6
Switch to supported jdk8 version from unsupported oracle jdk8.
language: java jdk: - oraclejdk8 install: mvn clean install -DskipTests -Ddockerfile.skip -Dmaven.javadoc.skip=true -B -V
language: java jdk: - openjdk8 install: mvn clean install -DskipTests -Ddockerfile.skip -Dmaven.javadoc.skip=true -B -V
Test on 0.10 and 0.11
language: node_js node_js: - 0.11 script: npm run travis-test
language: node_js node_js: - 0.10 - 0.11 script: npm run travis-test
Downgrade .NET SDK version for Travis to 2.0.3
language: csharp mono: latest dotnet: 2.1.4 sudo: false # use the new container-based Travis infrastructure before_install: - chmod +x build.sh script: - ./build.sh All
language: csharp mono: latest dotnet: 2.0.3 sudo: false # use the new container-based Travis infrastructure before_install: - chmod +x build.sh script: - ./build.sh All
Add pypy to list of test platforms.
language: python python: - "2.7" - "2.6" install: pip install nose coveralls coverage script: nosetests --with-coverage --cover-package=btceapi after_success: coveralls
language: python python: - "2.6" - "2.7" - "pypy" install: pip install nose coveralls coverage script: nosetests --with-coverage --cover-package=btceapi after_success: coveralls
Allow iojs build to fail
language: node_js node_js: - '0.11' - '0.10' - iojs script: - npm run test-travis after_script: - npm install coveralls@2.11.x && cat coverage/lcov.info | coveralls - npm install codeclimate-test-reporter && cat coverage/lcov.info | codeclimate env: global: secure: XMYPobFT192HVOxbTtl7hGdimycDqXwC4Unv3rLkrf527VXx...
language: node_js node_js: - '0.11' - '0.10' - iojs script: - npm run test-travis after_script: - npm install coveralls@2.11.x && cat coverage/lcov.info | coveralls - npm install codeclimate-test-reporter && cat coverage/lcov.info | codeclimate env: global: secure: XMYPobFT192HVOxbTtl7hGdimycDqXwC4Unv3rLkrf527VXx...
Move coverage report into scripts to fail if coverage requirements are not met.
language: python python: - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "3.6" - "3.6-dev" # 3.6 development branch # Install dependencies install: - pip install flake8 coverage coveralls - pip install -r requirements/base.txt - pip install -r requirements/test.txt before_script: cd csunplug...
language: python python: - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "3.6" - "3.6-dev" # 3.6 development branch # Install dependencies install: - pip install flake8 coverage coveralls - pip install -r requirements/base.txt - pip install -r requirements/test.txt before_script: cd csunplug...
Add minimum pytest version install
language: python sudo: true fast_finish: true matrix: include: - python: 2.7 - python: 3.5 - python: 3.6 - python: 3.7 dist: xenial sudo: true install: - pip install Cython pytest pytest-cov coveralls - pip install -r requirements.txt - pip install . script: - pytest --cov=yfin...
language: python sudo: true fast_finish: true matrix: include: - python: 2.7 - python: 3.5 - python: 3.6 - python: 3.7 dist: xenial sudo: true install: - pip install Cython - pip install pytest>=4.6 - pip install pytest-cov - pip install coveralls - pip install -r requirements...
Revert "attempt sudo'ing tests just to see what happens"
rvm: - 1.9.3 before_script: - sudo pip install -r requirements/dev.txt - sudo pip install . script: - sudo fab test
rvm: - 1.9.3 before_script: - sudo pip install -r requirements/dev.txt - sudo pip install . script: - fab test
Upgrade bundler before `bundle install`
before_script: - sudo apt-get update - sudo apt-get install gccxml - gem install bundler - gem uninstall -a --force gccxml_gem - gem install gccxml_gem --platform ruby rvm: - 2.0.0 - 2.1.0 - 2.2.0 - 2.3.0 - ruby-head
before_install: - gem install bundler before_script: - sudo apt-get update - sudo apt-get install gccxml - gem uninstall -a --force gccxml_gem - gem install gccxml_gem --platform ruby rvm: - 2.0.0 - 2.1.0 - 2.2.0 - 2.3.0 - ruby-head
Allow failure for hhvm and enable fast_finish
language: php php: - 5.4 - 5.5 - 5.6 - hhvm env: matrix: - ES_COMPOSER_NODEV=no - ES_COMPOSER_NODEV=yes install: - /bin/bash ansible/provision.sh before_script: - mkdir -p build/logs - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "extension=memcache.so" >> ~/.phpenv/versions/$(ph...
language: php php: - 5.4 - 5.5 - 5.6 - hhvm env: matrix: - ES_COMPOSER_NODEV=no - ES_COMPOSER_NODEV=yes fast_finish: true allow_failures: - php: hhvm install: - /bin/bash ansible/provision.sh before_script: - mkdir -p build/logs - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; ...
Configure Travis CI to test nightly PHP builds
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm sudo: false before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist before_script: - mkdir -p build/logs script: - ./vendor/bin/parallel-lint src tests - ./vend...
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - nightly - hhvm matrix: allow_failures: - php: nightly sudo: false before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist before_script: - mkdir -p build/logs s...
Add build for example project on Travis CI.
language: groovy jdk: - openjdk7 - oraclejdk8 script: - ./gradlew clean build check uploadArchives after_success: - ./gradlew cobertura coveralls
language: groovy jdk: - openjdk7 - oraclejdk8 script: - ./gradlew clean build check uploadArchives - cd samples/example && ./gradlew clean webResourceCompile && cd .. after_success: - ./gradlew cobertura coveralls
Test with Ruby 2.5 on macOS
sudo: false language: ruby install: - git clone https://github.com/ruby/mspec.git ../mspec script: - if [ -n "$RUBOCOP" ]; then gem install rubocop -v 0.52.0 && rubocop; fi - ../mspec/bin/mspec $MSPEC_OPTS matrix: include: - os: osx osx_image: xcode9 rvm: 2.4.2 env: CHECK_LEAKS=true - ...
sudo: false language: ruby install: - git clone https://github.com/ruby/mspec.git ../mspec script: - if [ -n "$RUBOCOP" ]; then gem install rubocop -v 0.52.0 && rubocop; fi - ../mspec/bin/mspec $MSPEC_OPTS matrix: include: - os: osx osx_image: xcode9 rvm: 2.5.0 env: CHECK_LEAKS=true - ...
Allow 2.7 to fail, for now.
language: ruby script: "bundle exec rspec spec" env: - CI=true rvm: - 2.4 - 2.5 - 2.6 - 2.7 - jruby cache: bundler sudo: false matrix: allow_failures: - rvm: jruby dist: trusty
language: ruby script: "bundle exec rspec spec" env: - CI=true rvm: - 2.4 - 2.5 - 2.6 - 2.7 - jruby cache: bundler sudo: false matrix: allow_failures: - rvm: jruby - rvm: 2.7 dist: trusty
Add API key to Travis CI configuration
language: node_js node_js: - "node" sudo: false before_install: - export WAPPALYZER_ROOT=$TRAVIS_BUILD_DIR - export WAPPALYZER_NODE_PATH=$TRAVIS_BUILD_DIR - export PATH=$PATH:$TRAVIS_BUILD_DIR/bin - ln -s docker/node/package.json package.json before_script: npm i -g manifoldjs after_success: - sha256sum build/* ...
language: node_js node_js: - "node" sudo: false before_install: - export WAPPALYZER_ROOT=$TRAVIS_BUILD_DIR - export WAPPALYZER_NODE_PATH=$TRAVIS_BUILD_DIR - export PATH=$PATH:$TRAVIS_BUILD_DIR/bin - ln -s docker/node/package.json package.json before_script: npm i -g manifoldjs after_success: - sha256sum build/* ...
Enable C++11 builds in Travis.
language: cpp os: - linux - osx compiler: - gcc - clang env: - CC_FLAGS= - CC_FLAGS=-DPRIVILEGE_CHECKS - CC_FLAGS=-DBOUNDS_CHECKS - CC_FLAGS=-DLEGION_PROF - CC_FLAGS=-DLEGION_SPY matrix: exclude: - os: osx compiler: gcc script: ./language/travis.py
language: cpp os: - linux - osx compiler: - gcc - clang env: - CC_FLAGS= - CC_FLAGS=-DPRIVILEGE_CHECKS - CC_FLAGS=-DBOUNDS_CHECKS - CC_FLAGS=-DLEGION_PROF - CC_FLAGS=-DLEGION_SPY - CC_FLAGS=-std=c++0x matrix: exclude: - os: osx compiler: gcc script: ./language/travis.py
Use pytest as test driver
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" # Build inside docker containers instead of virtual machines. These are # faster, start quicker and support caching. Only downside: sudo is not # supported. sudo: false # Dependencies can be installed as follows. This works only for...
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" # Build inside docker containers instead of virtual machines. These are # faster, start quicker and support caching. Only downside: sudo is not # supported. sudo: false # Dependencies can be installed as follows. This works only for...
Add sudo required for Travis CI
language: c script: bash -ex .travis-ci.sh env: - OCAML_VERSION=4.01.0 OPAM_VERSION=1.0.0 - OCAML_VERSION=4.01.0 OPAM_VERSION=1.1.0 - OCAML_VERSION=4.00.1 OPAM_VERSION=1.0.0 - OCAML_VERSION=4.00.1 OPAM_VERSION=1.1.0 - OCAML_VERSION=3.12.1 OPAM_VERSION=1.0.0 - OCAML_VERSION=3.12.1 OPAM_VERSION=1.1.0
language: c script: bash -ex .travis-ci.sh sudo: required env: - OCAML_VERSION=4.01.0 OPAM_VERSION=1.0.0 - OCAML_VERSION=4.01.0 OPAM_VERSION=1.1.0 - OCAML_VERSION=4.00.1 OPAM_VERSION=1.0.0 - OCAML_VERSION=4.00.1 OPAM_VERSION=1.1.0 - OCAML_VERSION=3.12.1 OPAM_VERSION=1.0.0 - OCAML_VERSION=3.12.1 OPAM_VERSION...
Build with latest Node.js 4 on Travis CI.
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4.2' - '5.1' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_ins...
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5.1' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_insta...
Add missing github_token parameter to the Travis config
language: node_js node_js: - "node" - "lts/*" cache: yarn: true directories: - node_modules script: - yarn build - yarn lint deploy: provider: pages allow_failure: true skip_cleanup: true local_dir: public on: branch: master
language: node_js node_js: - "node" - "lts/*" cache: yarn: true directories: - node_modules script: - yarn build - yarn lint deploy: provider: pages allow_failure: true skip_cleanup: true local_dir: public github_token: $GITHUB_TOKEN on: branch: master
Change the order of code generation and cmake
# c.f. https://github.com/commercialhaskell/stack/wiki/Travis sudo: false before_install: # stack - mkdir -p ~/.local/bin - ln -s $HOME/.local/bin bin - mkdir -p ~/.local/lib - export PATH=~/.local/bin:$PATH - export LD_LIBRARY_PATH=~/.local/lib:$LD_LIBRARY_PATH - ./scripts/install-z3.sh - travis_retr...
# c.f. https://github.com/commercialhaskell/stack/wiki/Travis sudo: false before_install: # stack - mkdir -p ~/.local/bin - ln -s $HOME/.local/bin bin - mkdir -p ~/.local/lib - export PATH=~/.local/bin:$PATH - export LD_LIBRARY_PATH=~/.local/lib:$LD_LIBRARY_PATH - ./scripts/install-z3.sh - travis_retr...
Fix tmux sourcecode url to github
language: c env: - TMUX_VERSION="1.6" - TMUX_VERSION="1.7" - TMUX_VERSION="1.8" - TMUX_VERSION="1.9a" - TMUX_VERSION="2.0" before_install: - sudo apt-get update - sudo apt-get install -y bc build-essential libevent-dev libncurses5-dev - wget http://downloads.sourceforge.net/tmux/tmux-${TMUX_VERSION}.tar...
language: c env: - TMUX_VERSION="1.6" - TMUX_VERSION="1.7" - TMUX_VERSION="1.8" - TMUX_VERSION="1.9a" - TMUX_VERSION="2.0" before_install: - sudo apt-get update - sudo apt-get install -y bc build-essential libevent-dev libncurses5-dev - wget https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}...
Fix path problem in Travis CI configuration
language: java sudo: false jdk: - oraclejdk7 install: "./installViaTravis.sh" script: "./buildViaTravis.sh" cache: directories: - "$HOME/.gradle/caches/" before_install: - test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_bc816709edb0_key -iv $encrypted_bc816709edb0_iv -in gradle.properties.e...
language: java sudo: false jdk: - oraclejdk7 install: "./installViaTravis.sh" script: "./buildViaTravis.sh" cache: directories: - "$HOME/.gradle/caches/" before_install: - test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_bc816709edb0_key -iv $encrypted_bc816709edb0_iv -in gradle.properties.e...
Test on Python 3.6 as well
sudo: required language: python env: - DJ_TEST_HOST="127.0.0.1" DJ_TEST_USER="datajoint" DJ_TEST_PASSWORD="datajoint" DJ_HOST="127.0.0.1" DJ_USER="datajoint" DJ_PASS="datajoint" python: - "3.4" - "3.5" services: mysql before_install: - sudo apt-get -qq update - sudo apt-get install -y libblas-dev liblapack-de...
sudo: required language: python env: - DJ_TEST_HOST="127.0.0.1" DJ_TEST_USER="datajoint" DJ_TEST_PASSWORD="datajoint" DJ_HOST="127.0.0.1" DJ_USER="datajoint" DJ_PASS="datajoint" python: - "3.4" - "3.5" - "3.6" services: mysql before_install: - sudo apt-get -qq update - sudo apt-get install -y libblas-dev li...
Update Travis to use pod update
language: swift osx_image: xcode10.1 podfile: Example/Podfile script: - gem install xcpretty - swiftlint - cd Example - pod install --repo-update - cd .. - xcodebuild -workspace Example/Ramda.xcworkspace -scheme Ramda_Tests -destination 'platform=iOS Simulator,name=iPhone 8,OS=12.1' ONLY_ACTIVE_ARCH=YES c...
language: swift osx_image: xcode10.1 podfile: Example/Podfile script: - gem install xcpretty - swiftlint - cd Example - pod update - cd .. - xcodebuild -workspace Example/Ramda.xcworkspace -scheme Ramda_Tests -destination 'platform=iOS Simulator,name=iPhone 8,OS=12.1' ONLY_ACTIVE_ARCH=YES clean test | xcp...
Switch py3 testing to 3.5
sudo: false language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "pypy" - "pypy-5.3" install: - pip install -r requirements/ci.txt services: - redis-server - memcached script: nosetests tests --with-cov -v after_success: - coveralls
sudo: false language: python python: - "2.6" - "2.7" - "3.5" - "pypy" - "pypy-5.3" install: - pip install -r requirements/ci.txt services: - redis-server - memcached script: nosetests tests --with-cov -v after_success: - coveralls
Add rust-0.8 to built target branch.
branches: only: - master before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ precise-proposed main restricted universe multiverse" - yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc - yes | sudo...
branches: only: - master - rust-0.8 before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ precise-proposed main restricted universe multiverse" - yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc...
Configure Travis CI to test on more Node.js versions
--- language: node_js node_js: - '4' - '5' - '6' - node sudo: false script: - npm test - npm run lint
--- language: node_js node_js: - '4' - '5' - '6' - '7' - '8' - node sudo: false script: - npm test - npm run lint
Enable Travis CI integration with Coverity Scan
language: c compiler: - clang - gcc script: mkdir build && cd build && cmake .. && make
language: c env: global: - secure: "dZ0B0nxTLf93r82qatqRwJ8zvarm5crtq76c/r38VI1PfKf+u2oRXeYwxTq5wEN4SsPpBMkcgKqZqXSTsHvDNHHp0155qQ8RMv733BDEIGEOPCpbai6kkG+jeoL9c2Jt/Y7xzOdjyo8PLwEubQXpnWJEDnl0n9L2TYPamwkpQbc=" compiler: - clang - gcc script: cmake . && make clean && make addons: coverity_scan: proje...
Update list of tested compilers.
language: d sudo: false matrix: include: - d: dmd - d: dmd-2.068.2 env: [COVERAGE=true] - d: dmd-2.067.1 - d: dmd-2.066.1 - d: dmd-2.065.0 env: [FRONTEND=2.065] - d: dmd-2.064.2 env: [FRONTEND=2.064] - d: ldc - d: ldc-0.15.1 - d: ldc-0.14.0 env: [FRONTEND=2...
language: d sudo: false matrix: include: - d: dmd env: [FRONTEND=2.070] - d: dmd-2.069.2 env: [FRONTEND=2.069] - d: dmd-2.068.2 env: [FRONTEND=2.068] env: [COVERAGE=true] - d: dmd-2.067.1 env: [FRONTEND=2.067] - d: dmd-2.066.1 env: [FRONTEND=2.066] - d: dmd...
Use node 4.1, change opt dir to user home.
language: node_js node_js: - "4.0" before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error - wget https://releases.hashicorp.com/terraform/0.6.7/terraform_0.6.7_linux_amd64.zip - mkdir -p /opt/terraform/ - unzip terraform_0.6.7_linux_amd64.zip -d /opt/terraform/ script: - expor...
language: node_js node_js: - "4.1" before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error - wget https://releases.hashicorp.com/terraform/0.6.7/terraform_0.6.7_linux_amd64.zip - mkdir -p ~/opt/terraform/ - unzip terraform_0.6.7_linux_amd64.zip -d ~/opt/terraform/ script: - exp...
Move the .npmrc creation to a before_install step
language: node_js node_js: - 8 cache: yarn # Define global C++ compiler version env: global: - CXX=g++-4.8 before_install: # Yarn defaults to an old version, make sure we # get an up to date version - npm install -g yarn before_script: - cp config/ci.config.json config/project.json script: - xvfb-run...
language: node_js node_js: - 8 cache: yarn # Define global C++ compiler version env: global: - CXX=g++-4.8 before_install: # Yarn defaults to an old version, make sure we # get an up to date version - npm install -g yarn - echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc before_script: ...
Update Coffee to 1.4 (5)
Categories: - System License: Apache-2.0 SourceCode: https://github.com/mueller-ma/Coffee IssueTracker: https://github.com/mueller-ma/Coffee/issues Changelog: https://github.com/mueller-ma/Coffee/releases AutoName: Coffee RepoType: git Repo: https://github.com/mueller-ma/Coffee.git Builds: - versionName: '1.2' ...
Categories: - System License: Apache-2.0 SourceCode: https://github.com/mueller-ma/Coffee IssueTracker: https://github.com/mueller-ma/Coffee/issues Changelog: https://github.com/mueller-ma/Coffee/releases AutoName: Coffee RepoType: git Repo: https://github.com/mueller-ma/Coffee.git Builds: - versionName: '1.2' ...
Add Python3 wallaby unit tests
- job: name: heatclient-functional parent: devstack-tox-functional timeout: 4200 required-projects: - openstack/heat - openstack/python-heatclient vars: openrc_enable_export: true devstack_plugins: heat: https://opendev.org/openstack/heat irrelevant-files: -...
- job: name: heatclient-functional parent: devstack-tox-functional timeout: 4200 required-projects: - openstack/heat - openstack/python-heatclient vars: openrc_enable_export: true devstack_plugins: heat: https://opendev.org/openstack/heat irrelevant-files: -...
Add Python 3 Train unit tests
- project: templates: - check-requirements - openstack-lower-constraints-jobs - openstack-python-jobs - openstack-python36-jobs - openstack-python37-jobs - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - openstack-lower-constraints-jobs - openstack-python-jobs - openstack-python3-train-jobs - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
Switch imagePullPolicy for framework pod
apiVersion: v1 kind: ReplicationController metadata: labels: name: framework name: framework namespace: default spec: replicas: 10 selector: name: framework template: metadata: labels: kubernetes.io/color: 4C9900 name: framework spec: containers: - image: qu...
apiVersion: v1 kind: ReplicationController metadata: labels: name: framework name: framework namespace: default spec: replicas: 10 selector: name: framework template: metadata: labels: kubernetes.io/color: 4C9900 name: framework spec: containers: - image: qu...
Use latest stable version 1.2.0 [skip appveyor]
{% set version = "1.2rc2" %} {% set md5 = "6ae7db3bab01e1d4b86bacfa8ca33e81" %} package: name: speex version: {{ version }} source: fn: speex-{{ version }}.tar.gz url: http://downloads.xiph.org/releases/speex/speex-{{ version }}.tar.gz md5: {{ md5 }} build: number: 0 skip: true # [not linux] requirem...
{% set version = "1.2.0" %} {% set md5 = "8ab7bb2589110dfaf0ed7fa7757dc49c" %} package: name: speex version: {{ version }} source: fn: speex-{{ version }}.tar.gz url: http://downloads.xiph.org/releases/speex/speex-{{ version }}.tar.gz md5: {{ md5 }} build: number: 0 skip: true # [not linux] requireme...
Change Path for npm install
version: 1.0.{build}+{branch} branches: except: - gh-pages image: Visual Studio 2017 before_build: - nuget restore - npm install
version: 1.0.{build}+{branch} branches: except: - gh-pages image: Visual Studio 2017 before_build: - nuget restore - cd "src/seriView" && npm install
Add a workaround for sdl2 on win32
install: - SET PATH=%APPDATA%\cabal\bin;C:\msys64\mingw64\bin;C:\msys64\usr\bin;C:\ProgramData\chocolatey\lib\ghc\tools\ghc-8.0.2\bin;C:\ProgramData\chocolatey\lib\cabal\tools;C:\Program Files (x86)/WiX Toolset v3.10\bin;%PATH% - SET PKG_CONFIG_PATH=C:\msys64\mingw64\lib\pkgconfig - SET XDG_DATA_DIRS=C:\msys64\mi...
install: - SET PATH=%APPDATA%\cabal\bin;C:\msys64\mingw64\bin;C:\msys64\usr\bin;C:\ProgramData\chocolatey\lib\ghc\tools\ghc-8.0.2\bin;C:\ProgramData\chocolatey\lib\cabal\tools;C:\Program Files (x86)/WiX Toolset v3.10\bin;%PATH% - SET PKG_CONFIG_PATH=C:\msys64\mingw64\lib\pkgconfig - SET XDG_DATA_DIRS=C:\msys64\mi...
Update from Hackage at 2019-10-20T19:18:48Z
homepage: '' changelog-type: '' hash: 3dd9cd575b6403fd5a9f8ba00317187bb816afc4103571b530a567cb80f552ab test-bench-deps: {} maintainer: strake888@gmail.com synopsis: Van Laarhoven lenses changelog: '' basic-deps: base-unicode-symbols: ! '>=0.1 && <0.3' hs-functors: ! '>=0.1.1 && <0.2' base: ! '>=4.8 && <5' trans...
homepage: '' changelog-type: '' hash: 66cc944804d7ab65290abcddf404550f8bdc4aabe6c159c730b684952cc4a302 test-bench-deps: {} maintainer: strake888@gmail.com synopsis: Van Laarhoven lenses changelog: '' basic-deps: base-unicode-symbols: ! '>=0.1 && <0.3' hs-functors: ! '>=0.1.1 && <0.2' base: ! '>=4.8 && <5' trans...
Update AppEngine hello_world with "env: flex"
# Copyright 2015 Google, 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 in writing, ...
# Copyright 2015 Google, 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 in writing, ...
Remove Google Analytics from config
# Site settings title: Gavin Eke description: Gavin Eke baseurl: / url: "https://gavineke.com/" enforce_ssl: gavineke.com # User settings username: Gavin Eke user_title: Cyber Security Engineer twitter_username: gavineke linkedin_username: gavineke github_username: gavineke blog: "https://scripting.rocks/" # Google-a...
# Site settings title: Gavin Eke description: Gavin Eke baseurl: / url: "https://gavineke.com/" enforce_ssl: gavineke.com # User settings username: Gavin Eke user_title: Cyber Security Engineer twitter_username: gavineke linkedin_username: gavineke github_username: gavineke blog: "https://scripting.rocks/" # Other ex...
Make the monitor secret a mandatory variable.
--- - name: Create monitor initial keyring command: "ceph-authtool /var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }} --create-keyring --name=mon. --add-key={{ monitor_secret }} --cap mon 'allow *' creates=/var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }}" - name: Set initial monitor key permissions file: > ...
--- - name: Create monitor initial keyring command: "ceph-authtool /var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }} --create-keyring --name=mon. --add-key={{ monitor_secret | mandatory }} --cap mon 'allow *' creates=/var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }}" - name: Set initial monitor key permissions...
Revert removal of datauri version of CSS
javascript_compressor: closure css_compressor: sass template_function: dc._.template gzip_assets: off javascripts: loader: - src/js/loader.js note_embed: - src/js/vendor/underscore/underscore.js - src/js/vendor/jquery/dist/jquery.js # jQuery.XDomainRequest is for IE8/9 - sr...
javascript_compressor: closure css_compressor: sass template_function: dc._.template embed_assets: datauri gzip_assets: off javascripts: loader: - src/js/loader.js note_embed: - src/js/vendor/underscore/underscore.js - src/js/vendor/jquery/dist/jquery.js # jQuery.XDoma...
Remove "apache2-mpm-prefork" since it included in "apache2-bin" for Xenial
--- cikit_apache: dest: "/etc/apache2" ssl: dest: "/etc/apache2/ssl" protocol: "All -SSLv2 -SSLv3" cipher_suite: "AES256+EECDH:AES256+EDH" packages: - apache2 - apache2-mpm-prefork - apache2-utils
--- cikit_apache: dest: "/etc/apache2" ssl: dest: "/etc/apache2/ssl" protocol: "All -SSLv2 -SSLv3" cipher_suite: "AES256+EECDH:AES256+EDH" packages: - apache2 - apache2-utils
Enable code climate to run sass linting
--- engines: duplication: enabled: true config: languages: - javascript eslint: enabled: true config: config: .eslintrc fixme: enabled: true ratings: paths: - "**.css" - "**.js" exclude_paths: - source/js/lib/jquery-3.1.0.min.js - Gruntfile.js
--- engines: duplication: enabled: true config: languages: - javascript eslint: enabled: true config: config: .eslintrc fixme: enabled: true scss-lint: enabled: true ratings: paths: - "**.scss" - "**.js" exclude_paths: - source/js/lib/jquery-3.1.0.min.js - Gruntfi...
Add ruby bio meta package
--- # Configuration file defining ruby libraries to install # using gem install (avoiding the distribution package manager) # # Gems are installed for Ruby1.9 gems: - addressable - cake - cheat - fastercsv - hpricot - htmlentities - json - kwalify - libxml-ruby - uuidtools - xml-simple # science...
--- # Configuration file defining ruby libraries to install # using gem install (avoiding the distribution package manager) # # Gems are installed for Ruby1.9 gems: - addressable - cake - cheat - fastercsv - hpricot - htmlentities - json - kwalify - libxml-ruby - uuidtools - xml-simple # science...
Use wrapper & dependencies cache in Gradle GH action
name: "Build Gradle project" on: [push, workflow_dispatch] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [ 8, 9, 10, 11, 12, 13 ] name: Building on Java ${{ matrix.java }} steps: - name: Check out project uses: actions/checkout@v2 - name: Set...
name: "Build Gradle project" on: [push, workflow_dispatch] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [ 8, 9, 10, 11, 12, 13 ] name: Building on Java ${{ matrix.java }} steps: - name: Check out project uses: actions/checkout@v2 - name: Set...
Adjust for latest MonologBundle change
imports: - { resource: config.yml } monolog: handlers: main: type: fingerscrossed action_level: error handler: nested nested: type: stream path: %kernel.logs_dir%/%kernel.environment%.log level: debug
imports: - { resource: config.yml } monolog: handlers: main: type: fingers_crossed action_level: error handler: nested nested: type: stream path: %kernel.logs_dir%/%kernel.environment%.log level: debug
Update from Hackage at 2019-06-28T17:10:02Z
homepage: https://github.com/alx741/alerts#readme changelog-type: '' hash: b9f36b697ff952ed72b3e62a536884d09bd937fc125bf6e1ff62558169fec7f9 test-bench-deps: {} maintainer: alx@sillybytes.net synopsis: Alert messages for web applications changelog: '' basic-deps: base: ! '>=4.7 && <5' text: ! '>=0.11 && <2.0' blaz...
homepage: https://github.com/alx741/alerts#readme changelog-type: '' hash: e436c13b2d459397c63578cba75469695a0b750052da67299832909a6bc1d646 test-bench-deps: {} maintainer: alx@sillybytes.net synopsis: Alert messages for web applications changelog: '' basic-deps: base: ! '>=4.7 && <5' text: ! '>=0.11 && <2.0' blaz...
Switch testing to Xena testing runtime
- project: templates: - publish-openstack-docs-pti - openstack-cover-jobs - openstack-python35-jobs - openstack-python3-wallaby-jobs - release-notes-jobs-python3 check: jobs: - hacking-integration-nova: voting: false - job: name: hacking-integration-n...
- project: templates: - publish-openstack-docs-pti - openstack-cover-jobs - openstack-python35-jobs - openstack-python3-xena-jobs - release-notes-jobs-python3 check: jobs: - hacking-integration-nova: voting: false - job: name: hacking-integration-nova...
Remove "write a program" from hamming exercise
--- blurb: "Write a program that can calculate the Hamming difference between two DNA strands." source: "The Calculating Point Mutations problem at Rosalind" source_url: "http://rosalind.info/problems/hamm/"
--- blurb: "Calculate the Hamming difference between two DNA strands." source: "The Calculating Point Mutations problem at Rosalind" source_url: "http://rosalind.info/problems/hamm/"
Install g++ 4.8 so that native compilation works in Node >= 4
language: node_js sudo: false node_js: - '5' before_install: # Log HTTP requests - npm config set loglevel http install: - time npm install
language: node_js sudo: false node_js: - '5' env: global: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: # Log HTTP requests - npm config set loglevel http install: - time npm install
Update Travis CI config to run on Python 3.5.
language: python python: - "2.7" env: - DJANGO=1.7.11 - DJANGO=1.8.9 - DJANGO=1.9.2 install: - pip install -q Django==$DJANGO --use-mirrors - pip install coveralls - pip install -r rest_auth/tests/requirements.pip script: - coverage run --source=rest_auth setup.py test after_success: - coveralls befor...
language: python python: - "2.7" - "3.5" env: - DJANGO=1.7.11 - DJANGO=1.8.9 - DJANGO=1.9.2 install: - pip install -q Django==$DJANGO --use-mirrors - pip install coveralls - pip install -r rest_auth/tests/requirements.pip matrix: exclude: - python: "3.5" env: DJANGO=1.7.11 script: - covera...
Simplify Travis config and fix ChefDK 2.0 failures
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-ubuntu-1404 - INSTANCE=defau...
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" branches: only: - master services: docker env: matrix: - INSTANCE=default-ubuntu-1404 - INSTANCE=defau...
Enable C extensions for Travis. This is only for sqlite3 which is a test dependency.
rvm: - 1.8.7 - 1.9.3 - jruby - ree
rvm: - 1.8.7 - 1.9.3 - jruby - ree env: JRUBY_OPTS='--server'
Drop Node 0.12 for testing. That corresponds to an ancient version of Atom. Use new container Travis-CI.
language: node_js node_js: - "0.12" - "4" - "5" branches: only: - master script: - npm run lint && npm test
language: node_js sudo: false branches: only: - master node_js: - "4" - "5" - "6" script: - npm run lint && npm test
Fix incorrect tab character in Travis config
os: - osx language: generic sudo: required dist: trusty osx_image: xcode8.2 before_install: - if [ "$TRAVIS_OS_NAME" == "osx" ]; then gem install xcpretty -N --no-ri --no-rdoc; fi script: - if [ "$TRAVIS_OS_NAME" == "osx" ]; then swift -version xcodebuild -version; xcodebuild -shows...
os: - osx language: generic sudo: required dist: trusty osx_image: xcode8.2 before_install: - if [ "$TRAVIS_OS_NAME" == "osx" ]; then gem install xcpretty -N --no-ri --no-rdoc; fi script: - if [ "$TRAVIS_OS_NAME" == "osx" ]; then swift -version xcodebuild -version; xcodebuild -shows...
Use the latest Rubies on Travis
language: ruby before_install: - gem install bundler gemfile: - Gemfile rvm: - 2.0.0 - 2.1.10 - 2.2.5 - 2.3.1 - ruby-head matrix: allow_failures: - rvm: ruby-head script: - bundle exec rspec spec
language: ruby before_install: - gem install bundler gemfile: - Gemfile rvm: - 2.0.0 - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 - ruby-head matrix: allow_failures: - rvm: ruby-head script: - bundle exec rspec spec
Fix theano to use pip. Fix condaenv for pip
language: python python: - 2.6 - 2.7 - 3.3 # - 3.4 notifications: email: false # Setup anaconda before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda/bin:$PATH - con...
language: python python: - 2.6 - 2.7 - 3.3 # - 3.4 notifications: email: false # Setup anaconda before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda/bin:$PATH - con...
Test with Node.js 5.1 on Travis CI.
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4.2' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - ...
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4.2' - '5.1' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_ins...
Remove Settings env variable, added postgres env variable.
language: python python: - "2.7" env: global: - DJANGO_SETTINGS_MODULE='localized_recurrence.tests.settings' matrix: - DJANGO=1.6.2 install: - pip install -q coverage pep8 pyflakes Django==$DJANGO - pip install -q -e . before_script: - pep8 localized_recurrence --max-line-length=120 --exclude=migrat...
language: python python: - "2.7" env: global: - DB=postgres matrix: - DJANGO=1.6.2 install: - pip install -q coverage pep8 pyflakes Django==$DJANGO - pip install -q -e . before_script: - pep8 localized_recurrence --max-line-length=120 --exclude=migrations - pyflakes localized_recurrence script: ...
Use custom gdk-pixbuf.rb with extra flags exposed
os: osx osx_image: beta-xcode6.2 env: - COLUMNS=240 install: - brew update - brew install gdk-pixbuf --disable-gio-sniffing --without-libtiff --without-gdiplus --disable-modules --with-included-loaders="png,jpeg" - brew install homebrew/science/vips --with-webp --without-fftw --without-poppler - brew info gdk...
os: osx osx_image: beta-xcode6.2 env: - COLUMNS=240 install: - brew update - brew install https://raw.githubusercontent.com/lovell/homebrew-core/gdk-pixbuf-expose-configure-flags/Formula/gdk-pixbuf.rb --without-modules --with-included-loaders="png,jpeg" - brew install homebrew/science/vips --with-webp --without...
Drop node 4 support; add node 10
sudo: false language: node_js env: - SENECA_VER=seneca@2.x.x - SENECA_VER=seneca@3.x.x - SENECA_VER=seneca@plugin - SENECA_VER=senecajs/seneca node_js: - "8" - "6" - "4" before_script: - npm uninstall seneca - npm install $SENECA_VER after_script: - npm run coveralls
sudo: false language: node_js env: - SENECA_VER=seneca@2.x.x - SENECA_VER=seneca@3.x.x - SENECA_VER=seneca@plugin - SENECA_VER=senecajs/seneca node_js: - "10" - "8" - "6" before_script: - npm uninstall seneca - npm install $SENECA_VER after_script: - npm run coveralls
Use Java8 in Travis CI
sudo: true language: java env: global: - GRADLE_OPTS=-Xmx512m before_install: - sed -i 's#/usr/local/bin/protoc#/tmp/protobuf/bin/protoc#g' rejoiner/pom.xml - ./travis_before_install.sh # build protoc into /tmp/protobuf install: - pushd rejoiner && mvn verify -Dgpg.skip && popd script: - pushd rejoin...
sudo: true language: java jdk: - oraclejdk8 env: global: - GRADLE_OPTS=-Xmx512m before_install: - sed -i 's#/usr/local/bin/protoc#/tmp/protobuf/bin/protoc#g' rejoiner/pom.xml - ./travis_before_install.sh # build protoc into /tmp/protobuf install: - pushd rejoiner && mvn verify -Dgpg.skip && popd scri...
Use the "trusty" dist in TravisCI
language: ruby sudo: false cache: bundler rvm: - 2.3.1 addons: apt: packages: - vim-gtk before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "vim --version"
language: ruby sudo: false dist: trusty cache: bundler rvm: - 2.3.1 addons: apt: packages: - vim-gtk before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "vim --version"
Update Travis install to further speed up build
language: Java jdk: - oraclejdk7 - openjdk7 script: mvn verify
language: Java jdk: - oraclejdk7 - openjdk7 install: mvn dependency:go-offline script: mvn verify
Remove node 5 for test
language: node_js sudo: false node_js: - "io.js" - "2" - "3" - "4" - "5" - "6.5" - "node" branches: only: - master
language: node_js sudo: false node_js: - "io.js" - "2" - "3" - "4" - "6.5" - "node" branches: only: - master
Fix Travis config for composer usage
language: php php: - 5.3 - 5.4 - 5.5 before_script: - cd tests script: phpunit
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 before_install: - composer self-update install: - composer update -o before_script: - cd tests script: phpunit
Add Travis CI step for Mix Format
language: elixir elixir: - 1.3.4 - 1.4.5 - 1.5.3 - 1.6.6 - 1.7.2 otp_release: - 21.0 - 20.1 - 19.3 matrix: exclude: - otp_release: 21.0 elixir: 1.3.4 - otp_release: 21.0 elixir: 1.4.5 - otp_release: 21.0 elixir: 1.5.3 - otp_release: 20.1 elixir: 1.3.4 include:...
language: elixir elixir: - 1.3.4 - 1.4.5 - 1.5.3 - 1.6.6 - 1.7.2 otp_release: - 21.0 - 20.1 - 19.3 matrix: exclude: - otp_release: 21.0 elixir: 1.3.4 - otp_release: 21.0 elixir: 1.4.5 - otp_release: 21.0 elixir: 1.5.3 - otp_release: 20.1 elixir: 1.3.4 include:...
Add Node.js 7.7 and 7.8 to CI
language: node_js node_js: - "6.0" - "6.1" - "6.2" - "6.3" - "6.4" - "6.5" - "6.6" - "6.7" - "6.8" - "6.9" - "6.10" - "7.0" - "7.1" - "7.2" - "7.3" - "7.4" - "7.5" - "7.6" script: - npm test
language: node_js node_js: - "6.0" - "6.1" - "6.2" - "6.3" - "6.4" - "6.5" - "6.6" - "6.7" - "6.8" - "6.9" - "6.10" - "7.0" - "7.1" - "7.2" - "7.3" - "7.4" - "7.5" - "7.6" - "7.7" - "7.8" script: - npm test
Add php 7.3 and nightly for testing
sudo: false language: php php: - 5.6 - 7.0 - 7.1 - 7.2 cache: directories: - $HOME/.composer/cache/files - vendor install: - composer install --prefer-dist script: - composer run cs-check - composer run coverage after_success: - bash <(curl -s https://codecov.io/bash)
sudo: false language: php php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - nightly matrix: allow_failures: - php: 7.3 - php: nightly cache: directories: - $HOME/.composer/cache/files - vendor install: - composer install --prefer-dist script: - composer run cs-check - composer run coverage after_success: - bash <(...
Test against PHP5.6, PHP7, & HHVM
language: php php: - 5.3 - 5.4 - 5.5 before_script: - composer self-update - composer install script: phpunit --coverage-text
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7 - hhvm - hhvm-nightly matrix: allow_failures: - php: 7 - php: hhvm - php: hhvm-nightly fast_finish: true before_script: - composer self-update - composer install script: phpunit --coverage-text
Exclude ruby 2.2.2 with activerecord 3.0, as it's not supported
language: ruby rvm: - "1.9.3" - "2.0.0" - "2.2.2" gemfile: - gemfiles/activerecord30.gemfile - gemfiles/activerecord40.gemfile - gemfiles/activerecord41.gemfile - gemfiles/activerecord42.gemfile script: "bundle exec rake spec"
language: ruby rvm: - "1.9.3" - "2.0.0" - "2.2.2" gemfile: - "gemfiles/activerecord30.gemfile" - "gemfiles/activerecord40.gemfile" - "gemfiles/activerecord41.gemfile" - "gemfiles/activerecord42.gemfile" matrix: exclude: - rvm: "2.2.2" gemfile: "gemfiles/activerecord30.gemfile" script: "bund...
Make Travis CI config for rust-0.9.
branches: only: - master - rust-0.8 - rust-0.9 before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc - yes | sudo apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise universe' - sudo apt-g...
branches: only: - master - rust-0.8 - rust-0.9 before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc - yes | sudo apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise universe' - sudo apt-g...
Remove support for python 2.6
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" script: "python setup.py test"
language: python python: - "2.7" - "3.2" - "3.3" script: "python setup.py test"
Use Xcode 7 GM image on Travis.
language: objective-c osx_image: xcode6.4 git: submodules: false before_install: - brew update; brew update - brew outdated xctool || brew upgrade xctool - brew install carthage install: script/update script: script/test
language: objective-c osx_image: xcode7 git: submodules: false before_install: - brew update; brew update - brew outdated xctool || brew upgrade xctool - brew install carthage install: script/update script: script/test
Check commit messages with Gnitpick and minor Travis-CI syntax fixes
language: python python: "2.7" sudo: false cache: pip install: - pip install ansible script: - ansible-playbook --syntax-check -i hosts/development site.yml
language: python os: linux cache: pip install: - curl -Os https://raw.githubusercontent.com/Seravo/gnitpick/master/gnitpick.py - pip install ansible script: # Abort immediately if one step fails # https://github.com/travis-ci/travis-ci/issues/1066#issuecomment-32415710 - set -e # Run our custom Git comm...
Update pid_one_command for Ubuntu 18.04 tests
--- driver: name: dokken chef_version: <%= ENV['CHEF_VERSION'] || 'latest' %> privileged: true # because Docker and SystemD/Upstart transport: name: dokken provisioner: name: dokken deprecations_as_errors: false verifier: name: inspec chef_license: accept platforms: - name: ubuntu-16.04 driver...
--- driver: name: dokken chef_version: <%= ENV['CHEF_VERSION'] || 'latest' %> privileged: true # because Docker and SystemD/Upstart transport: name: dokken provisioner: name: dokken deprecations_as_errors: false verifier: name: inspec chef_license: accept platforms: - name: ubuntu-16.04 driver...
Add extension setting from octopress
# Site settings source: sample title: Your awesome title email: your-email@domain.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) an...
# Site settings source: sample title: Your awesome title email: your-email@domain.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) an...
Remove Windows from CI untill I'll remove Babel.
name: CI on: push: branches: [master] paths: - "**.js" - "**.mjs" - "package.json" - ".github/workflows/ci.yml" pull_request: branches: [master] paths: - "**.js" - "**.mjs" - "package.json" - ".github/workflows/ci.yml" jobs: ci: strategy: ...
name: CI on: push: branches: [master] paths: - "**.js" - "**.mjs" - "package.json" - ".github/workflows/ci.yml" pull_request: branches: [master] paths: - "**.js" - "**.mjs" - "package.json" - ".github/workflows/ci.yml" jobs: ci: strategy: ...
Use new "bashbrew" composite action
name: GitHub CI on: pull_request: push: schedule: - cron: 0 0 * * 0 defaults: run: shell: 'bash -Eeuo pipefail -x {0}' jobs: generate-jobs: name: Generate Jobs runs-on: ubuntu-latest outputs: strategy: ${{ steps.generate-jobs.outputs.strategy }} steps: - uses: actions/c...
name: GitHub CI on: pull_request: push: schedule: - cron: 0 0 * * 0 defaults: run: shell: 'bash -Eeuo pipefail -x {0}' jobs: generate-jobs: name: Generate Jobs runs-on: ubuntu-latest outputs: strategy: ${{ steps.generate-jobs.outputs.strategy }} steps: - uses: actions/c...
Install kubectx on work machines
--- - name: install devops tools when: mtype == 'personal' become: true pacman: name: - terraform - packer - sops - newrelic-cli - name: install kubernetes tools when: mtype == 'personal' become: true pacman: name: - kubectl - kubectx - helm - helmfil...
--- - name: install devops tools when: mtype == 'personal' become: true pacman: name: - terraform - packer - sops - newrelic-cli - name: install kubernetes tools when: mtype == 'personal' become: true pacman: name: - kubectl - helm - helmfile - pluto ...
Add github output flag to get better yamllint output.
name: Validate Documentation Metadata on: pull_request: # run on demand workflow_dispatch: jobs: validate-doc-metadata: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: persist-credentials: false fetch-depth: 0 - name: Set up Python 3.9.x us...
name: Validate Documentation Metadata on: pull_request: # run on demand workflow_dispatch: jobs: validate-doc-metadata: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: persist-credentials: false fetch-depth: 0 - name: Set up Python 3.9.x us...
Update tokens in Unused page type summary report
details: name: Unused page type summary shortDescription: Checks for unused pages types. longDescription: | This report checks for page types that are not in use by any page on any site. terms: countUnusedPageType: <count> unused page <count:type|types>. unusedPageTypes: Unused page types
details: name: Unused page type summary shortDescription: Checks for unused pages types. longDescription: | This report checks for page types that are not in use by any page on any site. terms: countUnusedPageType: <count> unused page <count|type|types>. unusedPageTypes: Unused page types
Support the latest pkg:http (dev dependency)
name: shelf_web_socket version: 0.2.3 description: >- A shelf handler that wires up a listener for every connection. author: Dart Team <misc@dartlang.org> homepage: https://github.com/dart-lang/shelf_web_socket environment: sdk: ">=2.0.0 <3.0.0" dependencies: shelf: ^0.7.0 web_socket_channel: ^1.0.0 stream...
name: shelf_web_socket version: 0.2.3 description: >- A shelf handler that wires up a listener for every connection. author: Dart Team <misc@dartlang.org> homepage: https://github.com/dart-lang/shelf_web_socket environment: sdk: ">=2.0.0 <3.0.0" dependencies: shelf: ^0.7.0 web_socket_channel: ^1.0.0 stream...
Remove oh-my-zsh installation from dotbot
--- - defaults: link: create: true relink: true - clean: ['~'] - shell: - [sh omz.sh, Install/Update oh-my-zsh] - link: ~/.vimrc: ../vimrc ~/.vimrc.bundles: ../vim/bundle.vim ~/.vimrc.map: ../vim/map.vim ~/.zshrc: force: true path: ../zshrc ~/.zsh: ../zsh ~/.p10...
--- - defaults: link: create: true relink: true - clean: ['~'] - link: ~/.vimrc: ../vimrc ~/.vimrc.bundles: ../vim/bundle.vim ~/.vimrc.map: ../vim/map.vim ~/.zshrc: force: true path: ../zshrc ~/.zsh: ../zsh ~/.p10k.zsh: ../zsh/configs/p10k.zsh ~/.gitconfig: ../...
Add node version in GH action
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest services: mongodb: image: mongo ports: - 27017:27017 steps: - uses: actions/checkout@v2 - name: Use Node.js uses: actions/setu...
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest services: mongodb: image: mongo ports: - 27017:27017 steps: - uses: actions/checkout@v2 - name: Use Node.js uses: actions/setu...
Switch CI to Go 1.18
name: Go on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.17 - name: Test run: go test -race -count 2 -bench . ./... - name: Bench run: go test -...
name: Go on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.18 - name: Test run: go test -race -count 2 -bench . ./... - name: Bench run: go test -...
Update from Forestry.io - Updated Forestry configuration
--- new_page_extension: md auto_deploy: true admin_path: webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: media public_path: "/media" front_matter_path: '' use_front_matter_path: false file_template: ":year:-:month:-:day:-:filename:...
--- new_page_extension: md auto_deploy: true admin_path: webhook_url: sections: - type: heading label: Welcome - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: media public_path: "/media" front_matter_path: '' use_front_matter_path: false file_template:...
Install htop, jq, and qrencode
--- - hosts: localhost vars: my_ansible_version: 2.8.6 ffsend_version: 0.2.52 golang_version: 1.13.3 packer_version: 1.4.4 terraform_version: 0.12.12 terraform_old_version: 0.11.14 tasks: - name: ensure ansible dependencies are installed become: True yum: ...
--- - hosts: localhost vars: my_ansible_version: 2.8.6 ffsend_version: 0.2.52 golang_version: 1.13.3 packer_version: 1.4.4 terraform_version: 0.12.12 terraform_old_version: 0.11.14 tasks: - name: ensure ansible dependencies are installed become: True yum: ...
Update from Forestry.io - Updated Forestry configuration
--- new_page_extension: md auto_deploy: true admin_path: webhook_url: sections: - type: document path: FORESTRY-README.md label: Welcome - First Steps read_only: true - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all upload_dir: uploads public_path: "/uploads" f...
--- new_page_extension: md auto_deploy: true admin_path: webhook_url: sections: - type: document path: FORESTRY-README.md label: Welcome - First Steps read_only: true - type: jekyll-posts label: Posts create: all - type: directory path: '' label: Pages create: all match: "*" exclude: "*README.md" ...
Swap Debian 8 for 10 in the Kitchen config
driver: name: vagrant provisioner: name: chef_zero deprecations_as_errors: true chef_license: accept-no-persist verifier: name: inspec platforms: - name: amazonlinux driver_config: box: mvbcoding/awslinux - name: amazonlinux-2 - name: centos-6 - name: centos-7 - name: debian-8 - name:...
driver: name: vagrant provisioner: name: chef_zero deprecations_as_errors: true chef_license: accept-no-persist verifier: name: inspec platforms: - name: amazonlinux driver_config: box: mvbcoding/awslinux - name: amazonlinux-2 - name: centos-6 - name: centos-7 - name: debian-9 - name:...
Test Forge in multiple Python versions
language: python python: - '3.6' install: - pip install -r requirements.txt - pip install mdf_forge env: - TEST_ENV=travis script: - travis_wait 30 py.test before_install: - openssl aes-256-cbc -K $encrypted_4b438100ad6f_key -iv $encrypted_4b438100ad6f_iv -in travis.tar.enc -out travis.tar -d - tar xvf travis.tar - m...
language: python python: - '2.6' - '2.7' - '3.1' - '3.2' - '3.3' - '3.4' - '3.5' - '3.6' install: - pip install -r requirements.txt - pip install mdf_forge env: - TEST_ENV=travis script: - travis_wait 30 py.test before_install: - openssl aes-256-cbc -K $encrypted_4b438100ad6f_key -iv $encrypted_4b438100ad6f_iv -in tr...
Debug what's in the directory on Travis
sudo: false language: php env: global: - WP_CLI_BIN_DIR=/tmp/wp-cli-phar matrix: include: - php: 7.1 env: WP_VERSION=latest - php: 7.0 env: WP_VERSION=latest - php: 5.6 env: WP_VERSION=trunk - php: 5.6 env: WP_VERSION=latest - php: 5.6 env: WP_VERSION=latest ...
sudo: false language: php env: global: - WP_CLI_BIN_DIR=/tmp/wp-cli-phar matrix: include: - php: 7.1 env: WP_VERSION=latest - php: 7.0 env: WP_VERSION=latest - php: 5.6 env: WP_VERSION=trunk - php: 5.6 env: WP_VERSION=latest - php: 5.6 env: WP_VERSION=latest ...