Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Load service facts before using them
- name: Stop and disable the KF2 service systemd: name: kf2 state: stopped enabled: no when: ansible_facts.services["kf2.service"] is defined - name: Stop and disable the KF2 autokick service systemd: name: kf2autokick state: stopped enabled: no when: ansible_facts.services["kf2autokick...
- name: Check the state of system services service_facts: - name: Stop and disable the KF2 service systemd: name: kf2 state: stopped enabled: no when: ansible_facts.services["kf2.service"] is defined - name: Stop and disable the KF2 autokick service systemd: name: kf2autokick state: stoppe...
Fix playbook action (nginx action didn't match)
--- - include: demo_playbook_iter_05.yml our_desired_package_name=nginx - hosts: webservers remote_user: ec2-user vars: demo_message: 'Hello World (of course)' handlers: - name: print-or-not debug: msg='Message is {{ demo_message }}' - name: start-nginx service: state=started name=nginx sudo:...
--- - include: demo_playbook_iter_05.yml our_desired_package_name=nginx - hosts: webservers remote_user: ec2-user vars: demo_message: 'Hello World (of course)' handlers: - name: print-or-not debug: msg='Message is {{ demo_message }}' - name: start-nginx service: state=started name=nginx sudo:...
Update EDS Lite to 2.0.0.237 (237)
Categories: - Security License: GPL-2.0-or-later AuthorName: sovworks AuthorEmail: eds@sovworks.com WebSite: https://sovworks.com/eds/ SourceCode: https://github.com/sovworks/edslite IssueTracker: https://github.com/sovworks/edslite/issues Donate: https://sovworks.com/eds/donations.php Description: | EDS allows ...
Categories: - Security License: GPL-2.0-or-later AuthorName: sovworks AuthorEmail: eds@sovworks.com WebSite: https://sovworks.com/eds/ SourceCode: https://github.com/sovworks/edslite IssueTracker: https://github.com/sovworks/edslite/issues Donate: https://sovworks.com/eds/donations.php Description: | EDS allows ...
Update solidnerd/bookstack Docker tag to v22.10.1
version: '2' services: mysql: image: mysql:8.0 environment: - MYSQL_ROOT_PASSWORD=secret - MYSQL_DATABASE=bookstack - MYSQL_USER=bookstack - MYSQL_PASSWORD=secret volumes: - mysql-data:/var/lib/mysql bookstack: image: solidnerd/bookstack:22.04.02 depends_on: - mysql ...
version: '2' services: mysql: image: mysql:8.0 environment: - MYSQL_ROOT_PASSWORD=secret - MYSQL_DATABASE=bookstack - MYSQL_USER=bookstack - MYSQL_PASSWORD=secret volumes: - mysql-data:/var/lib/mysql bookstack: image: solidnerd/bookstack:22.10.1 depends_on: - mysql e...
Use Mongoid safe mode in test environment
# This file is overwritten by one in alphagov-deployment at deploy time development: host: localhost database: govuk_content_development persist_in_safe_mode: true use_activesupport_time_zone: true test: host: localhost # Don't want this interfering with a concurrent Panopticon test run database: govuk_c...
# This file is overwritten by one in alphagov-deployment at deploy time development: host: localhost database: govuk_content_development persist_in_safe_mode: true use_activesupport_time_zone: true test: host: localhost # Don't want this interfering with a concurrent Panopticon test run database: govuk_c...
Reduce the memory scaling coefficient to 0.85
# Autoscaling settings autoscaling_buffer_pools: "worker" autoscaling_buffer_cpu_scale: "1" autoscaling_buffer_memory_scale: "0.9" autoscaling_buffer_cpu_reserved: "1" autoscaling_buffer_memory_reserved: "1500Mi" {{if eq .Environment "production"}} autoscaling_buffer_pods: "3" {{else}} autoscaling_buffer_pods: "0" {{en...
# Autoscaling settings autoscaling_buffer_pools: "worker" autoscaling_buffer_cpu_scale: "1" autoscaling_buffer_memory_scale: "0.85" autoscaling_buffer_cpu_reserved: "1" autoscaling_buffer_memory_reserved: "1500Mi" {{if eq .Environment "production"}} autoscaling_buffer_pods: "3" {{else}} autoscaling_buffer_pods: "0" {{e...
Fix a typo in comment.
# google group for gcr.io/k8s-staging-cluster-api-azure is k8s-infra-staging-cluster-api-azure@kubernetes.io registries: - name: gcr.io/k8s-staging-provider-azure src: true - name: us.gcr.io/k8s-artifacts-prod/provider-azure service-account: k8s-infra-gcr-promoter@k8s-artifacts-prod.iam.gserviceaccount.com - name: ...
# google group for gcr.io/k8s-staging-provider-azure is k8s-infra-staging-provider-azure@kubernetes.io registries: - name: gcr.io/k8s-staging-provider-azure src: true - name: us.gcr.io/k8s-artifacts-prod/provider-azure service-account: k8s-infra-gcr-promoter@k8s-artifacts-prod.iam.gserviceaccount.com - name: eu.gcr...
Change Lint WF to manual execution only
name: CI on: workflow_dispatch: push: branches: [master] jobs: build: runs-on: ubuntu-latest timeout-minutes: 15 steps: - uses: actions/checkout@v2.3.3 - name: Set up Python 3.7 uses: actions/setup-python@v2 with: python-version: 3.7 - name: Install dependenci...
name: CI on: workflow_dispatch: jobs: build: runs-on: ubuntu-latest timeout-minutes: 15 steps: - uses: actions/checkout@v2.3.3 - name: Set up Python 3.7 uses: actions/setup-python@v2 with: python-version: 3.7 - name: Install dependencies run: | python ...
Add postgres to test environment
name: Check pull request on: - pull_request jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.0 bundler-cache: true - name: Install dependencies run: bundle install - name: Run ...
name: Check pull request on: - pull_request jobs: test: runs-on: ubuntu-latest services: postgres: image: postgres env: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: postgres options: >- --health-cmd pg_isready ...
Set proper style for defaults file
transmission_user: "{{ ansible_user_id }}" transmission_passwd: yourTransmissionPassword transmission_rpc_auth_enabled: true transmission_rpc_whitelist_enabled: true transmission_rpc_whitelist: 127.0.0.1 transmission_umask: 2 transmission_download_dir: "{{ ansible_env.HOME }}/downloads" transmission_inc...
--- transmission_user: "{{ ansible_user_id }}" transmission_passwd: yourTransmissionPassword transmission_rpc_auth_enabled: true transmission_rpc_whitelist_enabled: true transmission_rpc_whitelist: 127.0.0.1 transmission_umask: 2 transmission_download_dir: "{{ ansible_env.HOME }}/downloads" transmission_incomplete_dir_...
Test building for Python 3.10
name: Build Python package on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: ...
name: Build Python package on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9, "3.10"] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with...
Fix Deprecation with Symfony Yaml Component v3.2+
parameters: memcache.data_collector.class: Lsw\MemcacheBundle\DataCollector\MemcacheDataCollector memcache.data_collector.template: "LswMemcacheBundle:Collector:memcache" services: memcache.data_collector: class: "%memcache.data_collector.class%" tags: - { name: data_collector, ...
parameters: memcache.data_collector.class: Lsw\MemcacheBundle\DataCollector\MemcacheDataCollector memcache.data_collector.template: "LswMemcacheBundle:Collector:memcache" services: memcache.data_collector: class: "%memcache.data_collector.class%" tags: - { name: data_collector, ...
Update Weather to 2.10 (26)
AntiFeatures: - NonFreeNet Categories: - Internet License: GPL-2.0-only WebSite: https://gitlab.com/BeowuIf/weather SourceCode: https://gitlab.com/BeowuIf/weather/tree/HEAD IssueTracker: https://gitlab.com/BeowuIf/weather/issues Changelog: https://gitlab.com/BeowuIf/weather/-/blob/HEAD/CHANGELOG AutoName: Weather ...
AntiFeatures: - NonFreeNet Categories: - Internet License: GPL-2.0-only WebSite: https://gitlab.com/BeowuIf/weather SourceCode: https://gitlab.com/BeowuIf/weather/tree/HEAD IssueTracker: https://gitlab.com/BeowuIf/weather/issues Changelog: https://gitlab.com/BeowuIf/weather/-/blob/HEAD/CHANGELOG AutoName: Weather ...
Update Easy WaterMark to 2.0.0 (20000)
Categories: - Multimedia License: MIT AuthorName: rosuH AuthorEmail: rosuh@qq.com AuthorWebSite: https://rosuh.me/ SourceCode: https://github.com/rosuH/EasyWatermark IssueTracker: https://github.com/rosuH/EasyWatermark/issues AutoName: 简单水印 RepoType: git Repo: https://github.com/rosuH/EasyWatermark Builds: - ver...
Categories: - Multimedia License: MIT AuthorName: rosuH AuthorEmail: rosuh@qq.com AuthorWebSite: https://rosuh.me/ SourceCode: https://github.com/rosuH/EasyWatermark IssueTracker: https://github.com/rosuH/EasyWatermark/issues AutoName: Easy WaterMark RepoType: git Repo: https://github.com/rosuH/EasyWatermark Build...
Remove output of vim plugin installation
--- - defaults: link: create: true relink: true - clean: ['~'] - shell: - [sh pre-install.sh, Running pre installation script] - link: ~/.dotfiles: '' ~/.vimrc: vimrc ~/.vimrc.bundles: vim/bundle.vim ~/.vimrc.map: vim/map.vim ~/.zshrc: force: true path: zshrc ~/...
--- - defaults: link: create: true relink: true - clean: ['~'] - shell: - [sh pre-install.sh, Running pre installation script] - link: ~/.dotfiles: '' ~/.vimrc: vimrc ~/.vimrc.bundles: vim/bundle.vim ~/.vimrc.map: vim/map.vim ~/.zshrc: force: true path: zshrc ~/...
Remove comments from Ansible shell provisioner as it removes newlines(!).
- name: Install MySQL apt: name={{ item }} state=present update_cache=true cache_valid_time=3600 with_items: - mysql-server - name: Generate MySQL config template: src=templates/mysql.cnf.j2 dest=/etc/mysql/conf.d/mysql.cnf register: updated_config - name: (re)Start MySQL service: ...
- name: Install MySQL apt: name={{ item }} state=present update_cache=true cache_valid_time=3600 with_items: - mysql-server - name: Generate MySQL config template: src=templates/mysql.cnf.j2 dest=/etc/mysql/conf.d/mysql.cnf register: updated_config - name: (re)Start MySQL service: ...
Change include condition for RHEL os family.
--- - include: debian.yml when: ansible_distribution == "Debian" or ansible_distribution == "Ubuntu" - include: centos.yml when: (ansible_distribution == "CentOS" or ansible_distribution == "Red Hat Enterprise Linux" or ansible_pkg_mgr == "yum") and ansible_distribution != "Amazon" - include: amazonlinux.yml wh...
--- - include: debian.yml when: ansible_distribution == "Debian" or ansible_distribution == "Ubuntu" - include: centos.yml when: ansible_os_family == "RedHat" and ansible_distribution != "Amazon" - include: amazonlinux.yml when: ansible_distribution == "Amazon" - name: check config directory stat: path: ...
Use container-based infrastructure, and turn on caching
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.1 services: - mongodb
sudo: false language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.1 services: - mongodb
Update build script for Travis CI
language: csharp solution: "./Extension Library/Extension Library.sln" mono: - latest # install: # - nuget restore "./Extension Library/Extension Library.sln" # - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner # script: # - xbuild /p:Configuration=Release '.\Extension Library\Extension Lib...
language: csharp solution: "./Extension Library/Extension Library.sln" # install: # - nuget restore "./Extension Library/Extension Library.sln" # - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner # script: # - xbuild /p:Configuration=Release '.\Extension Library\Extension Library.sln' # -...
Fix Travis to Xcode 7
osx_image: xcode6.4 language: objective-c xcode_project: iOS-Swift-TableView-CoreData-Example.xcodeproj xcode_scheme: iOS-Swift-TableView-CoreData-Example xcode_sdk: iphonesimulator8.4
osx_image: xcode7 language: objective-c xcode_project: iOS-Swift-TableView-CoreData-Example.xcodeproj xcode_scheme: iOS-Swift-TableView-CoreData-Example xcode_sdk: iphonesimulator9.0
Move upload to script to alert on upload failures
language: python python: # We don't actually use the Travis Python, but this keeps it organized. - "3.5" # - "3.6" install: - source libs/travis-conda-scripts/scripts/config.sh - bash -ex libs/travis-conda-scripts/scripts/travis_install.sh script: - source libs/travis-conda-scripts/scripts/config.sh - bas...
language: python python: # We don't actually use the Travis Python, but this keeps it organized. - "3.5" # - "3.6" install: - source libs/travis-conda-scripts/scripts/config.sh - bash -ex libs/travis-conda-scripts/scripts/travis_install.sh script: - source libs/travis-conda-scripts/scripts/config.sh - bas...
Add Slack notification to Travis
language: python python: - '2.7' - '3.4' addons: postgresql: "9.3" env: - SPANDEX_CFG=config/example.cfg before_install: - > if [[ "$TRAVIS_PYTHON_VERSION" == '2.7' ]]; then wget http://repo.continuum.io/miniconda/Miniconda-3.7.0-Linux-x86_64.sh -O miniconda.sh else wget http://repo.contin...
language: python python: - '2.7' - '3.4' addons: postgresql: "9.3" env: - SPANDEX_CFG=config/example.cfg before_install: - > if [[ "$TRAVIS_PYTHON_VERSION" == '2.7' ]]; then wget http://repo.continuum.io/miniconda/Miniconda-3.7.0-Linux-x86_64.sh -O miniconda.sh else wget http://repo.contin...
Add additional MRI versions for testing
language: ruby cache: bundler rvm: - 1.9.3-p551
language: ruby cache: bundler rvm: - 1.9.3-p551 - 2.0.0-p645 - 2.1.6 - 2.2.2
Add NPM deployment to TravisCI setup
language: node_js node_js: - node cache: directories: - node_modules
language: node_js node_js: - node cache: directories: - node_modules deploy: provider: npm email: misha@ginkgobioworks.com api_key: secure: RaHu9nAQUkPyp6LZ2mEvD5zbdXeHIZrP20iTT4N5kl3kB8BmXQBVphJ4rkcmdRYT13JZIlXzIvqWE8QdK+PmapOIWaGJ4t5XQ0Hjrqm5iUutDzvkypKBl6R44SlhIAp4KwWbEHeDkVZnhHZFirhgJMADbROBvBxTYAORab...
Fix :script key (to match code rather than online docs).
language: scala scala: - 2.9.2 script: "sbt ++$SCALA_VERSION assembly"
language: scala scala: - 2.9.2 script: "sbt ++$TRAVIS_SCALA_VERSION assembly"
Clean up Travis CI config
sudo: false language: node_js node_js: - "6" - "4" - "0.12"
language: node_js node_js: - "6" - "4" - "0.12"
Update to shorter upload command
language: java jdk: - oraclejdk8 cache: directories: - $HOME/.m2 notifications: email: recipients: - akamen@blackducksoftware.com - jrichard@blackducksoftware.com - psantos@blackducksoftware.com - ekerwin@blackducksoftware.com install: true script: - mvn clean package after_...
language: java jdk: - oraclejdk8 cache: directories: - $HOME/.m2 notifications: email: recipients: - akamen@blackducksoftware.com - jrichard@blackducksoftware.com - psantos@blackducksoftware.com - ekerwin@blackducksoftware.com install: true script: - mvn clean package after_...
Add "npm-check-updates" package for canary build
language: node_js node_js: - '0.12' - '4.0' before_script: - 'export CHROME_BIN=chromium-browser' - 'export DISPLAY=:99.0' - 'sh -e /etc/init.d/xvfb start' - 'npm install -g bower karma gulp jshint' - 'npm install' - 'bower install' after_script: - 'gulp'
language: node_js node_js: - '0.12' - '4.0' before_script: - 'export CHROME_BIN=chromium-browser' - 'export DISPLAY=:99.0' - 'sh -e /etc/init.d/xvfb start' - 'npm install -g bower karma gulp jshint npm-check-updates' - 'ncu -u' - 'ncu -m bower -u' - 'npm install' - 'bower install' after_script: -...
Update Travis file with Ruby and Sass info
language: node_js node_js: - 0.8
language: node_js node_js: - 0.8 language: ruby rvm: - 1.8.7 install: - gem update --system - gem install sass
Remove uneeded osx build step
os: - linux - osx matrix: allow_failures: - os: osx language: go sudo: required services: - docker go: - 1.6 - 1.5 install: - go get -v golang.org/x/exp/ebnf - make build script: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get github.com/golang/lint/golint ...
os: - linux - osx matrix: allow_failures: - os: osx language: go sudo: required services: - docker go: - 1.6 - 1.5 install: - go get -v golang.org/x/exp/ebnf - make build script: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get github.com/golang/lint/golint ...
Set up also Apple Mac OS X for testing this project on multiple operating systems (OS)
sudo: required os: - linux language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" - "iojs" before_install: - "curl -L http://git.io/ejPSng | /bin/sh" services: - mongodb
sudo: required os: - linux - osx language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" - "iojs" before_install: - "curl -L http://git.io/ejPSng | /bin/sh" services: - mongodb
Print result CSV in Travis
#Python Automated Tests language: python python: - "2.7" - "pypy" install: - "pip install apscheduler pyzmq" script: - python ci/scripts/testserver.py & - python 0-meter.py config.xml - cat hello_world.log - python 0-meter.py ci/ping.xml - cat ping.log - python 0-meter.py ci/csv_test.xml - cat csv_t...
#Python Automated Tests language: python python: - "2.7" - "pypy" install: - "pip install apscheduler pyzmq" script: - python ci/scripts/testserver.py & - python 0-meter.py config.xml - cat hello_world.log - python 0-meter.py ci/ping.xml - cat ping.log - cat thanks.csv - python 0-meter.py ci/csv_tes...
Test Python 3.5 on Travis
# Config file for automatic testing at travis-ci.org language: python python: - "3.4" - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: pip install -r requirements.txt # command to run tests, e.g. python setup.py test script: python setup.py test
language: python python: - "3.5" - "3.4" - "2.7" script: python setup.py test sudo: false
Use the new build env on Travis.
language: ruby before_script: - sh -e /etc/init.d/xvfb start - export DISPLAY=:99.0 - bundle exec rake test_app script: - bundle exec rspec spec rvm: - 1.9.3 - 2.0.0 - 2.1.5
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.5 sudo: false before_script: - sh -e /etc/init.d/xvfb start - export DISPLAY=:99.0 - bundle exec rake test_app script: - bundle exec rspec spec
Stop trying to build on rbx-head
language: ruby rvm: - jruby-18mode - jruby-19mode - jruby-head - rbx-18mode - rbx-19mode - rbx-head - ree - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ruby-head matrix: allow_failures: - rvm: jruby-18mode - rvm: jruby-head - rvm: rbx-18mode - rvm: rbx-head - rvm: ree - rvm: 1.8.7 ...
language: ruby rvm: - jruby-18mode - jruby-19mode - jruby-head - rbx-18mode - rbx-19mode - ree - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ruby-head matrix: allow_failures: - rvm: jruby-18mode - rvm: jruby-head - rvm: rbx-18mode - rvm: ree - rvm: 1.8.7 - rvm: ruby-head notification...
Use --prefer-dist with Composer for Travis tests
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm before_install: - sudo apt-get update && sudo apt-get install uuid-dev before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then printf "...
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm before_install: - sudo apt-get update && sudo apt-get install uuid-dev before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-dist - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then printf "\n...
Allow failures for php 7.2
sudo: false language: php php: - 7.2 - 7.1 - 7.0 - 5.6 - 5.5 - hhvm matrix: allow_failures: - php: hhvm before_install: - composer selfupdate install: - composer install after_script: - CODECLIMATE_REPO_TOKEN=badc29b931533dd8efb832ffff7bf8dbc31486290ae3b1c81d38fa677795ffaf ./vendor/bin/test-rep...
sudo: false language: php php: - 7.2 - 7.1 - 7.0 - 5.6 - 5.5 - hhvm matrix: allow_failures: - 7.2 - php: hhvm before_install: - composer selfupdate install: - composer install after_script: - CODECLIMATE_REPO_TOKEN=badc29b931533dd8efb832ffff7bf8dbc31486290ae3b1c81d38fa677795ffaf ./vendor/bi...
Support Rails 4 on the master branch
rvm: - 1.9.3 - 2.0.0 env: - RAILS=3-2-stable DB=sqlite - RAILS=3-2-stable DB=mysql - RAILS=3-2-stable DB=postgres - RAILS=3-1-stable DB=sqlite - RAILS=3-1-stable DB=mysql - RAILS=3-1-stable DB=postgres - RAILS=3-0-stable DB=sqlite - RAILS=3-0-stable DB=mysql - RAILS=3-0-stable DB=postgres before...
rvm: - 1.9.3 - 2.0.0 env: - RAILS=4-0-stable DB=sqlite - RAILS=4-0-stable DB=mysql - RAILS=4-0-stable DB=postgres - RAILS=3-2-stable DB=sqlite - RAILS=3-2-stable DB=mysql - RAILS=3-2-stable DB=postgres - RAILS=3-1-stable DB=sqlite - RAILS=3-1-stable DB=mysql - RAILS=3-1-stable DB=postgres - RAI...
Fix Travis PHP 7 and HHVM builds.
language: php php: - 5.2 - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm script: - phpunit sudo: false
language: php sudo: false matrix: include: - php: 5.2 - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 - php: 7.0 - php: 7.1 - php: hhvm dist: trusty script: vendor/bin/phpunit --verbose
Use Travis CI's new Docker infra
language: python matrix: include: - python: 2.6 env: TOXENV=py26 - python: 2.7 env: TOXENV=py27 - python: 3.2 env: TOXENV=py32 - python: 3.3 env: TOXENV=py33 - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - env: TOXENV=pep8 install: - ...
language: python sudo: false matrix: include: - python: 2.6 env: TOXENV=py26 - python: 2.7 env: TOXENV=py27 - python: 3.2 env: TOXENV=py32 - python: 3.3 env: TOXENV=py33 - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - env: TOXENV=pep8 i...
Remove node.js 0.10 from CI
sudo: false language: node_js node_js: - iojs - "0.12" - "0.10"
sudo: false language: node_js node_js: - iojs - "0.12"
Add Campfire notifications for Travis CI
language: ruby rvm: - "1.9.3" script: bundle exec rspec spec
language: ruby rvm: - 1.9.3 script: bundle exec rspec spec notifications: campfire: rooms: secure: UwsCEilVpBakyB+/A84lOS0Gp7KsNEZOGOXdWuS4M0L2BtmHYEYzO5DM3KrQuBmeCPoBQKfZRGGmAAXoHIinD+ziRczfknzL8lesAFcEVLs9ZMwtTdkk3FyCyOWcNu+Q6Iw5s9bz8Jpuz9u2iIC1knyAePhWSH76zg9R0DZrYmI=
Allow failures on rbx-2 ;(
language: ruby sudo: false cache: bundler bundler_args: --without console script: - bundle exec rake spec rvm: - 2.0 - 2.1 - 2.2 - rbx-2 - jruby-9000 - ruby-head - jruby-head env: global: - JRUBY_OPTS='--dev -J-Xmx1024M' matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rv...
language: ruby sudo: false cache: bundler bundler_args: --without console script: - bundle exec rake spec rvm: - 2.0 - 2.1 - 2.2 - rbx-2 - jruby-9000 - ruby-head - jruby-head env: global: - JRUBY_OPTS='--dev -J-Xmx1024M' matrix: allow_failures: - rvm: rbx-2 - rvm: ruby-head - rvm: jr...
Test ruby 2.1.5 as it is the latest in the 2.1 line.
language: ruby sudo: false cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.2 - rbx-2 - ruby-head before_script: - RAILS_ENV=test bundle exec rake db:schema:load script: - bundle exec rake test matrix: allow_failures: - rvm: rbx-2 - rvm: ruby-head
language: ruby sudo: false cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.5 - rbx-2 - ruby-head before_script: - RAILS_ENV=test bundle exec rake db:schema:load script: - bundle exec rake test matrix: allow_failures: - rvm: rbx-2 - rvm: ruby-head
Update yarn orb to v1.1.0
version: 2.1 orbs: yarn: artsy/yarn@1.0.1 workflows: build_and_verify: jobs: - yarn/workflow-queue - yarn/update-cache: requires: - yarn/workflow-queue - yarn/relay: requires: - yarn/workflow-queue - yarn/lint: requires: ...
version: 2.1 orbs: yarn: artsy/yarn@1.1.0 workflows: build_and_verify: jobs: - yarn/workflow-queue - yarn/update-cache: requires: - yarn/workflow-queue - yarn/relay: requires: - yarn/workflow-queue - yarn/lint: requires: ...
Add poetry as build dep for rpaframework-core
{% set name = "rpaframework-core" %} {% set version = "4.0.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/rpaframework-core-{{ version }}.tar.gz sha256: 3025c395a1bdc97c1494aaffa930ce0b008bdb093485fcf5cc2952b07a36a110 build:...
{% set name = "rpaframework-core" %} {% set version = "4.0.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/rpaframework-core-{{ version }}.tar.gz sha256: 3025c395a1bdc97c1494aaffa930ce0b008bdb093485fcf5cc2952b07a36a110 build:...
Remove Java 8 from build matrix.
name: CI on: pull_request: push: schedule: - cron: '0 4 * * 2' jobs: test: runs-on: ubuntu-latest strategy: matrix: include: - java: 8 - java: 11 - java: 17 steps: - uses: actions/checkout@v2.4.0 - uses: actions/setup-java@v2 with: ...
name: CI on: pull_request: push: schedule: - cron: '0 4 * * 2' jobs: test: runs-on: ubuntu-latest strategy: matrix: include: - java: 11 - java: 17 steps: - uses: actions/checkout@v2.4.0 - uses: actions/setup-java@v2 with: java-version: ${{ ma...
Use Go 1.16 in CI
name: Continuous Integration on: push: pull_request: branches: - master jobs: build: name: Build runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macOS-latest] steps: - name: Set up Go 1.15 uses: actions/setup-go@v1 with: go-version...
name: Continuous Integration on: push: pull_request: branches: - master jobs: build: name: Build runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macOS-latest] steps: - name: Set up Go 1.16 uses: actions/setup-go@v1 with: go-version...
Update Standford Hill Christmas visit slots
--- name: Standford Hill nomis_id: EHI address: - Church Road - 'ME12 4AA ' email: socialvisits.standfordhill@hmps.gsi.gov.uk enabled: true estate: Standford Hill finder_slug: sheppey-cluster-standford-hill phone: 0300 060 6603 slots: wed: - 1345-1545 sat: - 1345-1545 sun: - 1345-1545 unbookable: - 2014-12-...
--- name: Standford Hill nomis_id: EHI address: - Church Road - 'ME12 4AA ' email: socialvisits.standfordhill@hmps.gsi.gov.uk enabled: true estate: Standford Hill finder_slug: sheppey-cluster-standford-hill phone: 0300 060 6603 slots: wed: - 1345-1545 sat: - 1345-1545 sun: - 1345-1545 unbookable: - 2014-12-...
Change site.baseurl un yml config
# Site settings title: Mark Mahoney description: 'Node.js Developer' url: 'http://mrkmhny.github.io' baseurl: '/' # google_analytics: 'UA-XXXXXX-X' # disqus_shortname: 'your-disqus-name' author: name: 'Mark Mahoney' email: mark.r.mahoney@gmail.com github_username: mrkmhny linkedin_username: markrmahoney def...
# Site settings title: Mark Mahoney description: 'Node.js Developer' url: 'http://mrkmhny.github.io' baseurl: 'mrkmhny.github.io/' # google_analytics: 'UA-XXXXXX-X' # disqus_shortname: 'your-disqus-name' author: name: 'Mark Mahoney' email: mark.r.mahoney@gmail.com github_username: mrkmhny linkedin_username: ...
Update php versions for testing
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: # The type of runner that the job will run on runs-on: ubuntu-latest strategy: matrix: php-versions: ['7.2', '7.3', '7.4', '8.0'] # Steps represent a sequence of tasks that will be e...
name: CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: # The type of runner that the job will run on runs-on: ubuntu-latest strategy: matrix: php-versions: ['7.4', '8.0', '8.1'] # Steps represent a sequence of tasks that will be executed...
Switch back to cabal to install shellcheck
machine: environment: XDG_CONFIG_HOME: $HOME/.config XDG_DATA_HOME: $HOME/.local/share XDG_CACHE_HOME: $HOME/.cache GOPATH: $HOME/go dependencies: pre: - grep "physical id" /proc/cpuinfo | sort -u | wc -l - grep "cpu cores" /proc/cpuinfo |sort -u |cut -d":" -f2 - grep -c "processor" /pr...
machine: ghc: version: 7.10.1 environment: XDG_CONFIG_HOME: $HOME/.config XDG_DATA_HOME: $HOME/.local/share XDG_CACHE_HOME: $HOME/.cache GOPATH: $HOME/go dependencies: pre: - grep "physical id" /proc/cpuinfo | sort -u | wc -l - grep "cpu cores" /proc/cpuinfo |sort -u |cut -d":" -f2...
Update from Hackage at 2021-08-23T19:04:36Z
homepage: '' changelog-type: markdown hash: 65e1f5391a840a4ef78cd8e1a6305236d939dd81611d64955fa932a331c2089b test-bench-deps: {} maintainer: dan.firth@homtopic.tech synopsis: Csv parsing functionality for composite. changelog: | # Changelog for composite-cassava ## v0.0.1.0 Add `FromNamedRecord` and `ToNamedRec...
homepage: '' changelog-type: markdown hash: 11a37c1feadf36d58a8c23308d733c205548216b55deeee1855bb1f17607ca33 test-bench-deps: {} maintainer: dan.firth@homtopic.tech synopsis: Csv parsing functionality for composite. changelog: | # Changelog for composite-cassava ## v0.0.2.0 * Fix `ToNamedRecord` instances. #...
Update from Hackage at 2022-01-10T16:56:35Z
homepage: '' changelog-type: '' hash: e48006a133c806eec59cdb285dc61b4142d56fb8f26955d375b93f087ac9a61e test-bench-deps: {} maintainer: Remo Dörig <remo.doerig@gmail.com> & Joel Fisch <joel.fisch96@gmail.com> synopsis: Stripe-Library changelog: '' basic-deps: http-client: -any bytestring: -any base: '>=4.7 && <5' ...
homepage: https://github.com/Haskell-OpenAPI-Code-Generator/Stripe-Haskell-Library#readme changelog-type: '' hash: 8c074c770c4a1f4b793c6618f0f91bc9a3cb71c10a9fcbcc08577c94dce8070c test-bench-deps: {} maintainer: Remo Dörig <remo.doerig@gmail.com> & Joel Fisch <joel.fisch96@gmail.com> synopsis: Stripe-Library changelog:...
Enable prefer_final lints in pkg/vm
# Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. analyzer: exclude: - testcases/** - tool/**
# Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. analyzer: exclude: - testcases/** - tool/** linter: rules: - prefer_final_fields - pre...
Update from Hackage at 2019-03-08T08:50:32Z
homepage: https://github.com/NorfairKing/validity#readme changelog-type: '' hash: 9355c57ccd8c50fc12aaaf1546c374eb38be51d09d06c7c79ce205516e2a7535 test-bench-deps: genvalidity-property: -any base: -any filepath: ! '>=1.3' doctest: -any directory: ! '>=1.2' maintainer: ! 'syd.kerckhove@gmail.com, nick.van.d...
homepage: https://github.com/NorfairKing/validity#readme changelog-type: '' hash: db5d9d150a7bcf0cd84c4b37d209c043e7725c8ac9de6c05b2c377f1bae6d622 test-bench-deps: genvalidity-property: -any base: -any filepath: ! '>=1.3' doctest: -any directory: ! '>=1.2' maintainer: |- syd.kerckhove@gmail.com, nick.van....
Update Github actions to rerun daily
name: Test Suite # Run against all commits and pull requests. on: [ push, pull_request ] jobs: test_matrix: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - 2.4 - 2.5 - 2.6 - 2.7 - 3.0 rails: - '52' ...
name: Test Suite # Run against all commits and pull requests. on: schedule: - cron: '0 0 * * *' push: pull_request: jobs: test_matrix: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - 2.4 - 2.5 - 2.6 - 2.7 - 3...
Upgrade to latest LTS release
packages: - . extra-deps: - optparse-simple-0.0.3 - path-0.5.1 - monad-unlift-0.1.1.0 - Win32-notify-0.3.0.1 - hfsevents-0.1.5 resolver: lts-2.9
packages: - . extra-deps: - path-0.5.2 - Win32-notify-0.3.0.1 - hfsevents-0.1.5 resolver: lts-2.17
Build against Ruby 2.0.0 on Travis
# ---------------------------------------------------------------- # Configuration file for http://travis-ci.org/#!/chdorner/epubinfo # ---------------------------------------------------------------- language: ruby script: "bundle exec rake spec" rvm: - 1.9.2 - 1.9.3 - ruby-head matrix: allow_failures: -...
# ---------------------------------------------------------------- # Configuration file for http://travis-ci.org/#!/chdorner/epubinfo # ---------------------------------------------------------------- language: ruby script: "bundle exec rake spec" rvm: - 1.9.2 - 1.9.3 - 2.0.0 - ruby-head matrix: allow_failu...
Move rvm downgrade to before_install
before_script: - rvm rubygems 1.8.25 - cp config/database.yml.example config/database.yml - bundle exec rake db:create db:migrate db:test:prepare language: ruby rvm: - 1.9.3 script: bundle exec rake default
before_install: - rvm rubygems 1.8.25 before_script: - cp config/database.yml.example config/database.yml - bundle exec rake db:create db:migrate db:test:prepare language: ruby rvm: - 1.9.3 script: bundle exec rake default
Allow nightly to fail, add 7.1
language: php php: - 7.0 - nightly - hhvm matrix: allow_failures: - php: hhvm sudo: false install: travis_retry composer install --no-interaction --prefer-source script: phpunit after_script: wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/covera...
language: php php: - 7.0 - 7.1 - nightly - hhvm matrix: allow_failures: - php: hhvm - php: nightly sudo: false install: travis_retry composer install --no-interaction --prefer-source script: phpunit after_script: wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --for...
Move all installation steps to 'install' section.
language: haskell ghc: 7.8 env: - GHCVER=7.8.3 before_install: - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - travis_retry sudo apt-get update - travis_retry sudo apt-get install cabal-install-1.20 ghc-$GHCVER-prof ghc-$GHCVER-dyn - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/1.20/bin:$PATH - export P...
language: haskell ghc: 7.8 env: - GHCVER=7.8.3 before_install: - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - travis_retry sudo apt-get update - travis_retry sudo apt-get install cabal-install-1.20 ghc-$GHCVER-prof ghc-$GHCVER-dyn - export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/1.20/bin:$PATH - export P...
Update node version in Travis
sudo: false language: ruby rvm: - 2.4.2 before_install: - gem install sass --version "=3.4.19" - gem install compass --version "=1.0.3" - nvm install 4.4.3 - nvm use 4.4.3 install: - bundle install --path vendor/bundle - npm install before_script: - chmod +x ./script/cibuild script: script/cibuild env: ...
sudo: false language: ruby rvm: - 2.4.2 before_install: - gem install sass --version "=3.4.19" - gem install compass --version "=1.0.3" - nvm install 6.14.3 - nvm use 6.14.3 install: - bundle install --path vendor/bundle - npm install before_script: - chmod +x ./script/cibuild script: script/cibuild env: ...
Allow failures with legacy MPICH1
# http://travis-ci.org/mpi4py/mpi4py language: python python: - 2.6 - 2.7 - 3.2 - 3.3 # - pypy env: - MPI=mpich1 - MPI=mpich2 - MPI=mpich3 - MPI=openmpi branches: only: - master before_install: - sudo apt-get update -q - sh ./conf/travis-install-mpi.sh $MPI - pip ...
# http://travis-ci.org/mpi4py/mpi4py language: python python: - 2.6 - 2.7 - 3.2 - 3.3 # - pypy env: - MPI=mpich3 - MPI=mpich2 - MPI=mpich1 - MPI=openmpi matrix: allow_failures: - env: MPI=mpich1 branches: only: - master before_install: - sudo apt-get update -q ...
Add deployment token for pypi
dist: xenial language: python python: - '3.5' - '3.6' - '3.7' install: pip install tox-travis script: tox after_success: - coveralls
dist: xenial language: python python: - '3.5' - '3.6' - '3.7' install: pip install tox-travis script: tox after_success: - coveralls deploy: provider: pypi username: mshriver password: secure: rkAp2vVtLyQJLWc0OtJhL/YYbdYKCwUEnx5ABw8YLn2B5RY5wHs65NVHWBoeJFWlTE/v0SCDZNdTqJgcouEtVCUwqWnjEteuhDuhS0XGtbVoGK8vym2so...
Add PHP7 to Travis build
language: php php: - '5.4' - '5.5' - '5.6' env: - NO_INTERACTION=1 before_script: - phpize - ./configure --enable-sha3 - make script: make test
language: php php: - '5.4' - '5.5' - '5.6' - '7.0' env: - NO_INTERACTION=1 before_script: - phpize - ./configure --enable-sha3 - make script: make test
Use maven instead of xml_grep
language: java notifications: email: recepients: - omid-ci@yahoo-inc.com on_success: always on_failure: always jdk: - oraclejdk8 branches: only: - open-source cache: directories: - "~/.m2" before_script: # This is required to avoid failures of HBase minicluster related to Hadoop 1.x...
language: java notifications: email: recepients: - omid-ci@yahoo-inc.com on_success: always on_failure: always jdk: - oraclejdk8 branches: only: - open-source cache: directories: - "~/.m2" before_script: # This is required to avoid failures of HBase minicluster related to Hadoop 1.x...
Use container-based infrastructure in Travis CI.
language: ruby cache: bundler # Temporarily disable container-based infrastructure sudo: required rvm: - "ruby-2.2.1" script: - "bundle exec brakeman -z" - "bundle exec rake db:migrate" - "bundle exec rake spec:travisci" env: global: - RAILS_ENV=ci matrix: - TEST_SUITE=unit - TEST_SUITE=accept...
language: ruby cache: bundler # Use container-based infrastructure sudo: false rvm: - "ruby-2.2.1" script: - "bundle exec brakeman -z" - "bundle exec rake db:migrate" - "bundle exec rake spec:travisci" env: global: - RAILS_ENV=ci matrix: - TEST_SUITE=unit - TEST_SUITE=acceptance_1 - TEST_S...
Fix journey test file accidentally committed in previous commit.
project_name: dependency-container-with-setup-command-test containers: server: image: nginx:1.17.5 setup_commands: - command: sh -c "echo 'This is some output from the task' && echo -n 'This is another line'" working_directory: /usr/share/nginx/html task-env: build_directory: task-env ...
project_name: dependency-container-with-setup-command-test containers: server: image: nginx:1.17.5 setup_commands: - command: sh -c "echo 'This is some output from the task' > message.txt" working_directory: /usr/share/nginx/html task-env: build_directory: task-env dependencies: ...
Update Helmet version to 5.1.0
title: Helmet short_description: Express.js security with HTTP headers description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help! helmet_version: "5.0.2" baseurl: "" url: "https://helmetjs.github.io" markdown: CommonMarkGhPages commonmark: op...
title: Helmet short_description: Express.js security with HTTP headers description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help! helmet_version: "5.1.0" baseurl: "" url: "https://helmetjs.github.io" markdown: CommonMarkGhPages commonmark: op...
Add explicit resnet_depth parameter along with updating description for autoaugment yaml file.
# ---------- TRAINING PARAMETERS ---------- # AutoAugment achieves best results when trained for longer and when not using a pretrained # checkpoint for the backbone, although it will still work well in these settings. # Expected accuracy with using autoaugment: 38.67 # Expected accuracy without using autoaugment: 34.5...
# ---------- TRAINING PARAMETERS ---------- # AutoAugment achieves best results when trained for long and when not using a pretrained # checkpoint for the backbone. # Right now the code uses a pretrained checkpoint, but a future version will change this. # To train the ResNet 101 or ResNet 200 version, simply change th...
Add related node to synthetic methanol slider
--- - key: demand_of_molecules_offshore_sequestration_co2 step_value: 0.1 unit: "Mton" interface_group: sequestration related_node: molecules_offshore_sequestration_co2 position: 1 slide_key: supply_ccus_utilisation_storage - key: output_of_energy_production_synthetic_kerosene step_value: 0.1 unit: "PJ"...
--- - key: demand_of_molecules_offshore_sequestration_co2 step_value: 0.1 unit: "Mton" interface_group: sequestration related_node: molecules_offshore_sequestration_co2 position: 1 slide_key: supply_ccus_utilisation_storage - key: output_of_energy_production_synthetic_kerosene step_value: 0.1 unit: "PJ"...
Add the 7.4 and 8.0 images to the CI matrix
name: Build containers on: push: schedule: - cron: '0 1 * * *' jobs: build: runs-on: ubuntu-20.04 strategy: matrix: tag: ["5.6", "7.0", "7.1", "7.2", "7.3", "7.4-codecasts", "8.0-codecasts"] steps: - name: Checkout the codebase uses: actions/checkout@v2 - name: ...
name: Build containers on: push: schedule: - cron: '0 1 * * *' jobs: build: runs-on: ubuntu-20.04 strategy: matrix: tag: ["5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "7.4-codecasts", "8.0", "8.0-codecasts"] steps: - name: Checkout the codebase uses: actions/checkout@v2 ...
Change working directory and add missing labels.
apiVersion: v1 kind: Pod metadata: name: init-demo2 spec: containers: - name: python image: python:2.7-alpine command: - python - "-m" - SimpleHTTPServer volumeMounts: - name: path mountPath: /tmp/init initContainers: - name: busybox image: busybox command: ...
apiVersion: v1 kind: Pod metadata: name: init-demo2 labels: topic: initdemo2 spec: containers: - name: python image: python:2.7-alpine workingDir: /tmp/init command: - python - "-m" - SimpleHTTPServer volumeMounts: - name: path mountPath: /tmp/init initContainer...
Update from Hackage at 2022-08-11T19:20:36Z
homepage: '' changelog-type: markdown hash: d7016144ed6bfce89d6df18af47cf18020574d286ec743b42c8e9be83097e1e5 test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: KVStore effect for polysemy. changelog: | # Changelog for polysemy-kvstore ## v0.1.2.0 * Add `runKVStoreAsKVStore` and `runKVStoreAsKVSt...
homepage: '' changelog-type: markdown hash: 562a17cbdac8eb97263a8ae5ad53c9261f6341cef7d8c4e0412a9b3a63c95b30 test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: KVStore effect for polysemy. changelog: | # Changelog for polysemy-kvstore ## v0.1.2.0 * Add `runKVStoreAsKVStore` and `runKVStoreAsKVSt...
Fix the lost character in the config
ame: 'Label Actions' on: issues: types: [labeled, unlabeled] pull_request: types: [labeled, unlabeled] jobs: reaction: runs-on: ubuntu-latest steps: - uses: dessant/label-actions@v2 with: github-token: ${{ github.token }}
name: 'Label Actions' on: issues: types: [labeled, unlabeled] pull_request: types: [labeled, unlabeled] jobs: reaction: runs-on: ubuntu-latest steps: - uses: dessant/label-actions@v2 with: github-token: ${{ github.token }}
Update from Hackage at 2016-07-21T16:45:31+0000
homepage: http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check changelog-type: '' hash: 1032eae735fb74b2cf484a26b0bab744a80a3560e5c947e3df9c2688527558e8 test-bench-deps: {} maintainer: wolfgang@cs.ioc.ee synopsis: Type equality check changelog: '' basic-deps: base: ! '>=3.0 && <5' type-level: ! '>=0.1 && ...
homepage: http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check changelog-type: '' hash: 6d7a01e274a5f52096c2abd5147fa79b1e6304f02ef56687693e65c6585d8e35 test-bench-deps: {} maintainer: wolfgang@cs.ioc.ee synopsis: Type equality check changelog: '' basic-deps: base: ! '>=3.0 && <5' type-level: ! '>=0.1 && ...
Fix GH Action to support different Sf versions
name: Build on: push: ~ pull_request: ~ release: types: [created] schedule: - cron: "0 1 * * 6" # Run at 1am every Saturday workflow_dispatch: ~ jobs: tests: runs-on: ubuntu-latest name: "PHP ${{ matrix.php }}" strategy: fail-fast...
name: Build on: push: ~ pull_request: ~ release: types: [created] schedule: - cron: "0 1 * * 6" # Run at 1am every Saturday workflow_dispatch: ~ jobs: tests: runs-on: ubuntu-latest name: "PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}" ...
Revert tests to use locally hosted artifacts.
--- - hosts: test-kitchen roles: - role: dynatrace.Dynatrace-Java-Agent dynatrace_agents_linux_installer_file_url: http://downloads.dynatracesaas.com/6.2/dynatrace-agent-unix.jar dynatrace_java_agent_env_var_file_name: /tmp/environment
--- - hosts: test-kitchen roles: - role: dynatrace.Dynatrace-Java-Agent dynatrace_agents_linux_installer_file_url: http://10.0.2.2/dynatrace/dynatrace-agent.jar dynatrace_java_agent_env_var_file_name: /tmp/environment
Add C compiler dep to perl-termreadkey
{% set name = "perl-termreadkey" %} {% set version = "2.38" %} {% set sha256 = "5a645878dc570ac33661581fbb090ff24ebce17d43ea53fd22e105a856a47290" %} package: name: {{ name }} version: {{ version }} source: url: https://cpan.metacpan.org/authors/id/J/JS/JSTOWE/TermReadKey-{{ version }}.tar.gz sha256: {{ sha256...
{% set name = "perl-termreadkey" %} {% set version = "2.38" %} {% set sha256 = "5a645878dc570ac33661581fbb090ff24ebce17d43ea53fd22e105a856a47290" %} package: name: {{ name }} version: {{ version }} source: url: https://cpan.metacpan.org/authors/id/J/JS/JSTOWE/TermReadKey-{{ version }}.tar.gz sha256: {{ sha256...
Hide the config of phpunit-priinter
options: cd-printer-hide-class: false cd-printer-simple-output: false cd-printer-show-config: true cd-printer-hide-namespace: false cd-printer-anybar: true cd-printer-anybar-port: 1738 markers: cd-pass: "✓ " cd-fail: "✖ " cd-error: "⚈ " cd-skipped: "→ " cd-incomplete: "∅ " cd-risky: "⌽ "
options: cd-printer-hide-class: false cd-printer-simple-output: false cd-printer-show-config: false cd-printer-hide-namespace: false cd-printer-anybar: true cd-printer-anybar-port: 1738 markers: cd-pass: "✓ " cd-fail: "✖ " cd-error: "⚈ " cd-skipped: "→ " cd-incomplete: "∅ " cd-risky: "⌽ "
Update es exporter chart version
apiVersion: v2 description: ElasticSearch monitoring using Prometheus-operator and Grafana. name: elasticsearch-monitoring type: application version: 1.4.0 keywords: - grafana - kube-prometheus - monitoring - prometheus - elasticsearch home: https://github.com/skyscrapers/charts/ sources: - https://github.c...
apiVersion: v2 description: ElasticSearch monitoring using Prometheus-operator and Grafana. name: elasticsearch-monitoring type: application version: 1.5.0 keywords: - grafana - kube-prometheus - monitoring - prometheus - elasticsearch home: https://github.com/skyscrapers/charts/ sources: - https://github.c...
Update actions/cache for GitHub action
name: tests on: push: pull_request: jobs: build: runs-on: ubuntu-20.04 strategy: fail-fast: true matrix: php: [7.4, 8.0, 8.1] steps: - name: Checkout uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: ...
name: tests on: push: pull_request: jobs: build: runs-on: ubuntu-20.04 strategy: fail-fast: true matrix: php: [7.4, 8.0, 8.1] steps: - name: Checkout uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: ...
Remove "write a program" from flatten-array exercise
--- blurb: "Write a program that will take a nested list and returns a single list with all values except nil/null" source: "Interview Question" source_url: "https://reference.wolfram.com/language/ref/Flatten.html"
--- blurb: "Take a nested list and return a single list with all values except nil/null" source: "Interview Question" source_url: "https://reference.wolfram.com/language/ref/Flatten.html"
Update pathlib2 recipe to version 2.2.1
{%set name = "pathlib2" %} {%set version = "2.2.0" %} package: name: {{ name }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz md5: c2e73a9a560e8b86233923af6a37faa2 requirements: build: -...
{% set name = "pathlib2" %} {% set version = "2.2.1" %} package: name: {{ name }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz md5: 6c75bfde898b6c88627621a48ee8de14 requirements: build: ...
Define external web network for Traefik connections
# This file is used to run the mailu/setup utility version: '3.6' services: redis: image: redis:alpine setup_master: image: mailu/setup:master env_file: .env environment: this_version: "master" labels: - traefik.enable=true - traefik.port=80 - traefik.main.frontend.rul...
# This file is used to run the mailu/setup utility version: '3.6' services: redis: image: redis:alpine setup_master: image: mailu/setup:master networks: - web env_file: .env environment: this_version: "master" labels: - traefik.enable=true - traefik.port=80 -...
Update from Hackage at 2020-07-22T12:42:19Z
homepage: https://github.com/emilaxelsson/hzenity changelog-type: '' hash: 8015d18188feda6f4ec4b92f6d336ce64e8fb687c6803beb9d47e64b0395e996 test-bench-deps: {} maintainer: 78emil@gmail.com synopsis: Haskell interface to Zenity dialogs changelog: '' basic-deps: process-extras: -any base: <5 time: -any text: -any...
homepage: https://github.com/emilaxelsson/hzenity changelog-type: '' hash: f5fd749bc184a0fa1002b586f7b08e9dc3fa5bb224749e78ca067cd4c60ed8df test-bench-deps: {} maintainer: 78emil@gmail.com synopsis: Haskell interface to Zenity dialogs changelog: '' basic-deps: process-extras: <0.8 base: <5 time: <1.10 text: <1....
Revert commit 'Reduce cf push timeout'
director_uuid: <%= `bosh status --uuid` %> properties: acceptance_tests: default_timeout: 75 nodes: 5 cf_push_timeout: 64
director_uuid: <%= `bosh status --uuid` %> properties: acceptance_tests: default_timeout: 75 nodes: 5
Update gateway URL to default for helloc example
provider: name: faas gateway: http://localhost:8080 functions: helloc: lang: Dockerfile handler: ./src image: alexellis/helloc
provider: name: faas gateway: http://127.0.0.1:8080 functions: helloc: lang: Dockerfile handler: ./src image: alexellis/helloc:0.1
Update integration tests to cover all in Native build mode, and debug and profile
notifications: email: on_success: change on_failure: always language: csharp solution: BuildAMation.sln matrix: include: - os: linux mono: latest script: - msbuild /p:Configuration=Release BuildAMation.sln && python codingtools/test_bam.py && source env.sh && cd tests && python runtests.py...
notifications: email: on_success: change on_failure: always language: csharp solution: BuildAMation.sln matrix: include: - os: linux mono: latest script: - msbuild /p:Configuration=Release BuildAMation.sln && python codingtools/test_bam.py && source env.sh && cd tests && python runtests.py...
Build with Node.js 16 on Travis CI.
sudo: false language: node_js node_js: - '12' - '14' - '15' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
sudo: false language: node_js node_js: - '12' - '14' - '16' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc prove script: - nyc npm test
Change versions we test on Travis
language: ruby bundler_args: --without test rvm: - 2.1.6 - 2.2.2 - ruby-head gemfile: - gemfiles/activesupport-3.2 - gemfiles/activesupport-4.0 - gemfiles/activesupport-4.2
language: ruby bundler_args: --without test rvm: - 2.1.8 - 2.2.4 - 2.3.0 gemfile: - gemfiles/activesupport-3.2 - gemfiles/activesupport-4.0 - gemfiles/activesupport-4.2
Use mri 2.2.1, instead of 2.2; this defaults to 2.2.0p0, because of old version of rvm on Travis-CI.
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - jruby - rbx-2 gemfile: - Gemfile - Gemfile-pure cache: bundler sudo: false
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 1.9.3 - 2.0 - 2.1 - 2.2.1 - jruby - rbx-2 gemfile: - Gemfile - Gemfile-pure cache: bundler sudo: false
Build release-branch-* branches in Travis
language: scala dist: trusty sudo: false scala: - 2.11.11 - 2.12.6 cache: directories: - '$HOME/node_modules' - $HOME/.ivy2 services: - mongodb jdk: - oraclejdk8 script: ./travis.sh branches: only: - master node_js: - "4.1" before_script: - "cd web/webkit" - "npm install" - "cd...
language: scala dist: trusty sudo: false scala: - 2.11.11 - 2.12.6 cache: directories: - '$HOME/node_modules' - $HOME/.ivy2 services: - mongodb jdk: - oraclejdk8 script: ./travis.sh branches: only: - master - /^release-branch-.*$/ node_js: - "4.1" before_script: - "cd web/webki...
Disable perl and php module support for now.
language: c script: "./bootstrap && ./configure --enable-gmetad && make all" before_script: - sudo apt-get install -y libapr1-dev libconfuse-dev libexpat1-dev libpcre3-dev libssl-dev librrd-dev libtool m4
language: c script: "./bootstrap && ./configure --enable-gmetad --without-php --without-perl && make all" before_script: - sudo apt-get install -y libapr1-dev libconfuse-dev libexpat1-dev libpcre3-dev libssl-dev librrd-dev libtool m4
Test on more Chef versions
language: ruby cache: bundler sudo: false rvm: - 2.0.0 - 2.1 - 2.2 branches: only: - master bundler_args: --jobs 7 --retry 3 gemfile: gemfiles/chefspec.gemfile env: - CHEF_VERSION=master - CHEF_VERSION=12.2.1 - CHEF_VERSION=12.1.2 - CHEF_VERSION=12.1.1 - CHEF_VERSION=12.1.0 - CHEF_VERSION=1...
language: ruby cache: bundler sudo: false rvm: - 2.0.0 - 2.1 - 2.2 branches: only: - master bundler_args: --jobs 7 --retry 3 gemfile: gemfiles/chefspec.gemfile env: - CHEF_VERSION=master - CHEF_VERSION=12.4.1 - CHEF_VERSION=12.4.0 - CHEF_VERSION=12.3.0 - CHEF_VERSION=12.2.1 - CHEF_VERSION=1...
Remove node 0.6 from Travis CI.
language: "node_js" node_js: - "8" - "7" - "6" - "5" - "4" - "3" # io.js - "2" # io.js - "1" # io.js - "0.12" - "0.10" # - "0.8" - "0.6" before_install: - "npm install make-node@0.3.x -g" - "preinstall-compat" script: - "make test-cov" after_success: - "make report-cov" sudo: false
language: "node_js" node_js: - "8" - "7" - "6" - "5" - "4" - "3" # io.js - "2" # io.js - "1" # io.js - "0.12" - "0.10" # - "0.8" before_install: - "npm install make-node@0.3.x -g" - "preinstall-compat" script: - "make test-cov" after_success: - "make report-cov" sudo: false
Remove HHVM support, ensure PHP 5.4 & 5.5 tests run on correct distro
language: php matrix: include: - php: 5.3 dist: precise - php: 5.4 - php: 5.5 - php: 5.6 env: COMPOSER_FLAGS="--prefer-lowest" - php: 5.6 - php: 7 env: COMPOSER_FLAGS="--prefer-lowest" - php: 7 - php: hhvm before_install: - composer self-update install: composer ...
language: php matrix: include: - php: 5.3 dist: precise - php: 5.4 dist: precise - php: 5.5 dist: precise - php: 5.6 env: COMPOSER_FLAGS="--prefer-lowest" - php: 5.6 - php: 7 env: COMPOSER_FLAGS="--prefer-lowest" - php: 7 before_install: - composer self-up...
Change bundler version for TravisCI
language: ruby rvm: - 2.1.7 - 2.0.0 env: - DB=sqlite - DB=postgresql script: - RAILS_ENV=test bundle exec rake db:migrate --trace - bundle exec rake db:test:prepare - bundle exec rake before_script: - cp config/database.travis.yml config/database.yml - psql -c 'create database nanoblog_test' -U post...
language: ruby rvm: - 2.1.7 - 2.0.0 env: - DB=sqlite - DB=postgresql install: gem install -v 1.10.6 bundler --no-rdoc --no-ri script: - bundle _1.10.6_ install - RAILS_ENV=test bundle exec rake db:migrate --trace - bundle exec rake db:test:prepare - bundle exec rake before_script: - cp config/data...
Test with Node.js 0.12 on Travis CI.
sudo: false language: node_js node_js: - '0.10' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm i...
sudo: false language: node_js node_js: - '0.10' - '0.12' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm instal...