Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Remove install section (to use default)
language: node_js node_js: - 8 cache: directories: - node_modules install: - npm install script: - npm run build - npm test -- --coverage && codecov
language: node_js node_js: - 8 cache: directories: - node_modules script: - npm run build - npm test -- --coverage && codecov
Add before_install to install bundler
before_install: - sudo apt-get update -qq - sudo apt-get install -qq libfftw3-dev language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.0" - "2.1.1" - "2.1.2" - "2.1.4" - "2.2.0"
before_install: - sudo apt-get update -qq - sudo apt-get install -qq libfftw3-dev - gem install bundler language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.0" - "2.1.1" - "2.1.2" - "2.1.4" - "2.2.0"
Add Ruby 2 to Travis
language: ruby rvm: - 1.9.2 - 1.9.3 - ruby-head - jruby-19mode - jruby-head - rbx-19mode
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - ruby-head - jruby-19mode - jruby-head - rbx-19mode
Set LDLOADLIBS to get the linker switch to occur in the right place.
language: perl install: true script: perl ./Build.PL perl: - "5.14" - "5.18" - "5.20" branches: only: - master - stable sudo: false cache: - apt addons: apt: sources: - boost-latest packages: - libboost-thread1.55-dev - libboost-system1.55-dev
language: perl install: export LDLOADLIBS=-lstdc++ script: perl ./Build.PL perl: - "5.14" - "5.18" - "5.20" branches: only: - master - stable sudo: false cache: - apt addons: apt: sources: - boost-latest packages: - libboost-thread1.55-dev - libboost-system1.55-dev
Drop the support for nodejs v0.6
language: node_js node_js: - "0.6" - "0.8" - "0.10"
language: node_js node_js: - "0.8" - "0.10"
Add TypeScript build to Travis script
language: node_js node_js: - "7" - "6"
language: node_js node_js: - "7" - "6" script: - npm run dist - npm test
Drop Go versions down to just the two Go upstream supports (latest and latest-1)
language: go go_import_path: github.com/docker-library/go-dockerlibrary go: - 1.11.x - 1.10.x - 1.9.x - 1.8.x - 1.7.x - 1.6.x os: - linux - windows script: - | set -e +x rm -f coverage.txt for d in $(go list ./...); do ( set -x; go test -v -race -cover -coverprofile=profile.out -covermode=atomic "$d" ) if [ -f profile.out ]; then cat profile.out >> coverage.txt rm profile.out fi done after_script: - bash <(curl -s https://codecov.io/bash)
language: go go_import_path: github.com/docker-library/go-dockerlibrary go: - 1.11.x - 1.10.x os: - linux - windows script: - | set -e +x rm -f coverage.txt for d in $(go list ./...); do ( set -x; go test -v -race -cover -coverprofile=profile.out -covermode=atomic "$d" ) if [ -f profile.out ]; then cat profile.out >> coverage.txt rm profile.out fi done after_script: - bash <(curl -s https://codecov.io/bash)
Use apt-get to install the deps
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" # command to install dependencies install: "pip install ." # command to run tests script: "python -m unittest discover -s graphs/"
language: python python: - "2.6" - "2.7_with_system_site_packages" - "3.3" - "3.4" before_install: - sudo apt-get install -qq python-numpy python-scipy python-sklearn python-matplotlib install: - pip install --no-deps . script: - python -m unittest discover -s graphs/
Choose TLS version based on JDK
language: java dist: precise before_script: cd api/ script: mvn test -Ptest -Dhttps.protocols=TLSv1 -DmessageBirdAccessKey=test_iQpAp0KCs5GCsMpDhIx2leuNB -DmessageBirdMSISDN=31612345678 jdk: - oraclejdk8 - oraclejdk7 - openjdk6 - openjdk7
language: java dist: precise before_script: cd api/ script: if [[ "$TRAVIS_JDK_VERSION" == "openjdk6" ]]; then mvn test -Ptest -Dhttps.protocols=TLSv1 -DmessageBirdAccessKey=test_iQpAp0KCs5GCsMpDhIx2leuNB -DmessageBirdMSISDN=31612345678; else; mvn test -Ptest -Dhttps.protocols=TLSv1.2 -DmessageBirdAccessKey=test_iQpAp0KCs5GCsMpDhIx2leuNB -DmessageBirdMSISDN=31612345678; fi jdk: - oraclejdk8 - oraclejdk7 - openjdk6 - openjdk7
Add temporary workaround for failing build on Ruby 1.8.7
bundler_args: --without development language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - jruby-18mode - jruby-19mode - jruby-20mode - jruby-21mode - jruby-head - rbx - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head fast_finish: true
before_install: - gem update bundler - bundle --version - gem update --system 2.1.11 - gem --version bundler_args: --without development language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - jruby-18mode - jruby-19mode - jruby-20mode - jruby-21mode - jruby-head - rbx - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head fast_finish: true
Migrate Travis CI builds to new Container based infrastructure
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "pypy" install: - pip install pytest - pip install coveralls - pip install pytest-cov - python setup.py install script: python setup.py test after_success: - coveralls notifications: irc: "chat.freenode.net#circuits"
sudo: false language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "pypy" install: - pip install pytest - pip install coveralls - pip install pytest-cov - python setup.py install script: python setup.py test after_success: - coveralls notifications: irc: "chat.freenode.net#circuits"
Add Ruby 2.3 to the Travis test matrix.
branches: only: - master language: ruby matrix: allow_failures: - rvm: ruby-head rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - ruby-head
branches: only: - master language: ruby matrix: allow_failures: - rvm: ruby-head rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3 - ruby-head
Add 7.1 to the build list
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm - nightly matrix: fast_finish: true include: - php: 5.4 env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" install: - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction script: - find src -name "*.php" -print0 | xargs -0 -n1 -P8 php -l - composer validate - test/build.sh
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm - 7.1 - nightly matrix: fast_finish: true include: - php: 5.4 env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" install: - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction script: - find src -name "*.php" -print0 | xargs -0 -n1 -P8 php -l - composer validate - test/build.sh
Use latest DITA-OT version (3.5.3) for CI builds
sudo: false language: java jdk: - openjdk8 env: global: - DITA_OT_VERSION=3.5.2 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
sudo: false language: java jdk: - openjdk8 env: global: - DITA_OT_VERSION=3.5.3 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
Use glide update instead of install.
language: go branches: only: - master - develop go: - 1.3 - 1.3.1 - 1.3.2 - 1.3.3 - 1.4 - 1.4.1 - 1.4.2 - 1.4.3 - 1.5 - 1.5.1 - 1.5.2 - 1.5.3 - 1.5.4 - 1.6 - 1.6.1 - 1.6.2 - 1.6.3 - 1.6.4 - 1.7 - 1.7.1 - 1.7.2 - 1.7.3 - 1.7.4 install: - go get -v github.com/Masterminds/glide - glide install - make build notifications: email: false slack: iverware:cxnyQSypmixurFcLYYciYyq7
language: go branches: only: - master - develop go: - 1.3 - 1.3.1 - 1.3.2 - 1.3.3 - 1.4 - 1.4.1 - 1.4.2 - 1.4.3 - 1.5 - 1.5.1 - 1.5.2 - 1.5.3 - 1.5.4 - 1.6 - 1.6.1 - 1.6.2 - 1.6.3 - 1.6.4 - 1.7 - 1.7.1 - 1.7.2 - 1.7.3 - 1.7.4 install: - go get -v github.com/Masterminds/glide - glide update - make build notifications: email: false slack: iverware:cxnyQSypmixurFcLYYciYyq7
Add IRC notification to Travis.
sudo: false language: node_js node_js: - "0.10" cache: directories: - node_modules - bower_components install: - npm install - bower install script: grunt build s3 branches: only: - master
sudo: false language: node_js node_js: - "0.10" cache: directories: - node_modules - bower_components install: - npm install - bower install script: grunt build && grunt s3 branches: only: - master notifications: irc: channels: - "irc.mozilla.org#www" on_success: always on_failure: always use_notice: true
Add 5.3 and 5.4 to Travis
language: php php: - 5.6 - 5.5 - hhvm - hhvm-nightly env: matrix: - PREFER_LOWEST="--prefer-lowest --prefer-stable" - PREFER_LOWEST="" before_install: - composer self-update install: - composer update --prefer-source $PREFER_LOWEST
language: php php: - 5.6 - 5.5 - 5.4 - 5.3 - hhvm - hhvm-nightly env: matrix: - PREFER_LOWEST="--prefer-lowest --prefer-stable" - PREFER_LOWEST="" before_install: - composer self-update install: - composer update --prefer-source $PREFER_LOWEST
Use latest Node relaease in Travis
language: node_js node_js: - "8" notifications: email: false cache: yarn
language: node_js node_js: - "node" notifications: email: false cache: yarn
Add Ruby 2.4 to Travis CI, drop Ruby 2.0, 2.1.
rvm: - 2.3.0 - 2.2.0 - 2.1.0 - 2.0.0 gemfile: - Gemfile install: "bundle install" script: "ruby -Itest test/test_textfile.rb" notifications: email: - piers@varyonic.com
rvm: - 2.4.0 - 2.3.0 - 2.2.0 gemfile: - Gemfile install: "bundle install" script: "ruby -Itest test/test_textfile.rb" notifications: email: - piers@varyonic.com
Build on latest Node.js version on Travis
language: java jdk: - oraclejdk8 node_js: - '0.10' git: submodules: false env: global: - GRADLE_OPTS="-Xmx1024m -Xms1024m" - TERM=dumb script: - 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then ./gradlew deploy; else ./gradlew check; fi' sudo: false before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ notifications: slack: secure: fVnY1ZQQmzIEKBZJtfDTChYDKsp1JhoCWU1pNDE9aE92h4VJLvn/keGb88uROyMO6REIePAOZ+Qi3gH5uah1mVu8jaA0QGlhVG8dzXvbOGQxOnydG61FUNCKf7cL6dSqKdGEPDd/0FoQUKtKePxIZ5eKyS0kWOmto4rATo7gL30=
language: java jdk: - oraclejdk8 node_js: - "8" git: submodules: false env: global: - GRADLE_OPTS="-Xmx1024m -Xms1024m" - TERM=dumb script: - 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then ./gradlew deploy; else ./gradlew check; fi' sudo: false before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ notifications: slack: secure: fVnY1ZQQmzIEKBZJtfDTChYDKsp1JhoCWU1pNDE9aE92h4VJLvn/keGb88uROyMO6REIePAOZ+Qi3gH5uah1mVu8jaA0QGlhVG8dzXvbOGQxOnydG61FUNCKf7cL6dSqKdGEPDd/0FoQUKtKePxIZ5eKyS0kWOmto4rATo7gL30=
Add current branch to github workflow for testing
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python package on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements-tests.txt - name: Lint with flake8 run: | flake8 sshuttle tests --count --show-source --statistics - name: Test with pytest run: | PYTHONPATH=$PWD pytest
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python package on: push: branches: [ master, tproxy_mark_param ] pull_request: branches: [ master, tproxy_mark_param ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements-tests.txt - name: Lint with flake8 run: | flake8 sshuttle tests --count --show-source --statistics - name: Test with pytest run: | PYTHONPATH=$PWD pytest
Fix building of HTML docs
package: name: openforcefield version: 0.2.1 source: git_url: https://github.com/openforcefield/openforcefield.git git_tag: 0.2.1 build: preserve_egg_dir: True number: 0 # Build number and string do not work together. #string: py{{ py }}_a1 # Alpha version 1. skip: True # [win or py27 or py35] extra: #force_upload: True upload: main # Upload to anaconda with the "main" label. requirements: build: - python - setuptools # For building sphinx docs - sphinx - sphinx_bootstrap_theme - numpydoc - nbsphinx - m2r >=0.2.1 - testpath ==0.3.1 run: - python - numpy - openmm - networkx - parmed - rdkit - ambermini - packaging # Serialization: Should these be optional? - toml - bson - msgpack-python - xmltodict - pyyaml - cairo >=1.16 about: home: https://github.com/openforcefield/openforcefield license: MIT license_file: LICENSE description: The Open Forcefield Toolkit provides implementations of the SMIRNOFF format, parameterization engine, and other tools.
package: name: openforcefield version: 0.2.1 source: git_url: https://github.com/openforcefield/openforcefield.git git_tag: 0.2.1 build: preserve_egg_dir: True number: 0 # Build number and string do not work together. #string: py{{ py }}_a1 # Alpha version 1. skip: True # [win or py27 or py35] extra: #force_upload: True upload: main # Upload to anaconda with the "main" label. requirements: build: - python - setuptools # For building sphinx docs - sphinx - sphinx_bootstrap_theme - numpydoc - nbsphinx - m2r >=0.2.1 - testpath ==0.3.1 # Run deps must be installed to build sphinx docs - numpy - openmm - networkx - parmed - rdkit - ambermini - packaging # Serialization: Should these be optional? - toml - bson - msgpack-python - xmltodict - pyyaml - cairo >=1.16 run: - python - numpy - openmm - networkx - parmed - rdkit - ambermini - packaging # Serialization: Should these be optional? - toml - bson - msgpack-python - xmltodict - pyyaml - cairo >=1.16 about: home: https://github.com/openforcefield/openforcefield license: MIT license_file: LICENSE description: The Open Forcefield Toolkit provides implementations of the SMIRNOFF format, parameterization engine, and other tools.
Use latest xcode on circle
version: 2 jobs: iOStest: macos: xcode: "9.1.0" steps: - checkout - run: bundle install - run: name: Install Carthage Dependencies command: carthage update --platform iOS --no-use-binaries - run: name: Run Tests command: | xcodebuild -destination 'platform=iOS Simulator,name=iPhone 8,OS=latest' -sdk iphonesimulator -scheme "Fetch-iOS" clean test | tee xcodebuild.log | xcpretty --report html --output test_output/results.html --report junit --output test_output/results.xml - run: name: Post Coverage command: bundle exec slather - store_test_results: path: test_output/results.xml - store_artifacts: path: test_output/results.html - store_artifacts: path: xcodebuild.log tvOStest: macos: xcode: "9.1.0" steps: - checkout - run: bundle install - run: name: Install Carthage Dependencies command: carthage update --platform tvOS --no-use-binaries - run: name: Run Tests command: | xcodebuild -destination 'platform=tvOS Simulator,name=Apple TV 4K,OS=latest' -sdk appletvsimulator -scheme "Fetch-tvOS" clean test | tee xcodebuild.log workflows: version: 2 run-tests: jobs: - iOStest - tvOStest
version: 2 jobs: iOStest: macos: xcode: "9.3.0" steps: - checkout - run: bundle install - run: name: Install Carthage Dependencies command: carthage update --platform iOS --no-use-binaries - run: name: Run Tests command: | xcodebuild -destination 'platform=iOS Simulator,name=iPhone 8,OS=latest' -sdk iphonesimulator -scheme "Fetch-iOS" clean test | tee xcodebuild.log | xcpretty --report html --output test_output/results.html --report junit --output test_output/results.xml - run: name: Post Coverage command: bundle exec slather - store_test_results: path: test_output/results.xml - store_artifacts: path: test_output/results.html - store_artifacts: path: xcodebuild.log tvOStest: macos: xcode: "9.1.0" steps: - checkout - run: bundle install - run: name: Install Carthage Dependencies command: carthage update --platform tvOS --no-use-binaries - run: name: Run Tests command: | xcodebuild -destination 'platform=tvOS Simulator,name=Apple TV 4K,OS=latest' -sdk appletvsimulator -scheme "Fetch-tvOS" clean test | tee xcodebuild.log workflows: version: 2 run-tests: jobs: - iOStest - tvOStest
Fix the jekyll version related bug
# Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: pretty relative_permalinks: true # Setup title: Lanyon tagline: 'A Jekyll theme' description: 'A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.' url: http://lanyon.getpoole.com baseurl: '' paginate: 5 # About/contact author: name: Ankur url: - email: - # Custom vars version: 1.0.0
# Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: pretty # Setup title: Lanyon tagline: 'A Jekyll theme' description: 'A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.' url: http://lanyon.getpoole.com baseurl: '' paginate: 5 # About/contact author: name: Ankur # Custom vars version: 1.0.0
Remove AuthorEmail for Text Torch
Categories: - Phone & SMS License: GPL-3.0-or-later AuthorName: Miles Krell AuthorEmail: text.torch@mileskrell.com AuthorWebSite: https://mileskrell.com SourceCode: https://github.com/mileskrell/text-torch IssueTracker: https://github.com/mileskrell/text-torch/issues AutoName: Text Torch RepoType: git Repo: https://github.com/mileskrell/text-torch Builds: - versionName: 1.0.0 versionCode: 2 commit: v1.0.0 subdir: app gradle: - yes - versionName: 1.1.0 versionCode: 3 commit: v1.1.0 subdir: app gradle: - yes - versionName: 1.1.1 versionCode: 4 commit: v1.1.1 subdir: app gradle: - yes MaintainerNotes: |- Uses Sentry.io Analytics. No Tracking AntiFeature as Sentry was made opt-in, see https://gitlab.com/fdroid/fdroiddata/-/merge_requests/7299#note_473958068 AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.1.1 CurrentVersionCode: 4
Categories: - Phone & SMS License: GPL-3.0-or-later AuthorName: Miles Krell AuthorWebSite: https://mileskrell.com SourceCode: https://github.com/mileskrell/text-torch IssueTracker: https://github.com/mileskrell/text-torch/issues AutoName: Text Torch RepoType: git Repo: https://github.com/mileskrell/text-torch Builds: - versionName: 1.0.0 versionCode: 2 commit: v1.0.0 subdir: app gradle: - yes - versionName: 1.1.0 versionCode: 3 commit: v1.1.0 subdir: app gradle: - yes - versionName: 1.1.1 versionCode: 4 commit: v1.1.1 subdir: app gradle: - yes MaintainerNotes: |- Uses Sentry.io Analytics. No Tracking AntiFeature as Sentry was made opt-in, see https://gitlab.com/fdroid/fdroiddata/-/merge_requests/7299#note_473958068 AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.1.1 CurrentVersionCode: 4
Fix deployment of EB in cases where /opt/openconext was forcibly removed
--- - name: Checkout engine-block branch git: repo=https://github.com/OpenConext/OpenConext-engineblock.git dest="{{ engine_branch_dir }}" version={{ engine_branch }} force=yes when: engine_branch != '' register: eb_gitclone - name: Make release command: "./bin/makeRelease.sh {{ engine_branch }}" args: chdir: "{{ engine_branch_dir }}" when: eb_gitclone.changed - name: Unpack current version unarchive: src="~/Releases/OpenConext-engineblock-{{ engine_branch }}.tar.gz" dest="{{ openconext_releases_dir }}" copy=no when: eb_gitclone.changed - name: Activate new EngineBlock branch file: src="{{ openconext_releases_dir }}/OpenConext-engineblock-{{ engine_branch }}" dest={{ engine_current_release_symlink }} state=link notify: - restart httpd when: eb_gitclone.changed
--- - name: Check if target dir exists stat: path={{ engine_release_dir }} register: eb_dir - name: Checkout engine-block branch git: > repo=https://github.com/OpenConext/OpenConext-engineblock.git dest="{{ engine_branch_dir }}" version={{ engine_branch }} force=yes register: eb_gitclone - name: Make release command: "./bin/makeRelease.sh {{ engine_branch }}" args: chdir: "{{ engine_branch_dir }}" when: eb_gitclone.changed or not eb_dir.stat.exists - name: Unpack current version unarchive: > src="~/Releases/OpenConext-engineblock-{{ engine_branch }}.tar.gz" dest="{{ openconext_releases_dir }}" copy=no when: eb_gitclone.changed or not eb_dir.stat.exists - name: Activate new EngineBlock branch file: > src="{{ openconext_releases_dir }}/OpenConext-engineblock-{{ engine_branch }}" dest={{ engine_current_release_symlink }} state=link notify: - restart httpd
Set up the project directory structure.
--- - name: add the deadsnakes ppa apt_repository: repo="ppa:fkrull/deadsnakes" state=present - name: install app packages apt: pkg={{ item }} state=present with_items: - python-pip - libpq-dev - libev-dev - libevent-dev - libmemcached-dev - libjpeg8 - libjpeg8-dev - libfreetype6 - libfreetype6-dev - zlib1g - zlib1g-dev - libxml2-dev - libxslt1-dev - ghostscript - python{{ python_version }} - python{{ python_version }}-dev - postfix - name: ensure postfix is running service: name=postfix state=started
--- - name: add the deadsnakes ppa apt_repository: repo="ppa:fkrull/deadsnakes" state=present - name: install app packages apt: pkg={{ item }} state=present with_items: - python-pip - libpq-dev - libev-dev - libevent-dev - libmemcached-dev - libjpeg8 - libjpeg8-dev - libfreetype6 - libfreetype6-dev - zlib1g - zlib1g-dev - libxml2-dev - libxslt1-dev - ghostscript - python{{ python_version }} - python{{ python_version }}-dev - postfix - name: ensure postfix is running service: name=postfix state=started - name: create the project user user: name={{ project_name }} home=/home/{{ project_name }} shell=/bin/bash groups=www-data append=yes - name: create the project root directory file: path=/var/www/{{ project_name }}/ state=directory owner={{ project_name }} group={{ project_name }} mode=775 - name: create the log directory file: path=/var/www/{{ project_name }}/log/ state=directory owner={{ project_name }} group=www-data mode=775 - name: create the services directory file: path=/var/www/{{ project_name }}/services/ state=directory owner={{ project_name }} group=www-data mode=775 - name: create the ssh directory file: path=/home/{{ project_name }}/.ssh/ state=directory owner={{ project_name }} group={{ project_name }} mode=700
Drop support for VS 2015
--- version: 0.1.{build} os: - Visual Studio 2015 - Visual Studio 2017 platform: - x86 - x64 configuration: - Debug - Release environment: BOOST_ROOT: C:\Libraries\boost_1_59_0 before_build: - cmd: mkdir build - cmd: cd build build_script: - cmd: cmake .. -DTESTS=ON - cmd: cmake --build . --config Release test_script: - cmd: ctest -VV
--- version: 0.1.{build} os: - Visual Studio 2017 platform: - x86 - x64 configuration: - Debug - Release environment: BOOST_ROOT: C:\Libraries\boost_1_59_0 before_build: - cmd: mkdir build - cmd: cd build build_script: - cmd: cmake .. -DTESTS=ON - cmd: cmake --build . --config Release test_script: - cmd: ctest -VV
Revert "Also lint the tests/ folder on AppVeyor."
image: - Visual Studio 2017 environment: matrix: - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python35-x64" - PYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37-x64" install: - "%PYTHON%\\python.exe -m pip install --upgrade setuptools pip" - "%PYTHON%\\python.exe -m pip --version" - "git --version" - "%PYTHON%\\python.exe -m pip install --upgrade .[test]" # Installs python testing-related packages - "%PYTHON%\\python.exe -m pip install --upgrade -r requirements.txt" # Gets FuzzManager, lithium-reducer from GitHub - "choco install codecov" build: off test_script: - "%PYTHON%\\python.exe -m pytest --flake8 --pylint --cov-report xml setup.py src/ tests/" # Uncomment and replace the line above to test everything once compilation tests work on AppVeyor # - "%PYTHON%\\python.exe -m pytest --flake8 --pylint -p no:cov setup.py src/ tests/" # - "%PYTHON%\\python.exe -m pytest -p no:flake8 -p no:pylint --cov-report xml" # on_success: # - "codecov -f coverage.xml" skip_branch_with_pr: true
image: - Visual Studio 2017 environment: matrix: - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python35-x64" - PYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37-x64" install: - "%PYTHON%\\python.exe -m pip install --upgrade setuptools pip" - "%PYTHON%\\python.exe -m pip --version" - "git --version" - "%PYTHON%\\python.exe -m pip install --upgrade .[test]" # Installs python testing-related packages - "%PYTHON%\\python.exe -m pip install --upgrade -r requirements.txt" # Gets FuzzManager, lithium-reducer from GitHub - "choco install codecov" build: off test_script: - "%PYTHON%\\python.exe -m pytest --flake8 --pylint --cov-report xml setup.py src/" # Uncomment and replace the line above to test everything once compilation tests work on AppVeyor # - "%PYTHON%\\python.exe -m pytest --flake8 --pylint -p no:cov setup.py src/" # - "%PYTHON%\\python.exe -m pytest -p no:flake8 -p no:pylint --cov-report xml" # on_success: # - "codecov -f coverage.xml" skip_branch_with_pr: true
Add the Local Mapping section to the nav bar
brand: name: Geogeeks link: "#page-top" navLinks: - name: Upcoming events link: "#events" - name: Get in touch link: "#contact"
brand: name: Geogeeks link: "#page-top" navLinks: - name: Upcoming events link: "#events" - name: Local OSM Mapping link: "#localmapping" - name: Get in touch link: "#contact"
Enable Performance Schema for MariaDB >= 10.0.12
version: '3' services: mysql: image: ${MYSQL_IMAGE:-percona/percona-server:5.7} ports: - ${MYSQL_HOST:-127.0.0.1}:${MYSQL_PORT:-3306}:3306 environment: - MYSQL_ALLOW_EMPTY_PASSWORD=yes mongo: image: ${MONGODB_IMAGE:-percona/percona-server-mongodb:3.4} ports: - ${MONGODB_HOST:-127.0.0.1}:${MONGODB_PORT:-27017}:27017
version: '3' services: mysql: image: ${MYSQL_IMAGE:-percona/percona-server:5.7} ports: - ${MYSQL_HOST:-127.0.0.1}:${MYSQL_PORT:-3306}:3306 environment: - MYSQL_ALLOW_EMPTY_PASSWORD=yes # MariaDB doesn't enable Performance Schema by default so we need to do it manually # https://mariadb.com/kb/en/mariadb/performance-schema-overview/#activating-the-performance-schema command: --performance-schema mongo: image: ${MONGODB_IMAGE:-percona/percona-server-mongodb:3.4} ports: - ${MONGODB_HOST:-127.0.0.1}:${MONGODB_PORT:-27017}:27017
Use PHP 7.4 on base development build
version: "3.8" services: romans: build: context: "." args: PHP_VERSION: "${PHP_VERSION:-8.0}" volumes: - ".:/app" user: "${UID:-1000}:${GID:-1000}" command: ["tail", "-f", "/dev/null"]
version: "3.8" services: romans: build: context: "." args: PHP_VERSION: "${PHP_VERSION:-7.4}" volumes: - ".:/app" user: "${UID:-1000}:${GID:-1000}" command: ["tail", "-f", "/dev/null"]
Fix username for production compose file
version: '3.3' services: mariadb: build: . image: com.ragedunicorn/mariadb:1.0.0-stable volumes: - mariadb_data:/var/lib/mysql expose: - "3306" labels: com.ragedunicorn.mariadb.environment: "prod" com.ragedunicorn.mariadb.description: "MariaDB" volumes: mariadb_data: {}
version: '3.3' services: mariadb: build: . image: ragedunicorn/mariadb:1.0.0-stable volumes: - mariadb_data:/var/lib/mysql expose: - "3306" labels: com.ragedunicorn.mariadb.environment: "prod" com.ragedunicorn.mariadb.description: "MariaDB" volumes: mariadb_data: {}
Use node_modules inside of container
version: '2' services: dbdata: image: postgres:latest volumes: - /var/lib/postgresql command: /bin/true db: image: aidanlister/postgres-hstore volumes_from: - dbdata ports: - "5432" django: build: context: . dockerfile: Dockerfile.django command: python manage.py runserver 0.0.0.0:8000 volumes: - .:/srv/app ports: - "8000:8000" links: - db # - lessc environment: - INSTANCE_TYPE=web - DEBUG=1 - DJANGO_SETTINGS_MODULE=onlineweb4.settings - DATABASE_URL=postgres://postgres@db/postgres webpack: build: context: . dockerfile: Dockerfile.webpack command: npm start volumes: - .:/srv/app ports: - "3000:3000"
version: '2' services: dbdata: image: postgres:latest volumes: - /var/lib/postgresql command: /bin/true db: image: aidanlister/postgres-hstore volumes_from: - dbdata ports: - "5432" django: build: context: . dockerfile: Dockerfile.django command: python manage.py runserver 0.0.0.0:8000 volumes: - .:/srv/app ports: - "8000:8000" links: - db # - lessc environment: - INSTANCE_TYPE=web - DEBUG=1 - DJANGO_SETTINGS_MODULE=onlineweb4.settings - DATABASE_URL=postgres://postgres@db/postgres webpack: build: context: . dockerfile: Dockerfile.webpack command: npm start volumes: - .:/srv/app - /srv/app/node_modules ports: - "3000:3000"
Use `build` library instead of direct `setup.py`
name: Upload Python Package on: release: types: [created] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Python uses: actions/setup-python@v1 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools wheel twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist bdist_wheel twine upload dist/*
name: Upload Python Package on: release: types: [created] jobs: publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Python uses: actions/setup-python@v1 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools build wheel twine # https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python -m build twine upload dist/*
Add MP AMI key and sort
global: qsname: quickstart-mongodb owner: quickstart-eng@amazon.com reporting: true regions: - ap-northeast-1 - ap-northeast-2 - ap-south-1 - ap-southeast-1 - ap-southeast-2 - ca-central-1 - eu-central-1 - eu-west-1 - eu-west-2 - sa-east-1 - us-east-1 - us-east-2 - us-west-1 - us-west-2 tests: mongodb-3-AZ: template_file: mongodb-master.template parameter_input: mongodb-master.json regions: - ap-southeast-2 - eu-west-1 - us-east-1 - us-east-2 - us-west-2 mongodb-2-AZ: template_file: mongodb-master.template parameter_input: mongodb-master-2AZ.json regions: - ap-northeast-1 - ap-northeast-2 - ap-south-1 - ap-southeast-1 - ca-central-1 - eu-central-1 - eu-west-2 - sa-east-1 - us-west-1
global: marketplace-ami: false owner: quickstart-eng@amazon.com qsname: quickstart-mongodb regions: - ap-northeast-1 - ap-northeast-2 - ap-south-1 - ap-southeast-1 - ap-southeast-2 - ca-central-1 - eu-central-1 - eu-west-1 - eu-west-2 - sa-east-1 - us-east-1 - us-east-2 - us-west-1 - us-west-2 reporting: true tests: mongodb-2-AZ: parameter_input: mongodb-master-2AZ.json regions: - ap-northeast-1 - ap-northeast-2 - ap-south-1 - ap-southeast-1 - ca-central-1 - eu-central-1 - eu-west-2 - sa-east-1 - us-west-1 template_file: mongodb-master.template mongodb-3-AZ: parameter_input: mongodb-master.json regions: - ap-southeast-2 - eu-west-1 - us-east-1 - us-east-2 - us-west-2 template_file: mongodb-master.template
Update from Hackage at 2020-06-23T10:41:34Z
homepage: https://github.com/emilaxelsson/haskell-exp-parser changelog-type: '' hash: 5bcb408185e8df3f61b3fab3814450fdbe56672c05f78889a0779d94245b76a9 test-bench-deps: base: -any syb: -any haskell-exp-parser: -any template-haskell: -any maintainer: emax@chalmers.se synopsis: Simple parser parser from Haskell to TemplateHaskell expressions changelog: '' basic-deps: base: '>=4 && <5' template-haskell: -any all-versions: - '0.1' - 0.1.1 - 0.1.2 author: Emil Axelsson latest: 0.1.2 description-type: haddock description: |- This package defines a simple parser for a subset of Haskell expressions and patterns to the TemplateHaskell AST. It provides a very lightweight alternative to the functions @parseExp@ and @parsePat@ from <http://hackage.haskell.org/package/haskell-src-meta>. The following expressions are currently supported: * Variables * Integer and string literals * Prefix function application * Lists and tuples The following patterns are currently supported: * Variables license-name: BSD-3-Clause
homepage: https://github.com/emilaxelsson/haskell-exp-parser changelog-type: '' hash: dd131adda7dd34339d2e9d4149c23f9dc3425a5adb086ed2851af6acf98a5a5f test-bench-deps: base: -any syb: -any haskell-exp-parser: -any template-haskell: -any maintainer: 78emil@gmail.com synopsis: Simple parser parser from Haskell to TemplateHaskell expressions changelog: '' basic-deps: base: '>=4 && <5' template-haskell: -any all-versions: - '0.1' - 0.1.1 - 0.1.2 - 0.1.3 author: Emil Axelsson latest: 0.1.3 description-type: haddock description: |- This package defines a simple parser for a subset of Haskell expressions and patterns to the TemplateHaskell AST. It provides a very lightweight alternative to the functions @parseExp@ and @parsePat@ from <http://hackage.haskell.org/package/haskell-src-meta>. The following expressions are currently supported: * Variables * Integer and string literals * Prefix function application * Lists and tuples The following patterns are currently supported: * Variables license-name: BSD-3-Clause
Update github action to use pip 19
name: Run tests on: pull_request: types: [opened, synchronize, reopened] jobs: build: runs-on: ubuntu-latest strategy: matrix: os: [ubuntu-latest, macos-latest] python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | pip install -r requirements.txt pip install -r requirements-dev.txt - name: Test with unittest run: | python -m unittest discover -s tests -p '*.py'
name: Run tests on: pull_request: types: [opened, synchronize, reopened] jobs: build: runs-on: ubuntu-latest strategy: matrix: os: [ubuntu-latest, macos-latest] python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | pip install pip==19.3.1 pip install -r requirements.txt pip install -r requirements-dev.txt - name: Test with unittest run: | python -m unittest discover -s tests -p '*.py'
Update snyk clojure action to v2
--- name: Clojure Snyk PR Check on: pull_request_target: types: [opened, reopened, synchronize, labeled] jobs: snyk_clojure: runs-on: ubuntu-latest if: contains(github.event.pull_request.labels.*.name, 'safe to test') steps: - name: checkout the current PR uses: actions/checkout@v2 with: fetch-depth: 1 persist-credentials: false - name: Run Clojure Snyk Scan id: scan uses: puppetlabs/security-snyk-clojure-action@v1 with: snykToken: ${{ secrets.SNYK_PE_TOKEN }} rproxyKey: ${{ secrets.SEC_PUBLIC_RPROXY_KEY }} rproxyUser: ${{ secrets.SEC_PUBLIC_RPROXY_USER }} snykOrg: 'puppet-enterprise' snykProject: 'puppetserver' snykPolicy: '.snyk' - name: Check output if: steps.scan.outputs.vulns != '' run: echo "Vulnerabilities detected; ${{ steps.scan.outputs.vulns }}" && exit 1
--- name: Clojure Snyk PR Check on: pull_request_target: types: [opened, reopened, synchronize, labeled] jobs: snyk_clojure: runs-on: ubuntu-latest if: contains(github.event.pull_request.labels.*.name, 'safe to test') steps: - name: Connect to Twingate uses: twingate/github-action@v1 with: service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }} - name: checkout the current PR uses: actions/checkout@v2 with: fetch-depth: 1 persist-credentials: false - name: Run Clojure Snyk Scan id: scan uses: puppetlabs/security-snyk-clojure-action@v2 with: snykToken: ${{ secrets.SNYK_PE_TOKEN }} snykOrg: 'puppet-enterprise' snykProject: 'puppetserver' snykPolicy: '.snyk' - name: Check output if: steps.scan.outputs.vulns != '' run: echo "Vulnerabilities detected; ${{ steps.scan.outputs.vulns }}" && exit 1
Update fwal/setup-swift action to v1.10.0
on: push: name: Build jobs: build: name: Swift ${{ matrix.swift }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] swift: ["5"] steps: - uses: actions/checkout@v2.3.5 - uses: fwal/setup-swift@v1.7.0 with: swift-version: ${{ matrix.swift }} - run: swift --version - run: swift build
on: push: name: Build jobs: build: name: Swift ${{ matrix.swift }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] swift: ["5"] steps: - uses: actions/checkout@v2.3.5 - uses: fwal/setup-swift@v1.10.0 with: swift-version: ${{ matrix.swift }} - run: swift --version - run: swift build
Switch to the ruby docker images in BK
steps: - label: run-lint-and-specs-ruby-2.4 command: - asdf local ruby 2.4.5 - bundle install --jobs=7 --retry=3 - bundle exec rake expeditor: executor: docker: - label: run-lint-and-specs-ruby-2.5 command: - asdf local ruby 2.5.5 - bundle install --jobs=7 --retry=3 - bundle exec rake expeditor: executor: docker: - label: run-lint-and-specs-ruby-2.6 command: - asdf local ruby 2.6.3 - bundle install --jobs=7 --retry=3 - bundle exec rake expeditor: executor: docker:
steps: - label: run-lint-and-specs-ruby-2.4 command: - bundle install --jobs=7 --retry=3 --without docs debug - bundle exec rake expeditor: executor: docker: image: ruby:2.4-stretch - label: run-lint-and-specs-ruby-2.5 command: - bundle install --jobs=7 --retry=3 --without docs debug - bundle exec rake expeditor: executor: docker: image: ruby:2.5-stretch - label: run-lint-and-specs-ruby-2.6 command: - bundle install --jobs=7 --retry=3 --without docs debug - bundle exec rake expeditor: executor: docker: image: ruby:2.6-stretch
Increase gradle heap size to speed up builds
image: commit451/android-config:latest before_script: # Make sure that we are not trying to print anything to the console - unset DISPLAY - export TERM=dumb - export _JAVA_OPTIONS="-Djava.awt.headless=true" # Make Gradle executable - chmod +x gradlew build: script: # Run the build script, excluding the fabric tasks since they will fail with no proper API key - ./gradlew build -x fabricGenerateResourcesRelease --stacktrace
image: commit451/android-config:latest before_script: # Make sure that we are not trying to print anything to the console - unset DISPLAY - export TERM=dumb - export _JAVA_OPTIONS="-Djava.awt.headless=true" # Increase the heap size to 3 GB for faster builds - echo "org.gradle.jvmargs=-Xmx3G" >> gradle.properties # Make Gradle executable - chmod +x gradlew build: script: # Run the build script, excluding the fabric tasks since they will fail with no proper API key - ./gradlew build -x fabricGenerateResourcesRelease --stacktrace
Mark the deploy stage as manual
image: node:latest stages: - test - deploy test: stage: test script: - npm install - npm test deploy-npm: stage: deploy script: - npm install - npm publish only: - master allow_failure: true # fails when version is not increased
image: node:latest stages: - test - deploy test: stage: test script: - npm install - npm test deploy-npm: stage: deploy script: - npm install - npm publish only: - master when: manual
Update NI to 5.1 (6)
AntiFeatures: - NonFreeNet - NonFreeDep Categories: - Multimedia License: GPL-3.0-only SourceCode: https://github.com/Px3XjG6P/NetflixtoIMDb IssueTracker: https://github.com/Px3XjG6P/NetflixtoIMDb/issues AutoName: Netflix to IMDb Description: |- When a Netflix user taps the share icon in the Netflix app and then selects ''this'' app (= Netflix to IMDb) then the title is looked up in the IMDb, via an internet browser, or in the IMDb app if it is installed. RepoType: git Repo: https://github.com/Px3XjG6P/NetflixtoIMDb Builds: - versionName: '3' versionCode: 3 commit: '3' subdir: app gradle: - yes - versionName: '4.0' versionCode: 4 commit: '4.0' subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '4.0' CurrentVersionCode: 4
AntiFeatures: - NonFreeNet - NonFreeDep Categories: - Multimedia License: GPL-3.0-only SourceCode: https://github.com/Px3XjG6P/NetflixtoIMDb IssueTracker: https://github.com/Px3XjG6P/NetflixtoIMDb/issues AutoName: NI Description: |- When a Netflix user taps the share icon in the Netflix app and then selects ''this'' app (= Netflix to IMDb) then the title is looked up in the IMDb, via an internet browser, or in the IMDb app if it is installed. RepoType: git Repo: https://github.com/Px3XjG6P/NetflixtoIMDb Builds: - versionName: '3' versionCode: 3 commit: '3' subdir: app gradle: - yes - versionName: '4.0' versionCode: 4 commit: '4.0' subdir: app gradle: - yes - versionName: '5.1' versionCode: 6 commit: '5.1' subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '5.1' CurrentVersionCode: 6
Remove quotes in precommit config
repos: - repo: https://github.com/asottile/pyupgrade rev: v2.7.2 hooks: - id: pyupgrade args: [--py36-plus] - repo: https://github.com/python/black rev: 20.8b1 hooks: - id: black - repo: https://gitlab.com/pycqa/flake8 rev: 3.8.3 hooks: - id: flake8 additional_dependencies: ['flake8-bugbear==20.1.4'] - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.782 hooks: - id: mypy - repo: https://github.com/asottile/blacken-docs rev: v1.8.0 hooks: - id: blacken-docs additional_dependencies: [black==20.8b1]
repos: - repo: https://github.com/asottile/pyupgrade rev: v2.7.2 hooks: - id: pyupgrade args: [--py36-plus] - repo: https://github.com/python/black rev: 20.8b1 hooks: - id: black - repo: https://gitlab.com/pycqa/flake8 rev: 3.8.3 hooks: - id: flake8 additional_dependencies: [flake8-bugbear==20.1.4] - repo: https://github.com/pre-commit/mirrors-mypy rev: v0.782 hooks: - id: mypy - repo: https://github.com/asottile/blacken-docs rev: v1.8.0 hooks: - id: blacken-docs additional_dependencies: [black==20.8b1]
Fix sorting after recent changes
sylius_grid: grids: sylius_admin_shipping_method: driver: name: doctrine/orm options: class: "%sylius.model.shipping_method.class%" repository: method: createListQueryBuilder arguments: ["%locale%"] sorting: position: asc fields: code: type: string label: sylius.ui.code sortable: ~ name: type: string label: sylius.ui.name sortable: translation.name zone: type: string label: sylius.ui.zone enabled: type: twig label: sylius.ui.enabled options: template: SyliusAdminBundle:Grid/Field:enabled.html.twig filters: code: type: string label: sylius.ui.code enabled: type: boolean label: sylius.ui.enabled actions: main: create: type: create item: update: type: update delete: type: delete
sylius_grid: grids: sylius_admin_shipping_method: driver: name: doctrine/orm options: class: "%sylius.model.shipping_method.class%" repository: method: createListQueryBuilder arguments: ["%locale%"] sorting: position: asc fields: code: type: string label: sylius.ui.code sortable: ~ position: type: string # not even used enabled: false sortable: ~ name: type: string label: sylius.ui.name sortable: translation.name zone: type: string label: sylius.ui.zone enabled: type: twig label: sylius.ui.enabled options: template: SyliusAdminBundle:Grid/Field:enabled.html.twig filters: code: type: string label: sylius.ui.code enabled: type: boolean label: sylius.ui.enabled actions: main: create: type: create item: update: type: update delete: type: delete
Fix path for flake8 config link
--- - homebrew: name: - python - pip: name: - flake8 - pep8-naming - pipenv - virtualenvwrapper extra_args: --user executable: pip3 - name: Link flake8 config file: state: link src: "../{{ playbook_dir | replace(lookup('env', 'HOME') + '/', '') }}/roles/path/files/dev/flake8" dest: ~/.config/flake8 force: yes
--- - homebrew: name: - python - pip: name: - flake8 - pep8-naming - pipenv - virtualenvwrapper extra_args: --user executable: pip3 - name: Link flake8 config file: state: link src: "../{{ playbook_dir | replace(lookup('env', 'HOME') + '/', '') }}/roles/packages/files/dev/flake8" dest: ~/.config/flake8 force: yes
Save IRs as build artifacts for easy access
machine: pre: - export DEBIAN_FRONTEND=noninteractive && sudo apt-get remove -y --purge mysql-server mysql-community-server environment: PATH: "~/qcert/bin/:~/spark-2.1.0-bin-hadoop2.7/bin/:$PATH" dependencies: cache_directories: - "~/.opam" - "~/spark-2.1.0-bin-hadoop2.7" pre: - sudo add-apt-repository -y ppa:avsm/ppa - sudo apt-get -qq update - sudo apt-get install -y ocaml-nox ocaml-native-compilers opam - opam init -a - opam install -y menhir ocamlbuild camlp5 coq.8.5.3 js_of_ocaml: timeout: 1200 - if [[ ! -d ~/spark-2.1.0-bin-hadoop2.7 ]]; then cd ~/ && wget http://www.mirrorservice.org/sites/ftp.apache.org/spark/spark-2.1.0/spark-2.1.0-bin-hadoop2.7.tgz && tar xf spark-2.1.0-bin-hadoop2.7.tgz ; fi override: - make spark2-runtime test: override: - eval `opam config env` && make -j1 && make jsapi - cd tests/spark2 && ./run.sh
machine: pre: - export DEBIAN_FRONTEND=noninteractive && sudo apt-get remove -y --purge mysql-server mysql-community-server environment: PATH: "~/qcert/bin/:~/spark-2.1.0-bin-hadoop2.7/bin/:$PATH" general: artifacts: - "tests/spark2/test01_nnrc/irs" dependencies: cache_directories: - "~/.opam" - "~/spark-2.1.0-bin-hadoop2.7" pre: - sudo add-apt-repository -y ppa:avsm/ppa - sudo apt-get -qq update - sudo apt-get install -y ocaml-nox ocaml-native-compilers opam - opam init -a - opam install -y menhir ocamlbuild camlp5 coq.8.5.3 js_of_ocaml: timeout: 1200 - if [[ ! -d ~/spark-2.1.0-bin-hadoop2.7 ]]; then cd ~/ && wget http://www.mirrorservice.org/sites/ftp.apache.org/spark/spark-2.1.0/spark-2.1.0-bin-hadoop2.7.tgz && tar xf spark-2.1.0-bin-hadoop2.7.tgz ; fi override: - make spark2-runtime test: override: - eval `opam config env` && make -j1 && make jsapi - cd tests/spark2 && ./run.sh
Test new versions of Node
dependencies: override: - make setup machine: node: version: 0.10.34 test: override: - make lint - make test - nvm install 0.12.7 - nvm alias default 0.12.7 - make test
dependencies: override: - make setup machine: node: version: 0.10.34 test: override: - make lint - make test - nvm install 0.12.7 - nvm alias default 0.12.7 - make test - nvm use 4 && make test - nvm use 5 && make test
Use GRCh37 instead of hg19 for the RNA-seq example
# Template for human RNA-seq using Illumina prepared samples --- details: - analysis: RNA-seq genome_build: hg19 algorithm: aligner: tophat2 quality_format: Standard trim_reads: read_through adapters: [truseq, polya] strandedness: unstranded upload: dir: ../final
# Template for human RNA-seq using Illumina prepared samples --- details: - analysis: RNA-seq genome_build: GRCh37 algorithm: aligner: tophat2 quality_format: Standard trim_reads: read_through adapters: [truseq, polya] strandedness: unstranded upload: dir: ../final
Update freetype version at github actions
name: linux build on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: cmake run: cmake -DCMAKE_CXX_FLAGS=-Werror . - name: make run: make - name: release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/v') with: files: fontbm
name: linux build on: [push] jobs: build: runs-on: ubuntu-latest steps: - name: freetype install run: | wget https://download.savannah.gnu.org/releases/freetype/freetype-2.11.1.tar.gz tar xvfz freetype-2.11.1.tar.gz cd freetype-2.11.1 ./configure --prefix=/usr/local --enable-freetype-config make sudo make install - uses: actions/checkout@v2 - name: cmake run: cmake -DCMAKE_CXX_FLAGS=-Werror . - name: make run: make - name: release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/v') with: files: fontbm
Add more linters to triggers 📶
run: build-tags: - e2e skip-dirs: - vendor - pkg/client/clientset/versioned/fake
run: build-tags: - e2e skip-dirs: - vendor - pkg/client/clientset/(.*)/fake linters: enable: - errcheck - gofmt - goimports - gosec - gocritic - golint
Update GH actions to run on PR
name: CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 with: submodules: true - name: "Run everything" run: | docker-compose pull docker-compose build docker-compose up -d sleep 10 docker exec umdio_umdio_1 bundle exec rake test_scrape docker exec umdio_umdio_1 bundle exec rake test
name: CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 with: submodules: true - name: "Run everything" run: | docker-compose pull docker-compose build docker-compose up -d sleep 10 docker exec umdio_umdio_1 bundle exec rake test_scrape docker exec umdio_umdio_1 bundle exec rake test
Add decoding topic to TOC
site_name: Mapzen Turn-by-Turn docs_dir: src/turn-by-turn site_dir: dist/turn-by-turn pages: - Home: index.md - 'API reference': 'api-reference.md' - 'Terminology': 'terminology.md' - 'Add Mapzen Turn-by-Turn routing to a map': 'add-routing-to-a-map.md' extra: site_subtitle: 'Add routing and navigation to your web and mobile apps.' project_repo_url: https://github.com/valhalla/ docs_base_url: https://github.com/valhalla/valhalla-docs/tree/master
site_name: Mapzen Turn-by-Turn docs_dir: src/turn-by-turn site_dir: dist/turn-by-turn pages: - Home: index.md - 'API reference': 'api-reference.md' - 'Terminology': 'terminology.md' - 'Add Mapzen Turn-by-Turn routing to a map': 'add-routing-to-a-map.md' - 'Decode a route shape': 'decoding.md' extra: site_subtitle: 'Add routing and navigation to your web and mobile apps.' project_repo_url: https://github.com/valhalla/ docs_base_url: https://github.com/valhalla/valhalla-docs/tree/master
Add GitHub Actions for CI
name: PHP Ci on: push: branches: [ '*' ] pull_request: branches: [ '*' ] jobs: build: runs-on: ubuntu-latest strategy: matrix: php-versions: [ '7.4', '8.0', '8.1' ] steps: - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} tools: phpunit:7.5.5
name: PHP Ci on: push: branches: [ '*' ] pull_request: branches: [ '*' ] jobs: build: runs-on: ubuntu-latest strategy: matrix: php-versions: [ '7.4', '8.0', '8.1' ] steps: - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} tools: phpunit:7.5.5 - name: Run tests run: vendor/bin/phpunit --configuration phpunit.xml tests
Test no_std support on github actions
name: Continuous Integration on: push: pull_request: jobs: check: name: Tests runs-on: ubuntu-latest strategy: matrix: rust: - stable - beta steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: ${{ matrix.rust }} override: true - uses: actions-rs/cargo@v1 with: command: test args: --all --all-features
name: Continuous Integration on: push: pull_request: jobs: check: name: Tests runs-on: ubuntu-latest strategy: matrix: rust: - stable - beta steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: ${{ matrix.rust }} override: true - uses: actions-rs/cargo@v1 with: command: test args: --all --all-features - uses: actions-rs/cargo@v1 with: command: test # Test no_std support args: -p rmp --no-default-features
Revert change to interchange path.
name: CI tests on: [push, pull_request] jobs: Run-tests: runs-on: ubuntu-latest strategy: matrix: python-version: ['3.7', '3.8', '3.9'] steps: - uses: actions/checkout@v1 with: submodules: recursive - name: Setup Python uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install run: | sudo apt-get install libyaml-dev libyaml-cpp-dev pip install --upgrade -r requirements.txt - name: Check formatting run: ./.github/workflows/format.sh - name: Get and build tools run: | make env git clone -b metadata_annotations https://github.com/litghost/RapidWright.git $GITHUB_WORKSPACE/env/RapidWright make -C "$GITHUB_WORKSPACE/env/RapidWright" update_jars git clone https://github.com/capnproto/capnproto-java.git $GITHUB_WORKSPACE/env/capnproto-java - name: Test run: ./.github/workflows/test.sh - name: "License Checks" run: | ./.github/check_license.sh ./.github/check_python_scripts.sh
name: CI tests on: [push, pull_request] jobs: Run-tests: runs-on: ubuntu-latest strategy: matrix: python-version: ['3.7', '3.8', '3.9'] steps: - uses: actions/checkout@v1 with: submodules: recursive - name: Setup Python uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install run: | sudo apt-get install libyaml-dev libyaml-cpp-dev pip install --upgrade -r requirements.txt - name: Check formatting run: ./.github/workflows/format.sh - name: Get and build tools run: | make env git clone -b interchange https://github.com/Xilinx/RapidWright.git $GITHUB_WORKSPACE/env/RapidWright make -C "$GITHUB_WORKSPACE/env/RapidWright" update_jars git clone https://github.com/capnproto/capnproto-java.git $GITHUB_WORKSPACE/env/capnproto-java - name: Test run: ./.github/workflows/test.sh - name: "License Checks" run: | ./.github/check_license.sh ./.github/check_python_scripts.sh
Update from Hackage at 2018-03-17T02:51:55Z
homepage: '' changelog-type: '' hash: 33c805843f0c3a9a9c109d492cb6d7ef482332836b06fa2fd60dca2d8b39e56f test-bench-deps: {} maintainer: dylan@dylex.net synopsis: Control library for blink(1) LED from ThingM changelog: '' basic-deps: usb: -any bytestring: -any unix: -any base: ==4.* text: <1.2 blink1: -any vector: -any all-versions: - '0.1' - '0.2' - '0.3' - '0.3.1' - '0.4' author: Dylan Simon latest: '0.4' description-type: haddock description: Provides an interface to the ThingM blink(1) LED <http://thingm.com/products/blink-1.html> similar to (but not dependent on) <http://github.com/todbot/blink1> via Linux hidraw or the libusb-based usb package. license-name: BSD3
homepage: '' changelog-type: '' hash: b14f9874ba9e23e60f8b61785ee881d1a97cd99ceeb8374e3ebc1d7a391ae880 test-bench-deps: {} maintainer: dylan@dylex.net synopsis: Control library for blink(1) LED from ThingM changelog: '' basic-deps: usb: -any bytestring: -any unix: -any base: ! '>=4.6 && <4.11' text: <1.2 blink1: -any vector: -any all-versions: - '0.1' - '0.2' - '0.3' - '0.3.1' - '0.4' author: Dylan Simon latest: '0.4' description-type: haddock description: Provides an interface to the ThingM blink(1) LED <http://thingm.com/products/blink-1.html> similar to (but not dependent on) <http://github.com/todbot/blink1> via Linux hidraw or the libusb-based usb package. license-name: BSD3
Remove support for MOS 7.0
# Plugin name name: lma_infrastructure_alerting # Human-readable name for your plugin title: The LMA Infrastructure Alerting Plugin # Plugin version version: '0.9.0' # Description description: Deploy tools to send alerts concerning the OpenStack infrastructure. # Required fuel version fuel_version: ['7.0', '8.0'] # Specify license of your plugin licenses: ['Apache License Version 2.0'] # Specify author or company name authors: ['Mirantis Inc'] # A link to the plugin's page homepage: https://github.com/openstack/fuel-plugin-lma-infrastructure-alerting # Specify a group which your plugin implements, possible options: # network, storage, storage::cinder, storage::glance, hypervisor groups: ['monitoring'] # The plugin is compatible with releases in the list releases: - os: ubuntu version: 2015.1.0-8.0 mode: ['ha'] deployment_scripts_path: deployment_scripts/ repository_path: repositories/ubuntu - os: ubuntu version: 2015.1.0-7.0 mode: ['ha'] deployment_scripts_path: deployment_scripts/ repository_path: repositories/ubuntu # Version of plugin package package_version: '3.0.0'
# Plugin name name: lma_infrastructure_alerting # Human-readable name for your plugin title: The LMA Infrastructure Alerting Plugin # Plugin version version: '0.9.0' # Description description: Deploy tools to send alerts concerning the OpenStack infrastructure. # Required fuel version fuel_version: ['8.0'] # Specify license of your plugin licenses: ['Apache License Version 2.0'] # Specify author or company name authors: ['Mirantis Inc'] # A link to the plugin's page homepage: https://github.com/openstack/fuel-plugin-lma-infrastructure-alerting # Specify a group which your plugin implements, possible options: # network, storage, storage::cinder, storage::glance, hypervisor groups: ['monitoring'] # The plugin is compatible with releases in the list releases: - os: ubuntu version: 2015.1.0-8.0 mode: ['ha'] deployment_scripts_path: deployment_scripts/ repository_path: repositories/ubuntu # Version of plugin package package_version: '3.0.0'
Update CurrentVersion of Dots'n'Boxes to 0.7.6 (18)
Categories: - Games License: GPL-3.0-only SourceCode: https://github.com/StefanOltmann/Kaesekaestchen IssueTracker: https://github.com/StefanOltmann/Kaesekaestchen/issues Name: Dots'n'Boxes AutoName: Käsekästchen Description: |- Players take turns joining two horizontally or vertically adjacent dots by a line. A player that completes the fourth side of a square (a box) colors that box and must play again. When all boxes have been colored, the game ends and the player who has colored more boxes wins. You are playing against the computer. The computer is red; you are blue. RepoType: git Repo: https://github.com/StefanOltmann/Kaesekaestchen Builds: - versionName: '0.5' versionCode: 7 commit: '9' AutoUpdateMode: None UpdateCheckMode: RepoManifest CurrentVersion: 0.7.5 CurrentVersionCode: 17
Categories: - Games License: GPL-3.0-only SourceCode: https://github.com/StefanOltmann/Kaesekaestchen IssueTracker: https://github.com/StefanOltmann/Kaesekaestchen/issues Name: Dots'n'Boxes AutoName: Käsekästchen Description: |- Players take turns joining two horizontally or vertically adjacent dots by a line. A player that completes the fourth side of a square (a box) colors that box and must play again. When all boxes have been colored, the game ends and the player who has colored more boxes wins. You are playing against the computer. The computer is red; you are blue. RepoType: git Repo: https://github.com/StefanOltmann/Kaesekaestchen Builds: - versionName: '0.5' versionCode: 7 commit: '9' AutoUpdateMode: None UpdateCheckMode: RepoManifest CurrentVersion: 0.7.6 CurrentVersionCode: 18
Fix repository in workflow used to delete old workflow runs
name: Delete old workflow runs on: schedule: - cron: '0 0 * * *' env: HAS_SECRETS: ${{ secrets.HAS_SECRETS }} jobs: build: runs-on: ubuntu-20.04 timeout-minutes: 25 name: Delete old workflow runs steps: - name: Delete old workflow runs uses: MajorScruffy/delete-old-workflow-runs@v0.3.0 with: repository: mapfish/mapfish-print # replace this with your own repository older-than-seconds: 43200000 # 500 days env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Delete old workflow runs on: schedule: - cron: '0 0 * * *' env: HAS_SECRETS: ${{ secrets.HAS_SECRETS }} jobs: build: runs-on: ubuntu-20.04 timeout-minutes: 25 name: Delete old workflow runs steps: - name: Delete old workflow runs uses: MajorScruffy/delete-old-workflow-runs@v0.3.0 with: repository: ${{ github.repository }} older-than-seconds: 43200000 # 500 days env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Update Dawn to 0.12.2 (23)
AntiFeatures: - NonFreeNet Categories: - Internet License: Apache-2.0 AuthorName: Łukasz Rutkowski SourceCode: https://github.com/Tunous/Dawn IssueTracker: https://github.com/Tunous/Dawn/issues Changelog: https://github.com/Tunous/Dawn/releases AutoName: Dawn RepoType: git Repo: https://github.com/Tunous/Dawn Builds: - versionName: 0.12.0 versionCode: 21 commit: 0.12.0 subdir: app gradle: - yes ndk: r21d - versionName: 0.12.1 versionCode: 22 commit: 0.12.1 subdir: app gradle: - yes ndk: r21d AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 0.12.1 CurrentVersionCode: 22
AntiFeatures: - NonFreeNet Categories: - Internet License: Apache-2.0 AuthorName: Łukasz Rutkowski SourceCode: https://github.com/Tunous/Dawn IssueTracker: https://github.com/Tunous/Dawn/issues Changelog: https://github.com/Tunous/Dawn/releases AutoName: Dawn RepoType: git Repo: https://github.com/Tunous/Dawn Builds: - versionName: 0.12.0 versionCode: 21 commit: 0.12.0 subdir: app gradle: - yes ndk: r21d - versionName: 0.12.1 versionCode: 22 commit: 0.12.1 subdir: app gradle: - yes ndk: r21d - versionName: 0.12.2 versionCode: 23 commit: 0.12.2 subdir: app gradle: - yes ndk: r21d AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 0.12.2 CurrentVersionCode: 23
Bump ridedott/merge-me-action from 2.10.26 to 2.10.28
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/merge-me-action@v2.10.26 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/merge-me-action@v2.10.28 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
Update from Hackage at 2017-10-28T18:46:40Z
homepage: https://github.com/athanclark/attoparsec-ip#readme changelog-type: '' hash: 35827dea2836cd974ef83894e5b0afa1d944484a079e0241b2a6bfc6d4cf4c88 test-bench-deps: base: -any attoparsec-ip: -any maintainer: athan.clark@gmail.com synopsis: Parse IP data types with attoparsec changelog: '' basic-deps: base: ! '>=4.7 && <5' ip: -any attoparsec: -any all-versions: - '0.0.0' author: Athan Clark latest: '0.0.0' description-type: markdown description: ! '# attoparsec-ip ' license-name: BSD3
homepage: https://github.com/athanclark/attoparsec-ip#readme changelog-type: '' hash: 4dd8d9cf1ebb186f20305f018cfe775c382308abd5dcb234e84488f683f84bcd test-bench-deps: base: -any attoparsec-ip: -any maintainer: athan.clark@gmail.com synopsis: Parse IP data types with attoparsec changelog: '' basic-deps: base: ! '>=4.7 && <5' ip: ! '>=1.1.0' attoparsec: -any all-versions: - '0.0.0' - '0.0.1' author: Athan Clark latest: '0.0.1' description-type: markdown description: ! '# attoparsec-ip ' license-name: BSD3
Add maildev for email testing
version: '3' services: postgres: image: postgres rabbitmq: image: rabbitmq:3 learning-circles: build: . image: learning-circles ports: - "8000:8000" volumes: - .:/opt/app depends_on: - rabbitmq - postgres command: /opt/django-venv/bin/python manage.py runserver 0.0.0.0:8000 environment: - DATABASE_URL=postgres://lc:password@postgres:5432/lc - SECRET_KEY=321 - BROKER_URL=amqp://guest:guest@rabbitmq// - DEBUG=true frontend: image: p2pu/js-build:carbon-alpine volumes: - .:/opt/app working_dir: /opt/app command: sh -c "npm i && npm run watch" # celery: # image: learning-circles # depends_on: # - rabbitmq # - postgres # command: /opt/django-venv/bin/celery worker -A learnwithpeople --loglevel=INFO # environment: # - DATABASE_URL=postgres://lc:password@postgres:5432/lc # - SECRET_KEY=321 # - BROKER_URL=amqp://guest:guest@rabbitmq// # celery-beat: # image: learning-circles # depends_on: # - rabbitmq # - postgres # command: /opt/django-venv/bin/celery beat -A learnwithpeople --loglevel=DEBUG --pidfile=/var/lib/celery/celerybeat.pid --schedule=/var/lib/celery/celerybeat-schedule # environment: # - DATABASE_URL=postgres://lc:password@postgres:5432/lc # - SECRET_KEY=321 # - BROKER_URL=amqp://guest:guest@rabbitmq//
version: '3' services: postgres: image: postgres email: image: djfarrelly/maildev ports: - 1080:80 learning-circles: build: . image: learning-circles ports: - "8000:8000" volumes: - .:/opt/app depends_on: - postgres - email command: /opt/django-venv/bin/python manage.py runserver 0.0.0.0:8000 environment: - DATABASE_URL=postgres://lc:password@postgres:5432/lc - SECRET_KEY=321 - BROKER_URL=amqp://guest:guest@rabbitmq// - EMAIL_HOST=email - COMMUNITY_MANAGER=user@mail.com - DEFAULT_FROM_EMAIL=notify@mail.com - DEBUG=true frontend: image: p2pu/js-build:carbon-alpine volumes: - .:/opt/app working_dir: /opt/app command: sh -c "npm i && npm run watch"
Revert "Disable MS Windows build"
# Don't run build jobs for branches trigger: batch: true branches: exclude: - "*" # Still allow PR builds to run against main pr: - main jobs: - template: ./.azure-pipelines/azure-pipelines-linux.yml - template: ./.azure-pipelines/azure-pipelines-osx.yml
# Don't run build jobs for branches trigger: batch: true branches: exclude: - "*" # Still allow PR builds to run against main pr: - main jobs: - template: ./.azure-pipelines/azure-pipelines-linux.yml - template: ./.azure-pipelines/azure-pipelines-osx.yml - template: ./.azure-pipelines/azure-pipelines-win.yml
Revert "Lets try not manually requiring this file"
version: 2 jobs: build: working_directory: ~/hash_attribute_assignment parallelism: 2 docker: - image: circleci/ruby:2.3.4 steps: - checkout ## Bundler # Restore Cache - restore_cache: keys: - gem-cache-{{ checksum "hash_attribute_assignment.gemspec" }} # Install - run: bundle check || bundle install --path vendor/bundle # Store Cache - save_cache: key: gem-cache-{{ checksum "hash_attribute_assignment.gemspec" }} paths: - vendor/bundle - type: shell command: | bundle exec rubocop \ --config .rubocop.yml \ --format RuboCop::Formatter::JUnitFormatter \ --out /tmp/test-results/rubocop.xml \ --format progress \ --force-exclusion \ $(bundle exec rubocop --list-target-files | circleci tests split --split-by=filesize --show-counts) # Run rspec in parallel - type: shell command: | bundle exec rspec --profile 10 \ --format RspecJunitFormatter \ --out /tmp/test-results/rspec.xml \ --format progress \ $(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings --show-counts) # Save artifacts - type: store_test_results path: /tmp/test-results - store_artifacts: path: ~/hash_attribute_assignment/.rspec_failed_examples
version: 2 jobs: build: working_directory: ~/hash_attribute_assignment parallelism: 2 docker: - image: circleci/ruby:2.3.4 steps: - checkout ## Bundler # Restore Cache - restore_cache: keys: - gem-cache-{{ checksum "hash_attribute_assignment.gemspec" }} # Install - run: bundle check || bundle install --path vendor/bundle # Store Cache - save_cache: key: gem-cache-{{ checksum "hash_attribute_assignment.gemspec" }} paths: - vendor/bundle - type: shell command: | bundle exec rubocop \ --config .rubocop.yml \ -r $(bundle show rubocop-junit-formatter)/lib/rubocop/formatter/junit_formatter.rb \ --format RuboCop::Formatter::JUnitFormatter \ --out /tmp/test-results/rubocop.xml \ --format progress \ --force-exclusion \ $(bundle exec rubocop --list-target-files | circleci tests split --split-by=filesize --show-counts) # Run rspec in parallel - type: shell command: | bundle exec rspec --profile 10 \ --format RspecJunitFormatter \ --out /tmp/test-results/rspec.xml \ --format progress \ $(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings --show-counts) # Save artifacts - type: store_test_results path: /tmp/test-results - store_artifacts: path: ~/hash_attribute_assignment/.rspec_failed_examples
Add 3.4 and 3.5 to tests
language: python python: - "3.4" - "3.5" - "3.6" before_install: - pip install --only-binary=numpy,scipy numpy scipy install: - python setup.py install script: - python setup.py test
language: python python: - "3.4" - "3.5" - "3.6" before_install: - pip install numpy scipy install: - python setup.py install script: - python setup.py test
Add more node variants, remove iojs
language: node_js node_js: - "0.12" - "0.11" - "0.10" - "iojs" - "iojs-v1.0.4"
language: node_js node_js: - "4.0.0" - "4.1.0" - "4.1.1" - "4.1.2" - "4.2.0" - "4.2.1" - "0.12" - "0.11" - "0.10"
Test in 0.10 as well
language: node_js # test on two node.js versions: 0.6 and 0.8 node_js: - 0.6 - 0.8
language: node_js node_js: - 0.6 - 0.8 - 0.10
Add xz to OS X build
sudo: required os: - linux - osx language: bash before_install: - if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get update; fi - if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get install -yq --no-install-suggests --no-install-recommends --force-yes -y netbase git ca-certificates xz-utils build-essential curl; fi - curl -sSL https://get.haskellstack.org/ | sh - time sh test/test-ghcs
sudo: required os: - linux - osx language: bash before_install: - if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get update; fi - if [[ $TRAVIS_OS_NAME == 'linux' ]]; then sudo apt-get install -yq --no-install-suggests --no-install-recommends --force-yes -y netbase git ca-certificates xz-utils build-essential curl; fi - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew install xz; fi - curl -sSL https://get.haskellstack.org/ | sh - time sh test/test-ghcs
Add testing on Chef 12
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-amazonlinux - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 - INSTANCE=default-debian-7 - INSTANCE=default-debian-8 - INSTANCE=default-debian-9 - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 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
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-amazonlinux CHEF_VERSION=12.7.2 - INSTANCE=default-ubuntu-1404 CHEF_VERSION=12.7.2 - INSTANCE=default-ubuntu-1604 CHEF_VERSION=12.7.2 - INSTANCE=default-debian-7 CHEF_VERSION=12.7.2 - INSTANCE=default-debian-8 CHEF_VERSION=12.7.2 - INSTANCE=default-debian-9 CHEF_VERSION=12.7.2 - INSTANCE=default-centos-6 CHEF_VERSION=12.7.2 - INSTANCE=default-centos-7 CHEF_VERSION=12.7.2 - INSTANCE=default-amazonlinux - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 - INSTANCE=default-debian-7 - INSTANCE=default-debian-8 - INSTANCE=default-debian-9 - INSTANCE=default-centos-6 - INSTANCE=default-centos-7 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
Update build matrix to include 2.4
# octocatalog-diff language: ruby install: true script: "script/cibuild" matrix: include: # Build with latest ruby - rvm: 2.3.1 env: RUBOCOP_TEST="true" RSPEC_TEST="true" # Build with older ruby versions - rvm: 2.2 env: RUBOCOP_TEST="false" RSPEC_TEST="true" - rvm: 2.1 env: RUBOCOP_TEST="false" RSPEC_TEST="true" - rvm: 2.0 env: RUBOCOP_TEST="false" RSPEC_TEST="true"
# octocatalog-diff language: ruby install: true script: "script/cibuild" matrix: include: # Build with latest ruby - rvm: 2.4 env: RUBOCOP_TEST="true" RSPEC_TEST="true" # Build with older ruby versions - rvm: 2.3 env: RUBOCOP_TEST="false" RSPEC_TEST="true" - rvm: 2.2 env: RUBOCOP_TEST="false" RSPEC_TEST="true" - rvm: 2.1 env: RUBOCOP_TEST="false" RSPEC_TEST="true" - rvm: 2.0 env: RUBOCOP_TEST="false" RSPEC_TEST="true"
Deploy with pypy version of python
sudo: required dist: trusty language: python python: - 2.7 matrix: exclude: - python: 2.7 include: - python: 2.7 env: TOX_ENV=py27 - python: 3.3 env: TOX_ENV=py33 - python: 3.4 env: TOX_ENV=py34 - python: 3.5 env: TOX_ENV=py35 - python: 3.6 env: TOX_ENV=py36 - python: pypy env: TOX_ENV=pypy cache: directories: - $HOME/.cache/pip install: pip install -r requirements.txt script: tox -epep8,${TOX_ENV} notifications: email: false deploy: provider: pypi user: ${PYPI_USER} password: ${PYPI_PASSWORD} distributions: "sdist bdist_wheel" on: python: 2.7 tags: true
sudo: required dist: trusty language: python python: - 2.7 matrix: exclude: - python: 2.7 include: - python: 2.7 env: TOX_ENV=py27 - python: 3.3 env: TOX_ENV=py33 - python: 3.4 env: TOX_ENV=py34 - python: 3.5 env: TOX_ENV=py35 - python: 3.6 env: TOX_ENV=py36 - python: pypy env: TOX_ENV=pypy cache: directories: - $HOME/.cache/pip install: pip install -r requirements.txt script: tox -epep8,${TOX_ENV} notifications: email: false deploy: provider: pypi user: ${PYPI_USER} password: ${PYPI_PASSWORD} distributions: "sdist bdist_wheel" on: python: pypy tags: true
Configure image edit form translation domain.
darvin_image: action: edit: template: '@DarvinAdmin/image/edit.html.twig'
darvin_image: action: edit: template: '@DarvinAdmin/image/edit.html.twig' translation_domain: admin
Update Node.js versions in Travis
language: node_js node_js: - "5.1.0" - "4.1" - "4.0" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
language: node_js node_js: - "5.6.0" - "5.5.0" - "4.3.1" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
Remove PHP 5.3.3 check (since ZF also need 5.3.23)
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - hhvm-nightly matrix: allow_failures: - php: hhvm - php: hhvm-nightly - php: 5.6 before_script: - composer update --prefer-source script: - vendor/bin/php-cs-fixer fix src --dry-run -v - mkdir -p build/logs - ./vendor/bin/phpunit -c travis.phpunit.xml --coverage-clover build/logs/clover.xml after_script: - php vendor/bin/coveralls -v
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - hhvm-nightly matrix: allow_failures: - php: hhvm - php: hhvm-nightly - php: 5.6 before_script: - composer update --prefer-source script: - vendor/bin/php-cs-fixer fix src --dry-run -v - mkdir -p build/logs - ./vendor/bin/phpunit -c travis.phpunit.xml --coverage-clover build/logs/clover.xml after_script: - php vendor/bin/coveralls -v
Use "rbx" on Travis instead of "rbx-2"
--- language: ruby script: bundle exec rake sudo: false addons: apt: packages: - ragel before_install: - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install ragel; fi install: - bundle install --retry=3 rvm: - 1.9 - 2.0 - 2.1 - 2.2 - rbx-2 - jruby matrix: exclude: # Binaries for these rubies aren't available on OS X :< - rvm: 2.2 os: osx - rvm: jruby os: osx notifications: email: recipients: - yorickpeterse@gmail.com on_success: change on_failure: change cache: bundler os: - linux - osx
--- language: ruby script: bundle exec rake sudo: false addons: apt: packages: - ragel before_install: - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install ragel; fi install: - bundle install --retry=3 rvm: - 1.9 - 2.0 - 2.1 - 2.2 - rbx - jruby matrix: exclude: # Binaries for these rubies aren't available on OS X :< - rvm: 2.2 os: osx - rvm: jruby os: osx notifications: email: recipients: - yorickpeterse@gmail.com on_success: change on_failure: change cache: bundler os: - linux - osx
Use xenial in Travis CI
sudo: required dist: trusty os: - linux env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true - NUGET_XMLDOC_MODE=skip branches: only: - master cache: directories: - /home/travis/.npm - /home/travis/.nuget/packages - src/LondonTravel.Site/node_modules addons: apt: sources: - google-chrome packages: - gettext - google-chrome-stable - libcurl4-openssl-dev - libicu-dev - libssl-dev - libunwind8 install: - npm install -g npm - npm install -g gulp@3.9.1 script: - ./build.sh --restore-packages
sudo: required dist: xenial dotnet: 2.2 language: csharp mono: none os: - linux env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true - NUGET_XMLDOC_MODE=skip branches: only: - master cache: directories: - /home/travis/.npm - /home/travis/.nuget/packages - src/LondonTravel.Site/node_modules addons: apt: sources: - google-chrome packages: - gettext - google-chrome-stable - libcurl4-openssl-dev - libicu-dev - libssl-dev - libunwind8 install: - npm install -g npm - npm install -g gulp@3.9.1 script: - ./build.sh --restore-packages
Use pytest for Travis CI builds.
language: python python: - 3.5 - 3.6 env: - RUN_PEP8=0 - RUN_PEP8=1 matrix: exclude: - python: 3.5 env: RUN_PEP8=1 allow_failures: - env: RUN_PEP8=1 install: - pip install .[tests] script: - nosetests - | if [[ "${RUN_PEP8}" == "1" ]]; then pip install flake8 flake8 --statistics fi
language: python python: - 3.5 - 3.6 env: - RUN_PEP8=0 - RUN_PEP8=1 matrix: exclude: - python: 3.5 env: RUN_PEP8=1 allow_failures: - env: RUN_PEP8=1 install: - pip install .[tests] script: - pytest - | if [[ "${RUN_PEP8}" == "1" ]]; then pip install flake8 flake8 --statistics fi
Add Python 3.4 testing for Travis CI
language: python python: - "2.7" - "3.3" - "pypy" install: - pip install . script: - python setup.py test
language: python python: - "2.7" - "3.3" - "3.4" - "pypy" install: - pip install . script: - python setup.py test
Add testing the release target succeeds.
language: java before_install: - wget http://archive.apache.org/dist/ant/binaries/apache-ant-1.9.4-bin.tar.gz - tar xzf apache-ant-1.9.4-bin.tar.gz - wget -O jacoco-0.7.5.zip http://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/0.7.5.201505241946/jacoco-0.7.5.201505241946.zip - unzip -d jacoco-0.7.5 jacoco-0.7.5.zip addons: apt: packages: - junit4 install: true script: apache-ant-1.9.4/bin/ant -Dquarks.build.ci=true -lib /usr/share/java/junit4.jar -lib jacoco-0.7.5/lib clean all test jdk: - oraclejdk8
language: java before_install: - wget http://archive.apache.org/dist/ant/binaries/apache-ant-1.9.4-bin.tar.gz - tar xzf apache-ant-1.9.4-bin.tar.gz - wget -O jacoco-0.7.5.zip http://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/0.7.5.201505241946/jacoco-0.7.5.201505241946.zip - unzip -d jacoco-0.7.5 jacoco-0.7.5.zip addons: apt: packages: - junit4 install: true script: apache-ant-1.9.4/bin/ant -Dquarks.build.ci=true -lib /usr/share/java/junit4.jar -lib jacoco-0.7.5/lib clean all test release jdk: - oraclejdk8
Update node versions to test
language: node_js node_js: - '0.10' env: global: - secure: LSuunNWbROOFKj/Hfn2xLFk8jgv6mTyRLqmfO3s0bkq/Qrf1mjnwK86G36aHGJRLclxLmw+CvsHF5H0ETgpCTjxBwIoR0MfZY1J4OXs2fOWyc196r4n39pB+4LavJGWqiIoG6KUW+0mgiwaWhYWHdL+/GtqbXjcIsLaoabw9+p8= - secure: Z8KfnL9kHPnROsTz6VM8PRUuglNKnrB0XrmOzkN4+iXVklRitn0nTVpbJl0+a2et7Re38DbeOdk1nzMQcfVjVMoyk1XzpFR5iRcQDoZgm9+Gd2FobXn2Y67rysRQ0g1iaeZvUCB4oWP/sg23L1lJamCSd4XP4wV56DKWNhg7nUk=
language: node_js node_js: - '4' - '6' - '7' env: global: - secure: LSuunNWbROOFKj/Hfn2xLFk8jgv6mTyRLqmfO3s0bkq/Qrf1mjnwK86G36aHGJRLclxLmw+CvsHF5H0ETgpCTjxBwIoR0MfZY1J4OXs2fOWyc196r4n39pB+4LavJGWqiIoG6KUW+0mgiwaWhYWHdL+/GtqbXjcIsLaoabw9+p8= - secure: Z8KfnL9kHPnROsTz6VM8PRUuglNKnrB0XrmOzkN4+iXVklRitn0nTVpbJl0+a2et7Re38DbeOdk1nzMQcfVjVMoyk1XzpFR5iRcQDoZgm9+Gd2FobXn2Y67rysRQ0g1iaeZvUCB4oWP/sg23L1lJamCSd4XP4wV56DKWNhg7nUk=
Stop testing on node 0.10 and begin testing 8 LTS
language: node_js node_js: - "0.10" - "4" - "6" sudo: required services: - docker before_install: - docker pull postgres
language: node_js node_js: - "4" - "6" - "8" sudo: required services: - docker before_install: - docker pull postgres
Exclude default build entry from the matrix
language: java script: "mvn -P ${CONTAINER} install" matrix: include: - env: CONTAINER=JBOSS_AS_MANAGED_7.X jdk: openjdk6 - env: CONTAINER=JBOSS_AS_MANAGED_7.X jdk: oraclejdk7 - env: CONTAINER=TOMEE_MANAGED_1.5 jdk: openjdk6 allow_failures: - env: CONTAINER=GLASSFISH_MANAGED_3.1 jdk: openjdk6 - env: CONTAINER=WILDFLY_MANAGED_8 jdk: oraclejdk7 notifications: email: false irc: "chat.freenode.net#ocpsoft"
language: java script: "mvn -P ${CONTAINER} install" matrix: # exclude default build as we manually define the build matrix # see: https://github.com/travis-ci/travis-ci/issues/1228 exclude: - env: "" jdk: "" include: - env: CONTAINER=JBOSS_AS_MANAGED_7.X jdk: openjdk6 - env: CONTAINER=JBOSS_AS_MANAGED_7.X jdk: oraclejdk7 - env: CONTAINER=WILDFLY_MANAGED_8 jdk: oraclejdk7 - env: CONTAINER=GLASSFISH_MANAGED_3.1 jdk: openjdk6 - env: CONTAINER=TOMEE_MANAGED_1.5 jdk: openjdk6 allow_failures: - env: CONTAINER=GLASSFISH_MANAGED_3.1 jdk: openjdk6 - env: CONTAINER=WILDFLY_MANAGED_8 jdk: oraclejdk7 notifications: email: false irc: "chat.freenode.net#ocpsoft"
Remove PHP 5.3.3 as Composer won't work
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_install: - composer self-update --no-interaction install: - composer install --no-interaction --prefer-source --dev script: vendor/bin/phpunit
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_install: - composer self-update --no-interaction install: - composer install --no-interaction --prefer-source --dev script: vendor/bin/phpunit
Add missing packages for Erlang.
language: java compiler: - gcc script: LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$(pwd)/build" make test && make clean && make bindings
language: java compiler: - gcc addons: apt: packages: - erlang - erlang-dev script: LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$(pwd)/build" make test && make clean && make bindings
Use newer OS X on Travis
git: depth: 10 branches: only: - master env: global: - ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4 compiler: clang matrix: include: - os: linux env: NODE_VERSION=4 - os: osx env: ATOM_SPECS_TASK=core NODE_VERSION=4 - os: osx env: ATOM_SPECS_TASK=packages NODE_VERSION=4 sudo: false install: - git clone https://github.com/creationix/nvm.git /tmp/.nvm - source /tmp/.nvm/nvm.sh - nvm install $NODE_VERSION - nvm use --delete-prefix $NODE_VERSION script: script/cibuild cache: directories: - node_modules - build/node_modules - apm/node_modules - $HOME/.atom/compile-cache notifications: email: on_success: never on_failure: change addons: apt: sources: - ubuntu-toolchain-r-test packages: - build-essential - git - libgnome-keyring-dev - fakeroot - gcc-multilib
git: depth: 10 branches: only: - master env: global: - ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4 osx_image: xcode7.3 compiler: clang matrix: include: - os: linux env: NODE_VERSION=4 - os: osx env: ATOM_SPECS_TASK=core NODE_VERSION=4 - os: osx env: ATOM_SPECS_TASK=packages NODE_VERSION=4 sudo: false install: - git clone https://github.com/creationix/nvm.git /tmp/.nvm - source /tmp/.nvm/nvm.sh - nvm install $NODE_VERSION - nvm use --delete-prefix $NODE_VERSION script: script/cibuild cache: directories: - node_modules - build/node_modules - apm/node_modules - $HOME/.atom/compile-cache notifications: email: on_success: never on_failure: change addons: apt: sources: - ubuntu-toolchain-r-test packages: - build-essential - git - libgnome-keyring-dev - fakeroot - gcc-multilib
Remove hhvm from allowed failures
language: php sudo: false cache: directories: - $HOME/.composer/cache php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm env: global: - TEST_COMMAND="composer test" matrix: allow_failures: - php: hhvm fast_finish: true include: - php: 5.4 env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci" before_install: - travis_retry composer self-update install: - travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction script: - $TEST_COMMAND after_success: - if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
language: php sudo: false cache: directories: - $HOME/.composer/cache php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm env: global: - TEST_COMMAND="composer test" matrix: fast_finish: true include: - php: 5.4 env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true TEST_COMMAND="composer test-ci" before_install: - travis_retry composer self-update install: - travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction script: - $TEST_COMMAND after_success: - if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
Test ruby-head and jruby-head but allow failures
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ree # - ruby-head - jruby-18mode - jruby-19mode # - jruby-head - rbx-18mode - rbx-19mode
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ree - ruby-head - jruby-18mode - jruby-19mode - jruby-head - rbx-18mode - rbx-19mode matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head
Update from Hackage at 2020-01-08T19:09:58Z
homepage: https://github.com/NorfairKing/validity#readme changelog-type: '' hash: ef07e6eda808fb137f5a0421c6c3fedf146e17c6102d3067153e1cc94aaab46d test-bench-deps: path: -any base: -any hspec: -any criterion: -any genvalidity-hspec: -any QuickCheck: -any genvalidity: -any genvalidity-path: -any maintainer: ! 'syd.kerckhove@gmail.com, nick.van.den.broeck666@gmail.com' synopsis: GenValidity support for Path changelog: '' basic-deps: path: ! '>=0.5 && <0.7' base: ! '>=4.7 && <5' validity-path: ! '>=0.3' QuickCheck: -any genvalidity: ! '>=0.5' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.0.2 - 0.2.0.0 - 0.2.0.2 - 0.3.0.0 - 0.3.0.1 - 0.3.0.2 author: Tom Sydney Kerckhove latest: 0.3.0.2 description-type: haddock description: Please see README.md license-name: MIT
homepage: https://github.com/NorfairKing/validity#readme changelog-type: '' hash: 9865aabed90592442cfa9425f4f896ce392f214037357a2229119c23aa8cdbdd test-bench-deps: path: ! '>=0.5' base: ! '>=4.7 && <5' hspec: -any criterion: -any genvalidity-hspec: -any genvalidity-criterion: -any QuickCheck: -any genvalidity: -any genvalidity-path: -any maintainer: syd@cs-syd.eu synopsis: GenValidity support for Path changelog: '' basic-deps: path: ! '>=0.5' base: ! '>=4.7 && <5' validity-path: ! '>=0.3' QuickCheck: -any genvalidity: ! '>=0.5' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.0.2 - 0.2.0.0 - 0.2.0.2 - 0.3.0.0 - 0.3.0.1 - 0.3.0.2 - 0.3.0.3 author: Tom Sydney Kerckhove latest: 0.3.0.3 description-type: haddock description: '' license-name: MIT
Update yml for Travis CI
language: julia os: - linux - osx julia: - release - nightly notifications: email: false after_success: - julia -e 'cd(Pkg.dir("Julimaps")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
language: cpp compiler: - clang notifications: email: false env: matrix: - JULIAVERSION="juliareleases" - JULIAVERSION="julianightlies" before_install: - sudo add-apt-repository ppa:staticfloat/julia-deps -y - sudo add-apt-repository ppa:staticfloat/${JULIAVERSION} -y - sudo apt-get update -qq -y - sudo apt-get install curl libpcre3-dev julia -y - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi script: - xvfb-run julia -e 'versioninfo(); Pkg.init(); Pkg.clone(pwd()); Pkg.build("Julimaps"); Pkg.test("Julimaps")'
Use Trusty for Travis CI.
language: c++ addons: apt: sources: - ubuntu-toolchain-r-test packages: - make - g++-5 - libboost-test-dev before_script: - export CXX="g++-5" CC="gcc-5" script: - make test
language: c++ # Use Trusty for more recent Boost library # https://docs.travis-ci.com/user/trusty-ci-environment/ sudo: required dist: trusty addons: apt: sources: - ubuntu-toolchain-r-test packages: - make - g++-5 - libboost-test-dev before_script: - export CXX="g++-5" CC="gcc-5" script: - make test
Add --show-error option to cURL invocation
# https://github.com/atom/ci language: generic os: - linux - osx script: curl --silent https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
# https://github.com/atom/ci language: generic os: - linux - osx script: curl --show-error --silent https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
Upgrade to new TravisCI infrastructure
language: java jdk: - oraclejdk8 before_install: - pip install codecov after_success: - codecov notifications: email: false
language: java sudo: false jdk: - oraclejdk8 before_install: - pip install codecov after_success: - codecov notifications: email: false
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 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 before_install: - npm install - npm install istanbul coveralls
Fix django version on tests.
# Config file for automatic testing at travis-ci.org language: python cache: pip # diferrent python versions python: - "2.7" - "3.4" - "3.5" - "3.6" # diferrent django versions env: - DJANGO=django<1.9 # 1.8.x - DJANGO=django<1.10 # 1.9.x - DJANGO=django<1.11 # 1.10.x - DJANGO=django<1.12 # 1.11.x # install dependencies install: - pip install $DJANGO -r requirements-debug.txt # print pip packages before_script: - pip freeze # run tests script: - flake8 . - isort -c -df - PYTHONPATH=`pwd` py.test --cov-report html --cov=admin_view_permission -v tests/ # report coverage to coveralls.io after_success: coveralls
# Config file for automatic testing at travis-ci.org language: python cache: pip # diferrent python versions python: - "2.7" - "3.4" - "3.5" - "3.6" # diferrent django versions env: - DJANGO_VERSION=1.8.* - DJANGO_VERSION=1.9.* - DJANGO_VERSION=1.10.* - DJANGO_VERSION=1.11.* # install dependencies install: - pip install -r requirements-debug.txt - pip install Django==$DJANGO_VERSION # print pip packages before_script: - pip freeze # run tests script: - flake8 . - isort -c -df - PYTHONPATH=`pwd` py.test --cov-report html --cov=admin_view_permission -v tests/ # report coverage to coveralls.io after_success: coveralls
Fix install brew waiting for input
language: sh os: - linux - osx before_install: command -v brew >/dev/null 2>&1 || ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)" && PATH="$PATH:$HOME/.linuxbrew/bin" script: make
language: sh os: - linux - osx before_install: command -v brew >/dev/null 2>&1 || < /dev/null ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)" && PATH="$PATH:$HOME/.linuxbrew/bin" script: make
Revert "Retour arrière pour le build."
language: cpp sudo: required compiler: - gcc install: # Upgrade GCC - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - sudo apt-get install -qq g++-4.9 - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9 # Install conan - pip install conan # Automatic detection of your arch, compiler, etc. Download dependencies - conan script: - sh build.sh
language: cpp sudo: required dist: trusty compiler: - gcc - clang addons: apt: sources: # add PPAs with more up-to-date toolchains - ubuntu-toolchain-r-test - llvm-toolchain-precise-3.6 packages: # install toolchains - gcc-5 - g++-5 - clang-3.6 install: # Install conan - pip install conan # Automatic detection of your arch, compiler, etc. Download dependencies - conan script: - sh build.sh
Enable the service and ensure it's running.
--- - name: Check if JumpCloud folder exists stat: path: "{{ jumpcloud_directory }}" register: jumpcloud_directory_stat - name: Determine if JumpCloud is already installed set_fact: jc_not_installed: "{{ not (jumpcloud_directory_stat.stat.isdir is defined and jumpcloud_directory_stat.stat.isdir) }}" - name: Install JumpCloud if required include: install.yml when: jc_not_installed or jumpcloud_force_install
--- - name: Check if JumpCloud folder exists stat: path: "{{ jumpcloud_directory }}" register: jumpcloud_directory_stat - name: Determine if JumpCloud is already installed set_fact: jc_not_installed: "{{ not (jumpcloud_directory_stat.stat.isdir is defined and jumpcloud_directory_stat.stat.isdir) }}" - name: Install JumpCloud if required include: install.yml when: jc_not_installed or jumpcloud_force_install - name: Ensure jcagent is enabled and started become: "{{ jumpcloud_use_sudo }}" service: name=jcagent enabled=true state=running