Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Remove linking of dotfiles to home dir
- clean: ['~'] - link: ~/.dotfiles: '' ~/.gitconfig: gitconfig ~/.tmux.conf: tmux.conf ~/.vim: vim/ ~/.vimrc: vimrc - shell: - [git submodule update --init --recursive, Installing submodules]
- clean: ['~'] - link: ~/.gitconfig: gitconfig ~/.tmux.conf: tmux.conf ~/.vim: vim/ ~/.vimrc: vimrc - shell: - [git submodule update --init --recursive, Installing submodules]
Fix port name of alertmanager svc in prometheus config
apiVersion: monitoring.coreos.com/v1 kind: Prometheus metadata: name: prow namespace: prow-monitoring spec: replicas: 2 storage: volumeClaimTemplate: metadata: name: prometheus spec: accessModes: - "ReadWriteOnce" storageClassName: "standard" resources: ...
apiVersion: monitoring.coreos.com/v1 kind: Prometheus metadata: name: prow namespace: prow-monitoring spec: replicas: 2 storage: volumeClaimTemplate: metadata: name: prometheus spec: accessModes: - "ReadWriteOnce" storageClassName: "standard" resources: ...
Correct error in build image
build: target/ privileged: true targets: build: - docker build latest/ release: files: - $GIT_SSH_KEY:/root/.ssh/id_rsa:0600 run: bash construi/release/script.sh
build: latest privileged: true targets: build: - docker build latest/ release: files: - $GIT_SSH_KEY:/root/.ssh/id_rsa:0600 run: bash construi/release/script.sh
Add GitHub action job for connectedCheck
name: CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Build the project run: ./gradlew build
name: CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - name: checkout uses: actions/checkout@v2 - name: Build the project run: ./gradlew build connectedCheck: runs-on: macos-latest strategy: matrix: api-level: [21, 23, 29] target: [default, g...
Fix error when installing from ansible-galaxy and github
--- galaxy_info: author: kosssi description: Install phpStorm. min_ansible_version: 1.4 license: MIT platforms: - name: Ubuntu versions: - all categories: - system - development - web
--- galaxy_info: author: kosssi description: Install phpStorm. min_ansible_version: 1.4 license: MIT platforms: - name: Ubuntu versions: - all categories: - system - development - web dependencies: []
Update github action to use jdk 18
name: Build and Test on: pull_request: branches: - 'main' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up JDK 17 uses: actions/setup-java@v3 with: java-version: '17' distribution: 'adopt' - name: Validat...
name: Build and Test on: pull_request: branches: - 'main' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up JDK 18 uses: actions/setup-java@v3 with: java-version: '18' distribution: 'adopt' - name: Validat...
Add Github auth to CI
name: "Unit tests" on: pull_request: branches: - "master" push: branches: - "master" jobs: unit-test: name: "Unit tests" runs-on: "ubuntu-20.04" strategy: matrix: php-version: - "7.4" ...
name: "Unit tests" on: pull_request: branches: - "master" push: branches: - "master" jobs: unit-test: name: "Unit tests" runs-on: "ubuntu-20.04" strategy: matrix: php-version: - "7.4" ...
Set bundler to deployment mode in CI
version: v1.0 name: Test ETModel agent: machine: type: e1-standard-2 os_image: ubuntu2004 blocks: - name: RSpec task: env_vars: - name: DATABASE_URL value: mysql2://root@localhost/etmodel_test?pool=5&encoding=utf8mb4 - name: RAILS_ENV value: test - name:...
version: v1.0 name: Test ETModel agent: machine: type: e1-standard-2 os_image: ubuntu2004 blocks: - name: RSpec task: env_vars: - name: DATABASE_URL value: mysql2://root@localhost/etmodel_test?pool=5&encoding=utf8mb4 - name: RAILS_ENV value: test - name:...
Fix Go1.10 version in workflows
name: Go on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: strategy: matrix: go-version: [1.14, 1.15] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up Go ...
name: Go on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: strategy: matrix: go-version: [1.14, 1.15] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up Go ...
Add python lower bound in logrun recipe
{% set name = "logrun" %} {% set version = "0.1.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/logrun-{{ version }}.tar.gz sha256: ee5c1bbebde011bd0ce4305411dd1d320872bdcfe4c30044936e473ba5d170ff build: number: 0 noarch:...
{% set name = "logrun" %} {% set version = "0.1.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/logrun-{{ version }}.tar.gz sha256: ee5c1bbebde011bd0ce4305411dd1d320872bdcfe4c30044936e473ba5d170ff build: number: 0 noarch:...
Use the correct highlighter supported in gh-pages
defaults: - scope: path: "" values: layout: default - scope: path: "docs" values: layout: docs tab: docs sass: sass_dir: _sass style: :compressed baseurl: "/marathon" highlighter: pygments lsi: false markdown: kramdown kramdown: extensions: [with_toc_data, table...
defaults: - scope: path: "" values: layout: default - scope: path: "docs" values: layout: docs tab: docs sass: sass_dir: _sass style: :compressed baseurl: "/marathon" highlighter: rouge lsi: false markdown: kramdown kramdown: extensions: [with_toc_data, tables] ...
Update from Forestry.io - Updated Forestry configuration
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: heading label: JTemporal - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all - type: heading label: Tema - type: directory path: _layouts label: Layouts create: document...
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: heading label: JTemporal - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all - type: heading label: Tema - type: directory path: _layouts label: Layouts create: document...
Reduce desired code cov value
codecov: ci: - travis-ci coverage: range: 80..100 round: nearest precision: 2
codecov: ci: - travis-ci coverage: range: 60..90 round: nearest precision: 2
Disable `Metrics/BlockLength` for spec files and gemspec
inherit_from: .rubocop_todo.yml
inherit_from: .rubocop_todo.yml Metrics/BlockLength: Exclude: - 'spec/**/*.rb' - 'googleauth.gemspec'
Save the port binary as an artifact on Appveyor
version: build{build} install: - cinst elixir - cinst mingw - SET PATH=C:\ProgramData\chocolatey\lib\Elixir\bin;C:\tools\mingw64\bin;%PATH% build_script: - mix local.hex --force - mix deps.get - mix compile - mix test test/uartless_test.exs
version: build{build} install: - cinst elixir - cinst mingw - SET PATH=C:\ProgramData\chocolatey\lib\Elixir\bin;C:\tools\mingw64\bin;%PATH% build_script: - mix local.hex --force - mix deps.get - mix compile - mix test test/uartless_test.exs artifacts: - path: priv/nerves_uart.exe
Build directory now canonical `build` (which is in .gitignore)
version: 0.8.{build} environment: matrix: # array of all environments used to test builds - GENERATOR: Visual Studio 14 2015 CFG: Debug - GENERATOR: Visual Studio 12 2013 CFG: Debug - GENERATOR: Visual Studio 14 2015 Win64 CFG: Debug - GENERATOR: Visual Studio 12 2013 Win64 ...
version: 0.8.{build} environment: matrix: # array of all environments used to test builds - GENERATOR: Visual Studio 14 2015 CFG: Debug - GENERATOR: Visual Studio 12 2013 CFG: Debug - GENERATOR: Visual Studio 14 2015 Win64 CFG: Debug - GENERATOR: Visual Studio 12 2013 Win64 ...
Change Vulkan SDK download link
image: Visual Studio 2017 version: 0.1.0+{build} install: - appveyor DownloadFile https://vulkan.lunarg.com/sdk/home#sdk/downloadConfirm/1.0.61.1/windows/VulkanSDK-1.0.61.1-Installer.exe - VulkanSDK-1.0.61.1-Installer.exe /S - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxilia...
image: Visual Studio 2017 version: 0.1.0+{build} install: - appveyor DownloadFile https://vulkan.lunarg.com/sdk/download/1.0.61.1/windows/VulkanSDK-1.0.61.1-Installer.exe - VulkanSDK-1.0.61.1-Installer.exe /S - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars6...
Enable JDK 11 for AppVeyor
# Configuration for Appveyor CI version: '{build}' image: Visual Studio 2017 clone_depth: 10000 # branches to build branches: # whitelist only: - master - new-master - javadoc - /^branch-.*$/ - /^[0-9]+-.*$/ matrix: fast_finish: true environment: matrix: - JAVA_HOME: C:\Program Files\Java\jdk1.8.0 ...
# Configuration for Appveyor CI version: '{build}' image: Visual Studio 2017 clone_depth: 10000 # branches to build branches: # whitelist only: - master - new-master - javadoc - /^branch-.*$/ - /^[0-9]+-.*$/ matrix: fast_finish: true environment: matrix: - JAVA_HOME: C:\Program Files\Java\jdk1.8.0 ...
Add ecosystem.json to mounted volumes/files
version: '2.0' services: app: # image: divante/vue-storefront:latest build: context: . dockerfile: docker/vue-storefront/Dockerfile env_file: docker/vue-storefront/default.env environment: VS_ENV: dev volumes: - '.babelrc:/var/www/.babelrc' - './config:/var/www/config...
version: '2.0' services: app: # image: divante/vue-storefront:latest build: context: . dockerfile: docker/vue-storefront/Dockerfile env_file: docker/vue-storefront/default.env environment: VS_ENV: dev volumes: - '.babelrc:/var/www/.babelrc' - './config:/var/www/config...
Add max_allow_packet to mysql container.
version: '3.4' services: web: image: mozmeao/kitsune:base-dev-latest command: ./manage.py runserver 0.0.0.0:8000 user: ${UID:-kitsune} depends_on: - mariadb - elasticsearch - redis ports: - "8000:8000" mariadb: image: mariadb:10.0 environment: - MYSQL_ROOT_P...
version: '3.4' services: web: image: mozmeao/kitsune:base-dev-latest command: ./manage.py runserver 0.0.0.0:8000 user: ${UID:-kitsune} depends_on: - mariadb - elasticsearch - redis ports: - "8000:8000" mariadb: image: mariadb:10.0 environment: - MYSQL_ROOT_P...
Update platforms and config format
--- driver: name: vagrant provisioner: name: chef_zero driver_config: require_chef_omnibus: true platforms: - name: centos-5.11 - name: centos-6.6 - name: centos-7.1 - name: debian-6.0.10 run_list: - recipe[apt] - name: debian-7.8 run_list: - recipe[apt] - name: fedora-20 - name: ...
driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-5.11 - name: centos-6.7 - name: centos-7.1 - name: debian-7.8 run_list: - recipe[apt] - name: debian-8.1 run_list: - recipe[apt] - name: fedora-21 - name: ubuntu-12.04 run_list: - recipe[apt::defau...
Change debian tasks file style and add become statement
--- # Debian install tasks - name : Install sudo (Debian) apt : name : "{{ item }}" state : present update_cache : True cache_valid_time : 3600 with_items : "{{ account_management_packages }}"
--- # Debian install tasks - name: Install account management packages become: True apt: name: "{{ item }}" state: present update_cache: True cache_valid_time: 3600 with_items: "{{ account_management_packages }}"
Work around geerlingguy.jenkins' issues with Jenkins 2.0
--- - hosts: vagrant # The unit tests expect that a basic installation is present, because they # limit the role application to the part they're testing with tags. roles: - solita.jenkins tasks: - apt: name={{ item }} state=present become: yes with_items: - ruby-dev - g++ ...
--- - hosts: vagrant pre_tasks: # Work around https://github.com/geerlingguy/ansible-role-jenkins/issues/47 - name: Fetch Jenkins 1.658 get_url: url: http://pkg.jenkins-ci.org/debian/binary/jenkins_1.658_all.deb dest: /tmp/jenkins_1.658_all.deb - name: Install Jenkins 1.658 a...
Enable MBSync plugin to update metadata
directory: ~/media/music library: ~/media/music/musiclibrary.blb asciify_paths: yes import: move: no languages: en plugins: > chroma fromfilename fetchart fetchart: store_source: yes
directory: ~/media/music library: ~/media/music/musiclibrary.blb asciify_paths: yes import: move: no languages: en plugins: > chroma fromfilename fetchart mbsync fetchart: store_source: yes
Increase max of line length
inherit_from: .rubocop_todo.yml Metrics/LineLength: Exclude: - 'redmine_activity.gemspec' - 'spec/**/*' Style/PercentLiteralDelimiters: Enabled: false Style/UnneededPercentQ: Enabled: false
inherit_from: .rubocop_todo.yml Metrics/LineLength: Max: 100 Exclude: - 'redmine_activity.gemspec' - 'spec/**/*' Style/PercentLiteralDelimiters: Enabled: false Style/UnneededPercentQ: Enabled: false
Expand constraint on package_config dependency.
name: mockito version: 5.0.0-nullsafety.6 description: A mock framework inspired by Mockito. homepage: https://github.com/dart-lang/mockito environment: sdk: '>=2.12.0-0 <3.0.0' dependencies: analyzer: '>=0.39.15 <0.42.0' build: ^1.3.0 code_builder: ^3.4.0 collection: ^1.15.0-nullsafety.5 dart_style: ^1....
name: mockito version: 5.0.0-nullsafety.6 description: A mock framework inspired by Mockito. homepage: https://github.com/dart-lang/mockito environment: sdk: '>=2.12.0-0 <3.0.0' dependencies: analyzer: '>=0.39.15 <0.42.0' build: ^1.3.0 code_builder: ^3.4.0 collection: ^1.15.0-nullsafety.5 dart_style: ^1....
Remove errant option on password modification action
--- # this is a demo of how the user commands work and how to reference salted passwords # in vars sections. You could also use vars_files if you like (see other examples) - hosts: all user: root vars: # created with: # crypt.crypt('This is my Password', '$1$SomeSalt') password: $1$SomeSalt$UqddPX3r4k...
--- # this is a demo of how the user commands work and how to reference salted passwords # in vars sections. You could also use vars_files if you like (see other examples) - hosts: all user: root vars: # created with: # crypt.crypt('This is my Password', '$1$SomeSalt') password: $1$SomeSalt$UqddPX3r4k...
Update SimpleLogin to 1.8 (14)
Categories: - Internet License: Apache-2.0 AuthorName: SimpleLogin AuthorEmail: hi@simplelogin.io AuthorWebSite: https://simplelogin.io/ WebSite: https://simplelogin.io/ SourceCode: https://github.com/simple-login/Simple-Login-Android IssueTracker: https://github.com/simple-login/Simple-Login-Android/issues AutoName...
Categories: - Internet License: Apache-2.0 AuthorName: SimpleLogin AuthorEmail: hi@simplelogin.io AuthorWebSite: https://simplelogin.io/ WebSite: https://simplelogin.io/ SourceCode: https://github.com/simple-login/Simple-Login-Android IssueTracker: https://github.com/simple-login/Simple-Login-Android/issues AutoName...
Set PHP version environment variable
name: ci on: push: branches: - master jobs: ci: runs-on: ubuntu-latest strategy: matrix: php: ['8.0'] steps: - name: set up php uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - name: checkout uses: actions/ch...
name: ci on: push: branches: - master jobs: ci: runs-on: ubuntu-latest strategy: matrix: php: ['8.0'] steps: - name: set up php uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - name: checkout uses: actions/ch...
Disable cache if package.json changes
environment: nodejs_version: "6" install: - ps: Install-Product node 6 - "npm -g install npm@latest" - "set PATH=%APPDATA%\\npm;%PATH%" - "npm install --no-optional" cache: - "node_modules" - "%APPDATA%\\npm-cache" build: off test_script: - "node --version" - "npm --version" - "npm test"
environment: nodejs_version: "6" install: - ps: Install-Product node 6 - "npm -g install npm@latest" - "set PATH=%APPDATA%\\npm;%PATH%" - "npm install --no-optional" cache: - "node_modules -> package.json" - "%APPDATA%\\npm-cache -> package.json" build: off test_script: - "node --version" - "npm --ver...
Enable AppVeyor only for master/develop and PRs
environment: matrix: - configuration: Release # - configuration: Debug # scripts that are called at very beginning, before repo cloning init: - git config --global core.autocrlf input os: Visual Studio 2015 # clone directory clone_folder: c:\projects\osrm platform: x64 build_script: - CALL appveyor-build....
environment: matrix: - configuration: Release # - configuration: Debug # scripts that are called at very beginning, before repo cloning init: - git config --global core.autocrlf input os: Visual Studio 2015 # clone directory clone_folder: c:\projects\osrm platform: x64 build_script: - CALL appveyor-build....
Use full path to PHP
clone_folder: c:\projects\gears\string install: - cinst php - php -r "copy('https://getcomposer.org/composer.phar', '%SystemRoot%\composer');" build_script: - cd c:\projects\gears\string && composer install test_script: - cd c:\projects\gears\string && .\vendor\bin\robo test deploy: off
clone_folder: c:\projects\gears\string install: - cinst php - c:\tools\php\php.exe -r "copy('https://getcomposer.org/composer.phar', '%SystemRoot%\composer');" build_script: - cd c:\projects\gears\string && composer install test_script: - cd c:\projects\gears\string && .\vendor\bin\robo test deploy: off
Update from Hackage at 2017-06-12T21:36:48Z
homepage: https://github.com/swift-nav/loup changelog-type: '' hash: 4ddb7b43057e07174b49e2c306764d241ed9a1c1c892c4dca44d575c0534efef test-bench-deps: {} maintainer: Mark Fine <dev@swiftnav.com> synopsis: Amazon Simple Workflow Service Wrapper for Work Pools. changelog: '' basic-deps: amazonka: -any bytestring: -an...
homepage: https://github.com/swift-nav/loup changelog-type: '' hash: 741833124c5028599f250cf6fd6c102614036323e6ee0d7e7c0ebca09f4c3b05 test-bench-deps: {} maintainer: Mark Fine <dev@swiftnav.com> synopsis: Amazon Simple Workflow Service Wrapper for Work Pools. changelog: '' basic-deps: amazonka: -any bytestring: -an...
Add configs before installing services. Some get started automatically
--- - include: kube_files.yml become: true become_user: root - include: "{{ item }}" with_first_found: - files: - "packages_{{ ansible_distribution|lower }}_{{ ansible_distribution_release|lower }}.yml" - "packages_{{ ansible_distribution|lower }}.yml" - "packages_{{ ansible_os_family|lowe...
--- - include: kube_files.yml become: true become_user: root - include: "service_configs_{{ ansible_service_mgr }}.yml" become: true become_user: root - include: "{{ item }}" with_first_found: - files: - "packages_{{ ansible_distribution|lower }}_{{ ansible_distribution_release|lower }}.yml" ...
Add svn as an install candidate for the Ubuntu 14 hosts.
--- classes: - base ldapclient::ldapclient_packages: - ldap-auth-client - ldap-utils - libldap-2.4-2 base::basepackages: - bash - ca-certificates - git - zsh - apt-file
--- classes: - base base::basepackages: - bash - ca-certificates - git - zsh - apt-file ldapclient::ldapclient_packages: - ldap-auth-client - ldap-utils - libldap-2.4-2 subversionclient::packages: - subversion
Remove inclusion of role variables as we switched to host vars
--- # tasks to setup a download server - name: Include variables include_vars: "main.yml" - name: add group group: name={{ download_group }} system=yes state=present sudo: yes - name: add user user: name={{ download_user }} home={{ download_destination }} comment="OpenVZ download server" createhome=yes syste...
--- # tasks to setup a download server #- name: Include variables # include_vars: "main.yml" - name: add group group: name={{ download_group }} system=yes state=present sudo: yes - name: add user user: name={{ download_user }} home={{ download_destination }} comment="OpenVZ download server" createhome=yes sys...
Remove noarch and try only win
{% set name = "cif2cell" %} {% set version = "1.2.10" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://sourceforge.net/projects/cif2cell/files/{{ name }}-{{ version }}.tar.gz sha256: 2268a2d6d26650433a1c5e51c98e400cf92e458036879e231088555d75e3e8bf build: noarch: python numbe...
{% set name = "cif2cell" %} {% set version = "1.2.10" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://sourceforge.net/projects/cif2cell/files/{{ name }}-{{ version }}.tar.gz sha256: 2268a2d6d26650433a1c5e51c98e400cf92e458036879e231088555d75e3e8bf build: skip: True # [unix] ...
Update Metronome to Americium (12)
Categories: - Multimedia License: GPL-3.0-or-later SourceCode: https://notabug.org/wael/Metronome IssueTracker: https://notabug.org/wael/Metronome/issues AutoName: Metronome RepoType: git Repo: https://notabug.org/wael/Metronome.git Builds: - versionName: Americium versionCode: 11 commit: v11.1 subdi...
Categories: - Multimedia License: GPL-3.0-or-later SourceCode: https://notabug.org/wael/Metronome IssueTracker: https://notabug.org/wael/Metronome/issues AutoName: Metronome RepoType: git Repo: https://notabug.org/wael/Metronome.git Builds: - versionName: Americium versionCode: 11 commit: v11.1 subdi...
Use strict YAML array notation
--- # Action definition metadata name: "echochain" description: "Simple Action Chain workflow" # `runner_type` has value `action-chain` to identify that action is an ActionChain. runner_type: "action-chain" # `entry_point` path to the ActionChain definition file, relative to the pack's action directory. entry_point: ...
--- # Action definition metadata name: "echochain" description: "Simple Action Chain workflow" # `runner_type` has value `action-chain` to identify that action is an ActionChain. runner_type: "action-chain" # `entry_point` path to the ActionChain definition file, relative to the pack's action directory. entry_point: ...
Update from Hackage at 2018-02-10T15:23:57Z
homepage: '' changelog-type: '' hash: 2fb36ceebd8d0517749c3a2ab0dae6a64d0fd3a64a4ecc7d35fc947ad93e2de4 test-bench-deps: bytestring: -any base: -any hspec: -any geos: -any cassava: -any mtl: -any vector: -any maintainer: pfrance@gmail.com synopsis: Bindings for GEOS. changelog: '' basic-deps: bytestring:...
homepage: '' changelog-type: '' hash: 9bf15d76ff4aa0daa240406b742c708b799fd8c0995edfcd7067cae0e24ae48f test-bench-deps: bytestring: -any base: <=4.10.1.0 hspec: -any geos: -any cassava: -any mtl: -any vector: -any maintainer: pfrance@gmail.com synopsis: Bindings for GEOS. changelog: '' basic-deps: bytes...
Add sequelize db:migrate command for Travis
language: node_js node_js: - "6.11.0" services: - postgresql before_script: - psql -c 'create database postit_test;' -U postgres - psql -c "CREATE USER joe1 WITH PASSWORD '1234';" -U postgres script: npm run coverage after_success: 'npm run coveralls'
language: node_js node_js: - "6.11.0" services: - postgresql before_script: - psql -c 'create database postit_test;' -U postgres - psql -c "CREATE USER joe1 WITH PASSWORD '1234';" -U postgres - sequelize db:migrate script: npm run coverage after_success: 'npm run coveralls'
Add Ruby 2.5.0 to the supported Rubies in the Travis CI config.
language: ruby rvm: - 2.4.3 - 2.3.6 - 2.2.9 - jruby env: - RAILS_VERSION=5.1 - RAILS_VERSION=4.2 matrix: allow_failures: - rvm: jruby
language: ruby rvm: - 2.5.0 - 2.4.3 - 2.3.6 - 2.2.9 - jruby env: - RAILS_VERSION=5.1 - RAILS_VERSION=4.2 matrix: allow_failures: - rvm: jruby
Drop support for Go 1.9 and 1.10 and add test on Go 1.13
language: go before_install: - go get github.com/stretchr/testify go: - 1.9 - '1.10' - '1.11' - '1.12' - tip script: - go test -v ./...
language: go before_install: - go get github.com/stretchr/testify go: - '1.11' - '1.12' - '1.13' - tip script: - go test -v ./...
Update list of tested Python versions.
language: python sudo: false python: - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 - nightly - pypy - pypy3.3-5.2-alpha1 install: - travis_retry pip install tox-travis script: - travis_retry tox
language: python sudo: false python: - 2.7 - 3.4 - 3.5 - 3.6 - nightly - pypy - pypy3 install: - travis_retry pip install tox-travis script: - travis_retry tox
Configure automatic deployment to PyPI on tags
# Config file for automatic testing at travis-ci.org dist: xenial sudo: false language: python python: - "3.4" - "3.5" - "3.6" - "3.7" - "3.8-dev" install: pip install 'tox-travis ~= 0.12.0' script: tox before_cache: - rm -rf $HOME/.cache/pip/log cache: directories: - $HOME/.cache/pip
dist: xenial sudo: false language: python python: - '3.4' - '3.5' - '3.6' - '3.7' - 3.8-dev install: pip install 'tox-travis ~= 0.12.0' script: tox deploy: provider: pypi user: dmtucker password: secure: rvVuJw187OTFkNmJrEPK4U9mUX5nR+mqSPcEgqhIMW3XivIqkKdSvlFPq0imOrAT4TmxLGTvDFVT9TykOlTtp8LURmIyF+IhcvCaDaNC/T...
Update rubygems and bundler on CI
language: ruby cache: apt: true directories: - vendor/bundle - $HOME/.cache/pip rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 - jruby install: - bundle install --path vendor/bundle --jobs=3 --retry=3
language: ruby cache: apt: true directories: - vendor/bundle - $HOME/.cache/pip rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 - jruby before_install: - gem update --system - gem install bundler install: - bundle install --path vendor/bundle --jobs=3 --retry=3
Add continuous integration with HHVM
language: php before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install php: - 5.4 - 5.3
language: php before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install php: - 5.4 - 5.3 - hhvm
Use python 3.6-8 for CI.
language: python dist: trusty python: - 2.7 - 3.4 - 3.5 - 3.6 matrix: include: - python: 3.7 dist: xenial sudo: true services: - redis-server install: "pip install -r requirements.txt" script: python runtests.py
language: python dist: xenial python: - 2.7 - 3.6 - 3.7 - 3.8 services: - redis-server install: "pip install -r requirements.txt" script: python runtests.py
Remove building of internal tools
language: rust sudo: false rust: - 1.7.0 - stable - beta - nightly matrix: include: - rust: nightly env: FEATURES="unstable" script: | cargo build --verbose --features "${FEATURES}" cargo test --verbose --features "${FEATURES}"
language: rust sudo: false rust: - 1.7.0 - stable - beta - nightly script: | cargo build --verbose --features "${FEATURES}" cargo test --verbose --features "${FEATURES}"
Remove rbx from Travis build schedule
language: ruby rvm: # - "1.8.7" - "1.9.2" - "1.9.3" # - jruby-18mode # JRuby in 1.8 mode # - jruby-19mode # JRuby in 1.9 mode # - rbx-18mode - rbx-19mode # uncomment this line if your project needs to run something other than `rake`: script: bundle exec rspec spec
language: ruby rvm: # - "1.8.7" - "1.9.2" - "1.9.3" # - jruby-18mode # JRuby in 1.8 mode # - jruby-19mode # JRuby in 1.9 mode # - rbx-18mode # - rbx-19mode # uncomment this line if your project needs to run something other than `rake`: script: bundle exec rspec spec
Add pod lib lint to Travis
osx_image: xcode61 language: objective-c before_install: gem install cocoapods xcpretty -N cache: cocoapods podfile: JazzHandsDemo/Podfile script: - export LC_CTYPE=en_US.UTF-8 - export LANG=en_US.UTF-8 - set -o pipefail && xcodebuild -workspace JazzHandsDemo/JazzHandsDemo.xcworkspace -scheme JazzHandsDemo ...
osx_image: xcode61 language: objective-c before_install: gem install cocoapods xcpretty -N cache: cocoapods podfile: JazzHandsDemo/Podfile script: - export LC_CTYPE=en_US.UTF-8 - export LANG=en_US.UTF-8 - set -o pipefail && xcodebuild -workspace JazzHandsDemo/JazzHandsDemo.xcworkspace -scheme JazzHandsDemo ...
Allow rbx builds to fail on TravisCI
language: ruby rvm: - 2.0.0 - 2.1.8 - 2.2.4 - 2.3.0 - jruby-9.1.9.0 - rbx-2.2.7 gemfile: - gemfiles/activesupport_3.gemfile - gemfiles/activesupport_4_1.gemfile - gemfiles/activesupport_4_2.gemfile - gemfiles/activesupport_5_0.gemfile - gemfiles/activesupport_5_1.gemfile matrix: exclude: - r...
language: ruby rvm: - 2.0.0 - 2.1.8 - 2.2.4 - 2.3.0 - jruby-9.1.9.0 - rbx-2 gemfile: - gemfiles/activesupport_3.gemfile - gemfiles/activesupport_4_1.gemfile - gemfiles/activesupport_4_2.gemfile - gemfiles/activesupport_5_0.gemfile - gemfiles/activesupport_5_1.gemfile matrix: exclude: - rvm: ...
Add code climate repo token
language: node_js node_js: - '0.12' - '0.10' - iojs
language: node_js node_js: - '0.12' - '0.10' - iojs env: global: - secure: XR2+j2DOmq8FY5xKiJ4JGYFtMdrF+owqZpU6mq8nJH4bEACAGtATgrKy4agxC5ROMpt0BeU10dXXrtwQzMXdaI6oaPIhMEuzIc/Kcwhxx4zbcNSzqmwohwnL+BywfQvgGma/GPRGocpMdhIjU3GoomgxyAqKPJTSmuMQ8LOpZw9+OnjVhTwRh1rIaAEyXW+7S+H0O+oqENHx/3X0tYybC71/jMVBpRZ9o8Z09IxX2...
Change PHP versions on Travis CI
language: php php: - 5.6 - 7 - 7.1 - 7.2 - hhvm before_script: - composer install script: - mkdir -p build/logs - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - vendor/bin/coveralls -v
language: php php: - 7.1 - 7.2 - hhvm before_script: - if [[ $TRAVIS_PHP_VERSION = hhv* ]]; then echo hhvm.php7.all=1 >> /etc/hhvm/php.ini; fi - composer install script: - mkdir -p build/logs - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: - vendor/bin/coveralls -v matrix...
Update for Travis-CI testing, fix CICD setup.
language: c dist: trusty services: - postgresql before_script: # Add an IPv6 config - see the corresponding Travis issue # https://github.com/travis-ci/travis-ci/issues/8361 - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'; fi - psql -c...
language: c dist: trusty services: - postgresql before_script: # Add an IPv6 config - see the corresponding Travis issue # https://github.com/travis-ci/travis-ci/issues/8361 - if [ "${TRAVIS_OS_NAME}" == "linux" ]; then sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6'; fi - psql -c...
Test latest PATCH release for every MINOR release of Ruby.
language: ruby bundler_args: "--without development" before_install: - gem install bundler rvm: - 1.9.3 - 2.0.0 - 2.2.3 - 2.3.0 script: - gem build xmlhasher.gemspec - gem install xmlhasher-*
language: ruby bundler_args: "--without development" before_install: - gem install bundler rvm: - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 script: - gem build xmlhasher.gemspec - gem install xmlhasher-*
Configure rbx by rvm shortcuts
language: ruby rvm: - "2.0" - "2.1" - "2.2" - "2.3.1" - rbx-2 gemfile: - gemfiles/rails_4.1.8.gemfile - gemfiles/rails_4.1.10.gemfile - gemfiles/rails_4.2.1.gemfile - gemfiles/rails_5.0.0.1.gemfile matrix: exclude: - rvm: 2.0 gemfile: gemfiles/rails_5.0.0.1.gemfile - rvm: 2.1 ...
language: ruby rbx-1[.4.3] rbx-2.3[.0] rbx-2.4[.1] rbx[-2.5.8] rvm: - "2.0" - "2.1" - "2.2" - "2.3.1" - "rbx-1" - "rbx-2.3" - "rbx-2.4" - "rbx" gemfile: - gemfiles/rails_4.1.8.gemfile - gemfiles/rails_4.1.10.gemfile - gemfiles/rails_4.2.1.gemfile - gemfiles/rails_5.0.0.1.gemfile matrix: exc...
Fix Logtalk install when running Travis CI builds
sudo: required language: bash services: - docker install: - docker pull swipl:stable - sudo LogtalkDotOrg/logtalk3/scripts/install.sh script: - docker run -it --name test --entrypoint=/bin/bash library/swipl -c "logtalk_user_setup && cd ~/logtalk/tests/logtalk && logtalk_tester"
sudo: required language: bash services: - docker install: - docker pull swipl:stable - sudo scripts/install.sh script: - docker run -it --name test --entrypoint=/bin/bash library/swipl -c "logtalk_user_setup && cd ~/logtalk/tests/logtalk && logtalk_tester"
Update Travis CI build file
language: generic os: - linux - osx env: global: - CONDA_PREFIX=$HOME/conda - MINICONDA_URL_BASE="https://repo.continuum.io/miniconda/Miniconda2-latest" - TRAVIS_PYTHON_VERSION="2.7" sudo: false before_install: - | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then OS="MacOSX-x86_64" else ...
language: generic os: - linux - osx env: global: - CONDA_PREFIX=$HOME/conda - MINICONDA_URL_BASE="https://repo.continuum.io/miniconda/Miniconda3-latest" - TRAVIS_PYTHON_VERSION="3.*" before_install: - | if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then OS="MacOSX-x86_64" else OS="Linux-x...
Reduce build time by not doing coverage text, that can be done out of band and committed to the repo
language: php php: - 5.3 - 5.4 services: - mongodb before_script: - phpenv config-add travis-php.ini - wget --quiet http://getcomposer.org/composer.phar - php composer.phar install - mkdir logs - touch logs/application.log - mkdir -p data/DoctrineMongoODMModule/Hydrator - mkdir -p data/SmartyModule/...
language: php php: - 5.3 - 5.4 services: - mongodb before_script: - phpenv config-add travis-php.ini - wget --quiet http://getcomposer.org/composer.phar - php composer.phar install - mkdir logs - touch logs/application.log - mkdir -p data/DoctrineMongoODMModule/Hydrator - mkdir -p data/SmartyModule/...
Enable campfire notification for Travis
language: node_js node_js: - 0.6 script: script/test
script: script/test language: node_js notifications: campfire: rooms: secure: VR6rWk0YhezBWnD8jPjSD8h/Q83S3NT0F34Au1vswt+/+Ku19S8X44vGVUG+NYdYyhg7uOqUaPN1Jr3KCpdcXgHEpUYiyBGJ8ebltavcjeHYWqK6ghcqgSnbDkifuC7Eu/9LcrOMOXgt+zkXjiVXW3+zyGVDcrs4cQ2vGY2DTYA= node_js: - 0.6
Add missing sonatype profile, quiet maven
# Use docker-based infrastructure sudo: false language: java jdk: - oraclejdk8 notifications: irc: "chat.freenode.net#seedstack-dev" cache: directories: - "$HOME/.m2/repository" install: /bin/true script: - mvn -B -U -T 4 -Pjavadoc,compatibility install jacoco:report - mvn -B coveralls:report -Drepo...
# Use docker-based infrastructure sudo: false language: java jdk: - oraclejdk8 notifications: irc: "chat.freenode.net#seedstack-dev" cache: directories: - "$HOME/.m2/repository" install: /bin/true script: - mvn -q -B -U -T 4 -Pjavadoc,compatibility,staging install jacoco:report - mvn -q -B coveralls...
Add exclude tag for foodcritic
language: ruby rvm: - 2.1.5 script: - bundle exec rubocop - bundle exec foodcritic -f any cookbooks
language: ruby rvm: - 2.1.5 script: - bundle exec rubocop - bundle exec foodcritic --epic-fail any --tags ~FC003 cookbooks
Change to use the latest Rubies
--- language: ruby before_install: "gem install bundler -v '< 2.0'" script: bundle exec rake ci rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.6 - 2.5.5 - 2.6.3 - ruby-head - jruby-9.2.6.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head fast_finish: true branches: ...
--- language: ruby before_install: "gem install bundler -v '< 2.0'" script: bundle exec rake ci rvm: - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 - 2.6 - 2.7 - ruby-head - jruby-9.2.11.0 - jruby-head - truffleruby matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: jruby-9.2.1...
Fix Travis caching for sbt 1.3.x.
language: scala scala: - 2.12.10 sudo: false jdk: - openjdk8 script: - sbt ++$TRAVIS_SCALA_VERSION server/test client/test # Tricks to avoid unnecessary cache updates, from # http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html - find $HOME/.sbt -name "*.lock" | xargs rm - find $HOME/.ivy2 -name "ivydata-*.proper...
language: scala scala: - 2.12.10 sudo: false jdk: - openjdk8 script: - sbt ++$TRAVIS_SCALA_VERSION server/test client/test cache: directories: - $HOME/.cache/coursier - $HOME/.ivy2/cache - $HOME/.sbt install: - . $HOME/.nvm/nvm.sh - nvm install stable - nvm use stable - npm install - npm install...
Add PHP 7.1 and 7.2
sudo: false language: php php: - '5.4' - '5.6' - '7.0' - hhvm - nightly install: - cat composer.json - composer self-update - rm composer.lock - composer install -o --profile script: vendor/bin/phpunit
sudo: false language: php php: - '5.4' - '5.6' - '7.0' - '7.1' - '7.2' - hhvm - nightly install: - cat composer.json - composer self-update - rm composer.lock - composer install -o --profile script: vendor/bin/phpunit
Make value documentation a little clearer
pachd: storage: backend: AMAZON amazon: amazonBucket: blah # this is an example access key ID from https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html id: AKIAIOSFODNN7EXAMPLE # this is an example secret access key (ibid.) secret: wJalrXUtnFEMI/K7MDEN...
pachd: storage: backend: AMAZON amazon: amazonBucket: blah # this is an example access key ID taken from https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html id: AKIAIOSFODNN7EXAMPLE # this is an example secret access key taken from https://docs.aws.amazon.c...
Update RadarWeather to 1.4 (14)
AntiFeatures: - NonFreeNet Categories: - Internet License: GPL-3.0-only AuthorName: woheller69 SourceCode: https://github.com/woheller69/weather IssueTracker: https://github.com/woheller69/weather/issues Changelog: https://github.com/woheller69/weather/blob/main/CHANGELOG.md AutoName: RadarWeather RepoType: git R...
AntiFeatures: - NonFreeNet Categories: - Internet License: GPL-3.0-only AuthorName: woheller69 SourceCode: https://github.com/woheller69/weather IssueTracker: https://github.com/woheller69/weather/issues Changelog: https://github.com/woheller69/weather/blob/main/CHANGELOG.md AutoName: RadarWeather RepoType: git R...
Add back title, add empty hours, and add note
name: Bag Lunch Line category: Food schedule: - title: hours: CLOSED breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: []
name: Bag Lunch Line category: Food schedule: - title: Hours notes: Closed until further notice hours: [] breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: []
Use TRAVIS_REPO_SLUG env variable for Travis tests
--- # Tests for vsftpd role - hosts: localhost remote_user: root roles: - "infOpen/ansible-role-vsftpd" post_tasks: - include: ./test_common.yml vars: vsftpd_banned_email_file: '/tmp/foo/vsftpd.banned_emails' vsftpd_chroot_list_file: '/tmp/foo/vsftpd.chroot_list' vsftpd_email_password_file...
--- # Tests for vsftpd role - hosts: localhost remote_user: root roles: - "{{ role_name }}" post_tasks: - include: ./test_common.yml vars: role_name: "{{ lookup('env','TRAVIS_REPO_SLUG') }}" vsftpd_banned_email_file: '/tmp/foo/vsftpd.banned_emails' vsftpd_chroot_list_file: '/tmp/foo/vsftpd...
Fix old import namespace name compat
# set for EasyCodingStandard services: # class has to be final, abstract or Doctrine entity SlamCsFixer\FinalInternalClassFixer: ~ # import namespaces for classes, constants and functions # configuration: https://github.com/slevomat/coding-standard#slevomatcodingstandardnamespacesreferenceusednamesonly...
# set for EasyCodingStandard services: # class has to be final, abstract or Doctrine entity SlamCsFixer\FinalInternalClassFixer: ~ # import namespaces for classes, constants and functions # configuration: https://github.com/slevomat/coding-standard#slevomatcodingstandardnamespacesreferenceusednamesonly...
Update Substitution plan to 1.3.0 (5)
Categories: - Internet License: GPL-3.0-only SourceCode: https://codeberg.org/vertretungsplan/client-android IssueTracker: https://codeberg.org/vertretungsplan/client-android/issues AutoName: Substitution plan RepoType: git Repo: https://codeberg.org/vertretungsplan/client-android.git Builds: - versionName: 1.0....
Categories: - Internet License: GPL-3.0-only SourceCode: https://codeberg.org/vertretungsplan/client-android IssueTracker: https://codeberg.org/vertretungsplan/client-android/issues AutoName: Substitution plan RepoType: git Repo: https://codeberg.org/vertretungsplan/client-android.git Builds: - versionName: 1.0....
Update from Hackage at 2017-05-07T17:20:34Z
homepage: https://github.com/phadej/functor-classes-compat#readme changelog-type: '' hash: 7bf659ed6c2b61ae1748a0d00213cff6960d82603bd77f363452a497800f4018 test-bench-deps: {} maintainer: Oleg Grenrus <oleg.grenrus@iki.fi> synopsis: Data.Functor.Classes instances for core packages changelog: '' basic-deps: base: ! '>...
homepage: https://github.com/phadej/functor-classes-compat#readme changelog-type: '' hash: 14c1e7fd585522284429b627efea55737f0e536edc9e0d9e7fa00810805f7411 test-bench-deps: {} maintainer: Oleg Grenrus <oleg.grenrus@iki.fi> synopsis: Data.Functor.Classes instances for core packages changelog: '' basic-deps: base: ! '>...
Update default FMT for tools
--- upload_path: "/static/images/" frontmatter_file_url_template: "/images/" body_file_url_template: "/images/" new_page_extension: md auto_deploy: false admin_path: admin webhook_url: sections: article: default_front_matter_template: article book: default_front_matter_template: book event: default_f...
--- upload_path: "/static/images/" frontmatter_file_url_template: "/images/" body_file_url_template: "/images/" new_page_extension: md auto_deploy: false admin_path: admin webhook_url: sections: article: default_front_matter_template: article book: default_front_matter_template: book event: default_fr...
Add container git ssh key to authorized keys on host
--- - name: Create admin group group: name=admin state=present - name: Allow admin group to sudo without password lineinfile: dest=/etc/sudoers state=present regexp='^%admin ALL\=' line='%admin ALL=(ALL) NOPASSWD:ALL' validate='visudo -cf %s' - name: Create development environment user user:...
--- - name: Create admin group group: name=admin state=present - name: Allow admin group to sudo without password lineinfile: dest=/etc/sudoers state=present regexp='^%admin ALL\=' line='%admin ALL=(ALL) NOPASSWD:ALL' validate='visudo -cf %s' - name: Create development environment user user:...
Add faster builds config for Travis CI
language: ruby rvm: - 1.9.3 - 2.0.0 script: bundle exec rake test
sudo: false language: ruby rvm: - 2.0.0 cache: bundler script: bundle exec rake test
Add python 3.2 to the build matix.
language: python python: - "2.7" - "2.6" install: - "pip install --upgrade setuptools" - "python bootstrap.py" - "./bin/buildout" script: - "./bin/nosetests"
language: python python: - "2.7" - "2.6" - "3.2" install: - "pip install --upgrade setuptools" - "python bootstrap.py" - "./bin/buildout" script: - "./bin/nosetests"
Change triproxy dev service to LoadBalancer
apiVersion: v1 kind: Service metadata: labels: app: stf-triproxy-dev name: stf-triproxy-dev spec: ports: - port: 7250 targetPort: 7250 name: bind-pub - port: 7260 targetPort: 7260 name: bind-dealer - port: 7270 targetPort: 7270 name: bind-pull selector: app: stf-tr...
apiVersion: v1 kind: Service metadata: labels: app: stf-triproxy-dev name: stf-triproxy-dev spec: ports: - port: 7250 targetPort: 7250 name: bind-pub - port: 7260 targetPort: 7260 name: bind-dealer - port: 7270 targetPort: 7270 name: bind-pull type: LoadBalancer sele...
Update from Forestry.io - Updated Forestry configuration
--- label: colinha hide_body: false fields: - name: layout label: Layout type: text hidden: false default: post - name: title label: Title type: text hidden: false default: Título - name: date label: Date type: datetime hidden: false default: 2019-02-21 03:00:00 +0000 - name: img label: Img ...
--- label: variados hide_body: false fields: - name: layout label: Layout type: text hidden: false default: post - name: title label: Title type: text hidden: false default: Título - name: date label: Date type: datetime hidden: false default: 2019-02-21 03:00:00 +0000 - name: img label: Img ...
Add fast-exit to feedstock conversion
jobs: - job: create_feedstocks condition: eq(variables['Build.SourceBranch'], 'refs/heads/master') pool: vmImage: ubuntu-16.04 strategy: maxParallel: 1 timeoutInMinutes: 60 steps: - script: | # Avoid wasting CI time if there are now recipes ready for conversion if [ "$(ls recipes/*/meta....
schedules: - cron: "*/15 * * * *" displayName: Feedstock conversion trigger branches: include: - master jobs: - job: create_feedstocks condition: eq(variables['Build.SourceBranch'], 'refs/heads/master') pool: vmImage: ubuntu-16.04 strategy: maxParallel: 1 timeoutInMinutes: 60 steps: - s...
Remove join filter from pip module tasks
--- # Copyright 2014, 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 2014, 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 ...
Fix typo in Spanish translation
es: admin: actions: dropzone: dictDefaultMessage: "Arrastra archivos aquí para subirlos" dictFallbackMessage: "Tu navegador no soporta subir archivos arrastrándolos." dictFallbackText: "Porfavor usa el formulario para subir tus archivos como en los viejos tiempos." dictFileTo...
es: admin: actions: dropzone: dictDefaultMessage: "Arrastra archivos aquí para subirlos" dictFallbackMessage: "Tu navegador no soporta subir archivos arrastrándolos." dictFallbackText: "Por favor usa el formulario para subir tus archivos como en los viejos tiempos." dictFileT...
Add missing keyring to gitlab ci config
stages: - test tests:python: stage: test image: python:3 services: - postgres:9 variables: POSTGRES_DB: zoudb POSTGRES_USER: postgres POSTGRES_PASSWORD: mysecretpassword DB_HOST: postgres script: # Update - echo "deb http://www.deb-multimedia.org jessie main non-free" | tee -a /...
stages: - test tests:python: stage: test image: python:3 services: - postgres:9 variables: POSTGRES_DB: zoudb POSTGRES_USER: postgres POSTGRES_PASSWORD: mysecretpassword DB_HOST: postgres script: # Update - echo "deb http://www.deb-multimedia.org jessie main non-free" | tee -a /...
Use older version of google-resumable-media because of strict pinning in google-cloud-storage.
{% set version = "0.1.1" %} package: name: google-resumable-media version: {{ version }} source: fn: google-resumable-media-{{ version }}.tar.gz url: https://pypi.io/packages/source/g/google-resumable-media/google-resumable-media-{{ version }}.tar.gz sha256: 4e5a10cfd4ff5775bb7f31c074831595facfe453b3d52eefa...
{% set version = "0.0.2" %} package: name: google-resumable-media version: {{ version }} source: fn: google-resumable-media-{{ version }}.tar.gz url: https://pypi.io/packages/source/g/google-resumable-media/google-resumable-media-{{ version }}.tar.gz sha256: c48e88da9f4e876ee3a79c9e872425745ffb05bfc236d1b0d...
Update from Hackage at 2018-10-12T16:16:56Z
homepage: '' changelog-type: markdown hash: cfddeb2156aadd75234b992554f877a65abebf78b6105aa036626d6dc311bea2 test-bench-deps: {} maintainer: andygill@ku.edu synopsis: blank-canvas frontend for Yampa changelog: ! '## 0.2.2 * Allow building with `blank-canvas-0.6` and `Yampa-0.10` ## 0.2.1 * Allowed building wi...
homepage: '' changelog-type: markdown hash: 40342318303cc5a26cd0089e2938f7e423942ac111f93957c891f8edea976e15 test-bench-deps: {} maintainer: andygill@ku.edu synopsis: blank-canvas frontend for Yampa changelog: ! '## 0.2.2 * Allow building with `blank-canvas-0.6` and `Yampa-0.10` ## 0.2.1 * Allowed building wi...
Enable Zipkin tests in the CF acceptance tests
properties: acceptance_tests: api: (( concat properties.cc.external_host "." properties.system_domain )) apps_domain: (( grab properties.app_domains[0] )) system_domain: (( grab properties.system_domain )) admin_user: "admin" admin_password: (( grab secrets.uaa_admin_password )) test_password:...
properties: acceptance_tests: api: (( concat properties.cc.external_host "." properties.system_domain )) apps_domain: (( grab properties.app_domains[0] )) system_domain: (( grab properties.system_domain )) admin_user: "admin" admin_password: (( grab secrets.uaa_admin_password )) test_password:...
Add `-R` option in `pg_basebackup` command
--- - name: Stop PostgreSQL service: name: "{{ postgresql_service }}" state: "stopped" become: yes - name: Remove PostgreSQL data dir file: path: "{{ postgresql_data_path }}/main" state: absent become: yes - name: Take base backup of PostgreSQL database shell: "{{ item }}" environment: ...
--- - name: Stop PostgreSQL service: name: "{{ postgresql_service }}" state: "stopped" become: yes - name: Remove PostgreSQL data dir file: path: "{{ postgresql_data_path }}/main" state: absent become: yes - name: Take base backup of PostgreSQL database shell: "{{ item }}" environment: ...
Update from Hackage at 2018-12-05T00:38:17Z
homepage: '' changelog-type: markdown hash: dc115ed3c770471a3cc63288ae4be52c186a8eff53bdff39d1231869da9b7491 test-bench-deps: {} maintainer: kai@kzhang.org synopsis: A minimal Haskell bindings to DRMAA C library. changelog: ! '# Revision history for drmaa ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on a...
homepage: '' changelog-type: markdown hash: cbc4f2546a37f1abfe07ac6361e3b43b9fbaec41b84d53156cbdc532a1a244b1 test-bench-deps: {} maintainer: kai@kzhang.org synopsis: A Haskell bindings to the DRMAA C library. changelog: ! '# Revision history for drmaa ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an un...
Add volume mapping for local dev, add worker using same image as web, use .env file
feeder: build: . container_name: feeder-prx-org env_file: - .env.compose links: - db ports: - "3000:3000" db: image: postgres env_file: - .env.compose ports: - "5432:5432"
feeder: build: . volumes: - .:/app container_name: feeder-web env_file: - .env links: - db ports: - "3000:3000" command: web worker: image: feederprxorg_feeder volumes: - .:/app container_name: feeder-worker env_file: - .env links: - db command: worker db: image: ...
Update from Hackage at 2016-11-08T18:39:08Z
homepage: '' changelog-type: '' hash: 207b61f90d4815b0e8438a1a729b4d412b6ae903e8ad38cdfdc61eb999f75079 test-bench-deps: {} maintainer: elise@jabberwocky.eu benl@ouroborus.net synopsis: Gloss picture data types and rendering functions. changelog: '' basic-deps: bytestring: ==0.10.* OpenGL: ! '>=2.12 && <3.1' bmp: ...
homepage: '' changelog-type: '' hash: 08243b2d67e4a072df2fece4d48b6ee2c67ed5c182c336a6fb19767b76238fee test-bench-deps: {} maintainer: elise@jabberwocky.eu benl@ouroborus.net synopsis: Gloss picture data types and rendering functions. changelog: '' basic-deps: bytestring: ==0.10.* OpenGL: ! '>=2.12 && <3.1' bmp: ...
Use terse Cucumber output by default
<% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags ~@wip" %> default: <%= ...
<% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip" %> default: <%...
Fix dependencies for building tatomecab dict
--- - name: Modify dictionary with warifuri (this takes a long time) become: false command: ./build.sh chdir=/tmp/tatomecab/warifuri - name: Build dictionary - configure become: false command: ./configure --with-charset=UTF-8 chdir=/tmp/tatomecab/warifuri/mecab-naist-jdic-0.6.3b-20111013 - name: Build dictio...
--- - name: Install dependencies for building dictionary apt: name: libmecab-dev state: present - name: Modify dictionary with warifuri (this takes a long time) become: false command: ./build.sh chdir=/tmp/tatomecab/warifuri - name: Build dictionary - configure become: false command: ./configure --...
Use version range instead of single version
title: By-passing Protection of PharStreamWrapper Interceptor link: https://typo3.org/security/advisory/typo3-psa-2018-001/ branches: 1.x: time: 2018-10-18 13:59:00 versions: ['>=1.0.0', '<2.0.0'] 2.x: time: 2018-10-18 13:59:00 versions: ['2.0.0'] 3.x: ...
title: By-passing Protection of PharStreamWrapper Interceptor link: https://typo3.org/security/advisory/typo3-psa-2018-001/ branches: 1.x: time: 2018-10-18 13:59:00 versions: ['>=1.0.0', '<2.0.0'] 2.x: time: 2018-10-18 13:59:00 versions: ['>=2.0.0', '<2.0.1'] ...
Add a notice about WordPress' X_FORWARDED_PROTO issue
version: '3' services: https-portal: image: steveltn/https-portal:1 ports: - 80:80 - 443:443 links: - wordpress # Restart https-portal on failure or after Docker host restart. restart: always environment: # Forward wordpress.example.com to the WordPress container. ...
# Note: Recent version of Wordpress doesn't respect `X_FORWARDED_PROTO` # header sent by HTTPS-PORTAL. # Please refer to Section "Fixing protocol errors" to fix it after installing # https://www.nan-labs.com/blog/dockerize-secure-wordpress-behind-proxy version: '3' services: https-portal: image: steveltn/https...
Check javadoc on JRE 8.
version: 2.1 jobs: test_8: environment: GRADLE_OPTS: "-Dorg.gradle.workers.max=2" docker: - image: cimg/openjdk:8.0 steps: - checkout - run: name: gradlew test command: ./gradlew test - store_test_results: path: build/test-results/test test_1...
version: 2.1 jobs: test_8: environment: GRADLE_OPTS: "-Dorg.gradle.workers.max=2" docker: - image: cimg/openjdk:8.0 steps: - checkout - run: name: gradlew test command: ./gradlew test - run: name: gradlew javadoc command: ./gradlew ja...
Revert "Chore: Manually build and push docker image"
name: dotfiles on: push jobs: archlinux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Pull docker image run: docker-compose pull - name: Run Archlinux installer run: docker-compose up --build --exit-code-from dotfiles - name: Log into registry ...
name: dotfiles on: push jobs: archlinux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Build and push Docker images uses: docker/build-push-action@v1 with: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} reposit...
Use ramsey/composer-install in test workflow
name: Tests on: - "push" - "pull_request" jobs: tests: runs-on: ubuntu-latest continue-on-error: "${{ matrix.php-versions == '8.2' }}" strategy: matrix: php-versions: ['8.0', '8.1', '8.2'] steps: - uses: actions/checkout@v2 - name: "Cache Composer packages" id: "co...
name: Tests on: - "push" - "pull_request" jobs: tests: runs-on: ubuntu-latest continue-on-error: "${{ matrix.php-versions == '8.2' }}" strategy: matrix: php-versions: ['8.0', '8.1', '8.2'] steps: - uses: actions/checkout@v2 - name: "Setup PHP Action" uses: "shivamm...
Update from Hackage at 2018-10-21T17:18:50Z
homepage: '' changelog-type: '' hash: 467504786bff2d277e5462231f06ee9cba843e09ffb3f64b9be2f04b83d54550 test-bench-deps: {} maintainer: dylan@dylex.net synopsis: ZIP archive streaming using conduits changelog: '' basic-deps: exceptions: -any bytestring: -any base: ! '>=4.9 && <5' time: -any filepath: -any co...
homepage: '' changelog-type: '' hash: 78cd3244efbfba99184d17f5923980282f7d1b8f6d71c6e8af14e516e4239691 test-bench-deps: {} maintainer: dylan@dylex.net synopsis: ZIP archive streaming using conduits changelog: '' basic-deps: exceptions: -any bytestring: -any base: ! '>=4.9 && <5' time: -any text: -any filepa...
Update to add global 301
--- site: dwp_jobcentre host: www.jobcentre.gov.uk redirection_date: 1st June 2013 tna_timestamp: 20130128102031 title: Department for Work &amp; Pensions homepage: https://www.gov.uk/ css: department-for-work-pensions ---
--- site: dwp_jobcentre host: www.jobcentre.gov.uk redirection_date: 1st June 2013 tna_timestamp: 20130128102031 title: Department for Work &amp; Pensions furl: www.gov.uk homepage: https://www.gov.uk/ global: =301 https://www.gov.uk/ css: department-for-work-pensions ---
Add name to job in GitHub action
name: Create and publish Docker images on: # push: # branches: ['develop'] workflow_dispatch: jobs: create-and-publish-dev-image: # if: github.ref == 'refs/heads/develop' runs-on: ubuntu-20.04 steps: - name: Checkout repository uses: actions/checkout@v2 # ref: develop ...
name: Create and publish Docker images on: # push: # branches: ['develop'] workflow_dispatch: jobs: create-and-publish-dev-image: name: Create and publish dev image # if: github.ref == 'refs/heads/develop' runs-on: ubuntu-20.04 steps: - name: Checkout repository uses: actions/c...