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/' | sort -g | tail -n 1) - git config --local user.name "Travis" - git config --local user.email "post@ninjadev.org" - git tag v$PACKAGE_VERSION - git push --tags before_deploy: - cd ~ deploy: provider: npm skip_cleanup: true email: post@ninjadev.org api_key: secure: iWwXLzno47upqZ0qETbuc+sWEDf9drr/KYulsjWJMCuTdeWj4HuF4NcMSENR43ngeEBO34+NxiAjC0yKe+qPJ6bmq06fYPjobPHUhI9tfWRUsuxxkxhZUnTsR2FaOz7vVe1GTECcqKtR1OAeJH7IPWvanKHNMOyXjUrvSKWPtmo= on: branch: master condition: "\"$PACKAGE_VERSION\" != \"$LATEST_TAG\""
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/' | sort -g | tail -n 1) - git config --local user.name "Travis" - git config --local user.email "post@ninjadev.org" - git tag v$PACKAGE_VERSION - git push --tags before_deploy: - cd $TRAVIS_BUILD_DIR deploy: provider: npm skip_cleanup: true email: post@ninjadev.org api_key: secure: iWwXLzno47upqZ0qETbuc+sWEDf9drr/KYulsjWJMCuTdeWj4HuF4NcMSENR43ngeEBO34+NxiAjC0yKe+qPJ6bmq06fYPjobPHUhI9tfWRUsuxxkxhZUnTsR2FaOz7vVe1GTECcqKtR1OAeJH7IPWvanKHNMOyXjUrvSKWPtmo= on: branch: master condition: "\"$PACKAGE_VERSION\" != \"$LATEST_TAG\""
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: XMYPobFT192HVOxbTtl7hGdimycDqXwC4Unv3rLkrf527VXx7O1i+chXkKn3i5BpQh68/2a9mQwgFGD73rxQ6fzn57ZidX67d4wRUFDFOqQudH6MjZKHfIb9Q3FjSkkmku1sIv/AnEIAQMX87QPPeoss1+BY5i4nQWRLouH6xpU=
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: XMYPobFT192HVOxbTtl7hGdimycDqXwC4Unv3rLkrf527VXx7O1i+chXkKn3i5BpQh68/2a9mQwgFGD73rxQ6fzn57ZidX67d4wRUFDFOqQudH6MjZKHfIb9Q3FjSkkmku1sIv/AnEIAQMX87QPPeoss1+BY5i4nQWRLouH6xpU= matrix: allow_failures: - node_js: iojs
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 csunplugged/ # Runs test suite script: - flake8 --config=../.flake8 - coverage run --rcfile=../.coveragerc manage.py test --pattern "test_*.py" -v 3 - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then manage.py test --pattern "test_*.py" --reverse -v 0; fi' after_script: coverage report --rcfile=../.coveragerc #coveralls # Stop email notifications but post to organisation Slack channel notifications: email: false slack: rooms: deptfunstuff:abJKvzApk5SKtcEyAgtswXAv on_success: change on_failure: change
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 csunplugged/ # Runs test suite script: - flake8 --config=../.flake8 - coverage run --rcfile=../.coveragerc manage.py test --pattern "test_*.py" -v 3 - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then manage.py test --pattern "test_*.py" --reverse -v 0; fi' - coverage report --rcfile=../.coveragerc after_script: True #coveralls # Stop email notifications but post to organisation Slack channel notifications: email: false slack: rooms: deptfunstuff:abJKvzApk5SKtcEyAgtswXAv on_success: change on_failure: change
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=yfinance/ after_success: - coveralls branches: only: - master notifications: slack: tradologics:HcnS6XusfcuS02waQPCG18oc webhooks: on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always
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.txt - pip install . script: - pytest --cov=yfinance/ after_success: - coveralls branches: only: - master notifications: slack: tradologics:HcnS6XusfcuS02waQPCG18oc webhooks: on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always
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/$(phpenv version-name)/etc/php.ini; fi;' script: - phpunit -c test/phpunit-travis.xml after_script: - cat /var/log/elasticsearch/*.log - cat /var/log/nginx/*.log - cat build/logs/phpunit-tap.log - sudo composer require satooshi/php-coveralls --no-ansi --no-progress --no-interaction - php vendor/bin/coveralls -v
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" ]; then echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;' script: - phpunit -c test/phpunit-travis.xml after_script: - cat /var/log/elasticsearch/*.log - cat /var/log/nginx/*.log - cat build/logs/phpunit-tap.log - sudo composer require satooshi/php-coveralls --no-ansi --no-progress --no-interaction - php vendor/bin/coveralls -v
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 - ./vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml - ./vendor/bin/phpcs src tests --standard=psr2 -sp after_script: - php vendor/bin/coveralls
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 script: - ./vendor/bin/parallel-lint src tests - ./vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml - ./vendor/bin/phpcs src tests --standard=psr2 -sp after_script: - php vendor/bin/coveralls
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 - os: linux rvm: 2.5.0 env: MSPEC_OPTS="-R2 -ff" - os: linux rvm: 2.2.8 - os: linux rvm: 2.3.5 - os: linux rvm: 2.4.2 - os: linux rvm: 2.5.0 env: CHECK_LEAKS=true RUBOCOP=true - os: linux rvm: ruby-head allow_failures: - os: linux rvm: ruby-head branches: only: - master - /^try/ notifications: email: on_success: change on_failure: change
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 - os: linux rvm: 2.5.0 env: MSPEC_OPTS="-R2 -ff" - os: linux rvm: 2.2.8 - os: linux rvm: 2.3.5 - os: linux rvm: 2.4.2 - os: linux rvm: 2.5.0 env: CHECK_LEAKS=true RUBOCOP=true - os: linux rvm: ruby-head allow_failures: - os: linux rvm: ruby-head branches: only: - master - /^try/ notifications: email: on_success: change on_failure: change
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/* > build/SHA256SUMS - cat build/SHA256SUMS deploy: provider: releases api_key: secure: "" file_glob: true file: build/* skip_cleanup: true on: tags: true after_script: ls -l --block-size=kB build cache: directories: - node_modules env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
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/* > build/SHA256SUMS - cat build/SHA256SUMS deploy: provider: releases api_key: secure: mco1ycbfGXZEiBywOmM5A50Y1QPFawj4i0gdB9JDkXDvY7N2kPZyCdAeOQOMEJuetGT3HvJuTG0Ll47sithZfPqq6wx/4EeP8YQYYFIyoOlsIGi5MDR1kS5ZOqKDWGe5+x+/rUZbmuMHvgHWNSjPG8mBrp5xWmON6ETkLWfVB0c= file_glob: true file: build/* skip_cleanup: true on: repo: AliasIO/Wappalyzer tags: true after_script: ls -l --block-size=kB build cache: directories: - node_modules env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
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 packages # whitelisted on https://github.com/travis-ci/apt-package-whitelist: addons: apt: packages: - libkeyutils-dev install: # Installation step for the python package itself: - python setup.py install script: - python test/keyutils_test.py
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 packages # whitelisted on https://github.com/travis-ci/apt-package-whitelist: addons: apt: packages: - libkeyutils-dev install: # Installation step for the python package itself: - pip install pytest - python setup.py install # Note, when running via py.test, we have to prevent importing keyutils from # current directory which doesn't contain the shared object: - rm -r keyutils script: - py.test -v test/
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=1.1.0
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_install: - npm install - make zic && make
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_install: - npm install - make zic && make
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_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' - export PATH=/opt/ghc/7.10.3/bin:$PATH addons: apt: sources: - hvr-ghc packages: - ghc-7.10.3 - libgmp-dev - openmpi-bin - libopenmpi-dev script: - stack --no-terminal --skip-ghc-check build --ghc-options=-ferror-spans - stack install . - ./cmake-for-x86.sh - stack exec formura -- examples/pearson.fmr - make bin/pearson.out - stack exec formura -- examples/2d-mhd.fmr - mpicxx -c examples/2d-mhd.c - stack test - echo "done test"
# 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_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' - export PATH=/opt/ghc/7.10.3/bin:$PATH addons: apt: sources: - hvr-ghc packages: - ghc-7.10.3 - libgmp-dev - openmpi-bin - libopenmpi-dev script: - stack --no-terminal --skip-ghc-check build --ghc-options=-ferror-spans - stack install . - stack exec formura -- examples/pearson.fmr - ./cmake-for-x86.sh - make bin/pearson.out - stack exec formura -- examples/2d-mhd.fmr - mpicxx -c examples/2d-mhd.c - stack test - echo "done test"
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.gz - tar -zxf tmux-${TMUX_VERSION}.tar.gz - cd tmux-${TMUX_VERSION} - ./configure && make && sudo make install - cd .. script: make test
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}/tmux-${TMUX_VERSION}.tar.gz - tar -zxf tmux-${TMUX_VERSION}.tar.gz - cd tmux-${TMUX_VERSION} - ./configure && make && sudo make install - cd .. script: make test
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.enc -out ../../templates/gradle.properties -d || true after_success: - "./gradlew jacocoTestReport coveralls" notifications: webhooks: urls: - https://webhooks.gitter.im/e/f6b7a63532f846f96d89 on_success: change on_failure: always on_start: never
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.enc -out gradle.properties -d || true after_success: - "./gradlew jacocoTestReport coveralls" notifications: webhooks: urls: - https://webhooks.gitter.im/e/f6b7a63532f846f96d89 on_success: change on_failure: always on_start: never
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-dev libatlas-dev gfortran - mysql -e "create user 'datajoint'@'%' identified by 'datajoint'; GRANT ALL PRIVILEGES ON \`djtest\_%\`.* TO 'datajoint'@'%';" -uroot install: - travis_wait 30 pip install -r requirements.txt - pip install nose nose-cov python-coveralls # command to run tests script: - nosetests -vv --with-coverage --cover-package=datajoint after_success: - coveralls
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 liblapack-dev libatlas-dev gfortran - mysql -e "create user 'datajoint'@'%' identified by 'datajoint'; GRANT ALL PRIVILEGES ON \`djtest\_%\`.* TO 'datajoint'@'%';" -uroot install: - travis_wait 30 pip install -r requirements.txt - pip install nose nose-cov python-coveralls # command to run tests script: - nosetests -vv --with-coverage --cover-package=datajoint after_success: - coveralls
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 clean test | xcpretty after_success: - bash <(curl -s https://codecov.io/bash) -J 'Ramda' notifications: email: - tyronemichael@gmail.com - justin.guedes@gmail.com before_install: - gem install cocoapods --pre
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 | xcpretty after_success: - bash <(curl -s https://codecov.io/bash) -J 'Ramda' notifications: email: - tyronemichael@gmail.com - justin.guedes@gmail.com before_install: - gem install cocoapods --pre
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 apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise universe' - sudo apt-get update install: - sudo apt-get install rust-nightly libwxgtk2.9-0-unofficial libwxgtk2.9-dev - sudo apt-get install libclang-3.3-dev/precise-proposed script: - export LD_LIBRARY_PATH=/usr/lib/llvm-3.3/lib - ./travis/build.sh
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 - yes | sudo apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise universe' - sudo apt-get update install: - sudo apt-get install rust-nightly libwxgtk2.9-0-unofficial libwxgtk2.9-dev - sudo apt-get install libclang-3.3-dev/precise-proposed script: - export LD_LIBRARY_PATH=/usr/lib/llvm-3.3/lib - ./travis/build.sh
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: project: name: "mikoim/rogue" description: "Build submitted via Travis CI" notification_email: omochi@luna.miko.im build_command_prepend: "cmake . && make clean" build_command: "make" branch_pattern: master
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.065] - d: gdc - d: gdc-4.9.2 - d: gdc-4.9.0 env: [FRONTEND=2.065] script: - ./travis-ci.sh
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-2.065.0 env: [FRONTEND=2.065] - d: dmd-2.064.2 env: [FRONTEND=2.064] - d: ldc - d: ldc-0.16.1 env: [FRONTEND=2.067] - d: ldc-0.15.1 env: [FRONTEND=2.066] - d: ldc-0.14.0 env: [FRONTEND=2.065] - d: gdc - d: gdc-4.9.2 - d: gdc-4.9.0 env: [FRONTEND=2.065] script: - ./travis-ci.sh
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: - export PATH=/opt/terraform/:$PATH - cd feedpaper-api && make build - cd feedpaper-data && make build - cd feedpaper-web && make build
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: - export PATH=~/opt/terraform/:$PATH - cd feedpaper-api && make build - cd feedpaper-data && make build - cd feedpaper-web && make build
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 yarn test after_success: - yarn test:coverage # Misc Addons/Configs dist: trusty sudo: required addons: apt: sources: - google-chrome - ubuntu-toolchain-r-test packages: - google-chrome-stable - g++-4.8 # NPM Canary Build Config deploy: skip_cleanup: true provider: script script: echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc && yarn release --canary on: branch: master
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: - cp config/ci.config.json config/project.json script: - xvfb-run yarn test after_success: - yarn test:coverage # Misc Addons/Configs dist: trusty sudo: required addons: apt: sources: - google-chrome - ubuntu-toolchain-r-test packages: - google-chrome-stable - g++-4.8 # NPM Canary Build Config deploy: skip_cleanup: true provider: script script: yarn release --canary on: branch: master
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' versionCode: 3 commit: '1.2' subdir: app gradle: - yes - versionName: '1.3' versionCode: 4 commit: '1.3' subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.3' CurrentVersionCode: 4
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' versionCode: 3 commit: '1.2' subdir: app gradle: - yes - versionName: '1.3' versionCode: 4 commit: '1.3' subdir: app gradle: - yes - versionName: '1.4' versionCode: 5 commit: '1.4' subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.4' CurrentVersionCode: 5
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: - ^(test-|)requirements.txt$ - ^setup.cfg$ - ^doc/.*$ - ^.*\.rst$ - ^releasenotes/.*$ - ^heatclient/tests/.*$ - project: templates: - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-victoria-jobs - check-requirements - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - heatclient-functional gate: jobs: - heatclient-functional
- 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: - ^(test-|)requirements.txt$ - ^setup.cfg$ - ^doc/.*$ - ^.*\.rst$ - ^releasenotes/.*$ - ^heatclient/tests/.*$ - project: templates: - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-wallaby-jobs - check-requirements - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - heatclient-functional gate: jobs: - heatclient-functional
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: quay.io/samsung_ag/trogdor-framework:latest imagePullPolicy: Always name: framework ports: - containerPort: 9080 protocol: TCP dnsPolicy: ClusterFirst restartPolicy: Always
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: quay.io/samsung_ag/trogdor-framework:latest imagePullPolicy: IfNotPresent name: framework ports: - containerPort: 9080 protocol: TCP dnsPolicy: ClusterFirst restartPolicy: Always
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] requirements: build: - toolchain - libogg run: - libogg test: commands: - speexenc -v - speexdec -v about: home: http://www.speex.org license: BSD-3-Clause license_family: BSD license_file: COPYING summary: "Speex: A Free Codec For Free Speech" extra: recipe-maintainers: - mcernak
{% 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] requirements: build: - toolchain - libogg run: - libogg test: commands: - speexenc -v - speexdec -v about: home: http://www.speex.org license: BSD-3-Clause license_family: BSD license_file: COPYING summary: "Speex: A Free Codec For Free Speech" extra: recipe-maintainers: - mcernak
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\mingw64\share - pacman --version - appveyor-retry choco install ghc --version 8.0.2 | grep -v '^Extracting ' - cabal --version - appveyor-retry pacman -S -q --noconfirm mingw64/mingw-w64-x86_64-pkg-config mingw64/mingw-w64-x86_64-SDL2 build_script: - cabal update - cabal install happy - cabal install artifacts: - path: dist/ name: Windows binaries
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\mingw64\share - pacman --version - appveyor-retry choco install ghc --version 8.0.2 | grep -v '^Extracting ' - cabal --version - appveyor-retry pacman -S -q --noconfirm mingw64/mingw-w64-x86_64-pkg-config mingw64/mingw-w64-x86_64-SDL2 build_script: - cabal update - cabal install happy - appveyor-retry git clone git@github.com:Mikolaj/sdl2.git - cd sdl2 - cabal install - cd .. - cabal install artifacts: - path: dist/ name: Windows binaries
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' transformers: ! '>=0.2 && <0.6' all-versions: - '0.1' - 0.1.2 - 0.1.2.1 - 0.1.2.2 - 0.2.0.0 - 0.2.2.0 - 0.2.2.1 - 0.3.0.0 - 0.3.1.0 - 0.4.0.0 author: M Farkas-Dyck latest: 0.4.0.0 description-type: haddock description: '' license-name: BSD-3-Clause
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' transformers: ! '>=0.2 && <0.6' all-versions: - '0.1' - 0.1.2 - 0.1.2.1 - 0.1.2.2 - 0.2.0.0 - 0.2.2.0 - 0.2.2.1 - 0.3.0.0 - 0.3.1.0 - 0.4.0.0 - 0.4.1.0 author: M Farkas-Dyck latest: 0.4.1.0 description-type: haddock description: '' license-name: BSD-3-Clause
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, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # [START app_yaml] runtime: ruby vm: true entrypoint: bundle exec ruby app.rb -p $PORT # [END app_yaml]
# 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, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # [START app_yaml] runtime: ruby env: flex entrypoint: bundle exec ruby app.rb -p $PORT # [END app_yaml]
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-analytics google-analytics: id: "UA-98430810-4" # Other exclude: ['package.json', 'src' , 'node_modules']
# 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 exclude: ['package.json', 'src' , 'node_modules']
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: > path=/var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }} mode=0600 owner=root group=root - name: Create monitor directory file: > path=/var/lib/ceph/mon/ceph-{{ ansible_hostname }} state=directory owner=root group=root mode=0644 - name: Ceph monitor mkfs command: "ceph-mon --mkfs -i {{ ansible_hostname }} --fsid {{ cluster_uuid.stdout }} --keyring /var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }} creates=/var/lib/ceph/mon/ceph-{{ ansible_hostname }}/keyring" - name: Start and add that the monitor service to the init sequence service: > name=ceph state=started enabled=yes args=mon
--- - 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 file: > path=/var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }} mode=0600 owner=root group=root - name: Create monitor directory file: > path=/var/lib/ceph/mon/ceph-{{ ansible_hostname }} state=directory owner=root group=root mode=0644 - name: Ceph monitor mkfs command: "ceph-mon --mkfs -i {{ ansible_hostname }} --fsid {{ cluster_uuid.stdout }} --keyring /var/lib/ceph/tmp/keyring.mon.{{ ansible_hostname }} creates=/var/lib/ceph/mon/ceph-{{ ansible_hostname }}/keyring" - name: Start and add that the monitor service to the init sequence service: > name=ceph state=started enabled=yes args=mon
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 - src/js/vendor/jQuery-ajaxTransport-XDomainRequest/jQuery.XDomainRequest.js - src/js/note_embed.js - src/templates/*.jst # old_loader: # - src/js/old_loader.js # old_note_embed: # - src/js/vendor/underscore/underscore.js # - src/js/vendor/jquery/dist/jquery.js # # jQuery.XDomainRequest is for IE8/9 # - src/js/vendor/jQuery-ajaxTransport-XDomainRequest/jQuery.XDomainRequest.js # - src/js/old_note_embed.js # - src/templates/*.jst stylesheets: note_embed: - src/css/*.scss
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.XDomainRequest is for IE8/9 - src/js/vendor/jQuery-ajaxTransport-XDomainRequest/jQuery.XDomainRequest.js - src/js/note_embed.js - src/templates/*.jst # old_loader: # - src/js/old_loader.js # old_note_embed: # - src/js/vendor/underscore/underscore.js # - src/js/vendor/jquery/dist/jquery.js # # jQuery.XDomainRequest is for IE8/9 # - src/js/vendor/jQuery-ajaxTransport-XDomainRequest/jQuery.XDomainRequest.js # - src/js/old_note_embed.js # - src/templates/*.jst stylesheets: note_embed: - src/css/*.scss
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 - Gruntfile.js
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 - bio - bio-bwa - bio-blastxmlparser - bio-gff3 - biomart - ruby-ensembl-api # databases - couchdb-ruby - data_objects - datamapper - dm-adjust - dm-aggregates - dm-ar-finders - dm-cli - dm-constraints - dm-core - dm-is-list - dm-is-nested_set - dm-is-remixable - dm-is-searchable - dm-is-state_machine - dm-is-tree - dm-is-versioned - dm-migrations - dm-observer - dm-rest-adapter - dm-serializer - dm-tags - dm-timestamps - dm-types - dm-validations - do_sqlite3 # Require up to date ruby. Fail on Centos default - vagrant - mysql - do_mysql - sqlite3-ruby # Problems building on 1.9.1 #- dm-ferret-adapter #- dm-sweatshop
--- # 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 - bio - bio-bwa - bio-blastxmlparser - bio-gff3 - biomart - ruby-ensembl-api - bio-biolinux # databases - couchdb-ruby - data_objects - datamapper - dm-adjust - dm-aggregates - dm-ar-finders - dm-cli - dm-constraints - dm-core - dm-is-list - dm-is-nested_set - dm-is-remixable - dm-is-searchable - dm-is-state_machine - dm-is-tree - dm-is-versioned - dm-migrations - dm-observer - dm-rest-adapter - dm-serializer - dm-tags - dm-timestamps - dm-types - dm-validations - do_sqlite3 # Require up to date ruby. Fail on Centos default - vagrant - mysql - do_mysql - sqlite3-ruby # Problems building on 1.9.1 #- dm-ferret-adapter #- dm-sweatshop
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 up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build with Gradle uses: eskatos/gradle-command-action@v1 with: arguments: build -Pteamcity-build-scan-plugin.acceptGradleTOS=true
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 up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build with Gradle uses: eskatos/gradle-command-action@v1 with: arguments: build -Pteamcity-build-scan-plugin.acceptGradleTOS=true wrapper-cache-enabled: true dependencies-cache-enabled: true configuration-cache-enabled: false
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' blaze-html: -any all-versions: - 0.1.0.0 - 0.1.1.0 author: Daniel Campoverde latest: 0.1.1.0 description-type: markdown description: | # alerts Generate Alerts for web applications ```haskell alert1 = Alert Success "Yay!" alert2 = Alert Error "Oops!" html1 = renderAlertsBootstrap3 [alert1, alert2] html2 = renderAlertsBootstrap4 [alert1, alert2] html3 = renderAlertsFoundation5 Round [alert1, alert2] html3 = renderAlertsBulma [alert1, alert2] ``` license-name: BSD-3-Clause
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' blaze-html: -any all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 author: Daniel Campoverde latest: 0.1.2.0 description-type: markdown description: | # alerts Generate Alerts for web applications ```haskell alert1 = Alert Success "Yay!" alert2 = Alert Error "Oops!" html1 = renderAlertsBootstrap3 [alert1, alert2] html2 = renderAlertsBootstrap4 [alert1, alert2] html3 = renderAlertsFoundation5 Round [alert1, alert2] html3 = renderAlertsBulma [alert1, alert2] ``` license-name: BSD-3-Clause
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-nova parent: openstack-tox description: | Run the integration job against nova with proposed hacking change. required-projects: - openstack/nova vars: tox_envlist: integration tox_extra_args: -vv openstack nova {{ ansible_user_dir }}/{{ zuul.projects['opendev.org/openstack/nova'].src_dir }}
- 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 parent: openstack-tox description: | Run the integration job against nova with proposed hacking change. required-projects: - openstack/nova vars: tox_envlist: integration tox_extra_args: -vv openstack nova {{ ansible_user_dir }}/{{ zuul.projects['opendev.org/openstack/nova'].src_dir }}
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 before_script: - flake8 . --config=flake8
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: - coverage run --source=rest_auth setup.py test after_success: - coveralls before_script: - flake8 . --config=flake8
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=default-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - script: - /opt/chefdk/bin/chef exec delivery local all env: UNIT_AND_LINT=1
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=default-ubuntu-1604 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
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 -showsdks; sleep 5; set -o pipefail; xcodebuild -project HelloWorld.xcodeproj -scheme HelloWorld -destination "platform=iOS Simulator,OS=10.2,name=iPhone 7 Plus" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty; xcodebuild -project HelloWorld.xcodeproj -scheme Framework -destination "platform=iOS Simulator,OS=10.2,name=iPhone 7 Plus" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty; fi
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 -showsdks; sleep 5; set -o pipefail; xcodebuild -project HelloWorld.xcodeproj -scheme HelloWorld -destination "platform=iOS Simulator,OS=10.2,name=iPhone 7 Plus" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty; xcodebuild -project HelloWorld.xcodeproj -scheme Framework -destination "platform=iOS Simulator,OS=10.2,name=iPhone 7 Plus" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty; fi
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 - conda update --yes conda # The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm # Install packages install: - conda install --yes python=$TRAVIS_PYTHON_VERSION atlas numpy scipy matplotlib nose pandas sympy pyparsing - conda install --yes -c dan_blanchard theano - pip install tinydb - python setup.py install # Run test script: - nosetests
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 - conda update --yes conda - conda create --yes -n condaenv python=$TRAVIS_PYTHON_VERSION - conda install --yes -n condaenv pip - source activate condaenv # The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm # Install packages install: - conda install --yes python=$TRAVIS_PYTHON_VERSION atlas numpy scipy matplotlib nose pandas sympy pyparsing - pip install tinydb theano - python setup.py install # Run test script: - nosetests
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: - npm install - npm install istanbul coveralls
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_install: - npm install - npm install istanbul coveralls
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=migrations - pyflakes localized_recurrence script: - coverage run --source='localized_recurrence' --branch setup.py test - coverage report --fail-under=100
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: - coverage run --source='localized_recurrence' --branch setup.py test - coverage report --fail-under=100
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-pixbuf - brew info vips script: - ./package.sh addons: artifacts: s3_region: eu-west-1
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-fftw --without-poppler - brew info gdk-pixbuf - brew info vips script: - ./package.sh addons: artifacts: s3_region: eu-west-1
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 rejoiner && mvn test && popd after_success: - pushd rejoiner && mvn clean test jacoco:report coveralls:report && popd os: - linux notifications: email: false before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
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 script: - pushd rejoiner && mvn test && popd after_success: - pushd rejoiner && mvn clean test jacoco:report coveralls:report && popd os: - linux notifications: email: false before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
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: - otp_release: 18.3 elixir: 1.5.3 allow_failures: - otp_release: 18.3 script: - MIX_ENV=test_no_nif mix test - MIX_ENV=test_phoenix mix test - MIX_ENV=test mix test
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: - otp_release: 18.3 elixir: 1.5.3 allow_failures: - otp_release: 18.3 script: - mix format --check-formatted --dry-run - MIX_ENV=test_no_nif mix test - MIX_ENV=test_phoenix mix test - MIX_ENV=test mix test
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 <(curl -s https://codecov.io/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: "bundle exec rake spec"
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-get update install: - sudo apt-get install rust-nightly libwxgtk2.9-0-unofficial libwxgtk2.9-dev - sudo apt-get install libclang-3.3-dev script: - export LD_LIBRARY_PATH=/usr/lib/llvm-3.3/lib - mkdir -p build - cd build - cmake -DRUSTCFLAGS="-L;/usr/lib/llvm-3.3/lib" .. - make
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-get update install: - sudo apt-get install rust-0.9 libclang-3.3-dev libwxgtk2.9-0-unofficial libwxgtk2.9-dev script: - export LD_LIBRARY_PATH=/usr/lib/llvm-3.3/lib - mkdir -p build - cd build - cmake -DRUSTCFLAGS="-L;/usr/lib/llvm-3.3/lib" .. - make
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 commit checks - python3 ./gnitpick.py - ansible-playbook --syntax-check -i hosts/development site.yml
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: image: dokken/ubuntu-16.04 pid_one_command: /bin/systemd attributes: java: jdk_version: '8' - name: ubuntu-18.04 driver: image: dokken/ubuntu-18.04 pid_one_command: /sbin/init attributes: java: jdk_version: '8' - name: centos-7 driver: image: dokken/centos-7 platform: rhel pid_one_command: /usr/lib/systemd/systemd attributes: java: jdk_version: '8' suites: - name: default run_list: - recipe[zookeeper_tester] - name: attributes run_list: - recipe[zookeeper_tester::attributes] attributes: zookeeper: conf_dir: /etc/zookeeper/conf env_vars: ZOO_LOG4J_PROP: 'INFO,ROLLINGFILE' - name: systemd run_list: - recipe[zookeeper_tester::systemd] attributes: zookeeper: conf_dir: /etc/zookeeper/conf
--- 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: image: dokken/ubuntu-16.04 pid_one_command: /bin/systemd attributes: java: jdk_version: '8' - name: ubuntu-18.04 driver: image: dokken/ubuntu-18.04 pid_one_command: /bin/systemd attributes: java: jdk_version: '8' - name: centos-7 driver: image: dokken/centos-7 platform: rhel pid_one_command: /usr/lib/systemd/systemd attributes: java: jdk_version: '8' suites: - name: default run_list: - recipe[zookeeper_tester] - name: attributes run_list: - recipe[zookeeper_tester::attributes] attributes: zookeeper: conf_dir: /etc/zookeeper/conf env_vars: ZOO_LOG4J_PROP: 'INFO,ROLLINGFILE' - name: systemd run_list: - recipe[zookeeper_tester::systemd] attributes: zookeeper: conf_dir: /etc/zookeeper/conf
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) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://yourdomain.com" # the base hostname & protocol for your site twitter_username: jekyllrb github_username: jekyll # Build settings markdown: kramdown # Octodmin settings octodmin: front_matter: custom: type: "string"
# 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) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://yourdomain.com" # the base hostname & protocol for your site twitter_username: jekyllrb github_username: jekyll # Build settings markdown: kramdown # Octopress settings post_ext: markdown # Octodmin settings octodmin: front_matter: custom: type: "string"
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: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] node: [14.x, 12.x, 10.x] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run: npm install - run: npm run ci - name: Codecov uses: codecov/codecov-action@v1 if: matrix.node == '14.x' && matrix.os == 'ubuntu-latest' with: file: ./coverage/coverage-final.json flags: unittests fail_ci_if_error: true
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: matrix: os: [ubuntu-latest, macOS-latest] node: [14.x, 12.x, 10.x] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run: npm install - run: npm run ci - name: Codecov uses: codecov/codecov-action@v1 if: matrix.node == '14.x' && matrix.os == 'ubuntu-latest' with: file: ./coverage/coverage-final.json flags: unittests fail_ci_if_error: true
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/checkout@v3 - id: generate-jobs name: Generate Jobs run: | git clone --depth 1 https://github.com/docker-library/bashbrew.git -b master ~/bashbrew strategy="$(~/bashbrew/scripts/github-actions/generate.sh)" echo "strategy=$strategy" >> "$GITHUB_OUTPUT" jq . <<<"$strategy" # sanity check / debugging aid test: needs: generate-jobs strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }} name: ${{ matrix.name }} runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Prepare Environment run: ${{ matrix.runs.prepare }} - name: Pull Dependencies run: ${{ matrix.runs.pull }} - name: Build ${{ matrix.name }} run: ${{ matrix.runs.build }} - name: History ${{ matrix.name }} run: ${{ matrix.runs.history }} - name: Test ${{ matrix.name }} run: ${{ matrix.runs.test }} - name: '"docker images"' run: ${{ matrix.runs.images }}
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/checkout@v3 - uses: docker-library/bashbrew@HEAD - id: generate-jobs name: Generate Jobs run: | strategy="$("$BASHBREW_SCRIPTS/github-actions/generate.sh")" echo "strategy=$strategy" >> "$GITHUB_OUTPUT" jq . <<<"$strategy" # sanity check / debugging aid test: needs: generate-jobs strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }} name: ${{ matrix.name }} runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Prepare Environment run: ${{ matrix.runs.prepare }} - name: Pull Dependencies run: ${{ matrix.runs.pull }} - name: Build ${{ matrix.name }} run: ${{ matrix.runs.build }} - name: History ${{ matrix.name }} run: ${{ matrix.runs.history }} - name: Test ${{ matrix.name }} run: ${{ matrix.runs.test }} - name: '"docker images"' run: ${{ matrix.runs.images }}
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 - helmfile - pluto - helm-secrets - helm-diff - helm-gcs - helm-s3 - name: install helm plugins when: mtype == 'personal' kubernetes.core.helm_plugin: plugin_path: /usr/lib/helm/plugins/{{ item }} loop: - diff - gcs - s3 - secrets
--- - 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 - helm-secrets - helm-diff - helm-gcs - helm-s3 - name: install kubernetes tools pt. ii when: mtype == 'personal' or mtype == 'work' become: true pacman: name: - kubectx - name: install helm plugins when: mtype == 'personal' kubernetes.core.helm_plugin: plugin_path: /usr/lib/helm/plugins/{{ item }} loop: - diff - gcs - s3 - secrets
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 uses: actions/setup-python@v2 with: python-version: "3.9.x" - name: Install dependencies run: | python -m pip install yamale python -m pip install yamllint - name: Lint with yamllint run: yamllint -c .doc_gen/validation/.yamllint.yaml .doc_gen/metadata/. - name: Validate metadata with yamale run: python .doc_gen/validation/validate_doc_metadata.py .doc_gen
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 uses: actions/setup-python@v2 with: python-version: "3.9.x" - name: Install dependencies run: | python -m pip install yamale python -m pip install yamllint - name: Lint with yamllint run: yamllint --format standard -c .doc_gen/validation/.yamllint.yaml .doc_gen/metadata/. - name: Validate metadata with yamale run: python .doc_gen/validation/validate_doc_metadata.py .doc_gen
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_channel: ">1.4.0 <3.0.0" dev_dependencies: http: ">=0.10.0 <0.12.0" test: ^1.0.0
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_channel: ">1.4.0 <3.0.0" dev_dependencies: http: ">=0.10.0 <0.13.0" test: ^1.0.0
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 ~/.p10k.zsh: ../zsh/configs/p10k.zsh ~/.gitconfig: ../gitconfig - shell: - [git submodule update --init --recursive, Installing submodules] - command: vim -u ~/.vimrc.bundles +PluginInstall +qall description: Installing vim plugins
--- - 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: ../gitconfig - shell: - [git submodule update --init --recursive, Installing submodules] - command: vim -u ~/.vimrc.bundles +PluginInstall +qall description: Installing vim plugins
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/setup-node@v1 - name: Install dependencies run: npm ci - name: Start server run: npm start & - name: Generate demo data run: npm run-script generate - name: Run tests run: npm test
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/setup-node@v2 with: node-version: '16' - name: Install dependencies run: npm ci - name: Start server run: npm start & - name: Generate demo data run: npm run-script generate - name: Run tests run: npm test
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 -run @ -bench . ./...
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 -run @ -bench . ./...
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:" build: preview_command: bundle exec jekyll build --drafts --unpublished --future -d _site publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv"
--- 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: ":year:-:month:-:day:-:filename:" build: preview_command: bundle exec jekyll build --drafts --unpublished --future -d _site publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv"
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: name: - python - python-pip state: present - name: install the ansible v{{ my_ansible_version }} become: True pip: name=ansible version={{ my_ansible_version }} - name: install python3 become: True yum: name: - python3 - python3-pip state: present - name: install shell extras become: True yum: name: - bash-completion - zsh state: present - name: install networking tools become: True yum: name: - bind-utils - telnet state: present - name: ensure home {{ item }} dir for {{ whoami }} file: path=/home/{{ homedir }}/{{ item }} state=directory loop: - bin - src - tmp - name: install ffsend (firefox send cli) import_tasks: ./ffsend.yml - name: install hashicorp tools (terraform and packer) import_tasks: ./hashicorp.yml - name: install golang (amzn2 repo version is too old) import_tasks: ./golang.yml
--- - 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: name: - python - python-pip state: present - name: install the ansible v{{ my_ansible_version }} become: True pip: name=ansible version={{ my_ansible_version }} - name: install python3 become: True yum: name: - python3 - python3-pip state: present - name: install shell extras become: True yum: name: - bash-completion - zsh state: present - name: install networking tools become: True yum: name: - bind-utils - telnet state: present - name: install other tools become: True yum: name: - htop - jq - qrencode state: present - name: ensure home {{ item }} dir for {{ whoami }} file: path=/home/{{ homedir }}/{{ item }} state=directory loop: - bin - src - tmp - name: install ffsend (firefox send cli) import_tasks: ./ffsend.yml - name: install hashicorp tools (terraform and packer) import_tasks: ./hashicorp.yml - name: install golang (amzn2 repo version is too old) import_tasks: ./golang.yml
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" 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: 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" new_doc_ext: ".md" upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":year:/:month:/:day:/:filename:"
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: debian-9 - name: fedora-29 - name: opensuse-leap-42 - name: ubuntu-16.04 - name: ubuntu-18.04 suites: - name: multi_instance run_list: - recipe[test] - name: checksum_examples run_list: - recipe[test::sum_examples]
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: debian-10 - name: fedora-29 - name: opensuse-leap-42 - name: ubuntu-16.04 - name: ubuntu-18.04 suites: - name: multi_instance run_list: - recipe[test] - name: checksum_examples run_list: - recipe[test::sum_examples]
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 - mkdir -p ~/mdf/credentials/ - mv MDF_Forge_tokens.json ~/mdf/credentials/MDF_Forge_tokens.json
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 travis.tar.enc -out travis.tar -d - tar xvf travis.tar - mkdir -p ~/mdf/credentials/ - mv MDF_Forge_tokens.json ~/mdf/credentials/MDF_Forge_tokens.json
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 BUILD=git WP_CLI_BIN_DIR='' - php: 5.6 env: WP_VERSION=3.7.11 - php: 5.3 env: WP_VERSION=3.7.11 DEPLOY_BRANCH=master before_script: - export PATH="$HOME/.composer/vendor/bin:$PATH" - | composer global require wp-coding-standards/wpcs phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs - ./ci/prepare.sh script: - phpcs --standard=phpcs.ruleset.xml $(find . -name '*.php') - ./ci/test.sh after_success: ./ci/deploy.sh cache: directories: - vendor - $HOME/.composer/cache branches: only: - master notifications: email: on_success: never on_failure: change
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 BUILD=git WP_CLI_BIN_DIR='' - php: 5.6 env: WP_VERSION=3.7.11 - php: 5.3 env: WP_VERSION=3.7.11 DEPLOY_BRANCH=master before_script: - export PATH="$HOME/.composer/vendor/bin:$PATH" - | composer global require wp-coding-standards/wpcs phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs - ./ci/prepare.sh script: - ls && find . -name '*.php' - phpcs --standard=phpcs.ruleset.xml $(find . -name '*.php') - ./ci/test.sh after_success: ./ci/deploy.sh cache: directories: - vendor - $HOME/.composer/cache branches: only: - master notifications: email: on_success: never on_failure: change