Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Move Travis database reset earlier in runlist
language: ruby rvm: - 2.1.4 bundler_args: "--without production" before_install: - gem update bundler - bundle config build.nokogiri --use-system-libraries before_script: - cp config/database.travis.yml config/database.yml - psql -c 'create database panlexicon_test;' -U postgres - RAILS_ENV=test bundle exec...
language: ruby rvm: - 2.1.4 bundler_args: "--without production" before_install: - gem update bundler - bundle config build.nokogiri --use-system-libraries before_script: - cp config/database.travis.yml config/database.yml - psql -c 'create database panlexicon_test;' -U postgres - RAILS_ENV=test bundle exec...
Correct after_success test coverage build
language: java jdk: - oraclejdk8 sudo: false # faster builds notifications: slack: blossomproject:qUPz65E4R2K8KLnZ1wmVoXKb after_success: - mvn clean test jacoco:report coveralls:report
language: java jdk: - oraclejdk8 sudo: false # faster builds notifications: slack: blossomproject:qUPz65E4R2K8KLnZ1wmVoXKb after_success: - mvn clean test org.jacoco:jacoco-maven-plugin:report org.eluder.coveralls:coveralls-maven-plugin:report
Update Travis config to use Node@5.0
sudo: false language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" matrix: allow_failures: - node_js: "0.11" compiler: clang-3.6 env: - CXX=clang-3.6 addons: apt: sources: - llvm-toolchain-precise-3.6 - ubuntu-toolchain-r-test packages: - clang-3.6 ...
sudo: false language: node_js node_js: - "5.0" - "4.2" - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" matrix: allow_failures: - node_js: "0.11" compiler: clang-3.6 env: - CXX=clang-3.6 addons: apt: sources: - llvm-toolchain-precise-3.6 - ubuntu-toolchain-r-test packages: ...
Change the storage check to only run on Ubuntu 14.04
--- # Copyright 2015, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
--- # Copyright 2015, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to ...
Update from Hackage at 2017-08-18T09:51:00Z
homepage: '' changelog-type: '' hash: 47287a4d63ec5c494df558174a2e2d1f469bcd45c9b4124172f6ee97922526eb test-bench-deps: {} maintainer: Trevor L. McDonell <tmcdonell@cse.unsw.edu.au> synopsis: Parallel rendering of raster images using Accelerate changelog: '' basic-deps: gloss: ! '>=1.9' colour-accelerate: ! '>=0.1'...
homepage: '' changelog-type: '' hash: 2f5fd19319933b579ae461886695a2e08c0209a3847b06303cb84e154636851d test-bench-deps: {} maintainer: Trevor L. McDonell <tmcdonell@cse.unsw.edu.au> synopsis: Parallel rendering of raster images using Accelerate changelog: '' basic-deps: gloss: ! '>=1.9' colour-accelerate: ! '>=0.1'...
Fix jammit compilation: destroy MHTML.
# package_assets: always # To test this in development embed_assets: on # No javascript template pre-compiler template_function: off javascripts: shared: - public/javascripts/jquery.hoverIntent.minified.js - public/javascripts/pubsub.js - public/javascripts/rails.js - public/javascripts/jquery.coo...
# package_assets: always # To test this in development embed_assets: datauri # No javascript template pre-compiler template_function: off javascripts: shared: - public/javascripts/jquery.hoverIntent.minified.js - public/javascripts/pubsub.js - public/javascripts/rails.js - public/javascripts/jquer...
Fix github action env config
name: CI on: [push, pull_request] jobs: test: strategy: matrix: go-version: [1.15.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Setup uses: actions/setup-go@v2 with: go-v...
name: CI on: [push] jobs: test: strategy: matrix: go-version: [1.15.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Setup uses: actions/setup-go@v2 with: go-version: '1.15....
Update sortedcollections recipe to version 0.5.3
{% set name = "sortedcollections" %} {% set version = "0.4.2" %} {% set sha256 = "8aefd6cf0bb0a89888f192859c3dbf997b906b33cd4ce175d568fb972cfdb489" %} package: name: {{ name|lower }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }...
{% set name = "sortedcollections" %} {% set version = "0.5.3" %} {% set sha256 = "d56d6708e36aec959b08e64c3e5a0e01df518d6e6693d0f5b5c89529288edde6" %} package: name: {{ name|lower }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }...
Drop .NET Core SxX from build script
name: .NET Core on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET Core 2.1 uses: actions/setup-dotnet@v1 with: dotnet-version: '2.1.807' - name: Setup .NET ...
name: .NET Core on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET Core 2.1 uses: actions/setup-dotnet@v1 with: dotnet-version: '2.1.807' - name: Setup .NET ...
Update Chrome before running actions
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: CI on: push: branches: [ master ] pull_request: ...
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: CI on: push: branches: [ master ] pull_request: ...
Use the right db port for that node
ssh::port: 7022 swh::deploy::objstorage::directory: "%{hiera('swh::deploy::vault::cache')}" swh::deploy::vault::db::host: orangeriedev swh::deploy::vault::backend::listen::host: 0.0.0.0 # Don't use a worker for now as this will conflict with the production workers # because they have the same queue names. # # swh::d...
ssh::port: 7022 swh::deploy::objstorage::directory: "%{hiera('swh::deploy::vault::cache')}" swh::deploy::vault::db::host: orangeriedev swh::deploy::vault::backend::listen::host: 0.0.0.0 # Don't use a worker for now as this will conflict with the production workers # because they have the same queue names. # # swh::d...
Clear comments in JS build step and switch to main GITHUB_TOKEN.
name: JS Tests on: push: branches: - develop - master pull_request: types: - opened - reopened - synchronize jobs: js-tests: name: JS runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Read .nvmrc run: echo "##[set-output name=...
name: JS Tests on: push: branches: - develop - master pull_request: types: - opened - reopened - synchronize jobs: js-tests: name: JS runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Read .nvmrc run: echo "##[set-output name=...
Update workflow to install requirements
name: Build Test Coverage on: [push, pull_request] jobs: run: runs-on: ubuntu-latest env: OS: ubuntu-latest PYTHON: '3.6.8' steps: - name: Checkout uses: actions/checkout@v2.3.4 - name: Setup Python uses: actions/setup-python@v2.2.2 with: python-version: 3.6.8...
name: Build Test Coverage on: [push, pull_request] jobs: run: runs-on: ubuntu-latest env: OS: ubuntu-latest PYTHON: '3.6.8' steps: - name: Checkout uses: actions/checkout@v2.3.4 - name: Setup Python uses: actions/setup-python@v2.2.2 with: python-version: 3.6.8...
Revert "Remove extra slash in URLs"
# Dependencies markdown: kramdown highlighter: rouge # Permalinks permalink: pretty # Setup title: 'OpenNMT' tagline: 'NMT' description: 'An open-source neural machine translation system.' url: https://opennmt.github.io baseurl: https://opennmt.githu...
# Dependencies markdown: kramdown highlighter: rouge # Permalinks permalink: pretty # Setup title: 'OpenNMT' tagline: 'NMT' description: 'An open-source neural machine translation system.' url: https://opennmt.github.io/ baseurl: https://opennmt.gith...
Update config: add jekyll-sitemap plugin
# ################################### # Site wide configuration #################################### # title: Dudmy's Blog description: A blog to strive to survive as a developer. url: http://dudmy.github.io keywords: ["Programming", "Android", "Java", "Kotlin"] # ################################### # Jekyll configura...
# ################################### # Site wide configuration #################################### # title: Dudmy's Blog description: A blog to strive to survive as a developer. url: http://dudmy.github.io keywords: ["Programming", "Android", "Java", "Kotlin"] # ################################### # Jekyll configura...
Drop ruby 1.9.3 and 2.0.x tests; Add 2.3.0
language: ruby os: - linux - osx rvm: - 2.2.2 - 2.1.6 - 2.0.0 - 1.9.3
language: ruby os: - linux - osx rvm: - 2.3.0 - 2.2.2 - 2.1.6
Add link to Leikkinetti page
url: / permalink: pretty name: jlilja.net menu: - text: Etusivu url: / - text: CV url: /cv - text: Palvelut url: /palvelut children: - text: WWW-sivut url: /palvelut/www-sivut - te...
url: / permalink: pretty name: jlilja.net menu: - text: Etusivu url: / - text: CV url: /cv - text: Palvelut url: /palvelut children: - text: WWW-sivut url: /palvelut/www-sivut - te...
Update from Hackage at 2015-09-03T11:38:06+0000
homepage: '' changelog-type: '' hash: 1ee173b068bc444c08efa6802e86f4d0163cddc6dbaa7cd36cb5ed49d7200f1b test-bench-deps: {} maintainer: Henry Bucklow <henry@elsie.org.uk> synopsis: A typeclass and an implementation for double-ended queues. changelog: '' basic-deps: base: <5 QuickCheck: ! '>=2' safe: -any all-versi...
homepage: '' changelog-type: '' hash: 8702b1f815eb3132730b83e600f259b0142681d5d7e6b9b52e6bfb29fe02cdc6 test-bench-deps: Cabal: -any base: <5 cabal-test-quickcheck: -any dequeue: -any maintainer: Henry Bucklow <henry@elsie.org.uk> synopsis: A typeclass and an implementation for double-ended queues. changelog: ''...
Disable build for other users
name: Docker build and push on: push: branches: - master jobs: Publish-to-docker: runs-on: ubuntu-latest env: DOCKER_TAG: latest-multi steps: - name: Checkout uses: actions/checkout@v1 - name: Set up Docker Buildx id: buildx uses: cra...
name: Docker build and push on: push: branches: - master jobs: Publish-to-docker: runs-on: ubuntu-latest env: DOCKER_TAG: latest-multi steps: - name: Checkout uses: actions/checkout@v2 - name: Set up Docker Buildx id: buildx uses: cra...
Update from Hackage at 2017-05-06T19:07:17Z
homepage: https://github.com/prateekkumarweb/haskell-go-checkers changelog-type: '' hash: 47240c9dad0dd95b38da72d976de20c40490e287b744dfd24d401554c7aee6e5 test-bench-deps: {} maintainer: prateek@prateekkumar.in synopsis: Go and Checkers game in Haskell changelog: '' basic-deps: gloss: ==1.11.* base: ! '>=4.9 && <4....
homepage: https://github.com/prateekkumarweb/haskell-go-checkers changelog-type: markdown hash: cc5f2fb75763a7e52deeba39c5e3aded5dd0fdf6fac4f7215cd2cd152f887e00 test-bench-deps: {} maintainer: prateek@prateekkumar.in synopsis: Go and Checkers game in Haskell changelog: ! '# Revision history for haskell-go-checkers ...
Update from Hackage at 2017-10-06T00:05:25Z
homepage: https://github.com/kindaro/primes-type#readme changelog-type: '' hash: 22ba5df19a7b46665c2717c3d3319668a8fc2d30ada45be7679f5c27b0097649 test-bench-deps: HTF: ! '>=0.13 && <0.14' base: ! '>=4.8 && <5' primes: ! '>=0.2 && <0.3' primes-type: -any maintainer: kindaro@gmail.com synopsis: Type-safe prime nu...
homepage: https://github.com/kindaro/primes-type#readme changelog-type: '' hash: 71f9a403061697291463bb459197e8e797a9fc7dc1a18b69eee1be4035b6d4f0 test-bench-deps: HTF: ! '>=0.13 && <0.14' base: ! '>=4.8 && <5' primes: ! '>=0.2 && <0.3' primes-type: -any maintainer: kindaro@gmail.com synopsis: Type-safe prime nu...
Update from Hackage at 2017-03-21T17:45:15Z
homepage: https://github.com/qoelet/dsc#readme changelog-type: '' hash: 761d965cbaa560343b685d7fbb4b68ab160ef88f7b5189c5416543cb1be15375 test-bench-deps: bytestring: -any base: ! '>=4.7 && <5' base64-bytestring: -any hspec: ==2.* SimpleAES: -any QuickCheck: -any string-conversions: -any maintainer: Kenny ...
homepage: https://github.com/qoelet/dsc#readme changelog-type: '' hash: 5e40592e0c2383a689e4401f612965d4196ae9ebfa3b85ed3308a1dce395c00a test-bench-deps: bytestring: -any base: ! '>=4.7 && <5' base64-bytestring: -any hspec: ==2.* SimpleAES: -any QuickCheck: -any string-conversions: -any maintainer: Kenny ...
Use $named argument in service definition
# Services are enabled via configuration, hence the twig.extension tag is not # added in these services. services: # Fabien Potencier' Twig Extensions dms_twig_extension.fabpot.array: class: Twig_Extensions_Extension_Array dms_twig_extension.fabpot.date: class: Twig_Extensions_Extension_Date ...
# Services are enabled via configuration, hence the twig.extension tag is not # added in these services. services: # Fabien Potencier' Twig Extensions dms_twig_extension.fabpot.array: class: Twig_Extensions_Extension_Array dms_twig_extension.fabpot.date: class: Twig_Extensions_Extension_Date ...
Remove linter rules included in pedantic 1.8.0
include: package:pedantic/analysis_options.yaml linter: rules: - avoid_empty_else - avoid_init_to_null - avoid_null_checks_in_equality_operators - avoid_unused_constructor_parameters - await_only_futures - camel_case_types - cancel_subscriptions - constant_identifier_names - contro...
include: package:pedantic/analysis_options.yaml linter: rules: - avoid_null_checks_in_equality_operators - avoid_unused_constructor_parameters - await_only_futures - camel_case_types - cancel_subscriptions - constant_identifier_names - control_flow_in_finally - directives_ordering ...
Update from Hackage at 2019-10-23T09:27:51Z
homepage: https://github.com/mniip/th-tc changelog-type: '' hash: d062f62f7bf5dd805e6bdda5da48be41465d7813a48f1de0951310f9925d3daf test-bench-deps: {} maintainer: mniip@mniip.com synopsis: Typechecking in Template Haskell changelog: '' basic-deps: base: ! '>=4.12 && <4.13' containers: ! '>=0.6' lens: ! '>=4.0' ...
homepage: https://github.com/mniip/th-tc changelog-type: '' hash: ae8f16f86fcfa62b1a174f2c4fe40bd78fe0742923fd670dc47892ee5acdb817 test-bench-deps: {} maintainer: mniip@mniip.com synopsis: Typechecking in Template Haskell changelog: '' basic-deps: base: ! '>=4.12 && <4.13' containers: ! '>=0.6' lens: ! '>=4.0' ...
Add SGE variables to /etc/sudoers
--- - name: create epel.repo template: src=utils/templates/epel-es.repo dest=/etc/yum.repos.d/epel.repo - name: Yum install SGE in REL system yum: name=gridengine,gridengine-execd,openssh-clients,gridengine-qmaster,gridengine-qmon - name: Set RedHat facts set_fact: SGE_ROOT: /usr/lib/gridengine EXEC_SER...
--- - name: create epel.repo template: src=utils/templates/epel-es.repo dest=/etc/yum.repos.d/epel.repo - name: Yum install SGE in REL system yum: name=gridengine,gridengine-execd,openssh-clients,gridengine-qmaster,gridengine-qmon - name: Set RedHat facts set_fact: SGE_ROOT: /usr/lib/gridengine EXEC_SER...
Update from Hackage at 2017-05-24T08:41:07Z
homepage: http://haskell-servant.readthedocs.org/ changelog-type: '' hash: 4b6443d2de0087bed78cd5a0238b7483c5ef75dc72ecac43a45d47522134857a test-bench-deps: {} maintainer: haskell-servant-maintainers@googlegroups.com synopsis: Servant CSV content-type for cassava changelog: '' basic-deps: base: ! '>=4.6 && <5' serv...
homepage: http://haskell-servant.readthedocs.org/ changelog-type: '' hash: 271987181242e95e3bc6f664edcbfe939e8358a3d9abc61dbfb6e20ecdd65031 test-bench-deps: {} maintainer: haskell-servant-maintainers@googlegroups.com synopsis: Servant CSV content-type for cassava changelog: '' basic-deps: bytestring: -any base: ! '...
Update OpenWebWeaver to 0.4.2 (6)
AntiFeatures: - NonFreeNet Categories: - Science & Education License: GPL-3.0-only AuthorName: deftkHD AuthorEmail: deftk@protonmail.com SourceCode: https://github.com/deftkHD/OpenWebWeaver-Android IssueTracker: https://github.com/deftkHD/OpenWebWeaver-Android/issues Changelog: https://github.com/deftkHD/OpenWebWea...
AntiFeatures: - NonFreeNet Categories: - Science & Education License: GPL-3.0-only AuthorName: deftkHD AuthorEmail: deftk@protonmail.com SourceCode: https://github.com/deftkHD/OpenWebWeaver-Android IssueTracker: https://github.com/deftkHD/OpenWebWeaver-Android/issues Changelog: https://github.com/deftkHD/OpenWebWea...
Update from Hackage at 2021-03-05T08:05:15Z
homepage: https://github.com/haskell/haskell-language-server#readme changelog-type: '' hash: 55d608c5c81d50c3ceeaa5e91e837695c9f88e66a209fbf86de38def7bb712cf test-bench-deps: {} maintainer: jjc9310@gmail.com synopsis: Class/instance management plugin for Haskell Language Server changelog: '' basic-deps: shake: -any ...
homepage: https://github.com/haskell/haskell-language-server#readme changelog-type: '' hash: 55d608c5c81d50c3ceeaa5e91e837695c9f88e66a209fbf86de38def7bb712cf test-bench-deps: {} maintainer: jjc9310@gmail.com synopsis: Class/instance management plugin for Haskell Language Server changelog: '' basic-deps: shake: -any ...
Test another method to get user home 3
--- # Main task file for account-management role - name: Load the OS specific varibles include_vars: "{{ role_path }}/vars/{{ ansible_os_family }}.yml" # Install required packages - include: install_debian.yml tags: - install - user-management when: ansible_os_family == "Debian" - include: create_ac...
--- # Main task file for account-management role - name: Load the OS specific varibles include_vars: "{{ role_path }}/vars/{{ ansible_os_family }}.yml" # Install required packages - include: install_debian.yml tags: - install - user-management when: ansible_os_family == "Debian" - include: create_ac...
Install stylelint dependencies locally; Disable Chromium download
image: bitnami/node:8 before_script: - env DEBIAN_FRONTEND=noninteractive apt-get update -qq && env DEBIAN_FRONTEND=noninteractive apt-get install -y -qq php < /dev/null > /dev/null - npm install --global --quiet --no-save eslint stylelint stylelint-config-standard stylelint-order stylelint-scss - node -v - np...
image: bitnami/node:8 before_script: - env DEBIAN_FRONTEND=noninteractive apt-get update -qq && env DEBIAN_FRONTEND=noninteractive apt-get install -y -qq php < /dev/null > /dev/null - npm install --global --quiet eslint stylelint; env PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true npm install --quiet --no-save stylelint-co...
Update actions/setup-go action to v3
on: [push, pull_request] name: Test env: GOPROXY: "https://proxy.golang.org" jobs: test: strategy: matrix: go-version: [1.13.x, 1.14.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - name: Install Go uses: actions/setup-go@v2 ...
on: [push, pull_request] name: Test env: GOPROXY: "https://proxy.golang.org" jobs: test: strategy: matrix: go-version: [1.13.x, 1.14.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - name: Install Go uses: actions/setup-go@v3 ...
Update from Hackage at 2015-12-27T02:35:38+0000
homepage: http://github.com/danstiner/hfmt changelog-type: '' hash: a3601d3835951e91646491c00db49896185a11c22f235f6f2d17ef3b703d781a test-bench-deps: test-framework-hunit: -any test-framework: -any base: ==4.* HUnit: -any hfmt: -any maintainer: Daniel Stiner <daniel.stiner@gmail.com> synopsis: Haskell source ...
homepage: http://github.com/danstiner/hfmt changelog-type: '' hash: a13e60084799840cd34d5ec9834fd5c133c77bdd40cb5402dae416445cb6ab46 test-bench-deps: test-framework-hunit: -any test-framework: -any base: ==4.* HUnit: -any hfmt: -any maintainer: Daniel Stiner <daniel.stiner@gmail.com> synopsis: Haskell source ...
Add celery to the web servers.
--- - name: Provision a {{ application_name }} web server hosts: webservers sudo: yes sudo_user: root remote_user: root vars: - update_apt_cache: yes vars_files: - env_vars/base.yml - env_vars/{{ env }}.yml roles: - base - web
--- - name: Provision a {{ application_name }} web server hosts: webservers sudo: yes sudo_user: root remote_user: root vars: - update_apt_cache: yes vars_files: - env_vars/base.yml - env_vars/{{ env }}.yml roles: - base - web - celery
Update from Hackage at 2018-09-16T16:51:00Z
homepage: '' changelog-type: '' hash: cb985f9f09b6fccfe38279bcb401ebbc21d140838a3ac36fc20eb0088232eeb8 test-bench-deps: {} maintainer: miak.enina@gmail.com synopsis: Tests for the miconix sequencer library. changelog: '' basic-deps: base: ! '>=4.5 && <4.7' all-versions: - '0.2' author: laypod Une latest: '0.2' descri...
homepage: '' changelog-type: '' hash: e6bb327536fb1ee018c5a66488442dac286952fc245cfb38ae2b3920212f2e18 test-bench-deps: {} maintainer: miak.enina@gmail.com synopsis: a. changelog: '' basic-deps: base: ! '>=4.5 && <4.7' all-versions: - '0.2' author: laypod Une latest: '0.2' description-type: haddock description: ! 'Te...
Use 64-bit integers to represent the triangle count in BI Q11
workload: BI operation: read number: 11 title: Friend triangles description: | For a given `country`, count all the distinct triples of *Persons* such that: * `a` is friend of `b`, * `b` is friend of `c`, * `c` is friend of `a`, and these friendships were created after a given `startDate`. Distinct means...
workload: BI operation: read number: 11 title: Friend triangles description: | For a given `country`, count all the distinct triples of *Persons* such that: * `a` is friend of `b`, * `b` is friend of `c`, * `c` is friend of `a`, and these friendships were created after a given `startDate`. Distinct means...
Add ordering constraint to BI Q18
workload: BI operation: read number: 18 title: Friend recommendation description: | For a given *Tag* (`tag`), for each `person1` interested in `tag`, recommend new friends (`person2`) who * do not yet know `person1` * at least one mutual friend with `person1` * are also interested in `tag`. Rank *Persons* ...
workload: BI operation: read number: 18 title: Friend recommendation description: | For a given *Tag* (`tag`), for each `person1` interested in `tag`, recommend new friends (`person2`) who * do not yet know `person1` * at least one mutual friend with `person1` * are also interested in `tag`. Rank *Persons* ...
Update limma to latest release and depend on r-base
package: name: bioconductor-limma version: 3.28.21 source: fn: limma_3.28.21.tar.gz url: http://bioconductor.org/packages/release/bioc/src/contrib/limma_3.28.21.tar.gz md5: a097aec2cc0153f8abf778dfd5ba2dfa build: number: 0 rpaths: - lib/R/lib/ - lib/ requirements: build: - r run: - r t...
package: name: bioconductor-limma version: 3.30.13 source: url: https://bioconductor.org/packages/release/bioc/src/contrib/limma_3.30.13.tar.gz md5: 6505fdccd7ae146652224377cd104e6a build: number: 0 rpaths: - lib/R/lib/ - lib/ requirements: build: - r-base run: - r-base test: commands:...
Correct license field to GPL 2 [skip appveyor]
{% set version = "0.2.1" %} package: name: scikit-umfpack version: {{ version }} source: fn: scikit-umfpack--{{ version }}.tar.gz url: https://pypi.io/packages/source/s/scikit-umfpack/scikit-umfpack-{{ version }}.tar.gz sha256: 9ebfb4ac4cd1ec545a9211160c65129a77b6e2fab02d8cfa30b10278f5773fd1 patches: ...
{% set version = "0.2.1" %} package: name: scikit-umfpack version: {{ version }} source: fn: scikit-umfpack--{{ version }}.tar.gz url: https://pypi.io/packages/source/s/scikit-umfpack/scikit-umfpack-{{ version }}.tar.gz sha256: 9ebfb4ac4cd1ec545a9211160c65129a77b6e2fab02d8cfa30b10278f5773fd1 patches: ...
Update from Hackage at 2017-01-29T11:49:24Z
homepage: https://github.com/louispan/glazier#readme changelog-type: '' hash: 7c81616c66f9e612c6a2d62dbd20b6d145c54db82322d2c513adb0ef236bc914 test-bench-deps: {} maintainer: louis@pan.me synopsis: Composable widgets framework changelog: '' basic-deps: semigroupoids: ! '>=5 && <6' base: ! '>=4.7 && <5' lens: ! '>...
homepage: https://github.com/louispan/glazier#readme changelog-type: '' hash: 60951fb9b0a34b7b7a46eb104a1a17637252974e6c3d95942cbbc2fe2587ef07 test-bench-deps: {} maintainer: louis@pan.me synopsis: Composable widgets framework changelog: '' basic-deps: semigroupoids: ! '>=5 && <6' base: ! '>=4.7 && <5' lens: ! '>...
Update from Hackage at 2018-05-30T13:23:08Z
homepage: https://github.com/nikita-volkov/refined changelog-type: '' hash: fe53ff1d78e1940138e9e3a1fe42a9caceaa7bf36466761e380600c6bdc42964 test-bench-deps: {} maintainer: Nikita Volkov <nikita.y.volkov@mail.ru> synopsis: Refinement types with static and runtime checking changelog: '' basic-deps: exceptions: ! '>=0....
homepage: https://github.com/nikita-volkov/refined changelog-type: '' hash: 18bff4c98a6d85c467aa87409f1523363946265ad353bbe434b9357a4e887858 test-bench-deps: {} maintainer: Nikita Volkov <nikita.y.volkov@mail.ru> synopsis: Refinement types with static and runtime checking changelog: '' basic-deps: exceptions: ! '>=0....
Make Travis test against more PHP versions.
language: php php: - '7.0' before_script: - composer update --prefer-source script: - ./vendor/bin/phpunit --coverage-clover ./build/clover.xml - sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.3' ]; then ./vendor/bin/phpcs --standard=PSR2 ./src/ ./tests/; fi"
language: php php: - '7.0' - '7.1' - '7.2' before_script: - composer update --prefer-source script: - ./vendor/bin/phpunit --coverage-clover ./build/clover.xml - sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.3' ]; then ./vendor/bin/phpcs --standard=PSR2 ./src/ ./tests/; fi"
Remove 1.9.3 from CI build as we dropped support
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.1 - jruby-19mode - rbx-2 - ruby-head env: - "RAILS_VERSION=3.2" - "RAILS_VERSION=4.0" - "RAILS_VERSION=4.1" - "RAILS_VERSION=master" matrix: allow_failures: - rvm: ruby-head - env: "RAILS_VERSION=master" - env: "RAILS_VERSION=4.0" - env: "R...
language: ruby rvm: - 2.0.0 - 2.1.1 - jruby-19mode - rbx-2 - ruby-head env: - "RAILS_VERSION=3.2" - "RAILS_VERSION=4.0" - "RAILS_VERSION=4.1" - "RAILS_VERSION=master" matrix: allow_failures: - rvm: ruby-head - env: "RAILS_VERSION=master" - env: "RAILS_VERSION=4.0" - env: "RAILS_VERSI...
Update Travis to Use greenkeeper-lockfile
language: node_js node_js: - "node" - "8" install: - yarn - yarn run setup before_script: - yarn test after_success: - yarn coverage
language: node_js node_js: - "node" - "8" before_install: - yarn global add greenkeeper-lockfile@1 install: - yarn - yarn run setup before_script: - greenkeeper-lockfile-update - yarn test after_script: - greenkeeper-lockfile-upload after_success: - yarn coverage
Enable CI for Python 3.8
language: python python: - "2.7" - "3.6" - "pypy" install: - pip install pipenv - pipenv install --dev script: - pipenv run mamba after_success: - pipenv run coverage report
language: python python: - "2.7" - "3.6" - "3.8" - "pypy" install: - pip install pipenv - pipenv install --dev script: - pipenv run mamba after_success: - pipenv run coverage report
Fix builds of Atom v1.19.0 beta
### Project specific config ### language: generic env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" matrix: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta os: - linux - osx dist: trusty ### Generic setup follows ### script: - curl -s -O https://raw.githubusercontent.com/...
### Project specific config ### language: generic env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" matrix: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta os: - linux - osx dist: trusty ### Generic setup follows ### script: - curl -s -O https://raw.githubusercontent.com/...
Add VirtualBox to list of software to install.
before_install: - sudo apt-get update -qq - sudo apt-get install python cowsay vagrant=1:1.7.4 python-pip=1.5.4-1ubuntu1 - sudo pip install ansible==1.9.0.1 - ansible-galaxy install thydel.patch -proles/ - ansible-galaxy install yaegashi.blockinfile -proles/ - vagrant plugin install vagrant-vbguest script:...
before_install: - wget http://download.virtualbox.org/virtualbox/5.0.2/virtualbox-5.0_5.0.2-102096~Ubuntu~trusty_i386.deb - sudo dpkg -i virtualbox-5.0_5.0.2-102096~Ubuntu~trusty_i386.deb - sudo apt-get update -qq - sudo apt-get install python cowsay vagrant=1:1.7.4 python-pip=1.5.4-1ubuntu1 - sudo pip instal...
Add Python 3.9-dev to Travis configuration.
language: python python: - "3.5" - "3.6" - "3.7" - "3.8" # - "3.9" - "nightly" - "pypy3" matrix: include: - stage: codecheck python: 3.8 install: - pip install flake8 script: - flake8 sqlparse after_success: skip install: - pip install -Uq pytest pytest-co...
language: python python: - "3.5" - "3.6" - "3.7" - "3.8" - "3.9-dev" - "nightly" - "pypy3" matrix: include: - stage: codecheck python: 3.8 install: - pip install flake8 script: - flake8 sqlparse after_success: skip install: - pip install -Uq pytest pytest-...
Remove ruby 2.1 on CI
language: ruby cache: bundler bundler_args: --without development before_script: "bin/rake refinery:testing:dummy_app" env: - DB=postgresql - DB=mysql rvm: - 2.3.0 - 2.2 - 2.1 sudo: false
language: ruby cache: bundler bundler_args: --without development before_script: "bin/rake refinery:testing:dummy_app" env: - DB=postgresql - DB=mysql rvm: - 2.3.0 - 2.2 sudo: false
Use Sonatype credentials for deployment
language: groovy jdk: - openjdk7 cache: apt: true directories: - $HOME/.gradle/caches install: - sudo apt-get install pandoc texlive-latex-base texlive-luatex r-base-core - ./gradlew ciPrepare script: ./gradlew ciBuild after_success: - ./gradlew ciPostBuild env: global: - DEPLOY_USER=travis - secure: cUGq...
language: groovy jdk: - openjdk7 cache: apt: true directories: - $HOME/.gradle/caches install: - sudo apt-get install pandoc texlive-latex-base texlive-luatex r-base-core - ./gradlew ciPrepare script: ./gradlew ciBuild after_success: - ./gradlew ciPostBuild env: global: - DEPLOY_USER=ekstrand - secure: Z3...
Test latest 2.2 on Travis.
--- language: ruby rvm: - 2.1 sudo: false before_script: - sh -e /etc/init.d/xvfb start - export DISPLAY=:99.0 - bundle exec rake test_app script: - bundle exec rspec spec
--- language: ruby rvm: - 2.1 - 2.2 sudo: false before_script: - sh -e /etc/init.d/xvfb start - export DISPLAY=:99.0 - bundle exec rake test_app script: - bundle exec rspec spec
Update TracisCI for Go 1.4 release.
language: go go: - 1.2 - release install: - go get -d -t -v ./... - go get -v code.google.com/p/go.tools/cmd/vet - go get -v github.com/GeertJohan/fgt - go get -v github.com/golang/lint/golint script: - export PATH=$PATH:$HOME/gopath/bin - go vet - fgt golint -min_confidence=0.9 . - go test -v
language: go go: - 1.3 - release - tip install: - go get -d -t -v ./... - if [ "$TRAVIS_GO_VERSION" = "1.3" ]; then go get -v code.google.com/p/go.tools/cmd/vet else go get -v golang.org/x/tools/cmd/vet fi - go get -v github.com/GeertJohan/fgt - go get -v github.com/golang/lint/golint script: - export P...
Use trusty-backports universe instead of wily
language: bash sudo: required dist: trusty before_install: - echo "deb http://archive.ubuntu.com/ubuntu/ wily universe" | sudo tee -a /etc/apt/sources.list - sudo apt-get update -qq - sudo apt-get install shellcheck -y script: - shellcheck $(find . -maxdepth 1 -type f -executable)
language: bash sudo: required dist: trusty before_install: - echo "deb http://archive.ubuntu.com/ubuntu/ trusty-backports universe" | sudo tee -a /etc/apt/sources.list - sudo apt-get update -qq - sudo apt-get install shellcheck -y script: - shellcheck $(find . -maxdepth 1 -type f -executable)
Remove cache + branch restriction
language: java jdk: - oraclejdk8 os: - linux branches: only: - master cache: directories: - $HOME/.gradle
language: java jdk: - oraclejdk8 os: - linux
Add CHAINER_VERSION config to CI
language: python cache: pip python: - "2.7" - "3.5.1" # command to install dependencies install: - pip install --upgrade pip setuptools wheel - pip install -r requirements.txt --only-binary=numpy,scipy - pip install jupyter - pip install atari_py>=0.1.1 - pip install hacking - pip install coveralls - ...
language: python cache: pip python: - "2.7" - "3.5.1" env: - CHAINER_VERSION=2 - CHAINER_VERSION=3 # command to install dependencies install: - pip install --upgrade pip setuptools wheel - pip install -r requirements.txt --only-binary=numpy,scipy - if [ $CHAINER_VERSION -eq 2 ]; then - pip install "ch...
Remove deprecated option from composer install
sudo: false language: php matrix: allow_failures: - php: hhvm - php: 7 php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - 7 before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install --dev --no-interaction - mkdir -p build/logs script: - ./vendor/bin/phpunit --coverage-tex...
sudo: false language: php matrix: allow_failures: - php: hhvm - php: 7 php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - 7 before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install --no-interaction - mkdir -p build/logs script: - ./vendor/bin/phpunit --coverage-text --co...
Move ls from before_install to before_script
addons: apt: sources: - ubuntu-toolchain-r-test - ubuntu-sdk-team packages: - qtcreator - qtcreator-dev language: cpp sudo: false cache: apt: true ccache: true directories: deps repos compiler: - clang - g++ before_install: - cd ./repos - ls - "[[ ! -e ...
addons: apt: sources: - ubuntu-toolchain-r-test - ubuntu-sdk-team packages: - qtcreator - qtcreator-dev language: cpp sudo: false cache: apt: true ccache: true directories: deps repos compiler: - clang - g++ before_install: - cd ./repos - "[[ ! -e glm ]] ...
Fix Rubinius build on Travis
language: ruby bundler_args: --without development rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.5 - 2.3.1 - ruby-head - ree - rbx - jruby matrix: allow_failures: - rvm: ruby-head - rvm: rbx before_install: - gem install bundler
language: ruby bundler_args: --without development rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.5 - 2.3.1 - ruby-head - ree - rbx-2 - jruby matrix: allow_failures: - rvm: ruby-head - rvm: rbx before_install: - gem install bundler
Send notifications to tech@shopello.se at all times
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 install: - composer install script: - make
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 install: - composer install script: - make notifications: email: - tech@shopello.se
Use Travis’ new container-based infrastructure
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.6 - 2.2.2 script: bundle exec rspec spec --color --format doc
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.6 - 2.2.2 script: bundle exec rspec spec --color --format doc sudo: false
Add branch '0.46' to Travis CI builds
--- language: java sudo: false os: - linux branches: only: - master notifications: email: false slack: line-armeria:vLZppggTRH02hwY2eOACIzCG cache: directories: - $HOME/.gradle - $HOME/.jdk env: global: - JAVA_HOME=$HOME/.jdk/default - PATH=$JAVA_HOME/bin:$PATH - GRADLE_OPTS=-Xm...
--- language: java sudo: false os: - linux branches: only: - master - '0.46' notifications: email: false slack: line-armeria:vLZppggTRH02hwY2eOACIzCG cache: directories: - $HOME/.gradle - $HOME/.jdk env: global: - JAVA_HOME=$HOME/.jdk/default - PATH=$JAVA_HOME/bin:$PATH - GR...
Allow failures for PHP 7.1
language: php sudo: false before_install: - composer config --global github-oauth.github.com $github_oauth_token - travis_retry composer self-update install: travis_retry composer install matrix: fast_finish: true include: - php: 7.0 - php: 7.1 cache: directories: - $HOME/.composer/cache scr...
language: php sudo: false before_install: - composer config --global github-oauth.github.com $github_oauth_token - travis_retry composer self-update install: travis_retry composer install matrix: fast_finish: true include: - php: 7.0 - php: 7.1 allow_failures: - php: 7.1 cache: directories:...
Change when composer commands are run
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer self-update - composer install --dev --prefer-source script: phpunit --coverage-text --coverage-clover ./build/logs/clover.xml after_script: - php vendor/bin/coveralls -v
language: php php: - 5.3.3 - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_install: - composer self-update install: - composer install --dev --prefer-source script: - phpunit --coverage-text --coverage-clover ./build/logs/clover.xml after_script: - php vendor/bin/coveralls -v
Set ruby env to embedded ruby in ChefDK
sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" install: "bundle install --no-cache" script: - rubocop - foodcritic -f any -f ~FC015 -X spec . - bundle exec rspec --color --format progress
sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk before_install: - eval "$(/opt/chefdk/bin/chef shell-init bash)" install: "bundle install --no-cache" script: - rubocop - foodcritic -f any -f ~FC015 -X spec . - bundle exec rspec --color --format progress
Allow PHP7 build to fail
sudo: false language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - 7 before_install: - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then composer require satooshi/php-coveralls:dev-master --no-update; fi; install: - composer update --prefer-source before_script: - mkdir -p build/logs sc...
sudo: false language: php matrix: allow_failures: - php: 7 php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - 7 before_install: - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then composer require satooshi/php-coveralls:dev-master --no-update; fi; install: - composer update --prefer-source...
Test on modern ruby releases in Travis
language: ruby rvm: - 2.2.0 before_install: - gem update bundler # This prevents testing branches that are created just for PRs branches: only: - master
distro: xenial cache: bundler language: ruby rvm: - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 before_install: - gem update bundler # This prevents testing branches that are created just for PRs branches: only: - master
Disable xdebug, hopefully this works now
language: php php: - 5.5 install: - echo "extension=xdebug.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - echo "yes\n" | pecl install pecl_http - cat ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - composer install --prefer-dist --dev - npm install -g grunt-cli - npm install script: gru...
language: php php: - 5.5 install: - echo "yes\n" | pecl install pecl_http - composer install --prefer-dist --dev - npm install -g grunt-cli - npm install script: grunt test
Use TRAVIS_BUILD_DIR, install paramedic by npm
language: objective-c git: depth: 2 node_js: - "0.10" install: - echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config - cd .. - npm install -g purplecabbage/cordova-paramedic - npm install -g cordova - npm install -g ios-sim script: - cordova-paramedic --platform ios --plugin ../cor...
language: objective-c git: depth: 2 node_js: - "0.10" install: - echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config - cd .. - npm install -g cordova-paramedic - npm install -g cordova - npm install -g ios-sim script: - cordova-paramedic --platform ios --plugin ${TRAVIS_BUILD_DIR}
Exclude cname from being deployed
# Site wide configuration name: Lisbeth Hamlin description: "My art is dedicated to fostering an appreciation of cultural diversity." logo: teaser: locale: en_US url: //www.lisbethhamlin.com # Jekyll configuration sass: sass_dir: _sass style: compressed permalink: /:categories/:title/ kramdown: toc_levels:...
# Site wide configuration name: Lisbeth Hamlin description: "My art is dedicated to fostering an appreciation of cultural diversity." logo: teaser: locale: en_US url: //www.lisbethhamlin.com # Jekyll configuration sass: sass_dir: _sass style: compressed permalink: /:categories/:title/ kramdown: toc_levels:...
Test with Ruby 3.1 on CI
name: build on: [push, pull_request] jobs: build: strategy: fail-fast: false matrix: include: - ruby: 3.0 gemfile: Gemfile - ruby: 3.0 gemfile: gemfiles/activerecord61.gemfile - ruby: 2.7 gemfile: gemfiles/activerecord60.gemfile - r...
name: build on: [push, pull_request] jobs: build: strategy: fail-fast: false matrix: include: - ruby: 3.1 gemfile: Gemfile - ruby: "3.0" gemfile: gemfiles/activerecord61.gemfile - ruby: 2.7 gemfile: gemfiles/activerecord60.gemfile -...
Update from Hackage at 2016-09-18T12:25:13+0000
homepage: http://msgpack.org/ changelog-type: '' hash: 97901066af0a455270fb733e6bf1a7ddc3bfd0746fcdebc614483d7eedf0ecfe test-bench-deps: bytestring: -any base: <5 unordered-containers: -any hspec: -any text: -any containers: -any data-msgpack: -any hashable: -any QuickCheck: -any maintainer: Iphigenia...
homepage: http://msgpack.org/ changelog-type: '' hash: 60add5f2ce43912902162e78b93d4f136d9c854266a10c21c08a823f9c9ee0c3 test-bench-deps: bytestring: -any base: <5 unordered-containers: -any hspec: -any text: -any containers: -any data-msgpack: -any hashable: -any QuickCheck: -any maintainer: Iphigenia...
Update from Hackage at 2018-01-25T05:28:32Z
homepage: https://github.com/vmchale/language-ats#readme changelog-type: '' hash: 5ccbe95efb23df645bd8ca7835e59bb4c9b4a15f9242cac542b37e169c547b7b test-bench-deps: base: -any hspec: -any criterion: -any language-ats: -any hspec-dirstream: -any system-filepath: -any maintainer: vamchale@gmail.com synopsis: P...
homepage: https://github.com/vmchale/language-ats#readme changelog-type: '' hash: 2dd52c6f837cb2cbf15ab6d3e9675a7bc37779f7542aa551fd4663dd98b8674b test-bench-deps: base: -any hspec: -any criterion: -any language-ats: -any hspec-dirstream: -any system-filepath: -any maintainer: vamchale@gmail.com synopsis: P...
Add a test that shows the problem.
--- - CreateTable: t1(id int not null primary key, name varchar(32)) --- - Statement: INSERT INTO t1 VALUES (1, 'foo') --- - Statement: SELECT s1, s2 FROM (SELECT id, CURRENT_USER AS s1, CURRENT_USER AS s2 FROM t1 LIMIT 5) AS x ORDER BY 1; - output: [['test', 'test']] --- - Statement: SELECT s1, s2 FROM (SELECT id, 1 A...
--- - CreateTable: t1(id int not null primary key, name varchar(32)) --- - Statement: INSERT INTO t1 VALUES (1, 'foo') --- - Statement: SELECT s1, s2 FROM (SELECT id, CURRENT_USER AS s1, CURRENT_USER AS s2 FROM t1 LIMIT 5) AS x ORDER BY 1; - output: [['test', 'test']] --- - Statement: SELECT s1, s2 FROM (SELECT id, 1 A...
Update Paris transport traffic to 4.3.4 (21)
Categories: - Navigation License: MIT AuthorName: corenting AuthorEmail: corenting@gmail.com SourceCode: https://github.com/corenting/ParisTransportTraffic IssueTracker: https://github.com/corenting/ParisTransportTraffic/issues Changelog: https://github.com/corenting/ParisTransportTraffic/releases Bitcoin: 3JmaEkuviR...
Categories: - Navigation License: MIT AuthorName: corenting AuthorEmail: corenting@gmail.com SourceCode: https://github.com/corenting/ParisTransportTraffic IssueTracker: https://github.com/corenting/ParisTransportTraffic/issues Changelog: https://github.com/corenting/ParisTransportTraffic/releases Bitcoin: 3JmaEkuviR...
Update action files to align the version level to patch
name-template: 'v$NEXT_MINOR_VERSION' tag-template: 'v$NEXT_MINOR_VERSION' categories: - title: '🧬 Features' labels: - 'feature' - title: '🐛 Bug Fixes' labels: - 'fix' - title: '🏎 Performance Tweaks' labels: - 'performance' - title: '🎨 Style Tweaks' labels: - 'style t...
name-template: 'v$NEXT_PATCH_VERSION' tag-template: 'v$NEXT_PATCH_VERSION' categories: - title: '🧬 Features' labels: - 'feature' - title: '🐛 Bug Fixes' labels: - 'fix' - title: '🏎 Performance Tweaks' labels: - 'performance' - title: '🎨 Style Tweaks' labels: - 'style t...
Fix non string key in translation file
lag: admin: save: Sauvegarder saved_errors: Une erreur d'est porduite durant la sauvegarde create: Ajouter save_and_return_to_list: Sauvegarder et retourner à la liste cancel: Annuler saved: Les modifications ont été sauvegardées welcome_message: Bienvenue %us...
lag: admin: save: Sauvegarder saved_errors: Une erreur d'est porduite durant la sauvegarde create: Ajouter save_and_return_to_list: Sauvegarder et retourner à la liste cancel: Annuler saved: Les modifications ont été sauvegardées welcome_message: 'Bienvenue %u...
Use Groovenauts' github.com/knq/sdhook instead of original
package: github.com/groovenauts/blocks-concurrent-subscriber import: - package: github.com/groovenauts/blocks-variable - package: github.com/urfave/cli - package: golang.org/x/net subpackages: - context - context/ctxhttp - package: google.golang.org/api subpackages: - pubsub - pubsub/v1 - iterator - packa...
package: github.com/groovenauts/blocks-concurrent-subscriber import: - package: github.com/groovenauts/blocks-variable - package: github.com/urfave/cli - package: golang.org/x/net subpackages: - context - context/ctxhttp - package: google.golang.org/api subpackages: - pubsub - pubsub/v1 - iterator - packa...
Update from Hackage at 2019-06-25T21:41:19Z
homepage: http://sourceforge.net/projects/lazy-regex changelog-type: '' hash: eb820674e31c6b8c87a45d09115ba518c7cd0844cffc5437291289592681070e test-bench-deps: {} maintainer: TextRegexLazy@personal.mightyreason.com synopsis: Replaces/Enhances Text.Regex changelog: '' basic-deps: bytestring: -any base: ! '>=4 && <5'...
homepage: http://sourceforge.net/projects/lazy-regex changelog-type: '' hash: da123f4c8e91c0e8a4177a9236c707f6ff43cb61d93fda91ddd0c4f3fd815fc6 test-bench-deps: {} maintainer: TextRegexLazy@personal.mightyreason.com synopsis: Replaces/Enhances Text.Regex changelog: '' basic-deps: bytestring: -any base: ! '>=4 && <4....
Switch back the docs version to master
name: rubocop title: RuboCop # We always provide version without patch here (e.g. 1.1), # as patch versions should not appear in the docs. version: '1.1' nav: - modules/ROOT/nav.adoc
name: rubocop title: RuboCop # We always provide version without patch here (e.g. 1.1), # as patch versions should not appear in the docs. version: 'master' nav: - modules/ROOT/nav.adoc
Allow to merge backports
# c.f. https://dependabot.com/docs/config-file/ version: 1 update_configs: - package_manager: "ruby:bundler" directory: "/" update_schedule: "daily" default_assignees: - sue445 allowed_updates: - match: # Disable. Only top-level dependencies (and security patches for subdepe...
# c.f. https://dependabot.com/docs/config-file/ version: 1 update_configs: - package_manager: "ruby:bundler" directory: "/" update_schedule: "daily" default_assignees: - sue445 allowed_updates: - match: # Disable. Only top-level dependencies (and security patches for subdepe...
Fix log file name property
spring: datasource: username: betting password: game url: jdbc:mariadb://localhost/bettinggame jpa: hibernate: ddl-auto: validate properties: hibernate: dialect: org.hibernate.dialect.MySQL5InnoDBDialect messages: basename: i18n/AdminMessages,i18n/CommonMessages,i18n/...
spring: datasource: username: betting password: game url: jdbc:mariadb://localhost/bettinggame jpa: hibernate: ddl-auto: validate properties: hibernate: dialect: org.hibernate.dialect.MySQL5InnoDBDialect messages: basename: i18n/AdminMessages,i18n/CommonMessages,i18n/...
Add multi-OS multi-Python version strategy to GitHub Action
name: Testing GitHub Actions on: [push] jobs: dothis: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 - name: Set up websocket-client run: | pip install six pip install coverage pip...
name: Testing GitHub Actions on: [push] jobs: code-coverage: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: 3.9 - run: | TEST_WITH_INTERNET=1 python setup.py test pip install coverage ...
Create data directory on Windows
name: build on: push: pull_request: schedule: - cron: '0 20 * * 2' jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest,macos-latest,windows-latest] python-version: [3.9,"3.10"] numpy-version: ["1.20","1.21","1.22"] st...
name: build on: push: pull_request: schedule: - cron: '0 20 * * 2' jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest,macos-latest,windows-latest] python-version: [3.9,"3.10"] numpy-version: ["1.20","1.21","1.22"] st...
Use correct DNX runtime and architecture during build
version: 1.0.{build} branches: only: - development/r1.0 - release/r1.0 image: Visual Studio 2015 install: - cmd: >- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% dnvm install 1.0.0-rc1-update1 -r coreclr -arch x64 cache: C:\Users\appveyor\.dnx\packages build_script: - cmd: >- dnvm use 1.0.0...
version: 1.0.{build} branches: only: - development/r1.0 - release/r1.0 image: Visual Studio 2015 install: - cmd: >- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% dnvm install 1.0.0-rc1-update1 -r coreclr -arch x64 cache: C:\Users\appveyor\.dnx\packages build_script: - cmd: >- dnvm use 1.0.0...
Allow for failure with Visual Studio 2012.
version: 3.0.0.{build} init: - cmd: cmake --version environment: matrix: - CMAKE_GENERATOR: "Visual Studio 11" - CMAKE_GENERATOR: "Visual Studio 12" before_build: - cmd: mkdir build - cmd: cd build - cmd: cmake "-G%CMAKE_GENERATOR%" .. build_script: - cmd: msbuild Aquila.sln /target:Aquila /no...
version: 3.0.0.{build} init: - cmd: cmake --version environment: matrix: - CMAKE_GENERATOR: "Visual Studio 11" - CMAKE_GENERATOR: "Visual Studio 12" matrix: allow_failures: - CMAKE_GENERATOR: "Visual Studio 11" before_build: - cmd: mkdir build - cmd: cd build - cmd: cmake "-G%CMAKE_GENERAT...
Comment out webhook for now
--- image: bradrydzewski/python:2.7 services: - mongodb:2.6 script: - sudo apt-get update > /dev/null - "sudo DEBIAN_FRONTEND='noninteractive' apt-get install -y libsasl2-dev libssl-dev rsyslog > /dev/null" - sudo /usr/sbin/rsyslogd > /dev/null - python -m pip install --upgrade setuptools > /dev/null - pi...
--- image: bradrydzewski/python:2.7 services: - mongodb:2.6 script: - sudo apt-get update > /dev/null - "sudo DEBIAN_FRONTEND='noninteractive' apt-get install -y libsasl2-dev libssl-dev rsyslog > /dev/null" - sudo /usr/sbin/rsyslogd > /dev/null - python -m pip install --upgrade setuptools > /dev/null - pi...
Fix lack of packages for kcov
--- - name: Install required packages apt: name: "{{ item }}" update_cache: yes cache_valid_time: 3600 with_items: become: yes - name: Download kcov unarchive: src: "{{ kcov_download_url }}" dest: /tmp copy: no - name: Create the build directory file: path: "{{ kcov_build_dir }}"...
--- - name: Install required packages apt: name: "{{ item }}" update_cache: yes cache_valid_time: 3600 with_items: "{{ required_packages }}" become: yes - name: Download kcov unarchive: src: "{{ kcov_download_url }}" dest: /tmp copy: no - name: Create the build directory file: pa...
Configure gunicorn error log file
--- buildpack: python_buildpack command: scripts/run_app_paas.sh gunicorn -w 5 -b 0.0.0.0:$PORT wsgi services: - notify-aws - notify-config - notify-db - mmg - firetext - hosted-graphite - redis - performance-platform env: NOTIFY_APP_NAME: public-api CW_APP_NAME: api instances: 1 memory: 1G applic...
--- buildpack: python_buildpack command: scripts/run_app_paas.sh gunicorn --error-logfile /home/vcap/logs/gunicorn_error.log -w 5 -b 0.0.0.0:$PORT wsgi services: - notify-aws - notify-config - notify-db - mmg - firetext - hosted-graphite - redis - performance-platform env: NOTIFY_APP_NAME: public-api...
Add sed to build environment
{% set name = "ansible-bundler" %} {% set version = "1.10.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/kriansa/ansible-bundler/archive/refs/tags/v{{ version }}.tar.gz sha256: a54f831beb4ec560982ad9c73d0cf25a0211be484ea91bbdc93f39e551c0b163 build: number: 0 ...
{% set name = "ansible-bundler" %} {% set version = "1.10.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/kriansa/ansible-bundler/archive/refs/tags/v{{ version }}.tar.gz sha256: a54f831beb4ec560982ad9c73d0cf25a0211be484ea91bbdc93f39e551c0b163 build: number: 0 ...
Revert "RailsSchemaUpToDate was more of a hassle than a help. Im sick of it"
CommitMsg: CapitalizedSubject: enabled: false HardTabs: enabled: true PreCommit: CoffeeLint: enabled: false problem_on_unmodified_line: warn HamlLint: enabled: true problem_on_unmodified_line: warn HardTabs: enabled: true problem_on_unmodified_line: warn LocalPathsInGemfi...
CommitMsg: CapitalizedSubject: enabled: false HardTabs: enabled: true PreCommit: CoffeeLint: enabled: false problem_on_unmodified_line: warn HamlLint: enabled: true problem_on_unmodified_line: warn HardTabs: enabled: true problem_on_unmodified_line: warn LocalPathsInGemfi...
Add VS2019 configuration to Github CI
name: CI on: push: branches: [ feature/github-actions-for-windows-compilers ] pull_request: branches: [ master ] jobs: build-windows-vs2019: name: Windows VS2019 Debug runs-on: [windows-latest] steps: - name: Checkout uses: actions/checkout@v2 with: submodules: recurs...
name: CI on: push: branches: [ feature/github-actions-for-windows-compilers ] pull_request: branches: [ master ] jobs: build-windows-vs2019: name: Windows VS2019 Debug runs-on: [windows-latest] steps: - name: Checkout uses: actions/checkout@v2 with: submodules: recurs...
Fix deprecation warnings SF 3.1
services: jwt_auth.auth0_service: class: "Auth0\\JWTAuthBundle\\Security\\Auth0Service" arguments: [%jwt_auth.client_id%, %jwt_auth.client_secret%, %jwt_auth.domain%] jwt_auth.jwt_authenticator: class: "Auth0\\JWTAuthBundle\\Security\\JWTAuthenticator" arguments: ["@jwt_auth...
services: jwt_auth.auth0_service: class: "Auth0\\JWTAuthBundle\\Security\\Auth0Service" arguments: ["%jwt_auth.client_id%", "%jwt_auth.client_secret%", "%jwt_auth.domain%"] jwt_auth.jwt_authenticator: class: "Auth0\\JWTAuthBundle\\Security\\JWTAuthenticator" arguments: ["@jw...
Add docker service back in so the build runs in the standard environment
machine: environment: CGO_ENABLED: "0" GOOS: "linux" GOARCH: "amd64" GOPATH: "$HOME/go" GS_WD: "$HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" dependencies: override: - sudo add-apt-repository ppa:masterminds/glide -y - sudo ap...
machine: services: - docker environment: CGO_ENABLED: "0" GOOS: "linux" GOARCH: "amd64" GOPATH: "$HOME/go" GS_WD: "$HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" dependencies: override: - sudo add-apt-repository ppa:masterm...
Add automation to notify about exceeding humidity in living room and bedroom
- alias: 'Send Notification about Open Doors and Windows at Sunset' trigger: platform: state entity_id: sensor.period_of_day from: 'Day' to: 'Sunset' condition: condition: or conditions: - condition: state entity_id: binary_sensor.contact_sensor_1 state: 'on' - co...
- alias: 'Send Notification about Open Doors and Windows at Sunset' trigger: platform: state entity_id: sensor.period_of_day from: 'Day' to: 'Sunset' condition: condition: or conditions: - condition: state entity_id: binary_sensor.contact_sensor_1 state: 'on' - co...
Update 8Vim to iteration-3 (4)
Categories: - System License: Apache-2.0 AuthorName: Ravi Agarwal AuthorEmail: 8vim@protonmail.com SourceCode: https://github.com/flide/VI8 IssueTracker: https://github.com/flide/VI8/issues AutoName: 8Vim RepoType: git Repo: https://github.com/flide/VI8 Builds: - versionName: iteration-2 versionCode: 2 c...
Categories: - System License: Apache-2.0 AuthorName: Ravi Agarwal AuthorEmail: 8vim@protonmail.com SourceCode: https://github.com/flide/VI8 IssueTracker: https://github.com/flide/VI8/issues AutoName: 8Vim RepoType: git Repo: https://github.com/flide/VI8 Builds: - versionName: iteration-2 versionCode: 2 c...
Change target IDEA for CI from 14.1.4 to 14.1.6.
language: java jdk: - oraclejdk7 before_script: - sudo add-apt-repository ppa:eyecreate/haxe -y - sudo apt-get update - sudo apt-get install haxe -y - mkdir ~/haxelib - haxelib setup ~/haxelib - haxelib install hxjava - haxelib git debugger https://github.com/TiVo/debugger.git - mkdir build - mkdir report script: make ...
language: java jdk: - oraclejdk7 before_script: - sudo add-apt-repository ppa:eyecreate/haxe -y - sudo apt-get update - sudo apt-get install haxe -y - mkdir ~/haxelib - haxelib setup ~/haxelib - haxelib install hxjava - haxelib git debugger https://github.com/TiVo/debugger.git - mkdir build - mkdir report script: make ...
Update from Hackage at 2018-05-10T08:27:48Z
homepage: '' changelog-type: '' hash: ee3602ed48111a55ddfb053befb8ba79f332ba949549a4074ee3bb3567a66746 test-bench-deps: {} maintainer: Alexander Bich <quyse0@gmail.com> synopsis: Core definitions for BattlePlace.io service changelog: '' basic-deps: cereal: -any bytestring: -any base: ! '>=4.11 && <5' text: -any...
homepage: '' changelog-type: '' hash: 4cbafa5e4d571f41fa47c7871b3dba9f3122f69e0954d0b290508513f396c8cc test-bench-deps: {} maintainer: Alexander Bich <quyse0@gmail.com> synopsis: Core definitions for BattlePlace.io service changelog: '' basic-deps: cereal: -any bytestring: -any base: ! '>=4.11 && <5' text: -any...
Update from Hackage at 2016-05-16T13:19:35+0000
homepage: http://github.com/bgamari/pandoc-lens changelog-type: '' hash: 5f84e31f99ba62daaead7a82223d0cab7b2f9f6c4c91be4ab671c28a5c3b583c test-bench-deps: {} maintainer: bgamari.foss@gmail.com synopsis: Lenses for Pandoc documents changelog: '' basic-deps: base: ! '>=4.7 && <4.10' pandoc-types: ! '>=1.16 && <1.17' ...
homepage: http://github.com/bgamari/pandoc-lens changelog-type: '' hash: fa64727b249f04f4b12c202b53a78816213f3346e6482aac422f6279124708cd test-bench-deps: {} maintainer: bgamari.foss@gmail.com synopsis: Lenses for Pandoc documents changelog: '' basic-deps: base: ! '>=4.7 && <4.10' pandoc-types: ! '>=1.16 && <1.17' ...
Drop unneeded now APC extension linking before running the tests
language: php php: - 5.6.0 - 7.0 - 7.1 - 7.2 - nightly # run build against nightly but allow them to fail matrix: fast_finish: true allow_failures: - php: nightly # faster builds on new travis setup not using sudo sudo: false services: - memcached # cache vendor dirs cache: ...
language: php php: - 5.6.0 - 7.0 - 7.1 - 7.2 - nightly # run build against nightly but allow them to fail matrix: fast_finish: true allow_failures: - php: nightly # faster builds on new travis setup not using sudo sudo: false services: - memcached # cache vendor dirs cache: ...
Add explicit scripts for CI to run
language: ruby sudo: false cache: bundler rvm: - 2.7 addons: code_climate: repo_token: 8e68857c02b2124104896d9178dc6ab310e143de880e9662d8c5dd9362081c9b
language: ruby sudo: false cache: bundler script: - bundle exec rubocop - bundle exec rspec rvm: - 2.7 addons: code_climate: repo_token: 8e68857c02b2124104896d9178dc6ab310e143de880e9662d8c5dd9362081c9b