Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Set lower bound for `python` and added a sha256 checksum
{% set name = "p-winds" %} {% set version = "0.5.2b" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/ladsantos/p-winds/archive/refs/tags/v0.5.2-beta.tar.gz build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - python - pip - setuptools run: - python - numpy - scipy - astropy - pillow test: imports: - p_winds commands: - pytest requires: - pytest source_files: - tests/ about: home: https://github.com/ladsantos/p-winds license: MIT license_family: MIT license_file: LICENSE summary: 'Python implementation of Parker wind models for exoplanet atmospheres' doc_url: https://p-winds.readthedocs.io/ dev_url: https://ladsantos.org extra: recipe-maintainers: - ladsantos
{% set name = "p-winds" %} {% set version = "0.5.2b" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/ladsantos/p-winds/archive/refs/tags/v0.5.2-beta.tar.gz sha256: 2e517ff6408f541baf2b948202d2a92d00ee0ba5b31c6b146b889cce30ceedda build: noarch: python>=3.6 number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - python>=3.6 - pip - setuptools run: - python>=3.6 - numpy>=1.14 - scipy>=1.5 - astropy>=4.0 - pillow>=8.2 test: imports: - p_winds commands: - pytest requires: - pytest source_files: - tests/ about: home: https://github.com/ladsantos/p-winds license: MIT license_family: MIT license_file: LICENSE summary: 'Python implementation of Parker wind models for exoplanet atmospheres' doc_url: https://p-winds.readthedocs.io/ dev_url: https://ladsantos.org extra: recipe-maintainers: - ladsantos
Change redis to apcu for metadata cache
imports: - { resource: config.yml } fos_http_cache: proxy_client: default: varnish framework: router: strict_requirements: false # Doctrine Configuration doctrine: orm: metadata_cache_driver: redis query_cache_driver: redis result_cache_driver: redis monolog: use_microseconds: false handlers: main: type: fingers_crossed action_level: error handler: grouped grouped: type: group members: [streamed, buffered] buffered: type: buffer handler: swift swift: type: swift_mailer from_email: guillaume.sainthillier@gmail.com to_email: guillaume.sainthillier@gmail.com subject: Erreur sur By Night level: critical formatter: tbn.monolog_formatter streamed: type: stream path: "%kernel.logs_dir%/%kernel.environment%.log" level: error
imports: - { resource: config.yml } fos_http_cache: proxy_client: default: varnish framework: router: strict_requirements: false # Doctrine Configuration doctrine: orm: metadata_cache_driver: apcu query_cache_driver: apcu result_cache_driver: apcu monolog: use_microseconds: false handlers: main: type: fingers_crossed action_level: error handler: grouped grouped: type: group members: [streamed, buffered] buffered: type: buffer handler: swift swift: type: swift_mailer from_email: guillaume.sainthillier@gmail.com to_email: guillaume.sainthillier@gmail.com subject: Erreur sur By Night level: critical formatter: tbn.monolog_formatter streamed: type: stream path: "%kernel.logs_dir%/%kernel.environment%.log" level: error
Update flutter.widgets package version to 0.1.3
name: flutter_widgets version: 0.1.2 description: > Flutter widgets that are developed by Google but not by the core Flutter team. author: Dart Team <misc@dartlang.org> homepage: https://github.com/google/flutter.widgets environment: sdk: ">=2.0.0 <3.0.0" dependencies: collection: ^1.14.5 flutter: sdk: flutter html: ^0.13.2+2 intl: ^0.15.2 meta: ^1.1.1 quiver: ^2.0.0+1 dev_dependencies: test: ^1.3.0 mockito: ^3.0.0 flutter_test: sdk: flutter
name: flutter_widgets version: 0.1.3 description: > Flutter widgets that are developed by Google but not by the core Flutter team. author: Dart Team <misc@dartlang.org> homepage: https://github.com/google/flutter.widgets environment: sdk: ">=2.0.0 <3.0.0" dependencies: collection: ^1.14.5 flutter: sdk: flutter html: ^0.13.2+2 intl: ^0.15.2 meta: ^1.1.1 quiver: ^2.0.0+1 dev_dependencies: test: ^1.3.0 mockito: ^3.0.0 flutter_test: sdk: flutter
Create le ruotes, il controller e due templates per la sezione "Clients"
home: pattern: / defaults: { _controller: AgileInvoiceBundle:Default:index } invoices: pattern: /invoices defaults: { _controller: AgileInvoiceBundle:Invoices:index } invoices_archive: pattern: /invoices/archive defaults: { _controller: AgileInvoiceBundle:Invoices:archive } clients: pattern: /clients defaults: { _controller: AgileInvoiceBundle:Clients:index } projects: pattern: /projects defaults: { _controller: AgileInvoiceBundle:Projects:index } recurring_invoices: pattern: /recurring_invoices defaults: { _controller: AgileInvoiceBundle:Invoices:recurring } estimates: pattern: /estimates defaults: { _controller: AgileInvoiceBundle:Estimates:index } invoices_configure: pattern: /invoices/configure defaults: { _controller: AgileInvoiceBundle:Invoives:configure }
home: pattern: / defaults: { _controller: AgileInvoiceBundle:Default:index } invoices: pattern: /invoices defaults: { _controller: AgileInvoiceBundle:Invoices:index } clients: pattern: /clients defaults: { _controller: AgileInvoiceBundle:Clients:index } clients_new: pattern: /clients/new defaults: { _controller: AgileInvoiceBundle:Clients:new } invoices_archive: pattern: /invoices/archive defaults: { _controller: AgileInvoiceBundle:Invoices:archive } projects: pattern: /projects defaults: { _controller: AgileInvoiceBundle:Projects:index } recurring_invoices: pattern: /recurring_invoices defaults: { _controller: AgileInvoiceBundle:Invoices:recurring } estimates: pattern: /estimates defaults: { _controller: AgileInvoiceBundle:Estimates:index } invoices_configure: pattern: /invoices/configure defaults: { _controller: AgileInvoiceBundle:Invoives:configure }
Update CircleCI for more fine grained reporting
defaults: &defaults working_directory: ~/unparser steps: - checkout - run: bundle install - run: bundle exec rake ci version: 2 jobs: ruby_2_5: <<: *defaults docker: - image: circleci/ruby:2.5.3 workflows: version: 2 test: jobs: - ruby_2_5
defaults: &defaults working_directory: ~/unparser docker: - image: circleci/ruby:2.5.3 version: 2 jobs: unit_specs: <<: *defaults steps: - checkout - run: bundle install - run: bundle exec rspec spec/unit integration_specs: <<: *defaults steps: - checkout - run: bundle install - run: bundle exec rspec spec/integration metrics: <<: *defaults steps: - checkout - run: bundle install - run: bundle exec rake metrics:rubocop - run: bundle exec rake metrics:reek - run: bundle exec rake metrics:flay - run: bundle exec rake metrics:flog mutant: <<: *defaults steps: - checkout - run: bundle install - run: bundle exec rake metrics:mutant workflows: version: 2 test: jobs: - unit_specs - integration_specs - metrics - mutant
Move skip selector to the proper group
{% set name = "pyxid" %} {% set version = "1.0" %} {% set sha256 = "e689bce2ed8ed4bff7174a3a79f8b639ebf6356807aec7e9da481217313214ff" %} package: name: pyxid version: "1.0" source: fn: pyxid-{{ version }}.tar.gz url: https://github.com/cedrus-opensource/pyxid/archive/{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools - pyserial >=2.5 skip: true # [py3k] run: - python - pyserial >=2.5 test: # Python imports imports: - pyxid about: home: http://www.github.com/cedrus-opensource/pyxid/ license: BSD summary: 'Pure python library for communicating with Cedrus XID and StimTracker devices.' license_family: BSD author: "Grant Limberg" author_email: "developers@cedrus.com" maintainer: "Cedrus Corporation" maintainer_email: "opensource@cedrus.com" extra: recipe-maintainers: - kastman
{% set name = "pyxid" %} {% set version = "1.0" %} {% set sha256 = "e689bce2ed8ed4bff7174a3a79f8b639ebf6356807aec7e9da481217313214ff" %} package: name: pyxid version: "1.0" source: fn: pyxid-{{ version }}.tar.gz url: https://github.com/cedrus-opensource/pyxid/archive/{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt skip: true # [py3k] requirements: build: - python - setuptools - pyserial >=2.5 run: - python - pyserial >=2.5 test: # Python imports imports: - pyxid about: home: http://www.github.com/cedrus-opensource/pyxid/ license: BSD summary: 'Pure python library for communicating with Cedrus XID and StimTracker devices.' license_family: BSD author: "Grant Limberg" author_email: "developers@cedrus.com" maintainer: "Cedrus Corporation" maintainer_email: "opensource@cedrus.com" extra: recipe-maintainers: - kastman
Add support for PHP 7.2
language: php php: - 5.6 - 7.0 - 7.1 - nightly matrix: allow_failures: - php: nightly env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update --snapshot - composer update $COMPOSER_OPTS script: - vendor/bin/phpunit --coverage-clover=clover.xml - tests/lint.sh after_success: - vendor/bin/coveralls git: depth: 5 dist: trusty sudo: false
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 - nightly matrix: allow_failures: - php: nightly env: - COMPOSER_OPTS="" - COMPOSER_OPTS="--prefer-lowest" install: - composer self-update --snapshot - composer update $COMPOSER_OPTS script: - vendor/bin/phpunit --coverage-clover=clover.xml - tests/lint.sh after_success: - vendor/bin/coveralls git: depth: 5 dist: trusty sudo: false
Remove autoload files before caching
sudo: false language: php php: - 5.3 - 5.4 - 5.5 - 5.6 cache: directories: - vendor - $HOME/.composer/cache before_install: - composer selfupdate - composer config --global github-oauth.github.com $GITHUB_OAUTH_TOKEN install: - composer install --no-interaction --prefer-dist script: - phpunit --coverage-clover=coverage.clover - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
sudo: false language: php php: - 5.3 - 5.4 - 5.5 - 5.6 cache: directories: - vendor - $HOME/.composer/cache before_install: - composer selfupdate - composer config --global github-oauth.github.com $GITHUB_OAUTH_TOKEN install: - composer install --no-interaction --prefer-dist script: - phpunit --coverage-clover=coverage.clover - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover - rm -v ./vendor/autoload.php ./vendor/composer/!(installed.json)
Add long running label to the exemptLables section
# Configuration for probot-stale - https://github.com/probot/stale # Number of days of inactivity before an Issue or Pull Request becomes stale daysUntilStale: 60 # Number of days of inactivity before a stale Issue or Pull Request is closed daysUntilClose: 7 # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable exemptLabels: - pinned # Label to use when marking as stale staleLabel: stale # Comment to post when marking as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity, and will be closed if no further activity occurs. If this issue was overlooked, forgotten, or should remain open for any other reason, please reply here to call attention to it and remove the stale status. Thank you for your contributions. # Comment to post when removing the stale label. Set to `false` to disable unmarkComment: false # Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable closeComment: false # Limit to only `issues` or `pulls` only: issues
# Configuration for probot-stale - https://github.com/probot/stale # Number of days of inactivity before an Issue or Pull Request becomes stale daysUntilStale: 60 # Number of days of inactivity before a stale Issue or Pull Request is closed daysUntilClose: 7 # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable exemptLabels: - long running # Label to use when marking as stale staleLabel: stale # Comment to post when marking as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity, and will be closed if no further activity occurs. If this issue was overlooked, forgotten, or should remain open for any other reason, please reply here to call attention to it and remove the stale status. Thank you for your contributions. # Comment to post when removing the stale label. Set to `false` to disable unmarkComment: false # Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable closeComment: false # Limit to only `issues` or `pulls` only: issues
Remove end of life Python 3 releases
name: websocket-client build and test on: [push] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9] os: [ubuntu-latest, macOS-latest, windows-latest] steps: - name: Check out source repository uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} environment uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install version 24.0 readme_renderer if Python version == 3.4 if: ${{ matrix.python-version == '3.4' }} run: pip install readme_renderer==24.0 - name: Install latest readme_renderer if Python version != 3.4 if: ${{ matrix.python-version != '3.4' }} run: pip install -U readme_renderer - name: Build websocket-client & run tests run: | pip install -U pip setuptools wheel twine six pytest python -c "import setuptools; print('Setup tools version'); print(setuptools.__version__)" pytest websocket/tests -v -rP python setup.py sdist twine check dist/* env: TEST_WITH_INTERNET: 1
name: websocket-client build and test on: [push] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: python-version: [2.7, 3.6, 3.7, 3.8, 3.9] os: [ubuntu-latest, macOS-latest, windows-latest] steps: - name: Check out source repository uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} environment uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Build websocket-client & run tests run: | pip install -U pip setuptools wheel readme_renderer twine six pytest python -c "import setuptools; print('Setup tools version'); print(setuptools.__version__)" pytest websocket/tests -v -rP python setup.py sdist twine check dist/* env: TEST_WITH_INTERNET: 1
Enable the "fileinfo" extension in workflow
name: Tests (PHP) on: [push, pull_request] jobs: phpunit: name: PHP ${{ matrix.php }} on ${{ matrix.os }} (${{ matrix.composer_flags }}) runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest] php: [7.3, 7.4] composer_flags: ['--prefer-lowest', ''] steps: - uses: actions/checkout@v2 - name: Configure PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: mbstring coverage: none - name: Install Composer dependencies run: composer update --no-interaction --no-ansi --prefer-dist --prefer-stable ${{ matrix.composer_flags }} - name: Execute tests run: vendor/bin/phpunit
name: Tests (PHP) on: [push, pull_request] jobs: phpunit: name: PHP ${{ matrix.php }} on ${{ matrix.os }} (${{ matrix.composer_flags }}) runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest] php: [7.3, 7.4] composer_flags: ['--prefer-lowest', ''] steps: - uses: actions/checkout@v2 - name: Configure PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: mbstring, fileinfo coverage: none - name: Install Composer dependencies run: composer update --no-interaction --no-ansi --prefer-dist --prefer-stable ${{ matrix.composer_flags }} - name: Execute tests run: vendor/bin/phpunit
Correct session name when copied from mal.yaml.
session_name: mal windows: - window_name: mal focus: 'false' options: automatic-rename: 'on' panes: - shell_command: - cd /Users/steven.knight/src/dotfiles
session_name: dotfiles windows: - window_name: dotfiles focus: 'false' options: automatic-rename: 'on' panes: - shell_command: - cd /Users/steven.knight/src/dotfiles
Update redis-server port number to the default for travis.org.
default_connection: redis connections: redis: test: adapter: redis host: localhost port: 4000
default_connection: redis connections: redis: test: adapter: redis host: localhost port: 6379
Update Notes to 1.1 (2)
Categories: - Science & Education License: GPL-3.0-only SourceCode: https://codeberg.org/jonas-l/musical-notes-android IssueTracker: https://codeberg.org/jonas-l/musical-notes-android/issues AutoName: Musical Notes RepoType: git Repo: https://codeberg.org/jonas-l/musical-notes-android.git Builds: - versionName: '1.0' versionCode: 1 commit: release-1.0 subdir: app gradle: - yes AutoUpdateMode: Version release-%v UpdateCheckMode: Tags CurrentVersion: '1.0' CurrentVersionCode: 1
Categories: - Science & Education License: GPL-3.0-only SourceCode: https://codeberg.org/jonas-l/musical-notes-android IssueTracker: https://codeberg.org/jonas-l/musical-notes-android/issues AutoName: Notes RepoType: git Repo: https://codeberg.org/jonas-l/musical-notes-android.git Builds: - versionName: '1.0' versionCode: 1 commit: release-1.0 subdir: app gradle: - yes - versionName: '1.1' versionCode: 2 commit: release-1.1 subdir: app gradle: - yes AutoUpdateMode: Version release-%v UpdateCheckMode: Tags CurrentVersion: '1.1' CurrentVersionCode: 2
Update CV of Timber${appNameSuffix} to 1.6 (20)
Categories: - Multimedia License: GPL-3.0-or-later SourceCode: https://github.com/fabmazz/Timber IssueTracker: https://github.com/fabmazz/Timber/issues Summary: Material Design Music Player Description: |- This app has been developed by naman14 and had been removed from F-Droid because of non-free dependencies. This is the pure FOSS fork of the app, where all these non-free dependecies have been removed. '''Features:''' * Material design * Browse Songs, Albums, Artists * Create and edit playlists * 6 different now playing styles * Homescreen widgets * Browse device folders * Dark theme and UI customisability * Gestures for track switching * LastFM scrobble * Android Wear and Android Auto support * Playing queue in notification (Xposed) * Lyrics support RepoType: git Repo: https://github.com/fabmazz/Timber Builds: - versionName: '1.6' versionCode: 20 commit: v1.6 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags
Categories: - Multimedia License: GPL-3.0-or-later SourceCode: https://github.com/fabmazz/Timber IssueTracker: https://github.com/fabmazz/Timber/issues AutoName: Timber${appNameSuffix} Summary: Material Design Music Player Description: |- This app has been developed by naman14 and had been removed from F-Droid because of non-free dependencies. This is the pure FOSS fork of the app, where all these non-free dependecies have been removed. '''Features:''' * Material design * Browse Songs, Albums, Artists * Create and edit playlists * 6 different now playing styles * Homescreen widgets * Browse device folders * Dark theme and UI customisability * Gestures for track switching * LastFM scrobble * Android Wear and Android Auto support * Playing queue in notification (Xposed) * Lyrics support RepoType: git Repo: https://github.com/fabmazz/Timber Builds: - versionName: '1.6' versionCode: 20 commit: v1.6 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.6' CurrentVersionCode: 20
Switch to testing via Travis CI on c5 machines
--- driver: name: ec2 aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %> security_group_ids: - ci-testing instance_type: c3.large interface: public tags: Env: public Type: test created-by: test-kitchen Operator: <%= ENV['USER'] %> transport: name: sftp ssh_key: <%= ENV['EC2_SSH_KEY_PATH'] %> provisioner: name: chef_zero platforms: - name: ubuntu-14.04 driver: Name: exhibitor-ubuntu-1404 - name: ubuntu-16.04 driver: Name: exhibitor-ubuntu-1604 - name: centos-6 driver: Name: exhibitor-centos-6 - name: centos-7 driver: Name: exhibitor-centos-6 suites: - name: default run_list: - recipe[exhibitor::default] - recipe[exhibitor::service] - name: upstart run_list: - recipe[exhibitor::default] - recipe[exhibitor::service] attributes: exhibitor: service_style: upstart excludes: - centos-6 - name: maven run_list: - recipe[exhibitor::default] - recipe[exhibitor::service] attributes: exhibitor: install_method: maven
--- driver: name: ec2 aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %> security_group_ids: - ci-testing instance_type: c5.large interface: public tags: Env: public Type: test created-by: test-kitchen Operator: <%= ENV['USER'] %> transport: name: sftp ssh_key: <%= ENV['EC2_SSH_KEY_PATH'] %> provisioner: name: chef_zero platforms: - name: ubuntu-14.04 driver: Name: exhibitor-ubuntu-1404 - name: ubuntu-16.04 driver: Name: exhibitor-ubuntu-1604 - name: centos-6 driver: Name: exhibitor-centos-6 - name: centos-7 driver: Name: exhibitor-centos-6 suites: - name: default run_list: - recipe[exhibitor::default] - recipe[exhibitor::service] - name: upstart run_list: - recipe[exhibitor::default] - recipe[exhibitor::service] attributes: exhibitor: service_style: upstart excludes: - centos-6 - name: maven run_list: - recipe[exhibitor::default] - recipe[exhibitor::service] attributes: exhibitor: install_method: maven
Update from Hackage at 2016-03-09T00:20:50+0000
homepage: https://github.com/Teaspot-Studio/gore-and-ash changelog-type: '' hash: f5f3d33b03349f99a1786602e2042b46196cb39ae044e48fa3bbce028b837051 test-bench-deps: {} maintainer: ncrashed@gmail.com synopsis: Core of FRP game engine called Gore&Ash changelog: '' basic-deps: exceptions: ! '>=0.8.0.2' base: ! '>=4.7 && <5' time: ! '>=1.5.0.1' unordered-containers: ! '>=0.2.5.1' semigroups: ! '>=0.15' containers: ! '>=0.5.6.2' linear: ! '>=1.20.3' mtl: ! '>=2.2' hashable: ! '>=1.2.3.3' transformers: ! '>=0.4' random: ! '>=1.1' parallel: ! '>=3.2' deepseq: ! '>=1.4' profunctors: ! '>=4.3' all-versions: - '1.1.0.1' - '1.2.0.0' author: Anton Gushcha, Levon Oganyan latest: '1.2.0.0' description-type: haddock description: Please see README.md license-name: BSD3
homepage: https://github.com/Teaspot-Studio/gore-and-ash changelog-type: '' hash: ebbece87308317fdc83a6ecf1737ff3ebc2c716378af862ac1e45e9a5689c624 test-bench-deps: {} maintainer: ncrashed@gmail.com synopsis: Core of FRP game engine called Gore&Ash changelog: '' basic-deps: exceptions: ! '>=0.8.0.2' base: ! '>=4.7 && <5' time: ! '>=1.5.0.1' unordered-containers: ! '>=0.2.5.1' semigroups: ! '>=0.15' containers: ! '>=0.5.6.2' linear: ! '>=1.20.3' mtl: ! '>=2.2' hashable: ! '>=1.2.3.3' transformers: ! '>=0.4' random: ! '>=1.1' parallel: ! '>=3.2' deepseq: ! '>=1.4' profunctors: ! '>=4.3' all-versions: - '1.1.0.1' - '1.2.0.0' - '1.2.1.0' author: Anton Gushcha, Levon Oganyan latest: '1.2.1.0' description-type: haddock description: Please see README.md license-name: BSD3
Update from Hackage at 2017-04-16T19:54:48Z
homepage: https://github.com/minad/wl-pprint-console#readme changelog-type: '' hash: 673ab31afef9ea36533c11b315bbd58dde28ffbbecf09b7646735ceb8b008844 test-bench-deps: {} maintainer: Daniel Mendler <mail@daniel-mendler.de> synopsis: Wadler/Leijen pretty printer supporting colorful console output. changelog: '' basic-deps: bytestring: ! '>=0.10.2 && <0.11' colorful-monoids: ! '>=0.2 && <0.3' base: ! '>=4.8 && <5' text: ! '>=0.11 && <1.3' wl-pprint-annotated: ! '>=0.0.1.2 && <0.0.2' all-versions: - '0.0.1.0' - '0.0.1.1' - '0.0.1.2' - '0.1.0.0' - '0.1.0.1' author: Daniel Mendler <mail@daniel-mendler.de> latest: '0.1.0.1' description-type: haddock description: Wadler/Leijen pretty printer with support for annotations and colorful console output. Additional useful display routines are provided, e.g, for HTML output. license-name: MIT
homepage: https://github.com/minad/wl-pprint-console#readme changelog-type: '' hash: 45b92029f969643191e9902ad781b63781d80ea857bb8d7f9763c35aa6948bd6 test-bench-deps: {} maintainer: Daniel Mendler <mail@daniel-mendler.de> synopsis: Wadler/Leijen pretty printer supporting colorful console output. changelog: '' basic-deps: bytestring: ! '>=0.10.2 && <0.11' colorful-monoids: ! '>=0.2 && <0.3' base: ! '>=4.8 && <5' text: ! '>=0.11 && <1.3' wl-pprint-annotated: ! '>=0.0.1.2 && <0.2' all-versions: - '0.0.1.0' - '0.0.1.1' - '0.0.1.2' - '0.1.0.0' - '0.1.0.1' author: Daniel Mendler <mail@daniel-mendler.de> latest: '0.1.0.1' description-type: haddock description: Wadler/Leijen pretty printer with support for annotations and colorful console output. Additional useful display routines are provided, e.g, for HTML output. license-name: MIT
Add task to upgrade bash
--- - name: install libselinux-python to handle files sudo: yes yum: name: libselinux-python state: latest - name: update OpenSSL to avoid Heartbleed sudo: yes yum: name: openssl-1.0.1e-30.el6_6.2.x86_64 state: present
--- - name: install libselinux-python to handle files sudo: yes yum: name: libselinux-python state: latest - name: update OpenSSL to avoid Heartbleed sudo: yes yum: name: openssl-1.0.1e-30.el6_6.2.x86_64 state: present - name: update bash to avoid Shellshock sudo: yes yum: name: bash-4.1.2-29.el6.x86_64 state: present
Add support for responsive asset uploads
backend: name: github repo: simonyiszk/mvk-web branch: master media_folder: static/images/uploads public_folder: /images/uploads collections: - name: news label: News folder: src/pages/news create: true slug: "{{year}}-{{month}}-{{day}}-{{slug}}" fields: - {label: "Title", name: "title", widget: "string"} - {label: "Draft", name: "draft", widget: "boolean"} - {label: "Publish Date", name: "date", widget: "datetime"} - {label: "Featured Image", name: "thumbnail", widget: "image", required: false} - {label: "Excerpt", name: "excerpt", widget: "text", required: false} - {label: "Body", name: "body", widget: "markdown"} - name: teams label: Teams folder: src/pages/teams create: true fields: - {label: "Title", name: "title", widget: "string"} - {label: "Draft", name: "draft", widget: "boolean"} - {label: "E-mail", name: "email", widget: "string", required: false} - {label: "Color", name: "color", widget: "image", required: false} - {label: "Featured Image", name: "thumbnail", widget: "image", required: false} - {label: "Excerpt", name: "excerpt", widget: "text", required: false} - {label: "Body", name: "body", widget: "markdown"}
backend: name: github repo: simonyiszk/mvk-web branch: master media_folder: src/assets/uploads public_folder: /assets/uploads collections: - name: news label: News folder: src/pages/news create: true slug: "{{year}}-{{month}}-{{day}}-{{slug}}" fields: - {label: "Title", name: "title", widget: "string"} - {label: "Draft", name: "draft", widget: "boolean"} - {label: "Publish Date", name: "date", widget: "datetime"} - {label: "Featured Image", name: "thumbnail", widget: "image", required: false} - {label: "Excerpt", name: "excerpt", widget: "text", required: false} - {label: "Body", name: "body", widget: "markdown"} - name: teams label: Teams folder: src/pages/teams create: true fields: - {label: "Title", name: "title", widget: "string"} - {label: "Draft", name: "draft", widget: "boolean"} - {label: "E-mail", name: "email", widget: "string", required: false} - {label: "Color", name: "color", widget: "image", required: false} - {label: "Featured Image", name: "thumbnail", widget: "image", required: false} - {label: "Excerpt", name: "excerpt", widget: "text", required: false} - {label: "Body", name: "body", widget: "markdown"}
Update from Hackage at 2021-11-23T00:30:36Z
homepage: '' changelog-type: '' hash: 732e60572a352de3387b2bc809db10a99b6b30e73d80b81233aedb62c9a03101 test-bench-deps: base: -any filepath: -any hls-test-utils: '>=1.0 && <1.2' hls-rename-plugin: -any maintainer: madine.oliver@gmail.com synopsis: Rename plugin for Haskell Language Server changelog: '' basic-deps: ghc: -any lsp: -any extra: -any hiedb: -any base: '>=4.12 && <5' text: -any syb: -any ghc-exactprint: -any hls-retrie-plugin: '>=1.0.1.1' containers: -any ghcide: '>=1.4 && <1.5' transformers: -any hls-plugin-api: ^>=1.2 lsp-types: -any all-versions: - 1.0.0.0 author: Oliver Madine latest: 1.0.0.0 description-type: haddock description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme> license-name: Apache-2.0
homepage: '' changelog-type: '' hash: d815063deae2cb0ef84ab7a82d7e09b3fbe3d9c94db9bb43e59b0e533e2e78a4 test-bench-deps: base: -any filepath: -any hls-test-utils: '>=1.0 && <1.2' hls-rename-plugin: -any maintainer: madine.oliver@gmail.com synopsis: Rename plugin for Haskell Language Server changelog: '' basic-deps: ghc: -any lsp: -any extra: -any hiedb: -any base: '>=4.12 && <5' text: -any syb: -any ghc-exactprint: -any hls-retrie-plugin: '>=1.0.1.1' containers: -any ghcide: '>=1.4 && <1.6' transformers: -any hls-plugin-api: ^>=1.2 lsp-types: -any all-versions: - 1.0.0.0 author: Oliver Madine latest: 1.0.0.0 description-type: haddock description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme> license-name: Apache-2.0
Add semicolon error rule for eslint
ecmaVersion: 6 extends: airbnb installedESLint: true plugins: - react - jsx-a11y - import globals: atom: true
env: es6: true node: true extends: 'eslint:recommended' globals: atom: true rules: semi: - error - always
Add 6 cells to London, bringing it to 102
--- uaa_instances: 3 nats_instances: 3 diego_api_instances: 3 cell_instances: 96 router_instances: 15 api_instances: 12 doppler_instances: 39 log_api_instances: 18 scheduler_instances: 4 cc_worker_instances: 4 cc_hourly_rate_limit: 20000 cc_staging_timeout_in_seconds: 2700 paas_region_name: london prometheus_disk_size: 750GB prometheus_retention_size: 700GB
--- uaa_instances: 3 nats_instances: 3 diego_api_instances: 3 cell_instances: 102 router_instances: 15 api_instances: 12 doppler_instances: 39 log_api_instances: 18 scheduler_instances: 4 cc_worker_instances: 4 cc_hourly_rate_limit: 20000 cc_staging_timeout_in_seconds: 2700 paas_region_name: london prometheus_disk_size: 750GB prometheus_retention_size: 700GB
Add code coverage for Scrutinizer
build: dependencies: before: - find . -delete - git clone https://github.com/octobercms/october.git . - composer self-update - composer install --no-interaction --prefer-source - mkdir -p ./plugins/vojtasvoboda/cnbrates - cd plugins/vojtasvoboda/cnbrates - git clone https://github.com/vojtasvoboda/oc-cnbrates-plugin.git . - composer install
build: dependencies: before: - find . -delete - git clone https://github.com/octobercms/october.git . - composer self-update - composer install --no-interaction --prefer-source - mkdir -p ./plugins/vojtasvoboda/cnbrates - cd plugins/vojtasvoboda/cnbrates - git clone https://github.com/vojtasvoboda/oc-cnbrates-plugin.git . - composer install build: tests: override: - command: 'phpunit --coverage-clover=coverage' coverage: file: 'coverage' format: 'php-clover'
Add post request for prebuild action
name: Create Prebuild on: workflow_dispatch: schedule: - cron: '0 0 * * *' jobs: createPrebuild: runs-on: ubuntu-latest steps: - id: create-prebuild-production run: | $splat = @{ ErrorAction = 'Stop' Uri = 'https://api.github.com/vscs_internal/user/vscode-triage-bot/codespaces/prebuild' Headers = @{ 'Content-Type' = 'application/json; charset=utf-8' 'Authorization' = 'token ${{ secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT }}' } Body = @{ ref = 'main' repository_id = 41881900 location = 'WestUs2' vscs_target = 'production' } | ConvertTo-Json } Invoke-RestMethod @splat shell: pwsh
name: Create Prebuild on: workflow_dispatch: schedule: - cron: '0 0 * * *' jobs: createPrebuild: runs-on: ubuntu-latest steps: - id: create-prebuild-production run: | $splat = @{ ErrorAction = 'Stop' Uri = 'https://api.github.com/vscs_internal/user/vscode-triage-bot/codespaces/prebuild' Method = 'POST' Headers = @{ 'Content-Type' = 'application/json; charset=utf-8' 'Authorization' = 'token ${{ secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT }}' } Body = @{ ref = 'main' repository_id = 41881900 location = 'WestUs2' vscs_target = 'production' } | ConvertTo-Json } Invoke-RestMethod @splat shell: pwsh
Update from Hackage at 2016-12-10T11:40:11Z
homepage: https://github.com/ciez/conf-json changelog-type: markdown hash: d91d00eae3cb78d2afed77c013ebc8dc7f185b2bfa2d12cc0cd0ea6f1531c1cd test-bench-deps: bytestring: -any base: ! '>=4.8' hspec: ! '>=2.1.7' conf-json: -any binary: -any QuickCheck: ! '>=2.8.1' aeson: -any directory: -any maintainer: Imants Cekusins synopsis: read, parse json config changelog: ! "##### 1.1\n include test-conf.json\n\n##### 1.0\n initial version\n \n test pass \n " basic-deps: bytestring: -any base: ! '>=4.8 && <5.0' aeson: -any directory: -any all-versions: - '1.0' - '1.1' author: Imants Cekusins latest: '1.1' description-type: haddock description: read, parse json config to a Haskell type license-name: PublicDomain
homepage: https://github.com/ciez/conf-json changelog-type: markdown hash: c72972481be53c7bd4eab25246d5872051d1e05414842c34c372230ffb9fa499 test-bench-deps: bytestring: -any base: ! '>=4.8' hspec: ! '>=2.1.7' conf-json: -any binary: -any QuickCheck: ! '>=2.8.1' aeson: -any directory: -any maintainer: Imants Cekusins synopsis: read, parse json config changelog: ! "##### 1.1\n include test-conf.json\n\n##### 1.0\n initial version\n \n test pass \n " basic-deps: bytestring: ! '>=0.10.8 && <0.11' base: ! '>=4.8 && <5.0' aeson: ! '>=1.0.2 && <1.1' directory: ! '>=1.2.6 && <1.3' all-versions: - '1.0' - '1.1' author: Imants Cekusins latest: '1.1' description-type: haddock description: read, parse json config to a Haskell type license-name: PublicDomain
Update from Hackage at 2016-10-11T05:07:06+00:00
homepage: http://github.com/slpopejoy/fadno-xml changelog-type: '' hash: 2000963acf6517eda8ba494256fcff9483c7ea8f35375b0f7680104253571899 test-bench-deps: {} maintainer: spopejoy@panix.com synopsis: XML/XSD combinators/schemas/codegen changelog: '' basic-deps: base: ! '>=4.8 && <4.9' parsec: ! '>=3.1.9 && <3.2' xml: ! '>=1.3.12 && <1.4' containers: ! '>=0.5.6 && <0.6' lens: ! '>=4.12 && <5' mtl: ! '>=2.2.1 && <2.3' Decimal: ! '>=0.4.2 && <0.5' all-versions: - '1.0.1' author: Stuart Popejoy latest: '1.0.1' description-type: haddock description: ! 'Library for generating code from XML schema files, with MusicXml 2.0 schema library included. Includes XML "combinator library" XParser for consuming xml, a type model for XSD productions, a type model for codegen, and the code generator.' license-name: BSD2
homepage: http://github.com/slpopejoy/fadno-xml changelog-type: '' hash: b4667ae58a0b84cdf5588657ad73218ac7023be4401e2bf1590184ae0e82ffa7 test-bench-deps: {} maintainer: spopejoy@panix.com synopsis: XML/XSD combinators/schemas/codegen changelog: '' basic-deps: base: ! '>=4.8 && <4.10' parsec: ! '>=3.1.9 && <3.2' xml: ! '>=1.3.12 && <1.4' containers: ! '>=0.5.6 && <0.6' lens: ! '>=4.12 && <4.15' mtl: ! '>=2.2.1 && <2.3' Decimal: ! '>=0.4.2 && <0.5' all-versions: - '1.0.1' - '1.0.3' author: Stuart Popejoy latest: '1.0.3' description-type: haddock description: ! 'Library for generating code from XML schema files, with MusicXml 2.0 schema library included. Includes XML "combinator library" XParser for consuming xml, a type model for XSD productions, a type model for codegen, and the code generator.' license-name: BSD2
Update Powershell to latest binary name and syntax
- name: Install Microsoft .NET Core homebrew_cask: name=dotnet - name: Install Microsoft PowerShell homebrew_cask: name=powershell - name: Azure RM NetCore Module Install command: powershell Install-Module AzureRM.NetCore.Preview -Force -Scope CurrentUser - name: Azure RM NetCore Module Import command: powershell Import-Module AzureRM.NetCore.Preview
- name: Install Microsoft .NET Core homebrew_cask: name=dotnet - name: Install Microsoft PowerShell homebrew_cask: name=powershell - name: Install Rollup Module for ARM Cmdlets command: pwsh -c "{Install-Module AzureRM}" - name: Import Rollup Module for ARM Cmdlets command: pwsh -c "{Import-Module AzureRM}" - name: Install Rollup Module for .NET Core Cmdlets command: pwsh -c "{Install-Module AzureRM.NetCore}" - name: Import Rollup Module for .NET Core Cmdlets command: pwsh -c "{Import-Module AzureRM.NetCore}"
Fix twig extension class name
services: # Search Engine iakumai.sphinxsearch.search: class: %iakumai.sphinxsearch.search.class% file: %iakumai.sphinxsearch.sphinx_api.file% arguments: - %iakumai.sphinxsearch.searchd.host% - %iakumai.sphinxsearch.searchd.port% - %iakumai.sphinxsearch.searchd.socket% calls: - [setBridge, [@iakumai.sphinxsearch.doctrine.bridge]] # Doctrine Bridge iakumai.sphinxsearch.doctrine.bridge: class: %iakumai.sphinxsearch.doctrine.bridge.class% arguments: [@service_container, %iakumai.sphinxsearch.doctrine.entity_manager%, %iakumai.sphinxsearch.indexes%] # Twig extension iakumai.sphinxsearch.twig.extension_0: class: IAkumaI\SphinxsearchBundle\Twig\SphinxsearchExtension arguments: [@iakumai.sphinxsearch.search] tags: - {name: twig.extension}
services: # Search Engine iakumai.sphinxsearch.search: class: %iakumai.sphinxsearch.search.class% file: %iakumai.sphinxsearch.sphinx_api.file% arguments: - %iakumai.sphinxsearch.searchd.host% - %iakumai.sphinxsearch.searchd.port% - %iakumai.sphinxsearch.searchd.socket% calls: - [setBridge, [@iakumai.sphinxsearch.doctrine.bridge]] # Doctrine Bridge iakumai.sphinxsearch.doctrine.bridge: class: %iakumai.sphinxsearch.doctrine.bridge.class% arguments: [@service_container, %iakumai.sphinxsearch.doctrine.entity_manager%, %iakumai.sphinxsearch.indexes%] # Twig extension iakumai.sphinxsearch.twig.extension_0: <<<<<<< HEAD class: IAkumaI\SphinxsearchBundle\Twig\SphinxsearchExtension ======= class: IAkumaI\SphinxsearchBundle\SphinxsearchExtension >>>>>>> a5f7a06871b698dd4ee9194ff999fc9a92e05262 arguments: [@iakumai.sphinxsearch.search] tags: - {name: twig.extension}
Update CV of FakeGapps to 1.1 (2)
Categories: - System License: GPL-3.0-only SourceCode: https://github.com/thermatk/FakeGApps IssueTracker: https://github.com/thermatk/FakeGApps/issues Changelog: https://github.com/thermatk/FakeGApps/releases LiberapayID: '27901' AutoName: FakeGapps Description: |- '''XPosed Module''', get [[de.robv.android.xposed.installer]]. This module has to be used in combinaton with µg GmsCore to enable Google Cloud Messaging (GCM), location services and more. Install latest GmsCore, FakeStore(or Blankstore) and this module, dial in your phone app *#*#CHECKIN#*#* to register GCM and start using your Gapps-free device as usual. For additional information visit the Github Source code page. RepoType: git Repo: https://github.com/thermatk/FakeGApps.git Builds: - versionName: '2.0' versionCode: 3 commit: b7e1228e86be6a5a97916c57dd2f493781f35233 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '2.0' CurrentVersionCode: 3
Categories: - System License: GPL-3.0-only SourceCode: https://github.com/thermatk/FakeGApps IssueTracker: https://github.com/thermatk/FakeGApps/issues Changelog: https://github.com/thermatk/FakeGApps/releases LiberapayID: '27901' AutoName: FakeGapps Description: |- '''XPosed Module''', get [[de.robv.android.xposed.installer]]. This module has to be used in combinaton with µg GmsCore to enable Google Cloud Messaging (GCM), location services and more. Install latest GmsCore, FakeStore(or Blankstore) and this module, dial in your phone app *#*#CHECKIN#*#* to register GCM and start using your Gapps-free device as usual. For additional information visit the Github Source code page. RepoType: git Repo: https://github.com/thermatk/FakeGApps.git Builds: - versionName: '2.0' versionCode: 3 commit: b7e1228e86be6a5a97916c57dd2f493781f35233 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.1' CurrentVersionCode: 2
Revert to use latest MR release
version: '3.6' services: cocoa-maze-runner: image: 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:add-more-devices-cli command: ["--tags", "not @skip"] environment: APP_LOCATION: /app/build/iOSTestApp.ipa BROWSER_STACK_USERNAME: BROWSER_STACK_ACCESS_KEY: BROWSER_STACK_LOCAL_IDENTIFIER: ${BUILDKITE_JOB_ID:-maze-runner} DEBUG: DEVICE_TYPE: ${DEVICE_TYPE:-IOS_13} VERBOSE: volumes: - ./features/fixtures/ios-swift-cocoapods/output:/app/build - ./features/:/app/features/
version: '3.6' services: cocoa-maze-runner: image: 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:latest-v2-cli command: ["--tags", "not @skip"] environment: APP_LOCATION: /app/build/iOSTestApp.ipa BROWSER_STACK_USERNAME: BROWSER_STACK_ACCESS_KEY: BROWSER_STACK_LOCAL_IDENTIFIER: ${BUILDKITE_JOB_ID:-maze-runner} DEBUG: DEVICE_TYPE: ${DEVICE_TYPE:-IOS_13} VERBOSE: volumes: - ./features/fixtures/ios-swift-cocoapods/output:/app/build - ./features/:/app/features/
Update from Hackage at 2019-05-20T20:46:49Z
homepage: http://hspec.github.io/ changelog-type: '' hash: d41ebaf2f80c6ae149a944cd77e31fce98c0eea45cf47a561c5c25d48e03107f test-bench-deps: {} maintainer: Simon Hengel <sol@typeful.net> synopsis: Alpha version of Hspec 2.0 changelog: '' basic-deps: base: ==4.* hspec: ==2.* hspec-discover: ==2.* all-versions: - 0.0.0 - 0.0.1 - 0.1.0 - 0.1.1 - 0.2.0 - 0.2.1 - 0.3.0 - 0.3.1 - 0.3.2 - 0.3.3 - 0.3.4 - 0.4.0 - 0.4.1 - 0.4.2 - 0.5.0 - 0.5.1 - 0.6.0 - 0.6.1 author: '' latest: 0.6.1 description-type: haddock description: ! 'This is an alpha release of Hspec 2.0. If you are looking for a stable solution for testing Haskell code, use the 1.x series of Hspec: <http://hspec.github.io/>' license-name: MIT
homepage: http://hspec.github.io/ changelog-type: '' hash: 7200bea6db0946b6e101646426710aa22e4a2998c2b128d340f0c4f95ee017e0 test-bench-deps: {} maintainer: Simon Hengel <sol@typeful.net> synopsis: Alpha version of Hspec 2.0 changelog: '' basic-deps: base: ==4.* hspec: ! '>=2 && <2.6' hspec-discover: ==2.* all-versions: - 0.0.0 - 0.0.1 - 0.1.0 - 0.1.1 - 0.2.0 - 0.2.1 - 0.3.0 - 0.3.1 - 0.3.2 - 0.3.3 - 0.3.4 - 0.4.0 - 0.4.1 - 0.4.2 - 0.5.0 - 0.5.1 - 0.6.0 - 0.6.1 author: '' latest: 0.6.1 description-type: haddock description: |- This is an alpha release of Hspec 2.0. If you are looking for a stable solution for testing Haskell code, use the 1.x series of Hspec: <http://hspec.github.io/> license-name: MIT
Fix line ending to be unix instead of dos
--- # Copyright 2015, Jean-Philippe Evrard <jean-philippe@evrard.me> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. galaxy_info: author: Jean-Philippe Evrard description: This role installs and configure keepalived based on a variable file license: Apache min_ansible_version: 2.4 platforms: - name: EL versions: - 7 - 8 - name: Ubuntu versions: - trusty - xenial - name: opensuse versions: - all - name: Debian versions: - stretch galaxy_tags: - clustering dependencies: []
--- # Copyright 2015, Jean-Philippe Evrard <jean-philippe@evrard.me> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. galaxy_info: author: Jean-Philippe Evrard description: This role installs and configure keepalived based on a variable file license: Apache min_ansible_version: 2.4 platforms: - name: EL versions: - 7 - 8 - name: Ubuntu versions: - trusty - xenial - name: opensuse versions: - all - name: Debian versions: - stretch galaxy_tags: - clustering dependencies: []
Improve the example config yaml.
--- daemonize: false pidfile: ~/.cognizant/cognizantd.pid logfile: ~/.cognizant/cognizantd.log socket: ~/.cognizant/cognizantd.sock pids_dir: ~/.cognizant/pids/ logs_dir: ~/.cognizant/logs/ monitor: { redis-server-1: { start_command: /usr/local/bin/redis-server -, start_with_input: "daemonize no\nport 6666", ping_command: redis-cli --port 6666 PING }, redis-server-2: { start_command: /usr/local/bin/redis-server -, start_with_input: "daemonize no\nport 7777", ping_command: redis-cli --port 7777 PING }, sleep-10: { start_command: sleep 10 } }
--- daemonize: false pidfile: ~/.cognizant/cognizantd.pid logfile: ~/.cognizant/cognizantd.log socket: ~/.cognizant/cognizantd.sock pids_dir: ~/.cognizant/pids/ logs_dir: ~/.cognizant/logs/ monitor: { redis-server-1: { group: redis, start_command: /usr/local/bin/redis-server -, start_with_input: "daemonize no\nport 6666", ping_command: redis-cli -p 6666 PING, stop_signals: [TERM, INT] }, redis-server-2: { group: redis, start_command: /usr/local/bin/redis-server -, start_with_input: "daemonize no\nport 7777", ping_command: redis-cli -p 7777 PING }, sleep-10: { start_command: sleep 10 } }
Update from Hackage at 2018-04-14T05:09:38Z
homepage: '' changelog-type: '' hash: 67b2dede49482e2765d1248d23f7271884f1cc9cff8a41f40d5dedcfd23c47ba test-bench-deps: {} maintainer: Bardur Arantsson <bardur@scientician.net> synopsis: Data.Pool generalized to MonadUnliftIO. changelog: '' basic-deps: base: ! '>=4.10 && <4.11' time: ! '>=1.8 && <2' resource-pool: ! '>=0.2.3.2 && <0.3' unliftio-core: ! '>=0.1.1 && <0.2' transformers: ! '>=0.5 && <0.6' all-versions: - '0.1.0.0' author: Bardur Arantsson latest: '0.1.0.0' description-type: haddock description: This is a generalization of Data.Pool to MonadUnliftIO. license-name: BSD3
homepage: '' changelog-type: '' hash: c822807443ddcc21f4fd233e642f2e8c89b67842268844bddf9d04df86585df9 test-bench-deps: {} maintainer: Bardur Arantsson <bardur@scientician.net> synopsis: Data.Pool generalized to MonadUnliftIO. changelog: '' basic-deps: base: ! '>=4.10 && <4.11' time: ! '>=1.8 && <2' resource-pool: ! '>=0.2.3.2 && <0.3' unliftio-core: ! '>=0.1.1 && <0.2' transformers: ! '>=0.5 && <0.6' all-versions: - '0.1.0.0' - '0.1.0.1' author: Bardur Arantsson latest: '0.1.0.1' description-type: haddock description: This is a generalization of Data.Pool to MonadUnliftIO. license-name: BSD3
Add make test to circleci
# CircleCI 2.0 configuration file. See <https://circleci.com/docs/2.0/language-python/>. version: 2 jobs: build: docker: - image: python:3.7 steps: - checkout - restore_cache: key: dependency-cache-{{ checksum "requirements.txt" }} - run: name: Create a virtualenv command: | mkdir -p /tmp/venv/openfisca_doc python -m venv /tmp/venv/openfisca_doc echo "source /tmp/venv/openfisca_doc/bin/activate" >> $BASH_ENV - run: name: Install doc dependencies command: make install - save_cache: key: dependency-cache-{{ checksum "requirements.txt" }} paths: - /tmp/venv/openfisca_doc - run: name: Build doc command: make build - run: name: Serve doc command: make prod background: true - run: name: Check for internal dead links command: wget --spider --recursive --page-requisites http://localhost:8000 - persist_to_workspace: root: . paths: - build deploy: docker: - image: python:3.7 steps: - checkout - attach_workspace: at: . - run: name: Publish openfisca.org/doc command: ./publish.sh workflows: version: 2 build: jobs: - build - deploy: requires: - build filters: branches: only: master
# CircleCI 2.0 configuration file. See <https://circleci.com/docs/2.0/language-python/>. version: 2 jobs: build: docker: - image: python:3.7 steps: - checkout - restore_cache: key: dependency-cache-{{ checksum "requirements.txt" }} - run: name: Create a virtualenv command: | mkdir -p /tmp/venv/openfisca_doc python -m venv /tmp/venv/openfisca_doc echo "source /tmp/venv/openfisca_doc/bin/activate" >> $BASH_ENV - run: name: Install doc dependencies command: make install - save_cache: key: dependency-cache-{{ checksum "requirements.txt" }} paths: - /tmp/venv/openfisca_doc - run: name: Test doc command: make test - run: name: Build doc command: make build - run: name: Serve doc command: make prod background: true - run: name: Check for internal dead links command: wget --spider --recursive --page-requisites http://localhost:8000 - persist_to_workspace: root: . paths: - build deploy: docker: - image: python:3.7 steps: - checkout - attach_workspace: at: . - run: name: Publish openfisca.org/doc command: ./publish.sh workflows: version: 2 build: jobs: - build - deploy: requires: - build filters: branches: only: master
Update to latest versions of GitHub actions
name: Tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy2", "pypy3"] steps: - uses: actions/checkout@v2 - name: Use Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - run: pip install tox - run: make README - run: tox -e py
name: Tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy2.7", "pypy3.9"] steps: - uses: actions/checkout@v3 - name: Use Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - run: pip install tox - run: make README - run: tox -e py
Use a stable URL for jetty.
--- jetty_version: '9.3.8.v20160314' jetty_basename: 'jetty-distribution-{{ jetty_version }}' jetty_filename: '{{ jetty_basename }}.tar.gz' jetty_mirror: 'http://ftp.acc.umu.se/mirror/eclipse.org/jetty/stable-9/dist/{{ jetty_filename }}' jetty_checksum: 'fc4136c0abf8f86d99de1b11b3d2323bffda0d538a0f654bf741f5e84ea992bf' jetty_root: '/opt/jetty' jetty_temp: '{{ jetty_root }}/temp' jetty_apps: '{{ jetty_root }}/apps' jetty_install_dir: '{{ jetty_root }}/{{ jetty_basename }}' jetty_user: 'jetty' jetty_group: 'jetty' # Used as generics for container user elsewhere, and switching behavior based on containers servlet_container: 'jetty9' servlet_container_user: '{{ jetty_user }}' servlet_container_group: '{{ jetty_group }}'
--- jetty_version: '9.3.8.v20160314' jetty_basename: 'jetty-distribution-{{ jetty_version }}' jetty_filename: '{{ jetty_basename }}.tar.gz' jetty_mirror: 'http://ftp.acc.umu.se/mirror/eclipse.org/jetty/{{ jetty_version }}/dist/{{ jetty_filename }}' jetty_checksum: 'fc4136c0abf8f86d99de1b11b3d2323bffda0d538a0f654bf741f5e84ea992bf' jetty_root: '/opt/jetty' jetty_temp: '{{ jetty_root }}/temp' jetty_apps: '{{ jetty_root }}/apps' jetty_install_dir: '{{ jetty_root }}/{{ jetty_basename }}' jetty_user: 'jetty' jetty_group: 'jetty' # Used as generics for container user elsewhere, and switching behavior based on containers servlet_container: 'jetty9' servlet_container_user: '{{ jetty_user }}' servlet_container_group: '{{ jetty_group }}'
Fix bliss-automorphism license SPDX identifier
{% set version = "0.73.1" %} package: name: bliss-automorphism version: {{ version }} source: url: https://github.com/ds4dm/Bliss/archive/v{{ version }}.tar.gz sha256: 59425cf35d8da7db61e73674edb97bded0767485a24aa33836a1f3c08a017695 build: number: 0 skip: True # [win] requirements: build: &build-requirements - {{ compiler('c') }} - {{ compiler('cxx') }} - cmake >=3.14 - make test: requires: *build-requirements about: home: http://www.tcs.hut.fi/Software/bliss/ license: LGPL-3.0 license_file: COPYING.LESSER summary: A Tool for Computing Automorphism Groups and Canonical Labelings of Graphs extra: recipe-maintainers: - AntoinePrv
{% set version = "0.73.1" %} package: name: bliss-automorphism version: {{ version }} source: url: https://github.com/ds4dm/Bliss/archive/v{{ version }}.tar.gz sha256: 59425cf35d8da7db61e73674edb97bded0767485a24aa33836a1f3c08a017695 build: number: 0 skip: True # [win] requirements: build: &build-requirements - {{ compiler('c') }} - {{ compiler('cxx') }} - cmake >=3.14 - make test: requires: *build-requirements about: home: http://www.tcs.hut.fi/Software/bliss/ license: LGPL-3.0-only license_file: COPYING.LESSER summary: A Tool for Computing Automorphism Groups and Canonical Labelings of Graphs extra: recipe-maintainers: - AntoinePrv
Tidy up, just copy from the version folder in /usr/share instead of copying across the folder itself, just cleaner
--- - include: redhat.yml when: ansible_os_family == "RedHat" - include: debian.yml when: ansible_os_family == "Debian" - name: make easy-rsa directory file: path=/etc/easy-rsa state=directory mode=0770 tags: - ca - name: copy across easy-rsa scripts to our new home command: cp -r /usr/share/easy-rsa/* /etc/easy-rsa/ tags: - ca - name: copy across vars file template: src=vars.j2 dest=/etc/easy-rsa/{{ easy_rsa_ver }}/vars tags: - ca - config_files
--- - include: redhat.yml when: ansible_os_family == "RedHat" - include: debian.yml when: ansible_os_family == "Debian" - name: make easy-rsa directory file: path=/etc/easy-rsa state=directory mode=0770 register: easy_rsa_dir tags: - ca - name: copy across easy-rsa scripts to our new home command: "cp -r /usr/share/easy-rsa/{{ easy_rsa_ver }}/* /etc/easy-rsa/" when: easy_rsa_dir.stat.exists == False tags: - ca - name: copy across vars file template: src=vars.j2 dest=/etc/easy-rsa/vars tags: - ca - config_files
Add scikit-image to python39 test matrix
name: glymur channels: - conda-forge dependencies: - python=3.9.* - gdal - lxml - numpy - openjpeg
name: glymur channels: - conda-forge dependencies: - python=3.9.* - gdal - lxml - numpy - openjpeg - scikit-image
Add node v16 to CI environments
name: CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: node: [10, 12, 14] name: Node ${{ matrix.node }} steps: - uses: actions/checkout@master - name: Use Node.js uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - name: Install dependencies run: npm install - name: Run tests run: npm test timeout-minutes: 20 - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: ./build/lcov.info parallel: true coverage: needs: build runs-on: ubuntu-latest steps: - name: Coveralls Finished uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true
name: CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: node: [10, 12, 14, 16] name: Node ${{ matrix.node }} steps: - uses: actions/checkout@master - name: Use Node.js uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - name: Install dependencies run: npm install - name: Run tests run: npm test timeout-minutes: 20 - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: ./build/lcov.info parallel: true coverage: needs: build runs-on: ubuntu-latest steps: - name: Coveralls Finished uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true
Update from Hackage at 2017-11-03T04:04:03Z
homepage: https://github.com/schell/gelatin changelog-type: '' hash: 8605a20120555f89822c577ef016f29fc88176a11b103b299f6c610d567b0f70 test-bench-deps: {} maintainer: schell@takt.com synopsis: A graphics description language. changelog: '' basic-deps: bytestring: ! '>=0.10 && <0.11' base: ! '>=4.8 && <4.11' containers: ! '>=0.5 && <0.6' gelatin: -any lens: ! '>=4.14 && <4.16' linear: ==1.20.* mtl: ==2.2.* transformers: ! '>=0.4 && <0.6' vector: ==0.12.* all-versions: - '0.0.0.0' - '0.0.0.2' - '0.0.0.3' - '0.1.0.0' author: Schell Scivally latest: '0.1.0.0' description-type: haddock description: An EDSL for describing pictures and scenes. license-name: MIT
homepage: https://github.com/schell/gelatin changelog-type: '' hash: 46c06c15fb2e61e5b741b9e9f8106d7018a2a98d04456fbe131d317394a7abd6 test-bench-deps: {} maintainer: schell@takt.com synopsis: A graphics description language. changelog: '' basic-deps: bytestring: ! '>=0.10 && <0.11' base: ! '>=4.8 && <4.11' containers: ! '>=0.5 && <0.6' gelatin: -any lens: ! '>=4.14 && <4.16' linear: ==1.20.* mtl: ==2.2.* transformers: ! '>=0.4 && <0.6' vector: ==0.12.* all-versions: - '0.0.0.0' - '0.0.0.2' - '0.0.0.3' - '0.1.0.0' - '0.1.0.1' author: Schell Scivally latest: '0.1.0.1' description-type: haddock description: An EDSL for describing pictures and scenes. license-name: MIT
Update from Hackage at 2021-12-25T16:53:00Z
homepage: https://github.com/emilaxelsson/hzenity changelog-type: '' hash: 5bf5c289a9c25b9fa07471e32409020d784f2cba7bc6eb23e204b5f1b6fa6785 test-bench-deps: {} maintainer: 78emil@gmail.com synopsis: Haskell interface to Zenity dialogs changelog: '' basic-deps: process-extras: <0.8 base: <5 time: <1.12 text: <1.3 process: <1.7 data-default: <0.8 containers: <0.7 all-versions: - '0.1' - '0.2' - 0.2.1 - '0.3' - '0.4' author: Emil Axelsson latest: '0.4' description-type: haddock description: |- This is a Haskell wrapper around the <https://en.wikipedia.org/wiki/Zenity Zenity> dialog program. Examples can be found in the <https://github.com/emilaxelsson/hzenity/tree/master/examples examples/> directory. license-name: BSD-3-Clause
homepage: https://github.com/emilaxelsson/hzenity changelog-type: '' hash: 394b5ce16c22cd43fadaa6043a3c41122ebf7c2ae84dc34ca23506d54f284f27 test-bench-deps: {} maintainer: 78emil@gmail.com synopsis: Haskell interface to Zenity dialogs changelog: '' basic-deps: process-extras: <0.8 base: <5 time: <1.13 text: <2.1 process: <1.7 data-default: <0.8 containers: <0.7 all-versions: - '0.1' - '0.2' - 0.2.1 - '0.3' - '0.4' - 0.4.1 author: Emil Axelsson latest: 0.4.1 description-type: haddock description: |- This is a Haskell wrapper around the <https://en.wikipedia.org/wiki/Zenity Zenity> dialog program. Examples can be found in the <https://github.com/emilaxelsson/hzenity/tree/master/examples examples/> directory. license-name: BSD-3-Clause
Add redirect for elasticsearch page
dictionary.html: manual/dictionary.html guides.html: manual.html opsmanual.html: manual.html opsmanual/ab_testing.html: manual/ab-testing.html opsmanual/content-preview.html: manual/content-preview.html opsmanual/dictionary.html: manual/dictionary.html opsmanual/emergency-publishing.html: manual/emergency-publishing.html opsmanual/github.html: manual/github.html opsmanual/keeping-software-current.html: manual/keeping-software-current.html opsmanual/kibana.html: manual/kibana.html opsmanual/screens.html: manual/screens.html opsmanual/taxonomy.html: manual/taxonomy.html manual/docs-styleguide.html: manual/creating-pages.html manual/virus-scanning.html: manual/alerts/virus-scanning.html
dictionary.html: manual/dictionary.html guides.html: manual.html opsmanual.html: manual.html opsmanual/ab_testing.html: manual/ab-testing.html opsmanual/content-preview.html: manual/content-preview.html opsmanual/dictionary.html: manual/dictionary.html opsmanual/emergency-publishing.html: manual/emergency-publishing.html opsmanual/github.html: manual/github.html opsmanual/keeping-software-current.html: manual/keeping-software-current.html opsmanual/kibana.html: manual/kibana.html opsmanual/screens.html: manual/screens.html opsmanual/taxonomy.html: manual/taxonomy.html manual/docs-styleguide.html: manual/creating-pages.html manual/virus-scanning.html: manual/alerts/virus-scanning.html manual/elasticsearch.html: manual/elasticsearch-dumps.html
Update from Hackage at 2022-05-03T12:47:24Z
homepage: https://github.com/unfoldml/jsonl changelog-type: '' hash: 17ee5a0628d645e1ab11b333c27ae8fca757ad83cf25b87a6b89940b29636cc6 test-bench-deps: jsonl-conduit: -any bytestring: -any base: -any hspec: -any conduit: -any aeson: -any maintainer: UnfoldML AB synopsis: Conduit interface to JSONL-encoded data changelog: '' basic-deps: jsonl: '>=0.2' bytestring: -any base: '>=4.7 && <5' conduit: -any aeson: -any all-versions: - 0.1.0.2 author: Marco Zocca latest: 0.1.0.2 description-type: markdown description: | # jsonl-conduit Streaming interface to JSONL data based on `conduit`. license-name: BSD-3-Clause
homepage: https://github.com/unfoldml/jsonl changelog-type: '' hash: 86bd3bee1fb164a570632698b50bc36997f46b38637766026576d0fbf26717a9 test-bench-deps: jsonl-conduit: -any bytestring: -any base: -any hspec: -any conduit: -any aeson: -any maintainer: UnfoldML AB synopsis: Conduit interface to JSONL-encoded data changelog: '' basic-deps: jsonl: '>=0.2' bytestring: -any base: '>=4.7 && <5' conduit: -any aeson: -any all-versions: - 0.1.0.2 - 0.1.1 author: Marco Zocca latest: 0.1.1 description-type: markdown description: | # jsonl-conduit Streaming interface to JSONL data based on `conduit`. JSON Lines format : https://jsonlines.org/ license-name: BSD-3-Clause
Add simple and secure digest example and test.
repo_token: 8gupj6GxIYn1FB8t6zKorniVFWBphtrAK
repo_token: S7oV6cDGukMKQDOYQLj09cnLIGINHX5YB
Build with Node.js 16 on GitHub Actions.
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x,14.x,15.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: npm install run: npm install --no-package-lock - name: npm ls run: npm ls - name: npm install nyc, prove, codecov run: npm install -g nyc prove codecov - name: npm test run: nyc npm test env: CI: true - name: generate codecov report run: nyc report --reporter=text-lcov > coverage.lcov - name: ship coverage to codecov run: codecov --branch=${GITHUB_REF##*/} env: CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x,14.x,16.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: npm install run: npm install --no-package-lock - name: npm ls run: npm ls - name: npm install nyc, prove, codecov run: npm install -g nyc prove codecov - name: npm test run: nyc npm test env: CI: true - name: generate codecov report run: nyc report --reporter=text-lcov > coverage.lcov - name: ship coverage to codecov run: codecov --branch=${GITHUB_REF##*/} env: CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
Add workflow to save e2e test artifacts
name: e2e-tests on: push: branches: - master pull_request: jobs: run-e2e-tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: make -f x.mk e2e-local NODES=2
name: e2e-tests on: push: branches: - master pull_request: jobs: run-e2e-tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: make -f x.mk e2e-local NODES=2 JUNIT_DIRECTORY=./artifacts/ - name: Archive production artifacts # test results are only uploaded if any of the e2e tests fails if: ${{ failure() }} uses: actions/upload-artifact@v2 with: name: e2e-test-output-${{ github.sha }}-${{ github.run_id }} path: ${{ github.workspace }}/bin/artifacts/*
Update npm to 3.6.0 before running npm install
--- - command: bower install chdir={{ project_dir }} --allow-root - composer: working_dir={{ project_dir }} - npm: path={{ project_dir }} - npm: path={{ project_dir }}/api - git: repo=https://github.com/YOURLS/YOURLS.git dest=/home/{{ user }}/modsn.us version=1.5.1 accept_hostkey=yes - git: repo=https://github.com/YOURLS/random-keywords.git dest=/home/{{ user }}/modsn.us/user/plugins/random-keywords accept_hostkey=yes - template: src=yourls/user/config.php.j2 dest=/home/{{ user }}/modsn.us/user/config.php
--- - command: bower install chdir={{ project_dir }} --allow-root - composer: working_dir={{ project_dir }} - npm: name=npm version=3.6.0 global=yes - npm: path={{ project_dir }} - npm: path={{ project_dir }}/api - git: repo=https://github.com/YOURLS/YOURLS.git dest=/home/{{ user }}/modsn.us version=1.5.1 accept_hostkey=yes - git: repo=https://github.com/YOURLS/random-keywords.git dest=/home/{{ user }}/modsn.us/user/plugins/random-keywords accept_hostkey=yes - template: src=yourls/user/config.php.j2 dest=/home/{{ user }}/modsn.us/user/config.php
Migrate API version to latest
--- apiVersion: extensions/v1beta1 kind: Deployment metadata: name: {{ .Values.name }} labels: app: {{ .Values.name }} namespace: {{ .Values.namespace }} spec: replicas: {{ .Values.replicas }} selector: matchLabels: app: {{ .Values.name }} template: metadata: annotations: iam.amazonaws.com/role: {{ .Values.assume_role }} labels: app: {{ .Values.name }} spec: containers: - name: {{ .Values.name }} image: {{ .Values.registry }}:{{ .Values.rev }} ports: - containerPort: 8000 resources: requests: memory: "768Mi" cpu: "500m" limits: memory: "1024Mi" cpu: "1000m" env: - name: AWS_DEFAULT_REGION value: us-west-2 - name: ENVIRONMENT value: {{ .Values.environment }} - name: MOZILLIANS_API_URL value: https://mozillians.org/api/v2/users/ - name: SERVER_NAME value: {{ .Values.domain_name }} - name: DASHBOARD_GUNICORN_WORKERS value: "4"
--- apiVersion: apps/v1 kind: Deployment metadata: name: {{ .Values.name }} labels: app: {{ .Values.name }} namespace: {{ .Values.namespace }} spec: replicas: {{ .Values.replicas }} selector: matchLabels: app: {{ .Values.name }} template: metadata: annotations: iam.amazonaws.com/role: {{ .Values.assume_role }} labels: app: {{ .Values.name }} spec: containers: - name: {{ .Values.name }} image: {{ .Values.registry }}:{{ .Values.rev }} ports: - containerPort: 8000 resources: requests: memory: "768Mi" cpu: "500m" limits: memory: "1024Mi" cpu: "1000m" env: - name: AWS_DEFAULT_REGION value: us-west-2 - name: ENVIRONMENT value: {{ .Values.environment }} - name: MOZILLIANS_API_URL value: https://mozillians.org/api/v2/users/ - name: SERVER_NAME value: {{ .Values.domain_name }} - name: DASHBOARD_GUNICORN_WORKERS value: "4"
Add obake as an explicit dep.
{% set version = "1.3" %} package: name: dcgp-python version: {{ version }} source: url: https://github.com/darioizzo/dcgp/archive/v{{ version }}.tar.gz sha256: 85c5318cdb514dcd3fc91ba45b9f112bdd4c0a321c311b7b6bd115cf7d03f294 build: number: 0 skip: true # [(win and py<35)] requirements: build: - cmake - {{ compiler('c') }} - {{ compiler('cxx') }} - clang # [win] - ninja # [win] host: - boost - boost-cpp - eigen - audi - pagmo - tbb-devel - symengine - python - numpy run: - boost - pagmo - symengine - python - {{ pin_compatible('numpy') }} about: home: http://darioizzo.github.io/dcgp/ license: GPL v3 and LGPL v3 license_file: COPYING.lgpl3 summary: 'Implementation of the differential CGP (Cartesian Genetic Programming)' extra: recipe-maintainers: - bluescarni - darioizzo
{% set version = "1.3" %} package: name: dcgp-python version: {{ version }} source: url: https://github.com/darioizzo/dcgp/archive/v{{ version }}.tar.gz sha256: 85c5318cdb514dcd3fc91ba45b9f112bdd4c0a321c311b7b6bd115cf7d03f294 build: number: 0 skip: true # [(win and py<35)] requirements: build: - cmake - {{ compiler('c') }} - {{ compiler('cxx') }} - clang # [win] - ninja # [win] host: - boost - boost-cpp - eigen - audi - pagmo - tbb-devel - obake-devel - symengine - python - numpy run: - boost - pagmo - symengine - python - {{ pin_compatible('numpy') }} about: home: http://darioizzo.github.io/dcgp/ license: GPL v3 and LGPL v3 license_file: COPYING.lgpl3 summary: 'Implementation of the differential CGP (Cartesian Genetic Programming)' extra: recipe-maintainers: - bluescarni - darioizzo
Move cask to optional roles.
--- - name: core roles hosts: all roles: - bootstrap - cask - tmux - vim - zsh - name: optional roles hosts: all roles: - heroku - mongodb - node - osx - postgresql - ruby - shell #- drupal vars: # Uncomment the cask variable and any apps you would like to install through # short-stack. You can can also add more apps from http://caskroom.io/search #cask: #- 1password #- dash #- divvy #- dropbox #- firefox #- google-chrome #- google-drive #- iterm2 #- libreoffice #- linkinus #- sketch #- slack #- sourcetree #- spotify #- sublime-text #- vagrant #- virtualbox #- xmplify
--- - name: core roles hosts: all roles: - bootstrap - tmux - vim - zsh - name: optional roles hosts: all roles: - cask - heroku - mongodb - node - osx - postgresql - ruby - shell #- drupal vars: # Uncomment the cask variable and any apps you would like to install through # short-stack. You can can also add more apps from http://caskroom.io/search #cask: #- 1password #- dash #- divvy #- dropbox #- firefox #- google-chrome #- google-drive #- iterm2 #- libreoffice #- linkinus #- sketch #- slack #- sourcetree #- spotify #- sublime-text #- vagrant #- virtualbox #- xmplify
Fix indentation in Dependabot config file
version: 2 updates: - package-ecosystem: pip directory: "/" schedule: interval: weekly time: "03:00" open-pull-requests-limit: 10 allow: - dependency-type: production - package-ecosystem: "npm" directory: "/" schedule: interval: weekly time: "03:00" ignored_updates: - match: dependency_name: "govuk-frontend" version_requirement: "3.x" - match: dependency_name: "digitalmarketplace-govuk-frontend" version_requirement: "3.x" - package-ecosystem: docker directory: "/" schedule: interval: weekly time: "03:00"
version: 2 updates: - package-ecosystem: pip directory: "/" schedule: interval: weekly time: "03:00" open-pull-requests-limit: 10 allow: - dependency-type: production - package-ecosystem: "npm" directory: "/" schedule: interval: weekly time: "03:00" ignored_updates: - match: dependency_name: "govuk-frontend" version_requirement: "3.x" - match: dependency_name: "digitalmarketplace-govuk-frontend" version_requirement: "3.x" - package-ecosystem: docker directory: "/" schedule: interval: weekly time: "03:00"
Use workflow from docker repo
name: release on: push: branches: - master workflow_dispatch: jobs: dockerhub: uses: akilli/workflow/.github/workflows/dockerhub.yml@master secrets: inherit
name: release on: push: branches: - master workflow_dispatch: jobs: dockerhub: uses: akilli/docker/.github/workflows/dockerhub.yml@master secrets: inherit
Use minimum 1 ngram (ie: for Gantz O)
--- settings: analysis: analyzer: # Don't use ngram for search otherwise 'horribleexample' would match # 'horriblesubs' nyaapantsu_search_analyzer: tokenizer: standard filter: - standard - lowercase char_filter: - dash_to_underscore nyaapantsu_index_analyzer: tokenizer: standard filter: - standard - lowercase - e_ngram_filter char_filter: - dash_to_underscore filter: e_ngram_filter: type: edge_ngram min_gram: 2 max_gram: 15 char_filter: dash_to_underscore: type: pattern_replace pattern: "([^\\s]+)-(?=[^\\s]+)" replacement: "$1_" index: number_of_shards: 1 number_of_replicas: 0 max_result_window: 30000 mappings: torrents: properties: # TODO Consistent ID's type in TorrentJSON id: type: long name: type: text analyzer: nyaapantsu_index_analyzer fields: raw: type: keyword category: type: text sub_category: type: text status: type: long hash: type: text date: type: date uploader_id: type: long downloads: type: long seeders: type: long leechers: type: long completed: type: long filesize: type: long
--- settings: analysis: analyzer: # Don't use ngram for search otherwise 'horribleexample' would match # 'horriblesubs' nyaapantsu_search_analyzer: tokenizer: standard filter: - standard - lowercase char_filter: - dash_to_underscore nyaapantsu_index_analyzer: tokenizer: standard filter: - standard - lowercase - e_ngram_filter char_filter: - dash_to_underscore filter: e_ngram_filter: type: edge_ngram min_gram: 1 max_gram: 16 char_filter: dash_to_underscore: type: pattern_replace pattern: "([^\\s]+)-(?=[^\\s]+)" replacement: "$1_" index: number_of_shards: 1 number_of_replicas: 0 max_result_window: 30000 mappings: torrents: properties: # TODO Consistent ID's type in TorrentJSON id: type: long name: type: text analyzer: nyaapantsu_index_analyzer fields: raw: type: keyword category: type: text sub_category: type: text status: type: long hash: type: text date: type: date uploader_id: type: long downloads: type: long seeders: type: long leechers: type: long completed: type: long filesize: type: long
Set default menu adaptor priorities enabled bundle order doesn't matter
parameters: kunstmaan_user_management.user_admin_list_configurator.class: Kunstmaan\UserManagementBundle\AdminList\UserAdminListConfigurator kunstmaan_user_management.menu.adaptor.class: Kunstmaan\UserManagementBundle\Helper\Menu\UserManagementMenuAdaptor services: kunstmaan_user_management.menu.adaptor: class: '%kunstmaan_user_management.menu.adaptor.class%' arguments: ['@security.authorization_checker'] tags: - { name: 'kunstmaan_admin.menu.adaptor', priority: 100 }
parameters: kunstmaan_user_management.user_admin_list_configurator.class: Kunstmaan\UserManagementBundle\AdminList\UserAdminListConfigurator kunstmaan_user_management.menu.adaptor.class: Kunstmaan\UserManagementBundle\Helper\Menu\UserManagementMenuAdaptor services: kunstmaan_user_management.menu.adaptor: class: '%kunstmaan_user_management.menu.adaptor.class%' arguments: ['@security.authorization_checker'] tags: - { name: 'kunstmaan_admin.menu.adaptor', priority: 250 }
Remove trailing whitespace for lint
--- - include: go-server.yml - include: server-config.yml when: GOCD_CONFIGURE
--- - include: go-server.yml - include: server-config.yml when: GOCD_CONFIGURE
Use explicit Q-specific options in DataPartialsTest
en-GB: flow: data-partial-sample:
en-GB: flow: data-partial-sample: what_are_you_testing?: options: data_partial_with_scalar: 'Data partial with scalar' data_partial_with_array: 'Data partial with array'
Revert "corrected stacks mount path for python service"
version: '3' services: andes: image: obitech/andes:latest expose: - "5000" - "5001" volumes: - "./system/api/data:/andes/system/api/data" - "./stacks:/andes/stacks" networks: andes_default: ipv4_address: 172.42.0.2 restart: always web: cap_add: - NET_ADMIN image: abiosoft/caddy ports: - "80:80" - "443:443" volumes: - "./system/Caddyfile:/etc/Caddyfile" - "./system/certs:/root/.caddy" - "./stacks:/andes/stacks" - "./system/frontend:/srv/www" links: - andes networks: andes_default: ipv4_address: 172.42.0.3 restart: always networks: andes_default: external: true
version: '3' services: andes: image: obitech/andes:latest expose: - "5000" - "5001" volumes: - "./system/api/data:/andes/api/data" - "./stacks:/andes/stacks" networks: andes_default: ipv4_address: 172.42.0.2 restart: always web: cap_add: - NET_ADMIN image: abiosoft/caddy ports: - "80:80" - "443:443" volumes: - "./system/Caddyfile:/etc/Caddyfile" - "./system/certs:/root/.caddy" - "./stacks:/andes/stacks" - "./stacks/conf.d:/etc/caddy/sites-enabled" - "./system/frontend:/srv/www" links: - andes networks: andes_default: ipv4_address: 172.42.0.3 restart: always networks: andes_default: external: true
Add app, use .env, specifiy cmd to bin/application
worker: build: . env_file: .env.compose links: - db db: image: postgres env_file: .env.compose ports: - "5432:5432"
app: build: . volumes: - .:/app env_file: - .env links: - db ports: - "3000:3000" command: web environment: VIRTUAL_HOST: crier.docker worker: image: crierprxorg_app volumes: - .:/app env_file: - .env links: - db command: worker db: image: postgres env_file: - .env ports: - "5432:5432"
Update from Hackage at 2019-01-09T15:00:35Z
homepage: https://github.com/purebred-mua/hs-notmuch changelog-type: '' hash: ddcf6c1d7b91acd6b35af7f97bd9b7f5695302b8061e908fd96169fa7e699afd test-bench-deps: {} maintainer: frase@frase.id.au synopsis: Haskell binding to Notmuch, the mail indexer changelog: '' basic-deps: bytestring: ==0.10.* base: ! '>=4.9 && <5' time: -any text: -any notmuch: -any tagged: ! '>=0.8 && <1' containers: -any mtl: ==2.* deepseq: ! '>=1.4' profunctors: ! '>=5 && <6' all-versions: - 0.1.0.0 - 0.1.0.1 author: Fraser Tweedale latest: 0.1.0.1 description-type: text description: | Binding to the *notmuch* mail indexer, providing a hopefully somewhat typesafe way to search your email. Requirements: - GHC 8.0 or higher - notmuch v0.24 or higher Contributions are welcome. license-name: GPL-3.0-only
homepage: https://github.com/purebred-mua/hs-notmuch changelog-type: '' hash: b3d1f8ce16eaf09c848b539517e2b9a6dcc24b2bc0fc758133ce695071f868e2 test-bench-deps: {} maintainer: frase@frase.id.au synopsis: Haskell binding to Notmuch, the mail indexer changelog: '' basic-deps: bytestring: ==0.10.* base: ! '>=4.9 && <5' time: -any text: -any notmuch: -any tagged: ! '>=0.8 && <1' containers: -any mtl: ==2.* deepseq: ! '>=1.4' profunctors: ! '>=5 && <6' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.2.0.0 author: Fraser Tweedale latest: 0.2.0.0 description-type: text description: | Binding to the *notmuch* mail indexer, providing a hopefully somewhat typesafe way to search your email. Requirements: - GHC 8.0 or higher - notmuch v0.24 or higher Contributions are welcome. license-name: GPL-3.0-only
Update docs and tests for /eureka path
debug: true spring: application: name: eureka management: context-path: /admin eureka: server: waitTimeInMsWhenSyncEmpty: 1000 client: serviceUrl: defaultZone: http://localhost:8080/v2/ default.defaultZone: http://localhost:8080/v2/ registerWithEureka: false fetchRegistry: false
debug: true spring: application: name: eureka management: context-path: /admin eureka: server: waitTimeInMsWhenSyncEmpty: 1000 client: serviceUrl: defaultZone: http://localhost:8080/eureka/api/ default.defaultZone: http://localhost:8080/eureka/api/ registerWithEureka: false fetchRegistry: false
Configure Travis to update SwiftLint
language: objective-c osx_image: xcode9 jobs: include: # testing - script: xcodebuild -workspace Vienna.xcworkspace -scheme Vienna test | xcpretty # linting - before_script: swiftlint version script: swiftlint --lenient --reporter emoji notifications: slack: rooms: - secure: G/L2fP8z8+jNFicgMkOPrc3e7HqdQ2HkyazUMHwWLOsKmjM0ERqQ6FZXLlSr2P/kukqfUGHCGBGRdoMUb7jebNY0fNQyLYoUD7L91MLaz/zSBpDu4Yl+cVQJER1F6WFWNf697Uevvun1Mmz3N6zHe82KjQtE1yk/qFCbPyG5uJ8= template: "%{commit_subject}\n<%{compare_url}|%{commit}> in <%{pull_request_url}|#%{pull_request_number}> by %{author} <%{build_url}|%{result}> in %{duration}" on_success: change on_failure: change
language: objective-c osx_image: xcode9 jobs: include: # testing - script: xcodebuild -workspace Vienna.xcworkspace -scheme Vienna test | xcpretty # linting - before_script: - brew outdated swiftlint || brew upgrade swiftlint - swiftlint version script: swiftlint --lenient --reporter emoji notifications: slack: rooms: - secure: G/L2fP8z8+jNFicgMkOPrc3e7HqdQ2HkyazUMHwWLOsKmjM0ERqQ6FZXLlSr2P/kukqfUGHCGBGRdoMUb7jebNY0fNQyLYoUD7L91MLaz/zSBpDu4Yl+cVQJER1F6WFWNf697Uevvun1Mmz3N6zHe82KjQtE1yk/qFCbPyG5uJ8= template: "%{commit_subject}\n<%{compare_url}|%{commit}> in <%{pull_request_url}|#%{pull_request_number}> by %{author} <%{build_url}|%{result}> in %{duration}" on_success: change on_failure: change
Fix Travis error invalid ELF header on node 0.10
language: node_js node_js: - "0.10" - "4.2" before_install: - "sudo apt-get update" - "sudo apt-get install zookeeperd" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
language: node_js node_js: - "0.10" - "4.2" before_install: - sudo apt-get update - sudo apt-get install zookeeperd - npm -g install npm@latest-2 env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
Use xvfb to emulate gui in tests
language: node_js os: - linux dist: xenial node_js: - node addons: apt: packages: - xvfb before_script: - export DISPLAY=':99.0' - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & - sleep 3 cache: directories: - node_modules branches: only: - master
language: node_js os: - linux dist: xenial node_js: - node services: - xvfb script: xvfb-run --server-args="-screen 0 1024x768x24" make test cache: directories: - node_modules branches: only: - master
Add Node v4 to CI suite to check backward compatibility
# Travis CI config # http://docs.travis-ci.com/user/languages/javascript-with-nodejs/ # https://docs.travis-ci.com/user/customizing-the-build/ # https://docs.travis-ci.com/user/migrating-from-legacy/ dist: trusty sudo: false language: node_js matrix: include: - node_js: 6 - node_js: 8 - node_js: 10 script: - npm run lint - npm run coverage after_success: # send code-coverage data to Codacy - cat ./coverage/lcov.info | node_modules/.bin/codacy-coverage -p . # send code-coverage data to Coveralls - cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js
# Travis CI config # http://docs.travis-ci.com/user/languages/javascript-with-nodejs/ # https://docs.travis-ci.com/user/customizing-the-build/ # https://docs.travis-ci.com/user/migrating-from-legacy/ dist: trusty sudo: false language: node_js matrix: include: - node_js: 4 - node_js: 6 - node_js: 8 - node_js: 10 script: - npm run lint - npm run coverage after_success: # send code-coverage data to Codacy - cat ./coverage/lcov.info | node_modules/.bin/codacy-coverage -p . # send code-coverage data to Coveralls - cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js
Remove PHP version 5.2 from Travis builds
language: php php: - 5.6 - 5.5 - 5.4 - 5.3 - 5.2 - hhvm
language: php php: - 5.6 - 5.5 - 5.4 - 5.3 - hhvm
Revert to default Ubuntu distro.
language: php dist: trusty php: - '5.6' - '7.0' - nightly install: - composer update
language: php php: - '5.6' - '7.0' - nightly install: - composer update
Update Travis config to add python endpoints
dist: xenial language: python python: - 2.7 - 3.5 install: - pip install -r "pip_reqs.txt" # - python setup.py install script: - python -m pytest tests/test_libnotify.py after_success: - coverage run src/libnotify_terminal.py - coverage xml - python-codacy-coverage
os: linux dist: xenial language: python python: - 2.7 - 3.5 before_install: - sudo apt-get install python-gi python3-gi python-dbus python3-dbus install: - pip install -r "pip_reqs.txt" # - python setup.py install script: - python -m pytest tests/test_libnotify.py after_success: - coverage run src/libnotify_terminal.py - coverage xml - python-codacy-coverage
Remove OS X workers from CI build matrix
notifications: email: on_success: never on_failure: change script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh' git: depth: 10 sudo: false os: - linux - osx env: global: - APM_TEST_PACKAGES="" matrix: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta addons: apt: packages: - build-essential - git - libgnome-keyring-dev - fakeroot
notifications: email: on_success: never on_failure: change script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh' git: depth: 10 sudo: false os: - linux #- osx env: global: - APM_TEST_PACKAGES="" matrix: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta addons: apt: packages: - build-essential - git - libgnome-keyring-dev - fakeroot
Drop organization name in Travis build
language: java jdk: - oraclejdk8 script: - mvn clean jacoco:prepare-agent install sonar:sonar -P quality addons: sonarqube: organization: cereebro branches: - master
language: java jdk: - oraclejdk8 script: - mvn clean jacoco:prepare-agent install sonar:sonar -P quality addons: sonarqube: branches: - master
Raise min ruby version to 2.2.2
language: ruby rvm: - 2.1.2 before_install: gem install bundler -v 1.11.2 addons: code_climate: repo_token: 0b8e41ecbc26637a7db4e6e9d4581c445441674f689016ab45fb5c51242b59bf after_success: - bundle exec codeclimate-test-reporter
language: ruby rvm: - 2.2.2 before_install: gem install bundler -v 1.11.2 addons: code_climate: repo_token: 0b8e41ecbc26637a7db4e6e9d4581c445441674f689016ab45fb5c51242b59bf after_success: - bundle exec codeclimate-test-reporter
Install test requirements on Travis.
sudo: false language: python python: - "2.7" before_install: - pip install codecov install: - python setup.py -q develop - pip install -q psycopg2 before_script: - psql -c 'create database modoboa_test;' -U postgres script: - python ./tests.py - cd test_project - coverage run --source ../modoboa manage.py test modoboa.core modoboa.lib modoboa.admin.tests modoboa.limits modoboa.relaydomains after_success: - codecov
sudo: false language: python python: - "2.7" before_install: - pip install codecov install: - python setup.py -q develop - pip install -q psycopg2 - pip install -q -r test-requirements.txt before_script: - psql -c 'create database modoboa_test;' -U postgres script: - python ./tests.py - cd test_project - coverage run --source ../modoboa manage.py test modoboa.core modoboa.lib modoboa.admin.tests modoboa.limits modoboa.relaydomains after_success: - codecov
Add different splunk versions to build matrix
sudo: required services: - docker before_install: - echo host=localhost >> $HOME/.splunkrc - echo username=admin >> $HOME/.splunkrc - echo password=changeme >> $HOME/.splunkrc - export SPLUNK_HOME="/opt/splunk" - docker pull adamryman/splunk-travis-ci:latest - docker run -p 8089:8089 -d adamryman/splunk-travis-ci language: node_js script: node sdkdo tests
sudo: required services: - docker before_install: - echo host=localhost >> $HOME/.splunkrc - echo username=admin >> $HOME/.splunkrc - echo password=changeme >> $HOME/.splunkrc - export SPLUNK_HOME="/opt/splunk" - docker pull adamryman/splunk-travis-ci:$SPLUNK_VERSION - docker run -p 8089:8089 -d adamryman/splunk-travis-ci language: node_js env: - SPLUNK_VERSION=6.2.5 - SPLUNK_VERSION=6.1.9 - SPLUNK_VERSION=6.0.10 script: node sdkdo tests context
Add clang to the list of tested compilers
language: cpp os: - linux dist: bionic compiler: - gcc before_install: - FASTORPATH=$(pwd) - echo $FASTORPATH install: # build the tests - cd ~ - cd $FASTORPATH/tests - mkdir build && cd build - cmake -DCMAKE_BUILD_TYPE=Debug ../ - make -j2 script: # Run the test suite - cd ~ - cd $FASTORPATH/tests/build/ - ctest -V notifications: email: false
language: cpp os: - linux dist: bionic compiler: - gcc - clang before_install: - FASTORPATH=$(pwd) - echo $FASTORPATH install: # build the tests - cd ~ - cd $FASTORPATH/tests - mkdir build && cd build - cmake -DCMAKE_BUILD_TYPE=Debug ../ - make -j2 script: # Run the test suite - cd ~ - cd $FASTORPATH/tests/build/ - ctest -V notifications: email: false
Fix path to test build script
language: php php: - "5.5" - "5.6" - "7.0" - "nightly" sudo: false install: - travis_retry composer self-update && composer --version - travis_retry composer update --prefer-dist --no-interaction script: - ant -keep-going - test-compile.sh # Hack to make things work again - we can not use a shallow repository. git: depth: 2147483647 cache: directories: - vendor
language: php php: - "5.5" - "5.6" - "7.0" - "nightly" sudo: false install: - travis_retry composer self-update && composer --version - travis_retry composer update --prefer-dist --no-interaction script: - ant -keep-going - ./test-compile.sh # Hack to make things work again - we can not use a shallow repository. git: depth: 2147483647 cache: directories: - vendor
Test on rust 1.0.0, nightly, and beta
language: rust script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: ! '[ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && echo ''<meta http-equiv=refresh content=0;url=conduit-static/index.html>'' > target/doc/index.html && sudo pip install ghp-import && ghp-import -n target/doc && git push -fq https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages ' env: global: secure: MRnJx1muQA+Unk5f/jSk/lbakwAf15pVKtrqh+HfEQvbEpQD/Y0JnjMXv8bT3Xpb+kGOIdFGfvEYpyX9t+diEhGbZ5S/C+aYuRGR8i8QGDgQq/AbhrKXIUF1h+Aub/6oFJ53ApJjgMY5t/rFc2FrRD0z26irf9VEG/8HDcI5kWc= notifications: email: on_success: never
language: rust rust: - 1.0.0 - beta - nightly sudo: false script: - cargo build --verbose - cargo test --verbose - cargo doc after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && [ $TRAVIS_RUST_VERSION = nightly ] && echo '<meta http-equiv=refresh content=0;url=conduit-static/index.html>' > target/doc/index.html && pip install ghp-import --user $USER && $HOME/.local/bin/ghp-import -n target/doc && git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: global: secure: MRnJx1muQA+Unk5f/jSk/lbakwAf15pVKtrqh+HfEQvbEpQD/Y0JnjMXv8bT3Xpb+kGOIdFGfvEYpyX9t+diEhGbZ5S/C+aYuRGR8i8QGDgQq/AbhrKXIUF1h+Aub/6oFJ53ApJjgMY5t/rFc2FrRD0z26irf9VEG/8HDcI5kWc= notifications: email: on_success: never
Test using newer Mono on a Mac
language: c before_install: - git submodule update --init --recursive install: - sudo apt-get install mono-devel mono-gmcs nunit-console - mozroots --import --sync - export EnableNuGetPackageRestore="true" script: - xbuild - nunit-console -framework=4.0.30319.1 ./MaxMind.DB.Test/bin/Debug/MaxMind.DB.Test.dll notifications: email: recipients: - dev@maxmind.com on_success: change on_failure: always
language: objective-c before_install: - wget http://download.mono-project.com/archive/3.2.3/macos-10-x86/MonoFramework-MDK-3.2.3.macos10.xamarin.x86.pkg - sudo installer -pkg "MonoFramework-MDK-3.2.3.macos10.xamarin.x86.pkg" -target / - export EnableNuGetPackageRestore="true" - git submodule update --init --recursive - mono --runtime=v4.0 .nuget/NuGet.exe install NUnit.Runners -Version 2.6.1 -o packages script: - xbuild - mono --runtime=v4.0 packages/NUnit.Runners.2.6.1/tools/nunit-console.exe ./MaxMind.DB.Test/bin/Debug/MaxMind.DB.Test.dll notifications: email: recipients: - dev@maxmind.com on_success: change on_failure: always
Update default provided stemcell for BOSH Lite
--- deployment-name: cf-rabbitmq stemcell-version: 3363.29 haproxy-instances: 2 rabbitmq-management-username: admin rabbitmq-management-password: admin rabbitmq-broker-username: broker rabbitmq-broker-password: broker haproxy-stats-username: haproxy haproxy-stats-password: haproxy use-native-clustering-formation: false cluster-partition-handling-strategy: autoheal syslog-host: syslog-port: cf-admin-password: admin cf-admin-username: admin
--- deployment-name: cf-rabbitmq stemcell-version: 3421.24 haproxy-instances: 2 rabbitmq-management-username: admin rabbitmq-management-password: admin rabbitmq-broker-username: broker rabbitmq-broker-password: broker haproxy-stats-username: haproxy haproxy-stats-password: haproxy use-native-clustering-formation: false cluster-partition-handling-strategy: autoheal syslog-host: syslog-port: cf-admin-password: admin cf-admin-username: admin
Use two checksums to include yarn.lock
version: 2 jobs: build: working_directory: ~/mocha-suite docker: - image: kkarczmarczyk/node-yarn steps: - checkout - restore_cache: key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" "yarn.lock" }} - run: name: Install command: yarn - save_cache: key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" "yarn.lock" }} paths: - "~/node_modules" - run: name: Test command: yarn start ci - run: name: Release command: yarn start release
version: 2 jobs: build: working_directory: ~/mocha-suite docker: - image: kkarczmarczyk/node-yarn steps: - checkout - restore_cache: key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }} - run: name: Install command: yarn - save_cache: key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }} paths: - ~/node_modules - run: name: Test command: yarn start ci - run: name: Release command: yarn start release
Use Ruby 2.4 on CI
version: 2 workflows: version: 2 build: jobs: - build: context: tuist jobs: build: macos: xcode: "10.2.0" steps: - checkout - restore_cache: keys: - 1-gems-{{ checksum "Gemfile.lock" }} - run: name: Install Tools command: | brew upgrade brew install swiftformat bundle config build.sqlite3 --with-sqlite3-dir=/opt/local - run: name: Install dependencies command: | bundle check || bundle install --path vendor/bundle - run: name: Run Danger command: bundle exec danger - run: name: Release build command: | swift build -c release - run: name: Run tests command: | swift package generate-xcodeproj xcodebuild test -project XcodeProj.xcodeproj -scheme XcodeProj-Package -enableCodeCoverage YES - run: name: Send test coverage report command: | bash <(curl -s https://codecov.io/bash) - save_cache: key: gem-cache-v1-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }} paths: - vendor/bundle
version: 2 workflows: version: 2 build: jobs: - build: context: tuist jobs: build: macos: xcode: "10.2.0" steps: - checkout - restore_cache: keys: - 1-gems-{{ checksum "Gemfile.lock" }} - run: name: Set Ruby Version command: echo "ruby-2.4" > ~/.ruby-version - run: name: Install Tools command: | brew upgrade brew install swiftformat bundle config build.sqlite3 --with-sqlite3-dir=/opt/local - run: name: Install dependencies command: | bundle check || bundle install --path vendor/bundle - run: name: Run Danger command: bundle exec danger - run: name: Release build command: | swift build -c release - run: name: Run tests command: | swift package generate-xcodeproj xcodebuild test -project XcodeProj.xcodeproj -scheme XcodeProj-Package -enableCodeCoverage YES - run: name: Send test coverage report command: | bash <(curl -s https://codecov.io/bash) - save_cache: key: gem-cache-v1-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }} paths: - vendor/bundle
Add cache-control header to S3 assets
machine: node: version: 8.9.3 dependencies: pre: - bash ./circleci/set-configs.sh test: override: - npm run build - npm run test deployment: production: branch: deploy commands: - npm run build - aws s3 sync build/ s3://cookbook-club-site/
machine: node: version: 8.9.3 dependencies: pre: - bash ./circleci/set-configs.sh test: override: - npm run build - npm run test deployment: production: branch: deploy commands: - npm run build - aws s3 sync build/ s3://cookbook-club-site/ --delete --cache-control max-age=31536000,public
Upgrade setuptools to install mock
machine: services: - docker node: version: 6.1.0 python: version: 2.7.3 dependencies: pre: - pip install -r requirements_dev.txt - pip install -r requirements.txt - pip install pymongo==3.2.1 - make deps cache_directories: - node_modules/ - client/node_modules/ test: override: - nosetests --with-xunit --xunit-file=$CIRCLE_TEST_REPORTS/junit.xml --with-coverage --cover-package=redash tests/ deployment: github_and_docker: branch: master commands: - make pack # Skipping uploads for now, until master is stable. # - make upload #- echo "client/app" >> .dockerignore #- docker pull redash/redash:latest #- docker build -t redash/redash:$(./manage.py version | sed -e "s/\+/./") . #- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS #- docker push redash/redash:$(./manage.py version | sed -e "s/\+/./") notify: webhooks: - url: https://webhooks.gitter.im/e/895d09c3165a0913ac2f general: branches: ignore: - gh-pages
machine: services: - docker node: version: 6.1.0 python: version: 2.7.3 dependencies: pre: - pip install --upgrade setuptools - pip install -r requirements_dev.txt - pip install -r requirements.txt - pip install pymongo==3.2.1 - make deps cache_directories: - node_modules/ - client/node_modules/ test: override: - nosetests --with-xunit --xunit-file=$CIRCLE_TEST_REPORTS/junit.xml --with-coverage --cover-package=redash tests/ deployment: github_and_docker: branch: master commands: - make pack # Skipping uploads for now, until master is stable. # - make upload #- echo "client/app" >> .dockerignore #- docker pull redash/redash:latest #- docker build -t redash/redash:$(./manage.py version | sed -e "s/\+/./") . #- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS #- docker push redash/redash:$(./manage.py version | sed -e "s/\+/./") notify: webhooks: - url: https://webhooks.gitter.im/e/895d09c3165a0913ac2f general: branches: ignore: - gh-pages
Change Facebook URLs to HTTPS
--- - provider_name: YouTube provider_url: http://www.youtube.com/ endpoints: - url: http://www.youtube.com/oembed discovery: true example_urls: - http://www.youtube.com/oembed?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DiwGFalTRHDA - http://www.youtube.com/oembed?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DiwGFalTRHDA&format=xml ...
--- - provider_name: YouTube provider_url: https://www.youtube.com/ endpoints: - url: https://www.youtube.com/oembed discovery: true example_urls: - https://www.youtube.com/oembed?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DiwGFalTRHDA - https://www.youtube.com/oembed?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DiwGFalTRHDA&format=xml ...
Update from Hackage at 2018-05-11T15:24:12Z
homepage: '' changelog-type: markdown hash: 033b6a036356bc6edd836a3db7f1bb0a83f5fee7694066a80d1efbdb736bf827 test-bench-deps: {} maintainer: alex@xn--wxa.email synopsis: Nuxeo changelog: ! '# Revision history for nuxeo ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: -any base: ! '>=4.10 && <4.11' time: -any text: -any conduit: -any conduit-extra: -any attoparsec: -any all-versions: - '0.2.0.0' - '0.2.0.1' author: Alexandre Peyroux latest: '0.2.0.1' description-type: haddock description: Nuxeo license-name: BSD3
homepage: '' changelog-type: markdown hash: de6da942741d276ad4ef84eb0418a9f07791d61b871150bb7a660b21a8a30536 test-bench-deps: {} maintainer: alex@xn--wxa.email synopsis: Nuxeo changelog: ! '# Revision history for nuxeo ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: -any base: ! '>=4.10 && <5' time: -any text: -any conduit: -any conduit-extra: -any attoparsec: -any all-versions: - '0.2.0.0' - '0.2.0.1' - '0.2.0.2' author: Alexandre Peyroux latest: '0.2.0.2' description-type: haddock description: Nuxeo license-name: BSD3
Fix BC break with WebPush library 1.4
parameters: minishlink_web_push.class: Minishlink\WebPush\WebPush services: minishlink_web_push: class: '%minishlink_web_push.class%' arguments: ['%minishlink_web_push.auth%', '%minishlink_web_push.default_options%', '%minishlink_web_push.timeout%', null] calls: - [setAutomaticPadding, ['%minishlink_web_push.automatic_padding%']]
parameters: minishlink_web_push.class: Minishlink\WebPush\WebPush services: minishlink_web_push: class: '%minishlink_web_push.class%' arguments: ['%minishlink_web_push.auth%', '%minishlink_web_push.default_options%', '%minishlink_web_push.timeout%', []] calls: - [setAutomaticPadding, ['%minishlink_web_push.automatic_padding%']]
Work on the mail server
--- - name: Install postfix yum: name=postfix state=latest - name: Allow smtp through the firewall firewalld: port=smtp permanent=true state=enabled immediate=yes
--- - name: Install postfix yum: name={{ item }} state=latest with_items: - postfix - dovecot - dovecot-msql - name: Allow smtp through the firewall firewalld: port=smtp permanent=true state=enabled immediate=yes
Update from Hackage at 2018-05-28T16:36:39Z
homepage: http://happstack.com changelog-type: '' hash: b1056aa4737cf713fba40c5e3e88116c2673cbc68de91ee91496b56a1836446f test-bench-deps: {} maintainer: Happstack team <happs@googlegroups.com> synopsis: Efficient relational queries on Haskell sets. changelog: '' basic-deps: base: ! '>=4 && <5' syb: -any containers: -any syb-with-class: ! '>=0.6.1' safecopy: -any template-haskell: -any all-versions: - '1.0.0' - '1.0.1' - '1.0.2' - '1.0.3' - '1.0.4' - '1.0.5' - '1.0.6' - '1.0.6.1' - '1.0.7' author: Happstack team, HAppS LLC latest: '1.0.7' description-type: haddock description: Create and query sets that are indexed by multiple indices. license-name: BSD3
homepage: http://happstack.com changelog-type: '' hash: 160aeed9c855a247c599adf6a966ccd680f3dc7b2ca6145f2c4cbf062d2bb714 test-bench-deps: Cabal: ! '>=1.10' base: -any ixset: -any HUnit: -any containers: -any random: -any QuickCheck: -any maintainer: Happstack team <happs@googlegroups.com> synopsis: Efficient relational queries on Haskell sets. changelog: '' basic-deps: base: ! '>=4 && <5' syb: -any semigroups: ==0.18.* containers: -any syb-with-class: ! '>=0.6.1' safecopy: -any template-haskell: -any all-versions: - '1.0.0' - '1.0.1' - '1.0.2' - '1.0.3' - '1.0.4' - '1.0.5' - '1.0.6' - '1.0.6.1' - '1.0.7' - '1.1' author: Happstack team, HAppS LLC latest: '1.1' description-type: haddock description: Create and query sets that are indexed by multiple indices. license-name: BSD3
Update actions/setup-node action to v2
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages name: Node.js Package on: push: branches: - master jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 - run: yarn - run: yarn tsc -b packages publish-npm: needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 registry-url: https://registry.npmjs.org/ - run: yarn lerna publish --patch env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} publish-gpr: needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 registry-url: https://npm.pkg.github.com/ - run: yarn lerna publish --patch env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages name: Node.js Package on: push: branches: - master jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: 12 - run: yarn - run: yarn tsc -b packages publish-npm: needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: 12 registry-url: https://registry.npmjs.org/ - run: yarn lerna publish --patch env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} publish-gpr: needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: 12 registry-url: https://npm.pkg.github.com/ - run: yarn lerna publish --patch env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
Update section title to match current outline.
title: LitElement Documentation toc: introduction: title: Introduction url: /guide toplevel: true getting started: title: Getting Started url: /guide/start toplevel: true components: title: Building components header: true templates: title: Templates url: /guide/templates styles: title: Styles desc: Style your elements with CSS. url: /guide/styles properties: title: Properties url: /guide/properties events: title: Events url: /guide/events lifecycle: title: Lifecycle url: /guide/lifecycle tools: title: Tools header: true publish: title: Publish a component url: /guide/publish use: title: Use a component url: /guide/use resources: title: Resources header: true community: title: Community url: /guide/community lithtml: title: lit-html Guides url: https://lit-html.polymer-project.org
title: LitElement Documentation toc: introduction: title: Introduction url: /guide toplevel: true getting started: title: Getting Started url: /guide/start toplevel: true components: title: Writing components header: true templates: title: Templates url: /guide/templates styles: title: Styles desc: Style your elements with CSS. url: /guide/styles properties: title: Properties url: /guide/properties events: title: Events url: /guide/events lifecycle: title: Lifecycle url: /guide/lifecycle tools: title: Tools header: true publish: title: Publish a component url: /guide/publish use: title: Use a component url: /guide/use resources: title: Resources header: true community: title: Community url: /guide/community lithtml: title: lit-html Guides url: https://lit-html.polymer-project.org
Increase Metrics/AbcSize max value so that it's not too low for controllers and helpers
AllCops: TargetRubyVersion: 2.3 DisplayCopNames: true DisplayStyleGuide: true Exclude: - 'config/environments/*' - 'config/initializers/*' - 'db/schema.rb' - 'db/migrate/*' - 'db/seeds.rb' - 'test/test_helper.rb' - 'spec/**/*' - 'bin/update' - 'bin/setup' - 'app/views/**/*.slim' Metrics/LineLength: Max: 100 Layout/IndentationConsistency: EnforcedStyle: rails Metrics/MethodLength: Max: 20 Style/Documentation: Enabled: false
AllCops: TargetRubyVersion: 2.3 DisplayCopNames: true DisplayStyleGuide: true Exclude: - 'config/environments/*' - 'config/initializers/*' - 'db/schema.rb' - 'db/migrate/*' - 'db/seeds.rb' - 'test/test_helper.rb' - 'spec/**/*' - 'bin/update' - 'bin/setup' - 'app/views/**/*.slim' Metrics/LineLength: Max: 100 Layout/IndentationConsistency: EnforcedStyle: rails Metrics/MethodLength: Max: 20 Style/Documentation: Enabled: false Metrics/AbcSize: Max: 16
Include `monitor` into the Buildbucket GAE tarball.
name: luci-go/buildbucket-go extends: ../gae.yaml inputsdir: ../../buildbucket/appengine sources: - ../../buildbucket build: - go_gae_bundle: ${inputsdir}/frontend/service-default-go.yaml dest: ${contextdir}/frontend
name: luci-go/buildbucket-go extends: ../gae.yaml inputsdir: ../../buildbucket/appengine sources: - ../../buildbucket build: - go_gae_bundle: ${inputsdir}/frontend/service-default-go.yaml dest: ${contextdir}/frontend - go_gae_bundle: ${inputsdir}/monitor/service-monitor.yaml dest: ${contextdir}/monitor
Use main branch for Exercism GitHub Actions
name: Configlet CI on: push: pull_request: jobs: configlet: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Fetch configlet uses: exercism/github-actions/configlet-ci@master - name: Configlet Linter run: configlet lint .
name: Configlet CI on: push: pull_request: jobs: configlet: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Fetch configlet uses: exercism/github-actions/configlet-ci@main - name: Configlet Linter run: configlet lint .
Fix issue where it says dpeends instead of depend
name: ${project.name} main: vg.civcraft.mc.civmenu.CivMenu version: ${project.version} author: ['BlackXnt', 'Maxopoly', 'Rourke750'] depends: [CivModCore] commands: help: description: Help command. aliases: [help] permission: CivMenu.* usage: /help plugin sign: description: Command to sign agreement. aliases: [sign] permission: CivMenu.* usage: /sign permissions: CivMenu.*: description: Gives access to /sign and /help default: true
name: ${project.name} main: vg.civcraft.mc.civmenu.CivMenu version: ${project.version} author: ['BlackXnt', 'Maxopoly', 'Rourke750'] depend: [CivModCore] commands: help: description: Help command. aliases: [help] permission: CivMenu.* usage: /help plugin sign: description: Command to sign agreement. aliases: [sign] permission: CivMenu.* usage: /sign permissions: CivMenu.*: description: Gives access to /sign and /help default: true
Fix version name for nightly builds
name: Tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: tests: name: Test code runs-on: ubuntu-latest strategy: matrix: go: - ^1.13 - ^1.14 - ^1.15 - ^1 steps: - name: Set up Go uses: actions/setup-go@v2 with: go-version: ${{ matrix.go }} - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Test run: | make make test - name: Install packaging dependencies run: | sudo apt-get install rpm ruby-dev sudo gem install fpm - name: Check packaging run: | GO111MODULE=off go get github.com/mitchellh/gox make gox-build make DEVEL=1 fpm-deb make DEVEL=1 fpm-rpm make sum-files - name: Artifact id: artifact uses: actions/upload-artifact@v2 with: name: packages-${{ matrix.go }} path: | *.deb *.rpm sha256sum md5sum
name: Tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: tests: name: Test code runs-on: ubuntu-latest strategy: matrix: go: - ^1.13 - ^1.14 - ^1.15 - ^1 steps: - name: Set up Go uses: actions/setup-go@v2 with: go-version: ${{ matrix.go }} - name: Check out code uses: actions/checkout@v2 - name: Checkout to the latest tag run: | # Fetch all tags git fetch --depth=1 --tags # Get the latest tag VERS=$(git tag -l | sort -Vr | head -n1) # Fetch everything to the latest tag git fetch --shallow-since=$(git log $VERS -1 --format=%at) if: ${{ github.event_name == 'push' }} - name: Test run: | make make test - name: Install packaging dependencies run: | sudo apt-get install rpm ruby-dev sudo gem install fpm - name: Check packaging run: | GO111MODULE=off go get github.com/mitchellh/gox make gox-build make DEVEL=1 fpm-deb make DEVEL=1 fpm-rpm make sum-files - name: Artifact id: artifact uses: actions/upload-artifact@v2 with: name: packages-${{ matrix.go }} path: | *.deb *.rpm sha256sum md5sum
Switch to synchronize module instead of rsync
--- # Perform rsync deployment - name: ANSISTRANO | Ensure current folder is a directory file: state=directory path={{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }} - name: ANSISTRANO | Sync release to new current path command: rsync -a --copy-links --delete-after "{{ ansistrano_release_path.stdout }}/" "{{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }}/" # Ensure symlinks target paths is absent - name: ANSISTRANO | Ensure shared paths targets are absent file: state=absent path={{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }}/{{ item }} with_items: "{{ ansistrano_shared_paths }}" # Symlinks shared paths - name: ANSISTRANO | Create softlinks for shared paths file: state=link path={{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }}/{{ item }} src="{{ item | regex_replace('[^\/]*', '..') }}/shared/{{ item }}" with_items: "{{ ansistrano_shared_paths }}"
--- # Perform rsync deployment - name: ANSISTRANO | Ensure current folder is a directory file: state=directory path={{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }} - name: ANSISTRANO | Sync release to new current path synchronize: src="{{ ansistrano_release_path.stdout }}/" dest="{{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }}/" set_remote_user={{ ansistrano_rsync_set_remote_user }} recursive=yes delete=yes archive=yes delegate_to: "{{ inventory_hostname }}" # Ensure symlinks target paths is absent - name: ANSISTRANO | Ensure shared paths targets are absent file: state=absent path={{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }}/{{ item }} with_items: "{{ ansistrano_shared_paths }}" # Symlinks shared paths - name: ANSISTRANO | Create softlinks for shared paths file: state=link path={{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }}/{{ item }} src="{{ item | regex_replace('[^\/]*', '..') }}/shared/{{ item }}" with_items: "{{ ansistrano_shared_paths }}"
Add create database in before_script
language: php php: # - '5.4' - '5.5' - '5.6' - '7.0' # - hhvm - nightly services: - mysql before_script: - composer install - mysql -u root -e "CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret'; GRANT ALL PRIVILEGES ON * . * TO 'homestead'@'localhost'; FLUSH PRIVILEGES;" script: ./vendor/bin/phpunit
language: php php: # - '5.4' - '5.5' - '5.6' - '7.0' # - hhvm - nightly services: - mysql before_script: - composer install - mysql -e "create database base_repo_test_db;" - mysql -u root -e "CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret'; GRANT ALL PRIVILEGES ON * . * TO 'homestead'@'localhost'; FLUSH PRIVILEGES;" script: ./vendor/bin/phpunit
Migrate to container-based infrastructure of Travis CI
language: c compiler: - gcc - clang sudo: required addons: apt: packages: - scons - check - python - libjansson-dev - libcurl3-openssl-dev python: - "2.7" before_install: - whereis clang - sudo apt-get update -qq - sudo apt-get install -y check scons python-virtualenv libjansson-dev libcurl4-openssl-dev clang - sudo apt-get autoremove - whereis clang - scons statsite test_runner - virtualenv ve install: ve/bin/pip install pytest==2.3.4 script: ./test_runner && ve/bin/py.test integ
language: c compiler: - gcc - clang sudo: false addons: apt: packages: - scons - check - python - libjansson-dev - libcurl3-openssl-dev python: - "2.7" before_install: - whereis clang - sudo apt-get update -qq - sudo apt-get install -y check scons python-virtualenv libjansson-dev libcurl4-openssl-dev clang - sudo apt-get autoremove - whereis clang - scons statsite test_runner - virtualenv ve install: ve/bin/pip install pytest==2.3.4 script: ./test_runner && ve/bin/py.test integ
Test on `stable` instead of `iojs`
language: node_js node_js: - 'iojs' - '0.12' - '0.10' before_script: - chmod +x test/fixtures/optipng-linux - chmod 755 test/fixtures/optipng-linux - chmod +x test/fixtures/optipng-osx - chmod 755 test/fixtures/optipng-osx
language: node_js node_js: - 'stable' - '0.12' - '0.10' before_script: - chmod +x test/fixtures/optipng-linux - chmod 755 test/fixtures/optipng-linux - chmod +x test/fixtures/optipng-osx - chmod 755 test/fixtures/optipng-osx