Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add flame_id param configure for imu
## USB port port: /dev/serial/by-id/usb-SparkFun_SFE_9DOF-D21-if00 ##### Calibration #### ### accelerometer accel_x_min: -250.0 accel_x_max: 250.0 accel_y_min: -250.0 accel_y_max: 250.0 accel_z_min: -250.0 accel_z_max: 250.0 ### magnetometer # standard calibration magn_x_min: -600.0 magn_x_max: 600.0 magn_y_min: -600.0 magn_y_max: 600.0 magn_z_min: -600.0 magn_z_max: 600.0 # extended calibration calibration_magn_use_extended: false magn_ellipsoid_center: [0, 0, 0] magn_ellipsoid_transform: [[0, 0, 0], [0, 0, 0], [0, 0, 0]] # AHRS to robot calibration imu_yaw_calibration: 0.0 ### gyroscope gyro_average_offset_x: 0.0 gyro_average_offset_y: 0.0 gyro_average_offset_z: 0.0
## USB port port: /dev/serial/by-id/usb-SparkFun_SFE_9DOF-D21-if00 ## Sensor Flame ## !!!!!!!!!!!!!!!!!!!! CHECK REQUIRED !!!!!!!!!!!!!!!!!!!! flame_id: imu_link ##### Calibration #### ### accelerometer accel_x_min: -250.0 accel_x_max: 250.0 accel_y_min: -250.0 accel_y_max: 250.0 accel_z_min: -250.0 accel_z_max: 250.0 ### magnetometer # standard calibration magn_x_min: -600.0 magn_x_max: 600.0 magn_y_min: -600.0 magn_y_max: 600.0 magn_z_min: -600.0 magn_z_max: 600.0 # extended calibration calibration_magn_use_extended: false magn_ellipsoid_center: [0, 0, 0] magn_ellipsoid_transform: [[0, 0, 0], [0, 0, 0], [0, 0, 0]] # AHRS to robot calibration imu_yaw_calibration: 0.0 ### gyroscope gyro_average_offset_x: 0.0 gyro_average_offset_y: 0.0 gyro_average_offset_z: 0.0
Update the st2chatops role and add support for Ubuntu 20.04
--- galaxy_info: description: Install st2chatops author: humblearner company: StackStorm license: Apache 2.0 min_ansible_version: 2.5 platforms: - name: Ubuntu versions: - bionic - xenial - name: EL versions: - 7 - 8 galaxy_tags: - system - st2 - devops - chatops - automation - hubot dependencies: - role: StackStorm.nodejs - role: StackStorm.st2
--- galaxy_info: description: Install st2chatops author: humblearner company: StackStorm license: Apache 2.0 min_ansible_version: 2.5 platforms: - name: Ubuntu versions: - bionic - xenial - focal - name: EL versions: - 7 - 8 galaxy_tags: - system - st2 - devops - chatops - automation - hubot dependencies: - role: StackStorm.nodejs - role: StackStorm.st2
Update from Hackage at 2017-05-10T21:09:50Z
homepage: https://github.com/athanclark/websockets-simple#readme changelog-type: '' hash: 8c6c35dc5e4612adf401fe27f20276afd45ff9a0b930ffd918a63e261da47d09 test-bench-deps: {} maintainer: athan.clark@gmail.com synopsis: Simpler interface to the websockets api changelog: '' basic-deps: exceptions: -any bytestring: -any wai-transformers: -any stm: -any base: ! '>=4.8 && <5' every: ! '>=0.0.1' monad-control: -any async: -any websockets: ! '>=0.11' aeson: -any all-versions: - '0.0.1' - '0.0.2' - '0.0.2.1' - '0.0.2.2' - '0.0.3' - '0.0.4' - '0.0.4.1' author: Athan Clark latest: '0.0.4.1' description-type: markdown description: ! '# websockets-simple ' license-name: BSD3
homepage: https://github.com/athanclark/websockets-simple#readme changelog-type: '' hash: 26c5b7c5524143e16ccc4e6516510a629045a18f71c6351209ab7a55b786ca50 test-bench-deps: {} maintainer: athan.clark@gmail.com synopsis: Simpler interface to the websockets api changelog: '' basic-deps: exceptions: -any bytestring: -any wai-transformers: -any stm: -any base: ! '>=4.8 && <5' every: ! '>=0.0.1' monad-control: -any async: -any websockets: ! '>=0.11' aeson: -any all-versions: - '0.0.1' - '0.0.2' - '0.0.2.1' - '0.0.2.2' - '0.0.3' - '0.0.4' - '0.0.4.1' - '0.0.5' author: Athan Clark latest: '0.0.5' description-type: markdown description: ! '# websockets-simple ' license-name: BSD3
Put 3.7 build deps back
{% set name = "py2dm" %} {% set version = "0.2.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/py2dm-{{ version }}.tar.gz sha256: 447e3af1e5adfc7a898acd5e5744ab58f86d995cf615147629fec7b4bf605be7 build: script: {{ PYTHON }} -m pip install . -vv number: 0 requirements: build: - {{ compiler('cxx') }} host: - python - pip run: - python - typing-extensions # [py<38] - cached-property # [py<38] test: imports: - py2dm about: home: https://github.com/leonhard-s/Py2DM summary: Read and write 2DM mesh files license: MIT license_file: LICENSE extra: recipe-maintainers: - optiz0r
{% set name = "py2dm" %} {% set version = "0.2.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/py2dm-{{ version }}.tar.gz sha256: 447e3af1e5adfc7a898acd5e5744ab58f86d995cf615147629fec7b4bf605be7 build: script: {{ PYTHON }} -m pip install . -vv number: 0 requirements: build: - {{ compiler('cxx') }} # Without these the compilation of the C++ extension fails on Python 3.7 - typing-extensions # [py<38] - cached-property # [py<38] host: - python - pip run: - python - typing-extensions # [py<38] - cached-property # [py<38] test: imports: - py2dm about: home: https://github.com/leonhard-s/Py2DM summary: Read and write 2DM mesh files license: MIT license_file: LICENSE extra: recipe-maintainers: - optiz0r
Update from Hackage at 2017-12-14T01:25:39Z
homepage: '' changelog-type: '' hash: 3e1050fd77f815854cf7fe549bf0f3b5e622e05e235267ad6be044e3d21627b1 test-bench-deps: {} maintainer: strake888@gmail.com synopsis: Utilities changelog: '' basic-deps: base: ! '>=4.9 && <4.12' all-versions: - '0.1.0.0' - '0.1.1.0' - '0.1.2.0' - '0.1.2.1' - '0.1.3.0' author: M Farkas-Dyck latest: '0.1.3.0' description-type: haddock description: '' license-name: BSD3
homepage: '' changelog-type: '' hash: 9746e10a63946b991a19f66efae4562c7ceea03a672e28e57a17c79b51190d1d test-bench-deps: {} maintainer: strake888@gmail.com synopsis: Utilities changelog: '' basic-deps: base: ! '>=4.9 && <4.12' all-versions: - '0.1.0.0' - '0.1.1.0' - '0.1.2.0' - '0.1.2.1' - '0.1.3.0' - '0.1.4.0' author: M Farkas-Dyck latest: '0.1.4.0' description-type: haddock description: '' license-name: BSD3
Use inline version instead of postmap file
--- classes: - apache - collectd::plugin::postfix - mx_asf - pflogsumm - postfix_asf - ssl::name::wildcard_apache_org postfix::server::inet_interfaces: 'all' postfix::server::postscreen: 'true' postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subversion.net,subversion.org' postfix::server::recipient_canonical_maps: 'regexp:/etc/postfix/recipient_canonical_maps' postfix::server::mynetworks: 'hash:/etc/postfix/network_map' postfix::server::asf_mx_enabled: 'true' postfix::server::asf_mx_content_filter: 'smtp-amavis:[spamc1-us-west.apache.org]:10024' postfix::server::max_postfix_amavis_procs: '25' postfix::server::max_use_postfix_amavis: '25' postfix::dbfile: network_map: content: '127.0.0.0/8 %{network_eth0}/%{netmask} [::1]/128 [fe80::]/64 209.188.14.139/32'
--- classes: - apache - collectd::plugin::postfix - mx_asf - pflogsumm - postfix_asf - ssl::name::wildcard_apache_org postfix::server::inet_interfaces: 'all' postfix::server::postscreen: 'true' postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subversion.net,subversion.org' postfix::server::recipient_canonical_maps: 'regexp:/etc/postfix/recipient_canonical_maps' postfix::server::mynetworks: '127.0.0.0/8 %{network_eth0}/%{netmask} [::1]/128 [fe80::]/64 209.188.14.139/32' postfix::server::asf_mx_enabled: 'true' postfix::server::asf_mx_content_filter: 'smtp-amavis:[spamc1-us-west.apache.org]:10024' postfix::server::max_postfix_amavis_procs: '25' postfix::server::max_use_postfix_amavis: '25' postfix::dbfile: network_map: content: '127.0.0.0/8 %{network_eth0}/%{netmask} [::1]/128 [fe80::]/64 209.188.14.139/32'
Make sure conda environments are created
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 before_install: # Install conda - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda/bin:$PATH - conda update --yes conda # Make sure that interactive matplotlib backends work - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start install: - conda install --yes pip pytest numpy matplotlib psutil - pip install coveralls pytest-cov script: - py.test --cov psrecord after_success: - coveralls
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 before_install: # Install conda - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda/bin:$PATH - conda update --yes conda # Create environment - conda create -n test python=$TRAVIS_PYTHON_VERSION - source activate test # Make sure that interactive matplotlib backends work - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start install: - conda install --yes pip pytest numpy matplotlib psutil - pip install coveralls pytest-cov script: - py.test --cov psrecord after_success: - coveralls
Remove branch requirement for nuget deploy
version: $(core_version)+{branch}.{build} configuration: Release assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: $(core_version) assembly_file_version: $(core_version) assembly_informational_version: $(core_version) environment: core_version: 1.1.0 nuget: disable_publish_on_pr: true build: publish_nuget: true publish_nuget_symbols: true include_nuget_references: true verbosity: minimal deploy: - provider: NuGet api_key: secure: yhmsBOdD4lsEpHfFb/rNXDm90EuL+OBaJuCI7yUzc2fcwS2egdtt/ItGFPYBwZEQ9yz+q5de1YAphBCXxM3lDS5h65lgnHKwKSOKn2BAyKU= on: branch: master appveyor_repo_tag: true
version: $(core_version)+{branch}.{build} configuration: Release assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: $(core_version) assembly_file_version: $(core_version) assembly_informational_version: $(core_version) environment: core_version: 1.1.0 nuget: disable_publish_on_pr: true build: publish_nuget: true publish_nuget_symbols: true include_nuget_references: true verbosity: minimal deploy: - provider: NuGet api_key: secure: yhmsBOdD4lsEpHfFb/rNXDm90EuL+OBaJuCI7yUzc2fcwS2egdtt/ItGFPYBwZEQ9yz+q5de1YAphBCXxM3lDS5h65lgnHKwKSOKn2BAyKU= on: appveyor_repo_tag: true
Call build.ps1 in same manner as mr binary mash
version: 1.0.{build} configuration: - Release platform: Any CPU build_script: - build.ps1 cache: - '%USERPROFILE%\.nuget\packages'
version: 1.0.{build} configuration: - Release platform: Any CPU build_script: - ./build.ps1 cache: - '%USERPROFILE%\.nuget\packages'
Add build step to CI
version: 2 jobs: build: docker: - image: circleci/node:7.10 working_directory: ~/project/functions steps: - checkout: path: ~/project - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: ls - run: yarn install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: yarn lint - run: yarn test
version: 2 jobs: build: docker: - image: circleci/node:7.10 working_directory: ~/project/functions steps: - checkout: path: ~/project - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: ls - run: yarn install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: yarn build - run: yarn lint - run: yarn test
Add Python3 zed unit tests
- project: templates: - check-requirements - horizon-non-primary-django-jobs - openstack-python3-yoga-jobs - release-notes-jobs-python3
- project: templates: - check-requirements - horizon-non-primary-django-jobs - openstack-python3-zed-jobs - release-notes-jobs-python3
Disable ssl checks for sensu in vagrant
--- profile::development::network::dns::manage_hosts: true profile::application::himlarcli::cacert: '/opt/himlar/provision/ca/intermediate/certs/ca-chain.cert.pem' profile::application::himlarcli::smtp: '' profile::application::himlarcli::from_addr: '' profile::openstack::openrc::cacert: '/opt/himlar/provision/ca/intermediate/certs/ca-chain.cert.pem' # Use newest test repositories yum_base_mirror: 'https://download.iaas.uio.no/uh-iaas/test' sensu_ssl_cachain: '-C /opt/himlar/provision/ca/intermediate/certs/ca-chain.cert.pem' # no proxy for vagrant environments profile::network::yum_proxy::yum_proxy: '' profile::openstack::identity::swift_enabled: true
--- profile::development::network::dns::manage_hosts: true profile::application::himlarcli::cacert: '/opt/himlar/provision/ca/intermediate/certs/ca-chain.cert.pem' profile::application::himlarcli::smtp: '' profile::application::himlarcli::from_addr: '' profile::openstack::openrc::cacert: '/opt/himlar/provision/ca/intermediate/certs/ca-chain.cert.pem' # Use newest test repositories yum_base_mirror: 'https://download.iaas.uio.no/uh-iaas/test' #sensu_ssl_cachain: '-C /opt/himlar/provision/ca/intermediate/certs/ca-chain.cert.pem' sensu_ssl_cachain: '-k' # no proxy for vagrant environments profile::network::yum_proxy::yum_proxy: '' profile::openstack::identity::swift_enabled: true
Add Python3 zed unit tests
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-yoga-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-zed-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
Update Ubuntu version & Ruby Setup action
name: Verify on: push: branches: - '*' pull_request: branches: - '*' jobs: test: runs-on: ubuntu-16.04 timeout-minutes: 40 strategy: fail-fast: true matrix: ruby: - 2.5 - 2.6 - 2.7 - 3.0 env: RAILS_ENV: test name: Ruby ${{ matrix.ruby }} steps: - name: Install system dependencies run: sudo apt-get install graphviz - name: Checkout code uses: actions/checkout@v2 - uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Setup bundler run: | gem install bundler - name: Bundle install run: | bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Test run: | bundle exec rake spec bundle exec rake yard - name: Upload coverage report uses: actions/upload-artifact@v2 with: name: coverage-${{ matrix.ruby }} path: | coverage/ retention-days: 1
name: Verify on: push: branches: - '*' pull_request: branches: - '*' jobs: test: runs-on: ubuntu-18.04 timeout-minutes: 40 strategy: fail-fast: true matrix: ruby: - 2.5 - 2.6 - 2.7 - 3.0 env: RAILS_ENV: test name: Ruby ${{ matrix.ruby }} steps: - name: Install system dependencies run: sudo apt-get install graphviz - name: Checkout code uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Test run: | bundle exec rake spec bundle exec rake yard - name: Upload coverage report uses: actions/upload-artifact@v2 with: name: coverage-${{ matrix.ruby }} path: | coverage/ retention-days: 1
Add step to extract build cache
steps: # # Extract the cache # # The gradle build cache is stored as a tarball in Google Cloud Storage to # make builds faster. # # After extracting the cache to the /build_cache directory, we need to supply # that to gradle, and include the volume in steps that require the cache. # - name: gcr.io/cloud-builders/gsutil id: copy_build_cache # we use rsync and not cp so that the step does not fail the first time it is run args: ['rsync', 'gs://gradle_cache_$PROJECT_ID/', '/build_cache'] volumes: - name: 'build_cache' path: '/build_cache' - name: 'gcr.io/$PROJECT_ID/android-builder' entrypoint: 'gradle-build' args: ['-g', '.gradle', 'assemble'] - name: gcr.io/cloud-builders/gsutil args: ['cp', 'cache.zip', 'gs://gradle_cache_$PROJECT_ID/cache.zip']
steps: # # Extract the cache # # The gradle build cache is stored as a tarball in Google Cloud Storage to # make builds faster. # # After extracting the cache to the /build_cache directory, we need to supply # that to gradle, and include the volume in steps that require the cache. # - name: gcr.io/cloud-builders/gsutil id: copy_build_cache # we use rsync and not cp so that the step does not fail the first time it is run args: ['rsync', 'gs://gradle_cache_$PROJECT_ID/', '/build_cache'] volumes: - name: 'build_cache' path: '/build_cache' - name: 'gcr.io/$PROJECT_ID/tar' id: extract_build_cache waitFor: ['copy_build_cache'] # This might fail the first time, but that's okay entrypoint: 'bash' args: - '-c' - | tar xpzf /build_cache/cache.tgz -C /build_cache || echo "No cache found." volumes: - name: 'build_cache' path: '/build_cache' - name: 'gcr.io/$PROJECT_ID/android-builder' entrypoint: 'gradle-build' args: ['-g', '.gradle', 'assemble'] - name: gcr.io/cloud-builders/gsutil args: ['cp', 'cache.zip', 'gs://gradle_cache_$PROJECT_ID/cache.zip']
Add Tom Boland as a backer - thank you! :)
# Comment to be posted to on first time issues newIssueWelcomeComment: > Hello and welcome to the Oni repository! Thanks for opening your first issue here. To help us out, please make sure to include as much detail as possible - including screenshots and logs, if possible. backers: - 78856 - 1359421 - 4650931 - 13532591 - 5097613 - 22454918 - 347552 - 977348 - 28748 - 2835826 - 515720 - 124171 - 230476 - 10102132 - 10038688 - 817509 - 163128 - 4762 - 933251 - 3974037 - 141159 - 10263 - 3117205 - 5697723 - 6803419 - 1718128 - 2042893 - 14060883 - 244396
# Comment to be posted to on first time issues newIssueWelcomeComment: > Hello and welcome to the Oni repository! Thanks for opening your first issue here. To help us out, please make sure to include as much detail as possible - including screenshots and logs, if possible. backers: - 78856 - 1359421 - 4650931 - 13532591 - 5097613 - 22454918 - 347552 - 977348 - 28748 - 2835826 - 515720 - 124171 - 230476 - 10102132 - 10038688 - 817509 - 163128 - 4762 - 933251 - 3974037 - 141159 - 10263 - 3117205 - 5697723 - 6803419 - 1718128 - 2042893 - 14060883 - 244396 - 8832878
Add xgboost for win pip check
{% set name = "FLAML" %} {% set version = "0.6.6" %} package: name: {{ name|lower }} version: {{ version }} build: number: 0 noarch: python script: {{ PYTHON }} -m pip install --no-deps https://files.pythonhosted.org/packages/b0/b5/d0001c3d3e335aba4b72590546e3a6bc5f13e182aa31cc2693558153b491/{{ name }}-{{ version }}.tar.gz requirements: host: - pip - python >=3.6 run: - lightgbm >=2.3.1 - numpy >=1.16.2 - python >=3.6 - scikit-learn >=0.24 - scipy >=1.4.1 - xgboost <=1.3.3,>=0.90 test: imports: - flaml - flaml.nlp commands: - pip check requires: - pip - pandas >=1.0.0 about: home: https://github.com/microsoft/FLAML summary: A fast and lightweight autoML system license: MIT license_file: LICENSE extra: recipe-maintainers: - michalchromcak
{% set name = "FLAML" %} {% set version = "0.6.6" %} package: name: {{ name|lower }} version: {{ version }} build: number: 0 noarch: python script: {{ PYTHON }} -m pip install --no-deps https://files.pythonhosted.org/packages/b0/b5/d0001c3d3e335aba4b72590546e3a6bc5f13e182aa31cc2693558153b491/{{ name }}-{{ version }}.tar.gz requirements: host: - pip - python >=3.6 run: - lightgbm >=2.3.1 - numpy >=1.16.2 - python >=3.6 - scikit-learn >=0.24 - scipy >=1.4.1 - xgboost <=1.3.3,>=0.90 test: imports: - flaml - flaml.nlp commands: - pip check requires: - pip - pandas >=1.0.0 - xgboost <=1.3.3,>=0.90 about: home: https://github.com/microsoft/FLAML summary: A fast and lightweight autoML system license: MIT license_file: LICENSE extra: recipe-maintainers: - michalchromcak
Add nodejs6 to path for ansible user
- hosts: '{{ group | default("qa") }}' connection: '{{ conn | default("local") }}' remote_user: deploy # Set environment to use scl rh-python35 environment: PATH: '/opt/rh/rh-python35/root/usr/bin/:{{ lookup("env","PATH") }}' LD_LIBRARY_PATH: '/opt/rh/rh-python35/root/usr/lib64' roles: # Creates repo variable names and builds repo - projectrepo # Builds a production deploy and sets file permissions correctly - buildprod # Makes an emergency database backup, run migrations, and then resets # symlinks - golive
- hosts: '{{ group | default("qa") }}' connection: '{{ conn | default("local") }}' remote_user: deploy # Set environment to use scl rh-python35 environment: PATH: '/opt/rh/rh-python35/root/usr/bin/:/opt/rh/rh-nodejs6/root/usr/bin:{{ ansible_env.PATH }}' LD_LIBRARY_PATH: '/opt/rh/rh-python35/root/usr/lib64:/opt/rh/rh-nodejs6/root/usr/lib64' roles: # Creates repo variable names and builds repo - projectrepo # Builds a production deploy and sets file permissions correctly - buildprod # Makes an emergency database backup, run migrations, and then resets # symlinks - golive
Bump actions/checkout from 3.0.2 to 3.1.0
name: Jekyll site CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3.0.2 - name: Build the site in the jekyll/builder container run: | docker run \ -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
name: Jekyll site CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3.1.0 - name: Build the site in the jekyll/builder container run: | docker run \ -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
Remove support for Lucid - it's time.
--- driver: name: vagrant provisioner: name: chef_solo platforms: - name: ubuntu-12.04 - name: ubuntu-10.04 suites: - name: default run_list: - recipe[serf::default] attributes:
--- driver: name: vagrant provisioner: name: chef_solo platforms: - name: ubuntu-12.04 suites: - name: default run_list: - recipe[serf::default] attributes:
Add support for cuke - @ignore-tag.
# https://github.com/cucumber/cucumber/wiki/cucumber.yml <% omit_wip = "--tags ~@wip" %> <% omit_migration = "--tags ~@migration" %> default: <%= omit_migration %> <%= omit_wip %> features html_report: <%= omit_migration %> <%= omit_wip %> --format html --out report/index.html wip: <%= omit_migration %> --tags @wip html_report_wip: <%= omit_migration %> --tags @wip --format html --out report/index_wip.html migration: <%= omit_wip %> --tags @migration html_report_migration: <%= omit_wip %> --tags @migration --format html --out report/index_migration.html migration_wip: --tags @wip --tags @migration html_report_migration_wip: --tags @wip --tags @migration --format html --out report/index_migration_wip.html
# https://github.com/cucumber/cucumber/wiki/cucumber.yml <% omit_ignore = "--tags ~@ignore" %> <% omit_wip = "--tags ~@wip" %> <% omit_migration = "--tags ~@migration" %> default: <%= omit_ignore %> <%= omit_migration %> <%= omit_wip %> features html_report: <%= omit_ignore %> <%= omit_migration %> <%= omit_wip %> --format html --out report/index.html wip: <%= omit_ignore %> <%= omit_migration %> --tags @wip html_report_wip: <%= omit_ignore %> <%= omit_migration %> --tags @wip --format html --out report/index_wip.html migration: <%= omit_ignore %> <%= omit_wip %> --tags @migration html_report_migration: <%= omit_ignore %> <%= omit_wip %> --tags @migration --format html --out report/index_migration.html migration_wip: <%= omit_ignore %> --tags @wip --tags @migration html_report_migration_wip: <%= omit_ignore %> --tags @wip --tags @migration --format html --out report/index_migration_wip.html
Update Rails head branch name in CI workflow
name: CI on: push: {} pull_request: types: [opened, synchronize] jobs: build: if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login != 'dylanahsmith' runs-on: ubuntu-latest strategy: matrix: entry: - name: 'Minimum supported' ruby: 2.4 gemfile: Gemfile.rails52 - name: "Latest released versions" ruby: 3.0 gemfile: Gemfile - name: "Rails master branch" ruby: 3.0 gemfile: Gemfile.rails_head name: ${{ matrix.entry.name }} env: BUNDLE_GEMFILE: ${{ matrix.entry.gemfile }} steps: - name: Install required packages run: | sudo apt-get update sudo apt-get -y install libsqlite3-dev - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.entry.ruby }} - name: Install bundler and gems run: | gem install bundler bundle install --jobs 4 --retry 3 - name: Run tests run: bundle exec rake
name: CI on: push: {} pull_request: types: [opened, synchronize] jobs: build: if: github.event_name == 'push' || github.event.pull_request.head.repo.owner.login != 'dylanahsmith' runs-on: ubuntu-latest strategy: matrix: entry: - name: 'Minimum supported' ruby: 2.4 gemfile: Gemfile.rails52 - name: "Latest released versions" ruby: 3.0 gemfile: Gemfile - name: "Rails main branch" ruby: 3.0 gemfile: Gemfile.rails_head name: ${{ matrix.entry.name }} env: BUNDLE_GEMFILE: ${{ matrix.entry.gemfile }} steps: - name: Install required packages run: | sudo apt-get update sudo apt-get -y install libsqlite3-dev - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.entry.ruby }} - name: Install bundler and gems run: | gem install bundler bundle install --jobs 4 --retry 3 - name: Run tests run: bundle exec rake
Update Gotify to 2.0.5 (8)
Categories: - Internet License: MIT SourceCode: https://github.com/gotify/android IssueTracker: https://github.com/gotify/android/issues AutoName: Gotify Description: |- Gotify is a service for sending and receiving push notifications. This app subscribes to [https://github.com/gotify/server gotify/server] and creates push notifications for incoming messages. Note: A self-hosted [https://github.com/gotify/server gotify/server] is required for this app to work. RepoType: git Repo: https://github.com/gotify/android Builds: - versionName: 2.0.1 versionCode: 4 commit: v2.0.1 subdir: app gradle: - yes - versionName: 2.0.2 versionCode: 5 commit: v2.0.2 subdir: app gradle: - yes - versionName: 2.0.3 versionCode: 6 commit: v2.0.3 subdir: app gradle: - yes - versionName: 2.0.4 versionCode: 7 commit: v2.0.4 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags v\d+\.\d+(\.\d+)? CurrentVersion: 2.0.4 CurrentVersionCode: 7
Categories: - Internet License: MIT SourceCode: https://github.com/gotify/android IssueTracker: https://github.com/gotify/android/issues AutoName: Gotify Description: |- Gotify is a service for sending and receiving push notifications. This app subscribes to [https://github.com/gotify/server gotify/server] and creates push notifications for incoming messages. Note: A self-hosted [https://github.com/gotify/server gotify/server] is required for this app to work. RepoType: git Repo: https://github.com/gotify/android Builds: - versionName: 2.0.1 versionCode: 4 commit: v2.0.1 subdir: app gradle: - yes - versionName: 2.0.2 versionCode: 5 commit: v2.0.2 subdir: app gradle: - yes - versionName: 2.0.3 versionCode: 6 commit: v2.0.3 subdir: app gradle: - yes - versionName: 2.0.4 versionCode: 7 commit: v2.0.4 subdir: app gradle: - yes - versionName: 2.0.5 versionCode: 8 commit: v2.0.5 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags v\d+\.\d+(\.\d+)? CurrentVersion: 2.0.5 CurrentVersionCode: 8
Update from Forestry.io - Updated Forestry configuration
--- new_page_extension: md auto_deploy: false admin_path: redac webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: config.yaml label: Configuration upload_dir: '' public_path: '' front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200 use_front_matter_path: true file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:' build: preview_command: hugo -E -F -D -b $DEPLOY_URL -d public publish_command: hugo -d public preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.55.6 publish_env: - HUGO_ENV=production - HUGO_VERSION=0.55.6 preview_output_directory: public output_directory: public instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk -d public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" version: 0.55.6
--- new_page_extension: md auto_deploy: false admin_path: redac webhook_url: '' sections: - type: directory path: content/post label: Articles create: all match: "**/*" templates: - post - type: document path: config.yaml label: Configuration upload_dir: '' public_path: '' front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200 use_front_matter_path: true file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:' instant_preview: true build: preview_command: hugo -E -F -D -b $DEPLOY_URL -d public publish_command: hugo -d public preview_env: - HUGO_ENV=staging - HUGO_VERSION=0.55.6 publish_env: - HUGO_ENV=production - HUGO_VERSION=0.55.6 preview_output_directory: public output_directory: public instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk -d public preview_docker_image: forestryio/hugo:latest mount_path: "/srv" version: 0.55.6
Change name of GitHub workflow
name: Python package on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python: [2.7, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Setup Python ${{ matrix.python }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - run: pip install tox - run: tox -e py - if: matrix.python == 3.9 run: TOXENV=codespell,flake8,manifest,docs tox
name: Test DBUtils using tox on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python: [2.7, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Setup Python ${{ matrix.python }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - run: pip install tox - run: tox -e py - if: matrix.python == 3.9 run: TOXENV=codespell,flake8,manifest,docs tox
Add 8 and 8.1 to CI branches
name: Build on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: strategy: matrix: php: ['5.6', '7.3', '7.4'] runs-on: ubuntu-latest steps: - name: Set up PHP environment uses: shivammathur/setup-php@v2 with: php-version: '${{ matrix.php }}' tools: composer extensions: 'xdebug' - uses: actions/checkout@v2 - name: Install Composer dependencies & cache dependencies uses: "ramsey/composer-install@v2" with: composer-options: "--prefer-dist" custom-cache-key: "{{ runner.os }}-composer-${{ matrix.php }}" env: COMPOSER_ROOT_VERSION: dev-${{ github.event.repository.default_branch }} - name: Validate composer.json and composer.lock #run: composer validate --strict # Currently we’re installing mf2/tests from a commit ref. run: composer validate - name: Run Test Suite run: XDEBUG_MODE=coverage ./vendor/bin/phpunit tests --coverage-text - name: Run Code Sniffer run: ./vendor/bin/phpcs #- name: Run Static Analysis # run: ./vendor/bin/psalm
name: Build on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: strategy: matrix: php: ['5.6', '7.3', '7.4', '8.0', '8.1'] runs-on: ubuntu-latest steps: - name: Set up PHP environment uses: shivammathur/setup-php@v2 with: php-version: '${{ matrix.php }}' tools: composer extensions: 'xdebug' - uses: actions/checkout@v2 - name: Install Composer dependencies & cache dependencies uses: "ramsey/composer-install@v2" with: composer-options: "--prefer-dist" custom-cache-key: "{{ runner.os }}-composer-${{ matrix.php }}" env: COMPOSER_ROOT_VERSION: dev-${{ github.event.repository.default_branch }} - name: Validate composer.json and composer.lock #run: composer validate --strict # Currently we’re installing mf2/tests from a commit ref. run: composer validate - name: Run Test Suite run: XDEBUG_MODE=coverage ./vendor/bin/phpunit tests --coverage-text - name: Run Code Sniffer run: ./vendor/bin/phpcs #- name: Run Static Analysis # run: ./vendor/bin/psalm
Update actions to use latest ubuntu (deprecated older)
name: Build on: push: branches: - master jobs: build: runs-on: ubuntu-16.04 steps: - uses: actions/checkout@v1 - name: Installing dependencies run: | sudo apt update && sudo apt install make -y git clone https://github.com/estesp/manifest-tool && cd manifest-tool && git checkout v0.9.0 && sudo make && sudo make install && cd .. && rm -Rf manifest-tool docker run --rm --privileged multiarch/qemu-user-static:register sudo apt install -y qemu qemu-user-static qemu-user binfmt-support echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_LOGIN }}" --password-stdin - name: Build image run: make build-docker - name: Publish image run: make publish-docker latest
name: Build on: push: branches: - master jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Installing dependencies run: | sudo apt update && sudo apt install make -y git clone https://github.com/estesp/manifest-tool && cd manifest-tool && git checkout v0.9.0 && sudo make && sudo make install && cd .. && rm -Rf manifest-tool docker run --rm --privileged multiarch/qemu-user-static:register sudo apt install -y qemu qemu-user-static qemu-user binfmt-support echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_LOGIN }}" --password-stdin - name: Build image run: make build-docker - name: Publish image run: make publish-docker latest
Use Yarn in GitHub Actions
name: Node CI on: - push - pull_request jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Use Node.js 12.x uses: actions/setup-node@v1 with: node-version: 12.x - name: npm install, build, and test run: | npm ci npm run build --if-present npm test env: CI: true
name: Node CI on: - push - pull_request jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Use Node.js 12.x uses: actions/setup-node@v1 with: node-version: 12.x - name: Yarn install, build, and test run: | yarn install yarn build yarn test env: CI: true
Upgrade Erlang for Circle CI to 19
machine: environment: PATH: ${HOME}/extras/bin:${HOME}/extras/otp/18.3/bin:${PATH} dependencies: cache_directories: - ~/extras - ~/.dialyzer_core* - ~/.rebar - .rebar - .cache - ~/.cache pre: - sudo service mongodb stop - sudo service rabbitmq-server stop - sudo service couchdb stop - sudo service zookeeper stop - sudo service mysql stop - sudo service postgresql stop - sudo service redis-server stop - curl -O -L https://raw.githubusercontent.com/yrashk/kerl/master/kerl && chmod 755 kerl - if [ ! -d ~/extras/otp/18.3 ]; then ./kerl build 18.3 18.3; ./kerl install 18.3 ~/extras/otp/18.3; fi: timeout: 1800 override: - make test: override: - make check - ./elvis rock post: - mkdir -p $CIRCLE_TEST_REPORTS/ - mv TEST-*.xml $CIRCLE_TEST_REPORTS - cp -r _build/test/cover $CIRCLE_TEST_REPORTS
machine: environment: PATH: ${HOME}/extras/bin:${HOME}/extras/otp/19.0/bin:${PATH} dependencies: cache_directories: - ~/extras - ~/.dialyzer_core* - ~/.rebar - .rebar - .cache - ~/.cache pre: - sudo service mongodb stop - sudo service rabbitmq-server stop - sudo service couchdb stop - sudo service zookeeper stop - sudo service mysql stop - sudo service postgresql stop - sudo service redis-server stop - curl -O -L https://raw.githubusercontent.com/yrashk/kerl/master/kerl && chmod 755 kerl - if [ ! -d ~/extras/otp/19.0 ]; then ./kerl build 19.0 19.0; ./kerl install 19.0 ~/extras/otp/19.0; fi: timeout: 1800 override: - make test: override: - make check - ./elvis rock post: - mkdir -p $CIRCLE_TEST_REPORTS/ - mv TEST-*.xml $CIRCLE_TEST_REPORTS - cp -r _build/test/cover $CIRCLE_TEST_REPORTS
Increase the loglevel in Docker
parameters: logger_client_handler_file: php://stdout logger_client_handler_level: 0 logger_worker_handler_file: php://stdout logger_worker_handler_level: 0 client_handler: tcp://0.0.0.0:61002 worker_handler: tcp://0.0.0.0:61003 client_handler_worker_handler: ipc:///home/alpharpc/alpharpc/ipc/alpharpc_client_handler_worker_handler.ipc worker_handler_status: ipc:///home/alpharpc/alpharpc/ipc/alpharpc_worker_status.ipc # This value should be less than or equal to the delay provided to the clients and worker. manager_delay: 1000
parameters: logger_client_handler_file: php://stdout logger_client_handler_level: 200 logger_worker_handler_file: php://stdout logger_worker_handler_level: 200 client_handler: tcp://0.0.0.0:61002 worker_handler: tcp://0.0.0.0:61003 client_handler_worker_handler: ipc:///home/alpharpc/alpharpc/ipc/alpharpc_client_handler_worker_handler.ipc worker_handler_status: ipc:///home/alpharpc/alpharpc/ipc/alpharpc_worker_status.ipc # This value should be less than or equal to the delay provided to the clients and worker. manager_delay: 1000
Update Node.js version of generated .travis.yml
language: node_js node_js: - "0.12" sudo: false before_install: npm install -g gulp install: npm install before_script: gulp build notifications: webhooks: on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
language: node_js node_js: - "4.4.3" sudo: false before_install: npm install -g gulp install: npm install before_script: gulp build notifications: webhooks: on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Add nginx 1.9.14, remove nginx 1.9.13
--- language: staticfile exclude_files: - .git/ - .gitignore - .gitmodules - .rspec - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip url_to_dependency_map: - match: nginx.tgz name: nginx version: 1.9.13 dependencies: - name: nginx version: 1.9.13 uri: https://pivotal-buildpacks.s3.amazonaws.com/concourse-binaries/nginx/nginx-1.9.13-linux-x64.tgz cf_stacks: - cflinuxfs2 md5: 6717ec46d4c179a8dae87f7aaf359b94
--- language: staticfile exclude_files: - .git/ - .gitignore - .gitmodules - .rspec - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip url_to_dependency_map: - match: nginx.tgz name: nginx version: 1.9.14 dependencies: - name: nginx version: 1.9.14 uri: https://pivotal-buildpacks.s3.amazonaws.com/concourse-binaries/nginx/nginx-1.9.14-linux-x64.tgz cf_stacks: - cflinuxfs2 md5: d11d026d9cb7e461839b1080a76d659e
Fix package name to gitdb2
{% set version = "2.0.2" %} {% set sha256 = "f2e36d7561e91f30a6a44858756dc020d8f1e81ca6e4185979d5c6c24c648070" %} package: name: gitdb version: {{ version }} source: fn: gitdb-{{ version }}.tar.gz url: https://pypi.io/packages/source/g/gitdb2/gitdb2-{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools run: - python - smmap2 test: imports: - gitdb - gitdb.db about: home: https://github.com/gitpython-developers/gitdb license: BSD 3-Clause license_file: LICENSE summary: 'A pure-Python git object database' extra: recipe-maintainers: - ngoldbaum - ocefpaf
{% set version = "2.0.2" %} {% set sha256 = "f2e36d7561e91f30a6a44858756dc020d8f1e81ca6e4185979d5c6c24c648070" %} package: name: gitdb2 version: {{ version }} source: fn: gitdb2-{{ version }}.tar.gz url: https://pypi.io/packages/source/g/gitdb2/gitdb2-{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools run: - python - smmap2 test: imports: - gitdb - gitdb.db about: home: https://github.com/gitpython-developers/gitdb license: BSD 3-Clause license_file: LICENSE summary: 'A pure-Python git object database' extra: recipe-maintainers: - ngoldbaum - ocefpaf
Set user name and email, so git merge doesn't throw an error
image: neikos/waysome_fedora script: - git pull --no-commit origin $DRONE_BRANCH - cmake -DHARD_MODE=ON . - make - ctest -VV
image: neikos/waysome_fedora script: - git config user.email "drone@localdomain" - git config user.name "drone build script" - git pull --no-commit origin $DRONE_BRANCH - cmake -DHARD_MODE=ON . - make - ctest -VV
Add libgfortran to bcbio-nextgen requirements
package: name: bcbio-nextgen version: '0.9.6a' build: number: 100 source: git_url: https://github.com/chapmanb/bcbio-nextgen.git git_tag: master requirements: build: - python - setuptools run: - python - arrow - azure-sdk-for-python - bioblend - biopython - boto - click - cython - cyvcf2 - fabric - fadapa - gffutils - ipyparallel - ipython-cluster-helper - joblib - logbook - lxml - matplotlib - msgpack-python - nose - numpy - openpyxl - openssl - pandas - path.py - patsy - pip - pycrypto - progressbar - psutil - python-dateutil - pybedtools - pysam - pyvcf - pyyaml - pyzmq - reportlab - requests - scikit-learn - scipy - seaborn - seqcluster - sh - sqlalchemy - statsmodels - tabulate - toolz - tornado test: imports: - bcbio.distributed.ipython - bcbio.distributed.multi - bcbio.pipeline.main - bcbio.provenance.do about: home: https://github.com/chapmanb/bcbio-nextgen license: MIT summary: Validated, scalable, community developed variant calling and RNA-seq analysis
package: name: bcbio-nextgen version: '0.9.6a' build: number: 100 source: git_url: https://github.com/chapmanb/bcbio-nextgen.git git_tag: master requirements: build: - python - setuptools run: - python - arrow - azure-sdk-for-python - bioblend - biopython - boto - click - cython - cyvcf2 - fabric - fadapa - gffutils - ipyparallel - ipython-cluster-helper - joblib - logbook - lxml - matplotlib - msgpack-python - nose - numpy - openpyxl - openssl - pandas - path.py - patsy - pip - pycrypto - progressbar - psutil - python-dateutil - pybedtools - pysam - pyvcf - pyyaml - pyzmq - reportlab - requests - scikit-learn - scipy - seaborn - seqcluster - sh - sqlalchemy - statsmodels - tabulate - toolz - tornado - libgfortran test: imports: - bcbio.distributed.ipython - bcbio.distributed.multi - bcbio.pipeline.main - bcbio.provenance.do about: home: https://github.com/chapmanb/bcbio-nextgen license: MIT summary: Validated, scalable, community developed variant calling and RNA-seq analysis
Update io.js from 2 to 3
# http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input # Test against these versions of Node.js. environment: matrix: - nodejs_version: "2" # Install scripts. (runs after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: Install-Product node $env:nodejs_version # Log HTTP requests. - npm config set loglevel http # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Finish immediately if one of the jobs fails. matrix: fast_finish: true # Set up cache, clear it on package.json changes. cache: # npm cache. - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # Local npm packages. - node_modules -> package.json # Set build version format here instead of in the admin panel. version: "{build}"
# http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input # Test against these versions of Node.js. environment: matrix: - nodejs_version: "3" # Install scripts. (runs after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: Install-Product node $env:nodejs_version # Log HTTP requests. - npm config set loglevel http # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Finish immediately if one of the jobs fails. matrix: fast_finish: true # Set up cache, clear it on package.json changes. cache: # npm cache. - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # Local npm packages. - node_modules -> package.json # Set build version format here instead of in the admin panel. version: "{build}"
Update backup interval name in example
apiVersion: "coreos.com/v1" kind: "EtcdCluster" metadata: name: "etcd-cluster-with-backup" spec: size: 3 version: "v3.1.0-alpha.1" backup: # short snapshot interval for testing, do not use this in production! snapshotIntervalInSecond: 30 maxBackups: 5 volumeSizeInMB: 512 storageType: "PersistentVolume"
apiVersion: "coreos.com/v1" kind: "EtcdCluster" metadata: name: "etcd-cluster-with-backup" spec: size: 3 version: "v3.1.0-alpha.1" backup: # short snapshot interval for testing, do not use this in production! backupIntervalInSecond: 30 maxBackups: 5 volumeSizeInMB: 512 storageType: "PersistentVolume"
Update Hugo version to 0.98.0
name: GitHub Pages on: push: branches: - main # Set a branch to deploy pull_request: jobs: deploy: runs-on: ubuntu-20.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: "0.96.0" extended: true - name: Build run: hugo --minify --gc --cleanDestinationDir - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public
name: GitHub Pages on: push: branches: - main # Set a branch to deploy pull_request: jobs: deploy: runs-on: ubuntu-20.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: "0.98.0" extended: true - name: Build run: hugo --minify --gc --cleanDestinationDir - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public
Update from Hackage at 2016-02-19T09:24:40+0000
homepage: http://github.com/btubbs/haskell-gridfs#readme changelog-type: '' hash: c2834314e314944369f13b254c49a25ff9ee9523079f5a77d237abe26fb8b1d2 test-bench-deps: {} maintainer: brent.tubbs@gmail.com synopsis: GridFS (MongoDB file storage) implementation changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any text: -any monad-control: -any pureMD5: -any conduit: -any conduit-extra: -any tagged: -any mongoDB: -any mtl: -any bson: -any transformers: -any resourcet: -any all-versions: - '0.1.0.1' author: Martin Norbäck Olivers latest: '0.1.0.1' description-type: haddock description: Please see README.md license-name: OtherLicense
homepage: http://github.com/btubbs/haskell-gridfs#readme changelog-type: '' hash: 9c61d6dff8ea41cf19a2694bcaa9f203e3a0f61f49e6e065b66143817d138c58 test-bench-deps: {} maintainer: brent.tubbs@gmail.com synopsis: GridFS (MongoDB file storage) implementation changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any text: -any monad-control: -any pureMD5: -any conduit: -any conduit-extra: -any tagged: -any mongoDB: -any mtl: -any bson: -any transformers: -any resourcet: -any all-versions: - '0.1.0.1' - '0.1.0.2' author: Martin Norbäck Olivers latest: '0.1.0.2' description-type: haddock description: Please see README.md license-name: OtherLicense
Update conda recipe with historydict.
package: name: blueksy version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: ../ build: # Note that this will override the default build string with the Python # and NumPy versions string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }} requirements: build: - python >=3.4.3 run: - python >=3.4.3 - jsonschema - super_state_machine - lmfit - numpy - metadatastore - filestore - matplotlib - prettytable - cycler - traitlets - history test: requires: - nslsii_dev_configuration imports: - 'bluesky' - 'bluesky.examples' - 'bluesky.callbacks' - 'bluesky.register_mds' - 'bluesky.standard_config' about: home: https://github.com/NSLS-II/bluesky license: BSD
package: name: blueksy version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: ../ build: # Note that this will override the default build string with the Python # and NumPy versions string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }} requirements: build: - python >=3.4.3 run: - python >=3.4.3 - jsonschema - super_state_machine - lmfit - numpy - metadatastore - filestore - matplotlib - prettytable - cycler - traitlets - historydict test: requires: - nslsii_dev_configuration imports: - 'bluesky' - 'bluesky.examples' - 'bluesky.callbacks' - 'bluesky.register_mds' - 'bluesky.standard_config' about: home: https://github.com/NSLS-II/bluesky license: BSD
Update sNotz to v0.14 (14)
Categories: - Writing - Security License: GPL-3.0-or-later AuthorName: sunilpaulmathew AuthorEmail: smartpack.org@gmail.com AuthorWebSite: https://smartpack.github.io SourceCode: https://github.com/sunilpaulmathew/sNotz IssueTracker: https://github.com/sunilpaulmathew/sNotz/issues Changelog: https://github.com/sunilpaulmathew/sNotz/releases Donate: https://smartpack.github.io/donation AutoName: sNotz RepoType: git Repo: https://github.com/sunilpaulmathew/sNotz Builds: - versionName: v0.13 versionCode: 13 commit: v0.13 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - fdroid AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: v0.13 CurrentVersionCode: 13
Categories: - Writing - Security License: GPL-3.0-or-later AuthorName: sunilpaulmathew AuthorEmail: smartpack.org@gmail.com AuthorWebSite: https://smartpack.github.io SourceCode: https://github.com/sunilpaulmathew/sNotz IssueTracker: https://github.com/sunilpaulmathew/sNotz/issues Changelog: https://github.com/sunilpaulmathew/sNotz/releases Donate: https://smartpack.github.io/donation AutoName: sNotz RepoType: git Repo: https://github.com/sunilpaulmathew/sNotz Builds: - versionName: v0.13 versionCode: 13 commit: v0.13 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - fdroid - versionName: v0.14 versionCode: 14 commit: a05bc799c942502e702cecc894cb15667aa2f548 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - fdroid AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: v0.14 CurrentVersionCode: 14
Change to a single line with semi-colon
machine: timezone: America/Los_Angeles dependencies: pre: - sudo apt-get update; \ sudo apt-get install gcc-5 \ sudo apt-get install g++-5 test: pre: - make post: - ./helloworld
machine: timezone: America/Los_Angeles dependencies: pre: - sudo apt-get update; sudo apt-get install gcc-5; sudo apt-get install g++-5 test: pre: - make post: - ./helloworld
Set node version in CI config
test: override: - npm run ci - if [[ -e junitresults.xml ]]; then cp junitresults.xml $CIRCLE_TEST_REPORTS/test-results.xml; fi post: - npm run semantic-release || true
machine: node: version: 6.1.0 test: override: - npm run ci - if [[ -e junitresults.xml ]]; then cp junitresults.xml $CIRCLE_TEST_REPORTS/test-results.xml; fi post: - npm run semantic-release || true
Add hook to notify gitter
machine: java: version: oraclejdk8 environment: JVM_OPTS: "-Xmx2G -Xms256M -Xss2M" dependencies: cache_directories: - ~/.sbt post: - sbt test:compile test: override: - sbt test
machine: java: version: oraclejdk8 environment: JVM_OPTS: "-Xmx2G -Xms256M -Xss2M" dependencies: cache_directories: - ~/.sbt post: - sbt test:compile test: override: - sbt test notify: webhooks: - url: https://webhooks.gitter.im/e/1d346a287a3abc3d81c1
Allow Yarn lockfile on CircleCI
machine: environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" node: version: "stable" dependencies: override: - yarn install --no-lockfile cache_directories: - ~/.cache/yarn test: override: - yarn test
machine: environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" node: version: "stable" dependencies: override: - yarn cache_directories: - ~/.cache/yarn test: override: - yarn test
Add environment variables and workflow_dispatch
name: Run Travis CI on: push: pull_request: # tags: # - v[0-9]+.[0-9]+.[0-9]+ # - v[0-9]+.[0-9]+.[0-9]+.[0-9]+ jobs: run-scripts: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: setup tasks env: IMAGE: centos:centos7 TASK: tests COMPONENTS: udt,myproxy,ssh run: travis-ci/setup_tasks.sh - name: setup tasks 2 env: IMAGE: centos:centos7 TASK: tests COMPONENTS: gram5 run: travis-ci/setup_tasks.sh
name: Run Travis CI on: push: pull_request: # tags: # - v[0-9]+.[0-9]+.[0-9]+ # - v[0-9]+.[0-9]+.[0-9]+.[0-9]+ jobs: run-scripts: runs-on: ubuntu-latest env: IMAGE: centos:centos7 TASK: tests COMPONENTS: udt,myproxy,ssh steps: - uses: actions/checkout@v2 - name: setup tasks env: IMAGE: centos:centos7 TASK: tests COMPONENTS: udt,myproxy,ssh run: travis-ci/setup_tasks.sh - name: setup tasks 2 env: IMAGE: centos:centos7 TASK: tests COMPONENTS: gram5 run: travis-ci/setup_tasks.sh
Update Pdf Viewer Plus to 2.7 (18)
Categories: - Reading License: MIT SourceCode: https://github.com/JavaCafe01/PdfViewer IssueTracker: https://github.com/JavaCafe01/PdfViewer/issues Donate: https://www.paypal.me/gsnathan AutoName: Pdf Viewer Plus Summary: A simple PDF viewer Description: Pdf Viewer Plus is a smooth PDF viewer written in Java. It contains a simple user interface, multiple themes, and the ability to share a PDF. RepoType: git Repo: https://github.com/JavaCafe01/PdfViewer Builds: - versionName: '2.4' versionCode: 15 commit: v2.4 subdir: app gradle: - yes - versionName: '2.5' versionCode: 16 commit: v2.5 subdir: app gradle: - yes - versionName: '2.6' versionCode: 17 commit: v2.6 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v[0-9.]+$ CurrentVersion: '2.6' CurrentVersionCode: 17
Categories: - Reading License: MIT SourceCode: https://github.com/JavaCafe01/PdfViewer IssueTracker: https://github.com/JavaCafe01/PdfViewer/issues Donate: https://www.paypal.me/gsnathan AutoName: Pdf Viewer Plus Summary: A simple PDF viewer Description: Pdf Viewer Plus is a smooth PDF viewer written in Java. It contains a simple user interface, multiple themes, and the ability to share a PDF. RepoType: git Repo: https://github.com/JavaCafe01/PdfViewer Builds: - versionName: '2.4' versionCode: 15 commit: v2.4 subdir: app gradle: - yes - versionName: '2.5' versionCode: 16 commit: v2.5 subdir: app gradle: - yes - versionName: '2.6' versionCode: 17 commit: v2.6 subdir: app gradle: - yes - versionName: '2.7' versionCode: 18 commit: v2.7 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v[0-9.]+$ CurrentVersion: '2.7' CurrentVersionCode: 18
Add virtual mgmt interface for mgmt of mgmt
--- network::interfaces_hash: 'eth0': ipaddress: '172.28.0.10' netmask: '255.255.255.0' defroute: 'no' onboot: 'yes' 'eth2': ipaddress: '172.16.0.10' netmask: '255.255.248.0' defroute: 'no' onboot: 'yes' dns1: '129.177.6.54' dns2: "%{hiera('netcfg_dns_server2')}" domain: "%{hiera('netcfg_dns_search')} mgmt.test.iaas.intern" peerdns: 'yes' 'eth3': ipaddress: '172.17.0.10' netmask: '255.255.248.0' defroute: 'no' onboot: 'yes'
--- network::interfaces_hash: 'eth0': ipaddress: '172.28.0.10' netmask: '255.255.255.0' defroute: 'no' onboot: 'yes' 'eth2': ipaddress: '172.16.0.10' netmask: '255.255.248.0' defroute: 'no' onboot: 'yes' dns1: '129.177.6.54' dns2: "%{hiera('netcfg_dns_server2')}" domain: "%{hiera('netcfg_dns_search')} mgmt.test.iaas.intern" peerdns: 'yes' 'eth2:1': ipaddress: '10.17.0.10' netmask: '255.255.255.0' defroute: 'no' onboot: 'yes' 'eth3': ipaddress: '172.17.0.10' netmask: '255.255.248.0' defroute: 'no' onboot: 'yes'
Update from Hackage at 2016-12-08T15:56:26Z
homepage: https://github.com/ciez/dmc changelog-type: markdown hash: 7685f0cc6b1a0e3da3ef44a1972ce7952825871ca5aa45b133ae4bceb8569e42 test-bench-deps: base: ! '>=4.8' hspec: ! '>=2.1.7' process: ! '>=1.3.0.0' dmc: -any QuickCheck: ! '>=2.8.1' maintainer: Imants Cekusins synopsis: cmd for common cases changelog: ! "##### 1.0\n initial version\n \n test pass \n " basic-deps: base: ! '>=4.8 && <5.0' process: ! '>=1.3.0.0' all-versions: - '1.0' author: Imants Cekusins latest: '1.0' description-type: haddock description: run shell commands from code license-name: PublicDomain
homepage: https://github.com/ciez/dmc changelog-type: markdown hash: bbfdc9f3df4e63dc9f3439dcbc2895f0aaaaad6adeaac9c155e91d19d187e4f8 test-bench-deps: base: ! '>=4.8' hspec: ! '>=2.1.7' process: ! '>=1.3.0.0' dmc: -any QuickCheck: ! '>=2.8.1' maintainer: Imants Cekusins synopsis: cmd for common cases changelog: ! "##### 1.1\n fix failing test on NixOS\n\n##### 1.0\n initial version\n \n test pass \n " basic-deps: base: ! '>=4.8 && <5.0' process: ! '>=1.3.0.0' all-versions: - '1.0' - '1.1' author: Imants Cekusins latest: '1.1' description-type: haddock description: run shell commands from code license-name: PublicDomain
Remove the goreplay reference in the dev hokusai yml
--- version: '2' services: metaphysics: extends: file: common.yml service: metaphysics environment: - MEMCACHED_URL=metaphysics-memcached:11211 env_file: ../.env ports: - 5001:5001 depends_on: - metaphysics-memcached metaphysics-memcached: image: memcached ports: - 11211:11211 metaphysics-goreplay: extends: file: common.yml service: metaphysics environment: - GOREPLAY_PORT=5001 - GOREPLAY_OUTPUT=stdout command: ["./scripts/run-goreplay.sh"] privileged: true
version: "2" services: metaphysics: extends: file: common.yml service: metaphysics environment: - MEMCACHED_URL=metaphysics-memcached:11211 env_file: ../.env ports: - 5001:5001 depends_on: - metaphysics-memcached metaphysics-memcached: image: memcached ports: - 11211:11211
Comment out AY Tomson hours
name: Tomson Hall image: tomson category: Academia schedule: - title: Hours hours: - {days: [Mo, Tu, We, Th], from: '7:00am', to: '11:00pm'} - {days: [Fr], from: '7:00am', to: '8:00pm'} - {days: [Sa], from: '8:00am', to: '8:00pm'} - {days: [Su], from: '8:00am', to: '11:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Hours hours: - {days: [Mo, Tu, We, Th, Fr], from: '7:00am', to: '5:30pm'} - {days: [Sa, Su], from: '9:00am', to: '5:00pm'}
name: Tomson Hall image: tomson category: Academia schedule: - title: Hours hours: # - {days: [Mo, Tu, We, Th], from: '7:00am', to: '11:00pm'} # - {days: [Fr], from: '7:00am', to: '8:00pm'} # - {days: [Sa], from: '8:00am', to: '8:00pm'} # - {days: [Su], from: '8:00am', to: '11:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Hours hours: - {days: [Mo, Tu, We, Th, Fr], from: '7:00am', to: '5:30pm'} - {days: [Sa, Su], from: '9:00am', to: '5:00pm'}
Include full path in code climate config
--- engines: pep8: enabled: true duplication: enabled: true config: languages: - python fixme: enabled: true radon: enabled: true ratings: paths: - "**.py" exclude_paths: - "tests/" - "settings/" - "app/management/"
--- engines: pep8: enabled: true duplication: enabled: true config: languages: - python fixme: enabled: true radon: enabled: true ratings: paths: - "**.py" exclude_paths: - "project/app/tests/" - "project/app/settings/" - "project/app/management/"
Allow ember canary tests to fail safely.
--- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-release - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-beta - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - ember try:one $EMBER_TRY_SCENARIO
--- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-release - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-beta - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-canary before_install: - export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - ember try:one $EMBER_TRY_SCENARIO
Use --insecure when running pip with Python 2.5
language: python python: - 2.5 - 2.6 - 2.7 - 3.2 install: - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors ssl; fi - pip install --use-mirrors tox script: - export TOXENV=$(echo "$TRAVIS_PYTHON_VERSION" | sed --regexp-extended 's/([0-9])\.([0-9])/py\1\2/g') - echo "TOXENV=$TOXENV" - tox
language: python python: - 2.5 - 2.6 - 2.7 - 3.2 install: - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors --insecure ssl; fi - pip install --use-mirrors tox script: - export TOXENV=$(echo "$TRAVIS_PYTHON_VERSION" | sed --regexp-extended 's/([0-9])\.([0-9])/py\1\2/g') - echo "TOXENV=$TOXENV" - tox
Test on latest version of node
language: node_js node_js: - 6.2 script: - npm run lint - npm test
language: node_js node_js: - 6 script: - npm run lint - npm test
Add coverage testing with kcov
language: rust after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && cargo doc && echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html && sudo pip install ghp-import && ghp-import -n target/doc && git push -fq https://${GH_SECRET}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: global: # GH_SECRET for pushing the docs to the gh-pages branch automatically - secure: denTXvhagGLyEn84shlKbWKwOIjlRprVm0cgw1BwSHhihDHEomytvOGoMPBmqcSYb8Q6oG26WN9qd0Mdha/ue3eQ9MOugrz3fZ+oQPzWbJJ9zJWDngk3WBpY7A68jZmp3RJeI7xxBykIBojcN1lJQlPRkt1uWyYJAB0GYybWAfI=
language: rust after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && cargo doc && echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html && sudo pip install ghp-import && ghp-import -n target/doc && git push -fq https://${GH_SECRET}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages && sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev && wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz && tar xzf master.tar.gz && mkdir kcov-master/build && cd kcov-master/build && cmake .. && make && sudo make install && cd ../.. && kcov --coveralls-id=$TRAVIS_JOB_ID target/kcov target/debug/lea-* env: global: # GH_SECRET for pushing the docs to the gh-pages branch automatically - secure: denTXvhagGLyEn84shlKbWKwOIjlRprVm0cgw1BwSHhihDHEomytvOGoMPBmqcSYb8Q6oG26WN9qd0Mdha/ue3eQ9MOugrz3fZ+oQPzWbJJ9zJWDngk3WBpY7A68jZmp3RJeI7xxBykIBojcN1lJQlPRkt1uWyYJAB0GYybWAfI=
Add new versions of Python in Travis
language: python python: - "2.7" before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda2/bin:$PATH - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy sympy matplotlib - pip install . script: cd tests && python test_model.py
language: python python: - "2.7" - "3.4" - "3.5" before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda2/bin:$PATH - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy sympy matplotlib - pip install . script: cd tests && python test_model.py
Update build workflow to build documentation
language: rust rust: - stable - beta - nightly matrix: allow_features: - rust: nightly
language: rust rust: - stable - beta - nightly matrix: allow_features: - rust: nightly script: - cargo build --verbose - cargo test --verbose - cargo doc sudo: required after_success: | [ $TRAVIS_BRANCH = master ] && sudo pip install --upgrade pip && sudo pip install ghp-import2 && ghp-import -n target/doc && git push -qf https://${GITHUB_API_KEY}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
Test latest Ruby versions and Rbx.
sudo: false cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - jruby - ruby-head matrix: fast_finish: true env: global: - "JRUBY_OPTS=-Xcext.enabled=true"
sudo: false cache: bundler rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - jruby - rbx-2 - ruby-head matrix: fast_finish: true env: global: - "JRUBY_OPTS=-Xcext.enabled=true"
Allow CI to fail on JRuby
language: ruby script: bundle exec rake --trace rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: rbx-19mode - rvm: ruby-head env: ARUBA_TIMEOUT=120 RAILS_ENV=development AHN_ENV=development notifications: irc: "irc.freenode.org#adhearsion"
language: ruby script: bundle exec rake --trace rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: rbx-19mode - rvm: ruby-head - rvm: jruby-19mode env: ARUBA_TIMEOUT=120 RAILS_ENV=development AHN_ENV=development notifications: irc: "irc.freenode.org#adhearsion"
Update Travis CI to use v5.14 and later
sudo: false language: perl perl: - "5.8" - "5.10" - "5.12" - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
sudo: false language: perl perl: - "5.14" - "5.16" - "5.18" - "5.20" - "5.22" before_install: - git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers - source ~/travis-perl-helpers/init --auto install: - cpanm --quiet --installdeps --notest . - cpanm --quiet --notest Devel::Cover::Report::Coveralls script: - cover -delete && cover -test after_success: - cover -report coveralls
Add ruby 2.4 to Travis config
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.9 - 2.2.6 - 2.3.2 - jruby-18mode - jruby-19mode - jruby-9.0.5.0 - jruby-9.1.6.0 - jruby-head - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head gemfile: .travis.gemfile before_install: - gem install bundler
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.9 - 2.2.6 - 2.3.3 - 2.4.0 - jruby-18mode - jruby-19mode - jruby-9.0.5.0 - jruby-9.1.6.0 - jruby-head - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head gemfile: .travis.gemfile before_install: - gem install bundler
Abort on all Travis errors
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: allow_failures: - php: 7 - php: hhvm fast_finish: true before_script: - composer install --dev --prefer-source script: - phpunit --coverage-text
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm install: - composer install --prefer-source script: - phpunit --coverage-text
Fix sonarcloud organization and token env in Travis config
language: java os: linux dist: xenial install: true services: - xvfb addons: chrome: stable firefox: latest sonarcloud: organization: "$(SONARCLOUD_ORGANIZATION)" token: secure: "$(SONAR_TOKEN)" before_script: - export DISPLAY=:99.0 script: - mvn test - bash <(curl -s https://codecov.io/bash) - if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then mvn sonar:sonar; fi
language: java os: linux dist: xenial install: true services: - xvfb addons: chrome: stable firefox: latest sonarcloud: organization: "$SONARCLOUD_ORGANIZATION" token: secure: "$SONAR_TOKEN" before_script: - export DISPLAY=:99.0 script: - mvn test - bash <(curl -s https://codecov.io/bash) - if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then mvn sonar:sonar; fi
Update jacoco and coveralls configuration
language: java jdk: - oraclejdk8 after_success: coveralls
language: java jdk: - oraclejdk8 after_success: - mvn clean test jacoco:report coveralls:report
Increase verbosity of unit tests for Travis CI
language: python python: - "3.3" install: - pip install matplotlib script: - python -m unittest - python setup.py install - python setup.py sdist
language: python python: - "3.3" install: - pip install matplotlib script: - python -m unittest -v - python setup.py install - python setup.py sdist
Add jdk test matrix w/excludes
language: ruby bundler_args: --without guard metrics script: "bundle exec rake spec" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ree - ruby-head - jruby-head notifications: email: - dan.kubb@gmail.com
language: ruby bundler_args: --without guard metrics script: "bundle exec rake spec" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ree - ruby-head - jruby-head jdk: - - openjdk6 - openjdk7 - oraclejdk7 matrix: exclude: - rvm: 1.8.7 jdk: openjdk6 - rvm: 1.8.7 jdk: openjdk7 - rvm: 1.8.7 jdk: oraclejdk7 - rvm: 1.9.2 jdk: openjdk6 - rvm: 1.9.2 jdk: openjdk7 - rvm: 1.9.2 jdk: oraclejdk7 - rvm: 1.9.3 jdk: openjdk6 - rvm: 1.9.3 jdk: openjdk7 - rvm: 1.9.3 jdk: oraclejdk7 - rvm: rbx-18mode jdk: openjdk6 - rvm: rbx-18mode jdk: openjdk7 - rvm: rbx-18mode jdk: oraclejdk7 - rvm: rbx-19mode jdk: openjdk6 - rvm: rbx-19mode jdk: openjdk7 - rvm: rbx-19mode jdk: oraclejdk7 - rvm: ree jdk: openjdk6 - rvm: ree jdk: openjdk7 - rvm: ree jdk: oraclejdk7 - rvm: ruby-head jdk: openjdk6 - rvm: ruby-head jdk: openjdk7 - rvm: ruby-head jdk: oraclejdk7 notifications: email: - dan.kubb@gmail.com
Remove NodeJS 4 from Travis
language: node_js node_js: - "6" - "5" - "4" script: npm run test-with-coverage
language: node_js node_js: - "6" - "5" script: npm run test-with-coverage
Update build.sh to be executable on CI server
language: c env: - EnableNuGetPackageRestore=true before_install: # Make sure mono is installed, # pipe stdout to dev/null because qq is still too chatty - sudo apt-get update -qq > /dev/null - sudo apt-get install -qq mono-devel mono-gmcs > /dev/null # update root certs for nuget - mozroots --import --sync script: - .ci/build.sh #script: # - xbuild /property:Configuration=Debug /property:Platform="Any CPU" SteamBot.sln
language: c env: - EnableNuGetPackageRestore=true before_install: # Make sure mono is installed, # pipe stdout to dev/null because qq is still too chatty - sudo apt-get update -qq > /dev/null - sudo apt-get install -qq mono-devel mono-gmcs > /dev/null # update root certs for nuget - mozroots --import --sync - chmod a+x .ci/build.sh script: - .ci/build.sh #script: # - xbuild /property:Configuration=Debug /property:Platform="Any CPU" SteamBot.sln
Update Travis build to include most recent version of Node
language: node_js sudo: false node_js: - '0.10' - '0.12' - 'iojs' before_install: - "mkdir -p ~/.npm" before_script: - npm install -g grunt-cli istanbul codeclimate-test-reporter script: - grunt lint - istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec - CODECLIMATE_REPO_TOKEN=cdedf6138cfcd8a16492f5180f36a32789247baada76a55615a252fb04e916d5 codeclimate-test-reporter < coverage/lcov.info
language: node_js sudo: false node_js: - '0.10' - '0.12' - '4.0' - '4.1' - '5.0' before_install: - "mkdir -p ~/.npm" before_script: - npm install -g grunt-cli istanbul codeclimate-test-reporter script: - grunt lint - istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec - CODECLIMATE_REPO_TOKEN=cdedf6138cfcd8a16492f5180f36a32789247baada76a55615a252fb04e916d5 codeclimate-test-reporter < coverage/lcov.info
Add sleep command to attempt to resolve the issue with vuln wp containers
sudo: required language: go go: 1.9.x services: - docker before_install: - rvm install 2.4.2 - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt update - sudo apt -y install docker-ce - docker --version - docker pull wpscanteam/vulnerablewordpress - git clone https://github.com/wpscanteam/wpscan.git - cd wpscan - gem install bundler - bundle install --without test - sudo ln -s $(pwd)/wpscan.rb /usr/local/bin/wpscan - cd .. install: - make setup - make install script: - make test - docker ps | awk '{ print $13 }' | grep -o -P "(.*:\d+)" > vuln_targets.txt - docker ps -a - cat vuln_targets.txt - ./mass-wpscan -i vuln_targets.txt -p "-r --batch -e vt,tt,u,vp" -o output.txt after_success: - bash <(curl -s https://codecov.io/bash)
sudo: required language: go go: 1.9.x services: - docker before_install: - rvm install 2.4.2 - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" - sudo apt update - sudo apt -y install docker-ce - docker --version - docker pull wpscanteam/vulnerablewordpress - git clone https://github.com/wpscanteam/wpscan.git - cd wpscan - gem install bundler - bundle install --without test - sudo ln -s $(pwd)/wpscan.rb /usr/local/bin/wpscan - cd .. install: - make setup - make install script: - make test - docker ps | awk '{ print $13 }' | grep -o -P "(.*:\d+)" > vuln_targets.txt - docker ps -a - sleep 15 - cat vuln_targets.txt - ./mass-wpscan -i vuln_targets.txt -p "-r --batch -e vt,tt,u,vp" -o output.txt after_success: - bash <(curl -s https://codecov.io/bash)
Fix dummy app generation on Travis for Rubygems 2.7
language: ruby rvm: - 2.1.7 - 2.3.1 # User container based travis infrastructure which allows caching # features for open source projects. sudo: false cache: bundler: true directories: - node_modules env: - PAGEFLOW_RAILS_VERSION=4.2.6 PUBLISH_THEME_DOC=true COVERALLS_PARALLEL=true services: - redis-server before_install: - nvm install stable before_script: - bin/npm install - bin/npm run build - bin/rake pageflow:dummy - bin/rake app:assets:precompile script: - bin/rspec - bin/teaspoon - bin/npm test after_success: - bundle exec publish-pageflow-theme-doc notifications: webhooks: https://coveralls.io/webhook?service_name=travis-ci
language: ruby rvm: - 2.1.7 - 2.3.1 # User container based travis infrastructure which allows caching # features for open source projects. sudo: false cache: bundler: true directories: - node_modules env: - PAGEFLOW_RAILS_VERSION=4.2.6 PUBLISH_THEME_DOC=true COVERALLS_PARALLEL=true services: - redis-server before_install: - nvm install stable before_script: - bin/npm install - bin/npm run build # We need to use "bundle exec" instead of binstubs until # https://github.com/rubygems/rubygems/issues/2055 is fixed - bundle exec rake pageflow:dummy - bin/rake app:assets:precompile script: - bin/rspec - bin/teaspoon - bin/npm test after_success: - bundle exec publish-pageflow-theme-doc notifications: webhooks: https://coveralls.io/webhook?service_name=travis-ci
Remove spec cleanup from Travis-CI build
language: node_js node_js: - "7" after_success: - npm install -g codeclimate-test-reporter lcov-result-merger - lcov-result-merger 'coverage/*.info' coverage.info - codeclimate-test-reporter < coverage.info services: - mongodb addons: code_climate: repo_token: 456ad90bfb6a7127443d64b5100c75db696e939578004596a8adab9c9c15a1e5 chrome: stable notifications: slack: momentum-js:6TmOdr6hT41DKexW452oc4L7
language: node_js node_js: - "7" script: - npm run test-client && npm run test-server after_success: - npm install -g codeclimate-test-reporter lcov-result-merger - lcov-result-merger 'coverage/*.info' coverage.info - codeclimate-test-reporter < coverage.info services: - mongodb addons: code_climate: repo_token: 456ad90bfb6a7127443d64b5100c75db696e939578004596a8adab9c9c15a1e5 chrome: stable notifications: slack: momentum-js:6TmOdr6hT41DKexW452oc4L7
Add coveralls report to CI run.
language: node_js node_js: - "0.11" - "0.10" before_install: - npm update -g npm - npm install -g bob --loglevel error script: "bob build"
language: node_js node_js: - "0.11" - "0.10" before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error script: - bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Add 2.12.0-M1 testing to Travis
# This is necessary until https://github.com/travis-ci/travis-ci/issues/3120 is # fixed sudo: required language: scala # These directories are cached to S3 at the end of the build cache: directories: - $HOME/.ivy2/cache - $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION scala: - 2.10.5 - 2.11.6 jdk: - oraclejdk7 # Note: not currently testing on JDK 8 internally - oraclejdk8 - openjdk7 before_script: # default $SBT_OPTS is irrelevant to sbt lancher - unset SBT_OPTS - travis_retry ./sbt ++$TRAVIS_SCALA_VERSION update script: ./sbt ++$TRAVIS_SCALA_VERSION coverage test && ./sbt ++$TRAVIS_SCALA_VERSION coverageAggregate after_success: ./sbt ++$TRAVIS_SCALA_VERSION coveralls
# This is necessary until https://github.com/travis-ci/travis-ci/issues/3120 is # fixed sudo: required language: scala # These directories are cached to S3 at the end of the build cache: directories: - $HOME/.ivy2/cache - $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION scala: - 2.10.5 - 2.11.6 - 2.12.0-M1 jdk: - oraclejdk7 # Note: not currently testing on JDK 8 internally - oraclejdk8 - openjdk7 before_script: # default $SBT_OPTS is irrelevant to sbt lancher - unset SBT_OPTS - travis_retry ./sbt ++$TRAVIS_SCALA_VERSION update script: ./sbt ++$TRAVIS_SCALA_VERSION coverage test && ./sbt ++$TRAVIS_SCALA_VERSION coverageAggregate after_success: ./sbt ++$TRAVIS_SCALA_VERSION coveralls
Add PHP 7.2 to the Travis test matrix
language: php php: - 5.5.9 - 5.5 - 5.6 - 7.0 - 7.1 env: global: - setup=basic matrix: include: - php: 5.5.9 env: setup=lowest - php: 5.5.9 env: setup=stable sudo: false install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi script: vendor/bin/phpunit
language: php php: - 5.5.9 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 env: global: - setup=basic matrix: include: - php: 5.5.9 env: setup=lowest - php: 5.5.9 env: setup=stable sudo: false install: - if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi script: vendor/bin/phpunit
Test on more recent Ruby versions
language: ruby rvm: - 1.8.7 - 1.9.2
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0
Make Travis use Docker for faster builds
language: node_js node_js: - "0.12" notifications: webhooks: urls: - https://webhooks.gitter.im/e/c77e712c44b0a4914b7c on_success: always # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
language: node_js node_js: - "0.12" sudo: false notifications: webhooks: urls: - https://webhooks.gitter.im/e/c77e712c44b0a4914b7c on_success: always # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Use composer installation from Travis box
language: php php: [5.3, 5.4, 5.5] before_script: - curl -s https://getcomposer.org/installer | php - php composer.phar install script: phpunit -v
language: php php: [5.3, 5.4, 5.5] before_script: - composer install script: phpunit -v
Use minimal as the 'language'
language: csharp mono: none dotnet: 2.1.401 sudo: required dist: trusty script: "./build.sh" before_install: - sudo service postgresql stop - while sudo lsof -Pi :5432 -sTCP:LISTEN -t; do sleep 1; done env: global: secure: e2TyjuwV8DgvfkM/NsZw7Q2Trt7IDO6roqQJHa/xbQh4ZInp2JPLgg/f6YVF51dpBxfxsmYSLBbsnj8SLoTuSa904lyoI7p/xY1CDvvQUPiBQD2ORkSkne7RWepZXg5uwm9DQTJJXohR/aPnpNnFGr8RWMhCfIOPgc6wEX7EVCA=
language: minimal sudo: required dist: trusty script: "./build.sh" env: global: secure: e2TyjuwV8DgvfkM/NsZw7Q2Trt7IDO6roqQJHa/xbQh4ZInp2JPLgg/f6YVF51dpBxfxsmYSLBbsnj8SLoTuSa904lyoI7p/xY1CDvvQUPiBQD2ORkSkne7RWepZXg5uwm9DQTJJXohR/aPnpNnFGr8RWMhCfIOPgc6wEX7EVCA=
Revert "Add Mac OSX builds to Travis CI"
language: java sudo: false # faster builds # first try before_install: - pip install --user codecov after_success: - codecov jdk: - oraclejdk7 - openjdk7 os: - linux - osx
language: java sudo: false # faster builds # first try before_install: - pip install --user codecov after_success: - codecov jdk: - oraclejdk7 - openjdk7
Add support for Scala 2.10
language: scala jdk: - oraclejdk8 - openjdk7 - openjdk6
language: scala scala: - 2.10.5 - 2.11.7 jdk: - oraclejdk8 - openjdk7 - openjdk6
Add Ruby 2.4.0 to Travis
language: ruby rvm: - 2.0.0 - 2.2.0 - 2.2.1 - 2.2.2 - 2.3.0 - 2.3.1 notifications: irc: "irc.freenode.org#juwelier"
language: ruby rvm: - 2.0.0 - 2.2.0 - 2.2.1 - 2.2.2 - 2.3.0 - 2.3.1 - 2.4.0 notifications: irc: "irc.freenode.org#juwelier"
Build the c extension before running tests
language: ruby rvm: - 2.0.0 - 1.9.3 - 1.9.2 - 1.8.7 - ree install: - wget https://www.tracelytics.com/install_tracelytics.sh - sudo sh ./install_tracelytics.sh f51e2a43-0ee5-4851-8a54-825773b3218e services: - mongodb - memcached - cassandra
language: ruby rvm: - 2.0.0 - 1.9.3 - 1.9.2 - 1.8.7 - ree install: - wget https://www.tracelytics.com/install_tracelytics.sh - sudo sh ./install_tracelytics.sh f51e2a43-0ee5-4851-8a54-825773b3218e before_script: - bundle exec rake compile services: - mongodb - memcached - cassandra
Remove Node 0.10 and 0.12 support
language: node_js sudo: false node_js: - "0.10" - "0.12" - "4" - "6" after_success: - npm run coverage - npm i codecov - codecov -f coverage/coverage.json notifications: email: on_success: never
language: node_js sudo: false node_js: - "4" - "6" after_success: - npm run coverage - npm i codecov - codecov -f coverage/coverage.json notifications: email: on_success: never
Disable Travis CI email notifications.
language: go go: 1.4 env: - PATH=$HOME/gopath/bin:$PATH install: # Install SDL2. # Travis CI uses Ubuntu 12.04 which doesn't have libsdl2. # We use SDL2-2.0.1, the minimum version with SDL_WINDOW_ALLOW_HIGHDPI. - wget https://www.libsdl.org/release/SDL2-2.0.1.tar.gz - tar -xzf SDL2-2.0.1.tar.gz - (cd SDL2-2.0.1 && ./configure -q && make -s -j3 && sudo make install) # Install go tools used by gok.sh - go get golang.org/x/tools/cmd/vet - go get github.com/golang/lint/golint - go get -d -v ./... && go build -v ./... script: ./gok.sh
language: go go: 1.4 notifications: email: false env: - PATH=$HOME/gopath/bin:$PATH install: # Install SDL2. # Travis CI uses Ubuntu 12.04 which doesn't have libsdl2. # We use SDL2-2.0.1, the minimum version with SDL_WINDOW_ALLOW_HIGHDPI. - wget https://www.libsdl.org/release/SDL2-2.0.1.tar.gz - tar -xzf SDL2-2.0.1.tar.gz - (cd SDL2-2.0.1 && ./configure -q && make -s -j3 && sudo make install) # Install go tools used by gok.sh - go get golang.org/x/tools/cmd/vet - go get github.com/golang/lint/golint - go get -d -v ./... && go build -v ./... script: ./gok.sh
Update employment history in config
# Dependencies markdown: redcarpet pygments: true # Permalinks permalink: pretty # Setup title: Donald McKendrick tagline: 'Developer and Entrepreneur' description: 'Developer at <a href="http://floatapp.com" target="_blank">Float</a> and aspiring entrepreneur.' url: http://donaldmckendrick.com author: name: 'Donald McKendrick' url: https://twitter.com/deardonald paginate: 5 # Custom vars # version: 2.0.0 # github: # repo: https://github.com/poole/hyde
# Dependencies markdown: redcarpet pygments: true # Permalinks permalink: pretty # Setup title: Donald McKendrick tagline: 'CTO and Entrepreneur' description: 'CTO at <a href="http://www.storeluv.com" target="_blank">StoreLuv</a> and aspiring entrepreneur.' url: http://donaldmckendrick.com author: name: 'Donald McKendrick' url: https://twitter.com/deardonald paginate: 5 # Custom vars # version: 2.0.0 # github: # repo: https://github.com/poole/hyde
Update Selenium and Firefox to fix IT
language: java jdk: - oraclejdk8 addons: firefox: latest cache: directories: - $HOME/.m2 - node - node_modules before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24 +extension RANDR" - export DISPLAY=:99 - "wget https://github.com/mozilla/geckodriver/releases/download/v0.15.0/geckodriver-v0.15.0-linux64.tar.gz" - mkdir geckodriver - tar -xzf geckodriver-v0.15.0-linux64.tar.gz -C geckodriver - "wget -q http://selenium-release.storage.googleapis.com/3.3/selenium-server-standalone-3.3.1.jar" - "java -Dwebdriver.gecko.driver=$PWD/geckodriver/geckodriver -jar selenium-server-standalone-3.3.1.jar &" - sleep 5 install: /bin/true script: mvn verify -B -Djava.util.logging.config.file="src/test/resources/logging.properties" after_success: - bash <(curl -s https://codecov.io/bash)
language: java jdk: - oraclejdk8 addons: firefox: latest cache: directories: - $HOME/.m2 - node - node_modules before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24 +extension RANDR" - export DISPLAY=:99 - "wget https://github.com/mozilla/geckodriver/releases/download/v0.19.0/geckodriver-v0.19.0-linux64.tar.gz" - mkdir geckodriver - tar -xzf geckodriver-v0.19.0-linux64.tar.gz -C geckodriver - "wget -q https://selenium-release.storage.googleapis.com/3.6/selenium-server-standalone-3.6.0.jar" - "java -Dwebdriver.gecko.driver=$PWD/geckodriver/geckodriver -jar selenium-server-standalone-3.6.0.jar &" - sleep 5 install: /bin/true script: mvn verify -B -Djava.util.logging.config.file="src/test/resources/logging.properties" after_success: - bash <(curl -s https://codecov.io/bash)
Install bower before running test script
language: node_js node_js: - "4.2" before_script: - npm install -g grunt-cli script: grunt test
language: node_js node_js: - "4.2" before_script: - npm install -g grunt-cli - nom install -g bower script: grunt test
Add social and email to config
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing these this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. # Build settings title: RiiConnect24 defaults: - scope: path: "" # an empty string here means all files in the project values: layout: "default" # Sites have their own title to show. title: "RiiConnect24" markdown: kramdown plugins: - jekyll-sitemap
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing these this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. # Build settings title: RiiConnect24 email: support@riiconnect24.net url: "https://rc24.xyz/" # Social githubUsername: RiiConnect24 twitterUsername: RiiConnect24 facebookUsername: RiiConnect24 defaults: - scope: path: "" # an empty string here means all files in the project values: layout: "default" # Sites have their own title to show. title: "RiiConnect24" markdown: kramdown plugins: - jekyll-sitemap
Remove deprecated Travis CI option
language: ruby cache: bundler sudo: false dist: precise branches: only: master rvm: - 2.2 - 2.3 - 2.4 - 2.5 - 2.6 before_install: ruby -e "File.write('Gemfile.lock', File.read('Gemfile.lock').split('BUNDLED WITH').first)"
language: ruby cache: bundler dist: precise branches: only: master rvm: - 2.2 - 2.3 - 2.4 - 2.5 - 2.6 before_install: ruby -e "File.write('Gemfile.lock', File.read('Gemfile.lock').split('BUNDLED WITH').first)"
Update node_js versions and coverage services
sudo: false language: node_js node_js: - '0.12' after_success: - npm run coveralls
sudo: false language: node_js cache: directories: - node_modules node_js: - '0.10' - '0.12' - '4.0' - '4.1' before_script: - npm prune after_success: - npm run codecov
Add deploy on tag from Travis to github release
language: objective-c osx_image: xcode7.3 branches: only: - master - /^deploy-.*$/ install: - tar -xzf lame-3.99.5.tar.gz script: - cd lame-3.99.5 && ../build_ios.sh
language: objective-c osx_image: xcode7.3 install: tar -xzf lame-3.99.5.tar.gz script: cd lame-3.99.5 && ../build_ios.sh deploy: provider: releases file: build/libmp3lame.a skip_cleanup: true on: tags: true api-key: secure: A3q+C1rrw2yXX/CzV/Utxcg2dKzPCQKDgg/MEWZ8K6/s6C8kRsbgv3YsM+iZpcUlw+ekUjIRUsQqDaBD5U36Avl3Mbdv3qIzHIH/dPRMdYSROaEzTv3BoqTBErOFwxLqEninqqRpTm2vO4bGdKemnN2O8Qe8XmU4h+ZvBPmWsqs=
Make Travis build javadoc and source packages
language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk7
language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk7 script: mvn install
Drop 0.8 due to bob's min node engine. Temp drop 0.11 due to buster ramp-resources sub dep install problem.
language: node_js node_js: - "0.11" - "0.10" - 0.8 before_install: "npm install -g bob --loglevel error" script: "bob build"
language: node_js node_js: - "0.10" before_install: "npm install -g bob --loglevel error" script: "bob build"
Test on node 0.8 using Travis CI.
language: "node_js" node_js: - 0.4 - 0.6
language: "node_js" node_js: - 0.4 - 0.6 - 0.8
Use mono 4.4.2 until latest 4.6 is fixed
language: csharp os: - linux - osx mono: - latest script: - ./build.sh --target "Travis" --platform "Mono" --configuration "Release" notifications: email: false webhooks: urls: - https://webhooks.gitter.im/e/98f653320ef2b7506c05 on_success: change on_failure: always on_start: never
language: csharp os: - linux - osx mono: - 4.4.2 script: - ./build.sh --target "Travis" --platform "Mono" --configuration "Release" notifications: email: false webhooks: urls: - https://webhooks.gitter.im/e/98f653320ef2b7506c05 on_success: change on_failure: always on_start: never
Build only golang last version
language: go branches: only: - master - develop go: - 1.2 - 1.2.1 - 1.2.2 - 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 install: - check_preconditions && actually_build - make build after_script: - make uninstall
language: go branches: only: - master - develop go: - 1.6 - 1.6.1 - 1.6.2 install: - make build after_script: - make uninstall
Fix the retrieval of the latest compiler version tag
language: node_js dist: trusty sudo: required node_js: stable env: - PATH=$HOME/purescript:$PATH install: - TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p') - wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz - tar -xvf $HOME/purescript.tar.gz -C $HOME/ - chmod a+x $HOME/purescript - npm install -g bower - npm install - bower install --production script: - npm run -s build - bower install - npm run -s test after_success: - >- test $TRAVIS_TAG && echo $GITHUB_TOKEN | pulp login && echo y | pulp publish --no-push
language: node_js dist: trusty sudo: required node_js: stable env: - PATH=$HOME/purescript:$PATH install: - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest)) - curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz - tar -xvf $HOME/purescript.tar.gz -C $HOME/ - chmod a+x $HOME/purescript - npm install -g bower - npm install - bower install --production script: - npm run -s build - bower install - npm run -s test after_success: - >- test $TRAVIS_TAG && echo $GITHUB_TOKEN | pulp login && echo y | pulp publish --no-push
Test building supported packages if successful.
language: c os: - linux - osx compiler: - clang - gcc matrix: allow_failures: - compiler: gcc sudo: false script: - python minipkg.py - source ~/.bash_profile - python build.py < supported-packages.txt - pkg_info after_failure: - cat *-log.txt
language: c os: - linux - osx compiler: - clang - gcc matrix: allow_failures: - compiler: gcc sudo: false script: - python minipkg.py - source ~/.bash_profile after_success: - python build.py < supported-packages.txt - pkg_info after_failure: - cat *-log.txt