Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add CentOS 7, Debian 6.0.10 and Debian 7.7 to Test Kitchen | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.10
- name: centos-6.5
- name: fedora-19
- name: fedora-20
- name: ubuntu-12.04
- name: ubuntu-14.04
suites:
- name: default
run_list:
- recipe[rsyslog::default]
- name: relp
run_list:
- recipe[rsysl... | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.10
- name: centos-6.5
- name: centos-7.0
- name: debian-6.0.10
- name: debian-7.7
- name: fedora-19
- name: fedora-20
- name: ubuntu-12.04
- name: ubuntu-14.04
suites:
- name: default
run_list:
- recipe[r... |
Stop aligning assignments and enforcing it in our style guides | preset: recommended
risky: false
linting: true
enabled:
- not_operator_with_successor_space
- no_short_echo_tag
- align_equals
disabled:
- ordered_imports
- phpdoc_no_package
- unalign_equals
| preset: recommended
risky: false
linting: true
enabled:
- not_operator_with_successor_space
- no_short_echo_tag
disabled:
- ordered_imports
- phpdoc_no_package
|
Move Pypi publisher to release side... |
steps:
- script: |
pip install robotframework
pip install pythonnet
displayName: Install needed compoments from PyPi
- task: NuGetCommand@2
- task: VSBuild@1
- script: |
run_tests.cmd --exclude no_ci --xunit xunit.xml
continueOnError: true
displayName: Execute Acceptance tests
- task: Publish... |
steps:
- script: |
pip install robotframework
pip install pythonnet
displayName: Install needed compoments from PyPi
- task: NuGetCommand@2
- task: VSBuild@1
- script: |
run_tests.cmd --exclude no_ci --xunit xunit.xml
continueOnError: true
displayName: Execute Acceptance tests
- task: Publish... |
Update centos test setup to use yum::epel | driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
customize:
memory: 2048
platforms:
- name: ubuntu-10.04
run_list:
- recipe[apt]
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-5.11
- name: centos-6.4
suites:
- name: package
run_list:
- recip... | driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
customize:
memory: 2048
platforms:
- name: ubuntu-10.04
run_list:
- recipe[apt]
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-5.11
run_list:
- recipe[yum::epel]
- name: centos-6.4
run_list:
... |
Add missing android SDK set up step | name: Continuous Integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-10.15
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute p... | name: Continuous Integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-10.15
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Set up Android ... |
Remove branch from the version in AppVeyor 💥 | # http://www.appveyor.com/docs/appveyor-yml
version: "{build}-{branch}"
environment:
matrix:
- nodejs_version: "6.2.0"
install:
# Update Node to the specified version
- ps: Install-Product node $env:nodejs_version
# Install dependencies
- npm install
test_script:
- npm test
# Disable automatic build... | # http://www.appveyor.com/docs/appveyor-yml
version: "{build}"
environment:
matrix:
- nodejs_version: "6.2.0"
install:
# Update Node to the specified version
- ps: Install-Product node $env:nodejs_version
# Install dependencies
- npm install
test_script:
- npm test
# Disable automatic builds
build: ... |
Add a 'gate' for config repository | - job:
name: config
builders:
- gerrit-git-prep
- shell: |
mkdir build
jenkins-jobs test jobs/ -o build/
jenkins-jobs update --delete-old jobs/
triggers:
- gerrit:
trigger-on-change-merged-event: true
projects:
- project-compare... | - job:
name: config-update
builders:
- gerrit-git-prep
- shell: |
mkdir build
jenkins-jobs test jobs/ -o build/
jenkins-jobs update --delete-old jobs/
triggers:
- gerrit:
trigger-on-change-merged-event: true
projects:
- project-... |
Remove record flag from kubectl command | # Docker image
# Build a Docker image to deploy, run, or push to a container registry.
# Add steps that use Docker Compose, tag images, push to a registry, run an image, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
pool:
vmImage: 'ubuntu-latest'
variables:
tagName: '$(Build.Buil... | # Docker image
# Build a Docker image to deploy, run, or push to a container registry.
# Add steps that use Docker Compose, tag images, push to a registry, run an image, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
pool:
vmImage: 'ubuntu-latest'
variables:
tagName: '$(Build.Buil... |
Remove old allow failures builds, not needed | # In order to install old Rubies, we need to use old Ubuntu distibution.
dist: trusty
language: ruby
email: false
cache:
directories:
- ../bundle
before_install:
- "script/update_rubygems_and_install_bundler"
- unset _JAVA_OPTIONS
- "script/clone_all_rspec_repos"
bundler_args: "--binstubs --standalone --wit... | # In order to install old Rubies, we need to use old Ubuntu distibution.
dist: trusty
language: ruby
email: false
cache:
directories:
- ../bundle
before_install:
- "script/update_rubygems_and_install_bundler"
- unset _JAVA_OPTIONS
- "script/clone_all_rspec_repos"
bundler_args: "--binstubs --standalone --wit... |
Deploy builds of master to MyGet | branches:
except:
- /travis-.*/
install:
ps: |
Import-Module '.\appveyor-tool.ps1'
Bootstrap
build_script:
- ps: .\build.ps1 -Target "Appveyor"
artifacts:
- path: package\*.nupkg
# - path: package\*.msi
# AppVeyor defaults to just its build number
version: '{build}'
# disable bui... | branches:
except:
- /travis-.*/
install:
ps: |
Import-Module '.\appveyor-tool.ps1'
Bootstrap
build_script:
- ps: .\build.ps1 -Target "Appveyor"
# disable built-in tests.
test: off
artifacts:
- path: package\*.nupkg
# - path: package\*.msi
deploy:
- provider: NuGet
server: ... |
Use official AppVeyor builder w/ Docker | version: 1.0.{build}
image: Windows Server 2016
environment:
DOCKER_USER:
secure: LjNiW/ZWrfVIJn3Mc9foeg==
DOCKER_PASS:
secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd
install:
- docker version
build_script:
- ps: .\build.ps1
test_script:
- ps: .\test.ps1
deploy_script:
... | version: 1.0.{build}
image: Visual Studio 2017
environment:
DOCKER_USER:
secure: LjNiW/ZWrfVIJn3Mc9foeg==
DOCKER_PASS:
secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd
install:
- docker version
build_script:
- ps: .\build.ps1
test_script:
- ps: .\test.ps1
deploy_script:
-... |
Replace regex with artifact name | version: 1.0.0.{build}
os: Visual Studio 2015
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}-$(APPVEYOR_REPO_COMMIT)'
before_build:
- ps: nuget restore
build:
... | version: 1.0.0.{build}
os: Visual Studio 2015
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}-$(APPVEYOR_REPO_COMMIT)'
before_build:
- ps: nuget restore
build:
... |
Fix Appveyor build string format | version: {build}
build: false
environment:
matrix:
- PYTHON: "C:\\Python26"
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- "%PYTHON%/Scripts/pip.exe install -e ."
- "%PYTHON%/S... | version: "#{build}"
build: false
environment:
matrix:
- PYTHON: "C:\\Python26"
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- "%PYTHON%/Scripts/pip.exe install -e ."
- "%PYTHON... |
Remove k8s liveness probe (k8s says it is failing) |
fullnameOverride: "web"
replicaCount: 3
service:
port: 3000
containers:
- name: web
image: cyberdojo/web
securityContext:
runAsUser: 65534 # nobody
fsGroup: 65534 # nobody
allowPrivilegeEscalation: false
resources:
requests:
cpu: 100m
memory: 128Mi
limit... |
fullnameOverride: "web"
replicaCount: 3
service:
port: 3000
containers:
- name: web
image: cyberdojo/web
securityContext:
runAsUser: 65534 # nobody
fsGroup: 65534 # nobody
allowPrivilegeEscalation: false
resources:
requests:
cpu: 100m
memory: 128Mi
limit... |
Update from Hackage at 2015-08-22T10:18:25+0000 | homepage: http://www.fpcomplete.com/user/agocorona
changelog-type: ''
hash: 6d5c85cce22d9e02bec25aa662fddc518691b80e3fe93649eea9c72420ca9795
test-bench-deps: {}
maintainer: agocorona@gmail.com
synopsis: A monad for extensible effects and primitives for unrestricted composability
of applications
changelog: ''
basic-de... | homepage: http://www.fpcomplete.com/user/agocorona
changelog-type: ''
hash: 6ea0eed1cfdedb94f6f826e4256ca57bfa769d36ce386c622d8e3d17e1221462
test-bench-deps: {}
maintainer: agocorona@gmail.com
synopsis: A monad for extensible effects and primitives for unrestricted composability
of applications
changelog: ''
basic-de... |
Update Bundler install command, rvm 'gem' binary is deprecated | ---
- name: install bundler
sudo_user: "{{ rvm_user }}"
command: /home/{{ rvm_user }}/.rvm/bin/gem install bundler creates=/home/{{ rvm_user }}/.rvm/gems/ruby-{{ ruby_version }}/bin/bundle
- name: Bundler install gems (first run is slow)
sudo_user: "{{ rvm_user }}"
command: /home/{{ rvm_user }}/.rvm/bin/rvm {... | ---
- name: install bundler
sudo_user: "{{ rvm_user }}"
command: /home/{{ rvm_user }}/.rvm/bin/rvm {{ ruby_version }} exec gem install bundler creates=/home/{{ rvm_user }}/.rvm/gems/ruby-{{ ruby_version }}/bin/bundle
- name: Bundler install gems (first run is slow)
sudo_user: "{{ rvm_user }}"
command: /home/{... |
Remove theme setup link from nav (merge junk) | # Site navigation links
- title: Home
url: /
- title: Quick Start
url: /docs/getting-started
- title: Documentation
url: /docs/
- title: Blog
url: /blog/
- title: Github
url: https://github.com/metrophp
- title: Theme Setup
url: /theme-setup/
| # Site navigation links
- title: Home
url: /
- title: Quick Start
url: /docs/getting-started
- title: Documentation
url: /docs/
- title: Blog
url: /blog/
- title: Github
url: https://github.com/metrophp
|
Create privileged LXD containers for testing | ---
- hosts: localhost
connection: local
gather_facts: no
tasks:
- name: Create ubuntu bionic test container
lxd_container:
name: ubuntu-bionic-ansible
state: started
wait_for_ipv4_addresses: true
source:
type: image
mode: pull
server: https://images.linuxcont... | ---
- hosts: localhost
connection: local
gather_facts: no
tasks:
- name: Create ubuntu bionic test container
lxd_container:
name: ubuntu-bionic-ansible
state: started
wait_for_ipv4_addresses: true
source:
type: image
mode: pull
server: https://images.linuxcont... |
Make buildpacks.cloudfoundry.org the default url for buildpack dependencies | ---
language: staticfile
exclude_files:
- .git/
- .gitignore
- .gitmodules
- .rspec
- cf_spec/
- log/
- test/
- buildpack-packager/
- staticfile_buildpack-*v*.zip
url_to_dependency_map:
- match: nginx.tgz
name: nginx
version: 1.11.1
dependencies:
- name: nginx
version: 1.11.1
ur... | ---
language: staticfile
exclude_files:
- .git/
- .gitignore
- .gitmodules
- .rspec
- cf_spec/
- log/
- test/
- buildpack-packager/
- staticfile_buildpack-*v*.zip
url_to_dependency_map:
- match: nginx.tgz
name: nginx
version: 1.11.1
dependencies:
- name: nginx
version: 1.11.1
ur... |
Change repo to pelias org | site_name: Mapzen Search
docs_dir: src/search
site_dir: dist/search
pages:
- Home: index.md
- 'Get started': 'get-started.md'
- 'Add search to a map': 'add-search-to-a-map.md'
- 'API keys and rate limits': 'api-keys-rate-limits.md'
- 'Search': 'search.md'
- 'Reverse geocoding': 'reverse.md'
- 'Autocomple... | site_name: Mapzen Search
docs_dir: src/search
site_dir: dist/search
pages:
- Home: index.md
- 'Get started': 'get-started.md'
- 'Add search to a map': 'add-search-to-a-map.md'
- 'API keys and rate limits': 'api-keys-rate-limits.md'
- 'Search': 'search.md'
- 'Reverse geocoding': 'reverse.md'
- 'Autocomple... |
Test in 7.1 -> 8.0 | on:
- pull_request
- push
name: CI
jobs:
run:
name: Tests
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout
... | on:
- pull_request
- push
name: CI
jobs:
run:
name: Tests
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0']
runs-on: ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v2
... |
Change dir to find requirements.txt | name: lovelace-website CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
... | name: lovelace-website CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
... |
Add SQL driver to dependencies | package: github.com/NAExpire/API
import:
- package: github.com/gorilla/mux
version: ~1.3.0
| package: github.com/NAExpire/API
import:
- package: github.com/gorilla/mux
version: ~1.3.0
- package: github.com/go-sql-driver/mysql
version: ^1.3.0
|
Update from Hackage at 2017-01-15T05:34:48Z | homepage: https://github.com/denisenkom/hspkcs11
changelog-type: ''
hash: 7aefc4833b77ed50154daa8d6cf6692bf739d6ac92c17689f428146a36600be1
test-bench-deps: {}
maintainer: denisenkom@gmail.com
synopsis: ! 'Wrapper for PKCS #11 interface'
changelog: ''
basic-deps:
bytestring: -any
unix: -any
base: <4.10
crypto-ap... | homepage: https://github.com/denisenkom/hspkcs11
changelog-type: ''
hash: 5887047a0e4e8c99f34eb072ff4cb299b2b840f5c39e22dc8c09fc8ed2c4671a
test-bench-deps: {}
maintainer: denisenkom@gmail.com
synopsis: ! 'Wrapper for PKCS #11 interface'
changelog: ''
basic-deps:
bytestring: -any
unix: -any
base: <4.10
crypto-ap... |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path: redac
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https://res... | ---
new_page_extension: md
auto_deploy: false
admin_path: redac
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https://res... |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-posts
label: Posts
create: all
upload_dir: assets
public_path: "/assets"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
instant_preview: true
build:
preview_env:
- JEKYLL_ENV=stagi... | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
match: "**/*"
- type: jekyll-posts
label: Posts
create: all
upload_dir: assets
public_path: "/assets"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:... |
Update AppVeyor to match travis conan invokation | build: false
environment:
PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.8"
PYTHON_ARCH: "32"
configuration: Release
platform:
- x86
- x64
#We install nasm in case libjpeg-turbo has to be built from source
install:
- curl -L -o nasminst.exe http://libgd.blob.core.windows.net/nasm/nasm-2.07-installer.exe
... | build: false
environment:
PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.8"
PYTHON_ARCH: "32"
configuration: Release
platform:
- x86
- x64
#We install nasm in case libjpeg-turbo has to be built from source
install:
- curl -L -o nasminst.exe http://libgd.blob.core.windows.net/nasm/nasm-2.07-installer.exe
... |
Change from Debug to Release | -
version: 2.2.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- dev
configuration: Debug
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version... | -
version: 2.2.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- dev
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{versi... |
Clean up Travis CI config | language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
matrix:
include:
os: windows
cache: false
node_js: node
env:
- YARN_GPG=no
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
local-dir: api
on:
branch: master
node_js: node
os: linux
| language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
matrix:
include:
os: windows
cache: false
node_js: node
env: "YARN_GPG=no"
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
local-dir: api
on:
branch: master
node_js: node
os: linux
|
Build and deploy all platforms to Github on tag | sudo: required
language: go
go:
- 1.7.x
install:
- echo "Please don't go get"
services:
- docker
before_script:
- curl -sSL test.docker.com | sudo -E sh
script:
- go get -d -v
- ./build.sh
- ./build_samples.sh
- ./test/version.sh ./faas-cli
# - ./deploy_samples.sh # requires a deployed FaaS
| sudo: required
language: go
go:
- 1.7.x
install:
- echo "Please don't go get"
services:
- docker
before_script:
- curl -sSL test.docker.com | sudo -E sh
script:
- go get -d -v
- ./build.sh
- ./build_samples.sh
- ./test/version.sh ./faas-cli
# - ./deploy_samples.sh # requires a deployed FaaS
befor... |
Allow failures on jruby for now | language: ruby
dist: xenial
cache: bundler
services:
- postgresql
- mysql
bundler_args: --without yard guard benchmarks tools
before_script:
- psql -c 'create database rom_sql;' -U postgres
- mysql -u root -e 'create database rom_sql;'
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-la... | language: ruby
dist: xenial
cache: bundler
services:
- postgresql
- mysql
bundler_args: --without yard guard benchmarks tools
before_script:
- psql -c 'create database rom_sql;' -U postgres
- mysql -u root -e 'create database rom_sql;'
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-la... |
Revert "fixed the scheme name" | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
podfile: Example/Podfile
before_install:
- pod install --project-directory=Example
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcod... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
podfile: Example/Podfile
before_install:
- pod install --project-directory=Example
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcod... |
Revert "update to py36 in blog env yml" | name: blog
channels:
- conda-forge
dependencies:
- beautifulsoup4
- flake8
- feedparser
- ipython
- ipywidgets
- jupyter
- lxml
- markdown
- mkdocs
- nbdime
- pelican
- python=3.6
- requests
| name: blog
channels:
- conda-forge
dependencies:
- beautifulsoup4
- flake8
- feedparser
- ipython
- ipywidgets
- jupyter
- lxml
- markdown
- mkdocs
- nbdime
- pelican
- python=3.5
- requests
|
Fix standards inside of yml file | exclude_paths:
- "/vendor/*"
engines:
phpcodesniffer:
enabled: true
config:
file_extensions: "php"
standard: "PSR1, PSR2"
ratings:
paths:
- "**.php"
| exclude_paths:
- "/vendor/*"
engines:
phpcodesniffer:
enabled: true
config:
file_extensions: "php"
standard: "PSR1,PSR2"
ratings:
paths:
- "**.php"
|
Use python job template for Zed | - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-yoga-jobs
- release-notes-jobs-python3
| - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-zed-jobs
- release-notes-jobs-python3
|
Use Bundler 1.17.3 for Rubies | environment:
matrix:
- ruby_version: "21"
- ruby_version: "22"
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- ruby -e 'p([:engine, RUBY_ENGINE, :platform, RUBY_PLATFORM])'
- gem --version
- gem install bundler --no-document
- bundler --version
- bundle install --retry=3... | environment:
matrix:
- ruby_version: "21"
- ruby_version: "22"
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- ruby -e 'p([:engine, RUBY_ENGINE, :platform, RUBY_PLATFORM])'
- gem --version
- gem install bundler:1.17.3 --no-document
- bundler --version
- bundle install --... |
Update analyzer version constraint, bump version | name: intl
version: 0.16.0-dev
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/intl
description: >-
Contains code to deal with internationalized/localized messages, date and
number formatting and parsing, bi-directional text, and other
internationalization issues.
environment:
sdk:... | name: intl
version: 0.16.0
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/intl
description: >-
Contains code to deal with internationalized/localized messages, date and
number formatting and parsing, bi-directional text, and other
internationalization issues.
environment:
sdk: '>=... |
Add ignore section to test data | # Configuration schema version 1.
version: 1
functions:
test-0.1:
runtime: python3.6
build:
source: src/hello_world
requirements:
- file: requirements.txt
use_docker: false
compile_dependencies: false
package: build/hello_world.zip
deploy:
description: A basi... | # Configuration schema version 1.
version: 1
functions:
test-0.1:
runtime: python3.6
build:
source: src/hello_world
requirements:
- file: requirements.txt
use_docker: false
compile_dependencies: false
package: build/hello_world.zip
ignore:
- "*.py[cdo]"
... |
Add RTD Python 3.6 support. | formats:
- pdf
requirements_file: requirements_rtfd.txt
python:
version: 3
setup_py_install: true
| build:
image: latest
formats:
- pdf
requirements_file: requirements_rtfd.txt
python:
version: 3.6
setup_py_install: true
|
Remove 32bit build option from specfile for leveldb. | # force 32bit compile on 64bit platform.
---
fetch: wget https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz -O leveldb-1.15.0.tar.gz
configure: bash configure --prefix=/usr/local/stow/leveldb-1.15.0
make: make CC="gcc -m32" CXX="g++ -m32"
#make: make
install: /bin/rm -rf /usr/local/stow/leveldb-1.15.0 ; mkdir -... | # force 32bit compile on 64bit platform.
---
fetch: wget https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz -O leveldb-1.15.0.tar.gz
configure: bash configure --prefix=/usr/local/stow/leveldb-1.15.0
#make: make CC="gcc -m32" CXX="g++ -m32"
make: make
install: /bin/rm -rf /usr/local/stow/leveldb-1.15.0 ; mkdir -... |
Replace deprecated --without flag with bundle config | ---
expeditor:
cached_folders:
- vendor
defaults:
buildkite:
timeout_in_minutes: 30
steps:
- label: run-lint-and-specs-ruby-2.4
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.4-buster
- label: run-lint-and-specs-ruby-2.5
command:... | ---
expeditor:
cached_folders:
- vendor
defaults:
buildkite:
timeout_in_minutes: 30
steps:
- label: run-lint-and-specs-ruby-2.4
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.4-buster
- label: run-lint-and-specs-ruby-2.5
command:... |
Set file permissions as requested by Harbour | Name: harbour-file-browser
Summary: File Browser for Sailfish OS
Version: 1.1
Release: 0
Group: Qt/Qt
License: Public domain
Sources:
- '%{name}-%{version}.tar.bz2'
Description: |-
File Browser for Sailfish OS. Browse the local file system.
Configure: none
Builder: qtc5
PkgConfigBR:
- Qt5Core
- Qt5Qml
- Qt5Quick
- sa... | Name: harbour-file-browser
Summary: File Browser for Sailfish OS
Version: 1.1
Release: 1
Group: Qt/Qt
License: Public domain
Sources:
- '%{name}-%{version}.tar.bz2'
Description: |-
File Browser for Sailfish OS. Browse files on the phone.
Configure: none
Builder: qtc5
PkgConfigBR:
- Qt5Core
- Qt5Qml
- Qt5Quick
- sailf... |
Update trivis file to work with mysql 5.7 | language: php
php:
- 7.0
- 7.1
sudo: false
before_install:
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
install: travis_retry composer install --no-interaction --prefer-dist --no-suggest
script: vendor/bin/phpunit --verbose
| language: php
php:
- 7.0
- 7.1
services:
- mysql
addons:
apt:
sources:
- mysql-5.7-trusty
packages:
- mysql-server
dist: trusty
sudo: required
env:
- LARAVEL_VERSION=5.4.*
before_script:
- composer self-update
- composer require "laravel/framework:${LARAVEL_VERSION}"
- mysql -e... |
Rearrange to allow binaries been kept | parameters:
- name: enableDownload
type: boolean
default: true
- name: packages
type: object
default:
- name: name
default: ""
- name: download_location
default: ""
- name: unpack_location
default: "$(Build.BinariesDirectory)"
- name... | parameters:
- name: enableDownload
type: boolean
default: true
- name: packages
type: object
default:
- name: name
default: ""
- name: download_location
default: ""
- name: unpack_location
default: "$(Build.BinariesDirectory)"
- name... |
Update GetReview lambda after build | ---
version: 0.1
phases:
install:
commands:
- echo Installing as $(whoami)
- npm install
- $(npm bin)/bower install --allow-root
build:
commands:
- $(npm bin)/gulp build
- $(npm bin)/gulp test
- $(npm bin)/gulp document
post_build:
commands:
# Update Api
... | ---
version: 0.1
phases:
install:
commands:
- echo Installing as $(whoami)
- npm install
- $(npm bin)/bower install --allow-root
build:
commands:
- $(npm bin)/gulp build
- $(npm bin)/gulp test
- $(npm bin)/gulp document
post_build:
commands:
# Update Api
... |
Test with Maven 3.4.0 SNAPSHOT | variables:
MAVEN_OPTS: >-
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN
-Dorg.slf4j.simpleLogger.showDateTime=true
-Djava.awt.headless=true
.test: &test
stage: test
script:
- 'mvn -B -V -e verify site site:stage'
except:
- gh-pages
test:jdk7:
... | variables:
MAVEN_OPTS: >-
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=WARN
-Dorg.slf4j.simpleLogger.showDateTime=true
-Djava.awt.headless=true
.test: &test
stage: test
script:
- 'mvn -B -V -e verify site site:stage'
except:
- gh-pages
test:jdk7:
... |
Remove comparer folder from docker build | imager:
build: imager/
ports:
- "8001:8000"
comparer:
build: comparer/
links:
- postgres
- imager
volumes:
- ./comparer/:/comparer/
environment:
- DATABASE_URL=postgres://postgres:mysecretpassword@postgres/postgres
frontend:
build: frontend/
volumes:
- ./frontend/:/frontend/
po... | imager:
build: imager/
ports:
- "8001:8000"
comparer:
build: comparer/
links:
- postgres
- imager
environment:
- DATABASE_URL=postgres://postgres:mysecretpassword@postgres/postgres
frontend:
build: frontend/
volumes:
- ./frontend/:/frontend/
ports:
- "8000:8000"
links:
- po... |
Move fabric8-tenant to fabric8-services org | services:
- hash: fed0f9d4205536998607768d2d8724a7f3ff1ea4
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8io/fabric8-init-tenant/
| services:
- hash: fed0f9d4205536998607768d2d8724a7f3ff1ea4
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8-services/fabric8-tenant/
|
Update carto docs with Themes | site_name: Cartography
docs_dir: src-cartography
site_dir: dist-cartography
pages:
- Home: index.md
- 'Get started': 'get-started.md'
- 'API reference': 'api-reference.md'
- 'Basemap styles': 'styles.md'
- 'Icons': 'icons.md'
- 'Versioning': 'versioning.md'
extra:
site_subtitle: 'Get everything you need... | site_name: Cartography
docs_dir: src-cartography
site_dir: dist-cartography
pages:
- Home: index.md
- 'Get started': 'get-started.md'
- 'Basemap styles': 'styles.md'
- 'Themes': 'themes.md'
- 'Icons': 'icons.md'
- 'API reference': 'api-reference.md'
- 'Versioning': 'versioning.md'
extra:
site_subtitle... |
Update from Hackage at 2018-08-26T21:01:28Z | homepage: https://github.com/sergv/emacs-module
changelog-type: ''
hash: 5ee802b7c0fc7e92ea9641910b3d7657c71db38ffe64c2f191a57a18073ac7af
test-bench-deps: {}
maintainer: Sergey Vinokurov <serg.foo@gmail.com>
synopsis: Utilities to write Emacs dynamic modules
changelog: ''
basic-deps:
exceptions: -any
void: -any
b... | homepage: https://github.com/sergv/emacs-module
changelog-type: ''
hash: ef0f970155717bc7cfbccfbaaf9ed38020fcec2085bb2d971a1c79b63fa3a0d7
test-bench-deps: {}
maintainer: Sergey Vinokurov <serg.foo@gmail.com>
synopsis: Utilities to write Emacs dynamic modules
changelog: ''
basic-deps:
exceptions: -any
void: -any
b... |
Fix data migration YAML command args | apiVersion: batch/v1
kind: Job
metadata:
namespace: default # namespace where the pvc's exist
name: volume-migration
spec:
completions: 1
parallelism: 1
backoffLimit: 3
template:
metadata:
name: volume-migration
labels:
name: volume-migration
spec:
restartPolicy: Never
... | apiVersion: batch/v1
kind: Job
metadata:
namespace: default # namespace where the pvc's exist
name: volume-migration
spec:
completions: 1
parallelism: 1
backoffLimit: 3
template:
metadata:
name: volume-migration
labels:
name: volume-migration
spec:
restartPolicy: Never
... |
Revert disabling the grenade job | - project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-ussuri-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
# NOTE (rpittau) sadly temporary disabling grenade and
... | - project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-ussuri-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- ironic-inspector-grenade
- ironic-inspector-temp... |
Use latest module-ci, which fixes bugs in upload-github-release-assets | machine:
environment:
PATH: $PATH:$HOME/glide/linux-amd64
dependencies:
override:
# Install the gruntwork-module-circleci-helpers and use it to configure the build environment and run tests.
- curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-install... | machine:
environment:
PATH: $PATH:$HOME/glide/linux-amd64
dependencies:
override:
# Install the gruntwork-module-circleci-helpers and use it to configure the build environment and run tests.
- curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-install... |
Add gfmxr integration for checking examples in README.md | language: go
sudo: false
go:
- 1.1.2
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
- tip
matrix:
allow_failures:
- go: tip
script:
- go vet ./...
- go test -v ./...
| language: go
sudo: false
go:
- 1.1.2
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
- tip
matrix:
allow_failures:
- go: tip
before_script:
- go get github.com/meatballhat/gfmxr/...
script:
- go vet ./...
- go test -v ./...
- gfmxr
|
Enable gem caching in CI build | language: ruby
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
gemfile:
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
matrix:
exclude:
- rvm: 2.4.1
gemfile: gemfiles/rails_4.1.gemfile
before_install:
- gem update bundler
before_script:
- R... | language: ruby
cache:
bundler: true
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
gemfile:
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
matrix:
exclude:
- rvm: 2.4.1
gemfile: gemfiles/rails_4.1.gemfile
before_install:
- gem update bundl... |
Update from Hackage at 2015-07-03T14:19:43+0000 | homepage: ''
changelog-type: ''
hash: c16973e935950d6dde791d92fb3d463bde992886b4100acf1af66b4e2228772a
test-bench-deps: {}
maintainer: ropoctl@gmail.com
synopsis: Sequence Alignment
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.6 && <5'
vector: -any
all-versions:
- '0.2.0.0'
- '0.2.0.1'
- '0.2.0.2'
- '0... | homepage: ''
changelog-type: ''
hash: dbf574ed677f0db7dd023a549ab3ee8c8bdb3559433fd03b098f1f90eae21f25
test-bench-deps: {}
maintainer: ropoctl@gmail.com
synopsis: Sequence Alignment
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.6 && <5'
vector: -any
all-versions:
- '0.2.0.0'
- '0.2.0.1'
- '0.2.0.2'
- '0... |
Add GHC 8.0.2 to the Travis build | language: nix
sudo: true
git:
depth: 1
env:
global:
matrix:
- GHCVERSION=ghc822
- GHCVERSION=ghc842
matrix:
allow_failures:
exclude:
script:
- nix-build --argstr compiler $GHCVERSION
branches:
only:
- master
| language: nix
sudo: true
git:
depth: 1
env:
global:
matrix:
- GHCVERSION=ghc802
- GHCVERSION=ghc822
- GHCVERSION=ghc842
matrix:
allow_failures:
exclude:
script:
- nix-build --argstr compiler $GHCVERSION
branches:
only:
- master
|
Add Horton as a maintainer | {% set name = "chemper" %}
{% set version = "1.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/mobleylab/chemper/archive/1.0.0.tar.gz
sha256: d8e1b0f29d005be6ba617f2dcb484706e4d06db1df1f6f4a26aa826e20472c7b
build:
noarch: python
number: 0
script: "{{ PYTHO... | {% set name = "chemper" %}
{% set version = "1.0.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/mobleylab/chemper/archive/1.0.0.tar.gz
sha256: d8e1b0f29d005be6ba617f2dcb484706e4d06db1df1f6f4a26aa826e20472c7b
build:
noarch: python
number: 0
script: "{{ PYTHO... |
Update setuptools recipe to version 34.1.1 | {% set name = "setuptools" %}
{% set version = "33.1.1" %}
package:
name: setuptools
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: 6b20352ed60ba08c43b3611bdb502286f7a869fbfcf472f40d7279f1e77d... | {% set name = "setuptools" %}
{% set version = "34.1.1" %}
package:
name: setuptools
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: be2108849161624b51b2a5cdba8117e2b3f7a9cf4301cf3839a55afc3a72... |
Revert "Protect add action." - doesn't work as expected. | application: search-gonuts-io
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
static_files: public/favicon.ico
upload: public/favicon.ico
- url: /apple-touch-icon(.*)\.png
static_files: public/apple-touch-icon\1.png
upload: public/apple-touch-icon(.*).png
- url: /rob... | application: search-gonuts-io
version: 1
runtime: python27
api_version: 1
threadsafe: yes
handlers:
- url: /favicon\.ico
static_files: public/favicon.ico
upload: public/favicon.ico
- url: /apple-touch-icon(.*)\.png
static_files: public/apple-touch-icon\1.png
upload: public/apple-touch-icon(.*).png
- url: /rob... |
Use the latest version of the archive package | name: sass
version: 1.0.0-dev
description: A Sass implementation in Dart.
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/sass/dart-sass
executables:
dart-sass: sass
environment:
sdk: '>=1.21.0 <2.0.0'
dependencies:
args: "^0.13.0"
charcode: "^1.1.0"
collection: "^1.8.0"
convert: "^2.0... | name: sass
version: 1.0.0-dev
description: A Sass implementation in Dart.
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/sass/dart-sass
executables:
dart-sass: sass
environment:
sdk: '>=1.21.0 <2.0.0'
dependencies:
args: "^0.13.0"
charcode: "^1.1.0"
collection: "^1.8.0"
convert: "^2.0... |
Update Aurora Droid to 1.0.5 (5) | Categories:
- System
License: GPL-3.0-only
AuthorName: Rahul Kumar Patel
AuthorEmail: whyorean@gmail.com
WebSite: https://auroraoss.com
SourceCode: https://gitlab.com/AuroraOSS/auroradroid
IssueTracker: https://gitlab.com/AuroraOSS/auroradroid/issues
Changelog: https://gitlab.com/AuroraOSS/auroradroid/blob/HEAD/CHANG... | Categories:
- System
License: GPL-3.0-only
AuthorName: Rahul Kumar Patel
AuthorEmail: whyorean@gmail.com
WebSite: https://auroraoss.com
SourceCode: https://gitlab.com/AuroraOSS/auroradroid
IssueTracker: https://gitlab.com/AuroraOSS/auroradroid/issues
Changelog: https://gitlab.com/AuroraOSS/auroradroid/blob/HEAD/CHANG... |
Add endpoints to the yaml file | application: neillatitude
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /favicon.ico
static_files: images/favicon.ico
upload: images/favicon.ico
- url: /stylesheets
static_dir: stylesheets
- url: /glDatePicker
static_dir: glDatePicker
- url: /images
static_dir: ... | application: neillatitude
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /favicon.ico
static_files: images/favicon.ico
upload: images/favicon.ico
- url: /stylesheets
static_dir: stylesheets
- url: /glDatePicker
static_dir: glDatePicker
- url: /images
static_dir: ... |
Drop Node 14 tests 🦀 | name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 14.x
- 16.x
- 18.x
steps:
- name: Set up Git
run: |
git config --... | name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
- 18.x
steps:
- name: Set up Git
run: |
git config --global user.name ... |
Update from Hackage at 2017-11-18T14:09:25Z | homepage: https://bitbucket.org/dpwiz/raven-haskell
changelog-type: ''
hash: 65bf508adfcd2701932bb81afdd79459002a1b156f2745ab34cd3b92095f57ff
test-bench-deps:
bytestring: -any
base: -any
unordered-containers: -any
hspec: -any
raven-haskell: -any
aeson: -any
maintainer: aenor.realm@gmail.com
synopsis: Haskel... | homepage: https://bitbucket.org/dpwiz/raven-haskell
changelog-type: ''
hash: f422e185152dc3fea33d744879e29caf5fcfd589438bdcc1c004d4944762f891
test-bench-deps:
bytestring: -any
base: -any
unordered-containers: -any
hspec: -any
raven-haskell: -any
aeson: -any
maintainer: aenor.realm@gmail.com
synopsis: Haskel... |
Fix Hbase stable to version specific folders | ---
#Required...
#dfs_namenode_host:
#zookeeper_group:
#hbase_master_host:
# Defaults...
hbase_version: 1.1.2
hbase_install_dir: /opt/hbase
hbase_exe_dir: "JAVA_HOME={{ java_home }} {{ hbase_install_dir }}/default/bin"
hbase_conf_dir: "{{ hbase_install_dir }}/default/conf"
hbase_user: hbase
hbase_group: hbase
hbase_st... | ---
#Required...
#dfs_namenode_host:
#zookeeper_group:
#hbase_master_host:
# Defaults...
hbase_version: 1.1.3
hbase_install_dir: /opt/hbase
hbase_exe_dir: "JAVA_HOME={{ java_home }} {{ hbase_install_dir }}/default/bin"
hbase_conf_dir: "{{ hbase_install_dir }}/default/conf"
hbase_user: hbase
hbase_group: hbase
hbase_st... |
Use NodeJs 12 on build | version: 0.2
phases:
install:
runtime-versions:
nodejs: 10
commands:
- mkdir -p layers/nodejs
- cp package*.json layers/nodejs
- npm install
- npm install --production --prefix layers/nodejs
build:
commands:
- npx s... | version: 0.2
phases:
install:
runtime-versions:
nodejs: 12
commands:
- mkdir -p layers/nodejs
- cp package*.json layers/nodejs
- npm install
- npm install --production --prefix layers/nodejs
build:
commands:
- npx s... |
Update from Hackage at 2020-01-22T08:35:32Z | homepage: ''
changelog-type: ''
hash: 74cd87692a90492171802f25c034ef047f0b68aaa1b53303d4e50ce3ec30e98a
test-bench-deps: {}
maintainer: none
synopsis: A Haskell library for writing FastCGI programs
changelog: ''
basic-deps:
bytestring: ! '>=0.9.1.5'
base: ! '>=4 && <5'
cgi: ! '>=3000.0.0'
all-versions:
- 3000.0.0
... | homepage: ''
changelog-type: ''
hash: c83b3c14b176c739e3b1f5ba67c9e63c3fb7fbc1f2c41c65aeab2ee12ba4db4d
test-bench-deps: {}
maintainer: Krasimir Angelov <kr.angelov@gmail.com>
synopsis: A Haskell library for writing FastCGI programs
changelog: ''
basic-deps:
bytestring: ! '>=0.9.1.5'
base: ! '>=4 && <5'
cgi: ! '>=... |
Add translatable elements for vulnerabilities.xml | projects:
- id: 9301
sources:
- dir: "src/main/resources/org/zaproxy/zap/resources"
outputDir: "src/main/dist/lang"
crowdinPath:
dir: "/core"
filename: "%file_pathname%"
exportPattern:
dir: "/zaproxy/core"
filename: "%file_name%_%locale_with_un... | projects:
- id: 9301
sources:
- dir: "src/main/resources/org/zaproxy/zap/resources"
outputDir: "src/main/dist/lang"
crowdinPath:
dir: "/core"
filename: "%file_pathname%"
exportPattern:
dir: "/zaproxy/core"
filename: "%file_name%_%locale_with_un... |
Add athena as the relayhost for this MX, so we can test adding it "in front" of Nike/Athena | ---
classes:
- apache
- pflogsumm
- ssl::name::wildcard_apache_org
postfix::server::postscreen: 'true'
postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subversion.net,subversion.org'
| ---
classes:
- apache
- pflogsumm
- ssl::name::wildcard_apache_org
postfix::server::postscreen: 'true'
postfix::server::relay_domains: 'apache.org,incubator.apache.org,apachecon.com,apachecon.eu,subversion.com,subversion.net,subversion.org'
## It should be noted that this is a temporary value, that means we ca... |
Use fixed version of pypandoc | package:
name: pypandoc
version: 1.1.0
source:
git_url: https://github.com/bebraw/pypandoc.git
git_tag: v1.1.0
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- pypandoc
about:
home: https://github.com/bebraw/pypandoc
license: MIT
summary: 'Thin wrapper... | package:
name: pypandoc
version: 1.1.0
source:
git_url: https://github.com/janschulz/pypandoc.git
git_tag: upload_tests
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- pypandoc
about:
home: https://github.com/bebraw/pypandoc
license: MIT
summary: 'Thi... |
Update nodejs in phoenix and elm project | # ~/.tmuxinator/phoenix_and_elm.yml
name: phoenix_and_elm
root: ~/elixir/phoenix_and_elm
# Runs before everything. Use it to start daemons etc.
on_project_first_start:
- mix deps.get
- mix compile --force
# - open --background http://localhost:3000
- open --background http://localhost:4000
# Grip
- open -... | # ~/.tmuxinator/phoenix_and_elm.yml
name: phoenix_and_elm
root: ~/elixir/phoenix_and_elm
# Runs before everything. Use it to start daemons etc.
on_project_first_start:
- mix deps.get
- mix compile --force
# - open --background http://localhost:3000
- open --background http://localhost:4000
# Grip
- open -... |
Update from Hackage at 2018-07-12T19:19:15Z | homepage: https://github.com/metrix-ai/primitive-extras
changelog-type: ''
hash: 0fcd60edb662a081bd9e94395329cb58df89e798ef1c4722e049a0fe2edbe1c0
test-bench-deps: {}
maintainer: Metrix Ninjas <ninjas@metrix.ai>
synopsis: Extras for the "primitive" library
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
deferred-fol... | homepage: https://github.com/metrix-ai/primitive-extras
changelog-type: ''
hash: 9c0d3317df83602ac03069868e78efb9e48001f0315a2381c8c66835d6904190
test-bench-deps: {}
maintainer: Metrix Ninjas <ninjas@metrix.ai>
synopsis: Extras for the "primitive" library
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
deferred-fol... |
Update from Hackage at 2016-01-15T18:16:05+0000 | homepage: https://github.com/kylcarte/type-combinators
changelog-type: ''
hash: fe1f2af500a8989abaa4645ec6f52c0aaedef6482694360dd0f94fce064ab21b
test-bench-deps: {}
maintainer: kylcarte@gmail.com
synopsis: A collection of data types for type-level programming
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
all-vers... | homepage: https://github.com/kylcarte/type-combinators
changelog-type: ''
hash: fba30d80af1e5dafe489bac106b008f781fc45f35c35e97be4e3ffbbff0812ed
test-bench-deps: {}
maintainer: kylcarte@gmail.com
synopsis: A collection of data types for type-level programming
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
all-vers... |
Update from Hackage at 2021-04-06T09:34:47Z | homepage: ''
changelog-type: ''
hash: 16b8e821f41304c7baa60d1036a6693caf2f7104e4983b4c7a000e2f3956b083
test-bench-deps:
base: '>=4 && <5'
hspec: -any
hexpat: '>=0.20 && <0.21'
hexpat-streamparser: ==0.1.2
maintainer: kristof@resonata.be
synopsis: ''
changelog: ''
basic-deps:
bytestring: '>=0.10 && <0.11'
Li... | homepage: ''
changelog-type: ''
hash: 7752484375e8040b23eb80bfce7c335e44573b18958607374f56b7029af0824e
test-bench-deps:
base: '>=4 && <5'
hspec: -any
hexpat: '>=0.20 && <0.21'
hexpat-streamparser: ==0.1.3
maintainer: kristof@resonata.be
synopsis: ''
changelog: ''
basic-deps:
bytestring: '>=0.10 && <0.11'
Li... |
Use Apache foundation's archive url for solr zip file. Our version is so old that it has disappeared from mirrors. | ---
solr_path: /usr/local/share/solr
solr_log_path: /var/log/solr
solr_user: solr
solr_group: solr
cache_path: /tmp/solr-cache
# Container folder for solr downloads
#solr_url: http://www.nic.funet.fi/pub/mirrors/apache.org/lucene/solr/
solr_url: ftp://ftp.funet.fi/pub/mirrors/apache.org/lucene/solr/
# Version
solr_... | ---
solr_path: /usr/local/share/solr
solr_log_path: /var/log/solr
solr_user: solr
solr_group: solr
cache_path: /tmp/solr-cache
# Container folder for solr downloads
#solr_url: http://www.nic.funet.fi/pub/mirrors/apache.org/lucene/solr/
solr_url: https://archive.apache.org/dist/lucene/solr/
# Version
solr_version: 4... |
Test utilities before running unit tests | steps:
- task: DownloadBuildArtifacts@0
inputs:
artifactName: imobiledevice-net
- script: |
unzip $SYSTEM_ARTIFACTSDIRECTORY/imobiledevice-net/iMobileDevice-net.*.nupkg -d $BUILD_SOURCESDIRECTORY/zip
ls -l $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native
export LD_LIBRARY_PATH=$BUILD_SOURCESDIRECTORY... | steps:
- task: DownloadBuildArtifacts@0
inputs:
artifactName: imobiledevice-net
- script: |
unzip $SYSTEM_ARTIFACTSDIRECTORY/imobiledevice-net/iMobileDevice-net.*.nupkg -d $BUILD_SOURCESDIRECTORY/zip
ls -l $BUILD_SOURCESDIRECTORY/zip/runtimes/$RID/native
- script: |
chmod +x $BUILD_SOURCESDIRECTORY/... |
Update mongodb endpoint with new IP | apiVersion: v1
kind: Service
metadata:
name: mongodb
namespace: swosh
spec:
type: ClusterIP
ports:
- protocol: TCP
port: 27017
---
apiVersion: v1
kind: Endpoints
metadata:
name: mongodb
namespace: swosh
subsets:
- addresses:
- ip: 192.168.1.5
ports:
- port: 27017
---
apiVersion: ... | apiVersion: v1
kind: Service
metadata:
name: mongodb
namespace: swosh
spec:
type: ClusterIP
ports:
- protocol: TCP
port: 27017
---
apiVersion: v1
kind: Endpoints
metadata:
name: mongodb
namespace: swosh
subsets:
- addresses:
- ip: 172.16.16.10
ports:
- port: 27017
---
apiVersion:... |
Update repository packages list before run | ---
- name : Install packages without specific configuration
apt :
name : "{{ item }}"
state : present
with_items : "{{ base_packages_simples_list }}"
| ---
- name : Install packages without specific configuration
apt :
name : "{{ item }}"
state : present
update_cache : True
with_items : "{{ base_packages_simples_list }}"
|
Fix linter for redis chart | description: Chart for Redis
engine: gotpl
home: http://redis.io/
keywords:
- redis
- keyvalue
- database
maintainers:
- email: containers@bitnami.com
name: Bitnami
name: redis
sources:
- https://github.com/bitnami/bitnami-docker-redis
version: 1.1.0
| apiVersion: v1
description: Chart for Redis
engine: gotpl
home: http://redis.io/
keywords:
- redis
- keyvalue
- database
maintainers:
- email: containers@bitnami.com
name: Bitnami
name: redis
sources:
- https://github.com/bitnami/bitnami-docker-redis
version: 1.1.0
|
Allow DATABASE_URL to be used for any enviroment | default: &default
adapter: postgresql
encoding: utf8
host: localhost
port: 5432
pool: <%= ENV['DB_POOL'] || ENV['MAX_THREADS'] || 5 %>
timeout: 5000
development:
<<: *default
database: ohana_api_development
# Warning: The database defined as "test" will be erased and
# re-generated from your developme... | default: &default
adapter: postgresql
encoding: utf8
host: localhost
port: 5432
pool: <%= ENV['DB_POOL'] || ENV['MAX_THREADS'] || 5 %>
url: <%= ENV['DATABASE_URL'] %>
timeout: 5000
development:
<<: *default
database: ohana_api_development
# Warning: The database defined as "test" will be erased and
... |
Exclude windows from testing matrix | name: Testing package
on: [push, pull_request]
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
php-versions: ['7.2', '7.3', '7.4']
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating... | name: Testing package
on: [push, pull_request]
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, macOS-latest]
php-versions: ['7.2', '7.3', '7.4']
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
... |
Fix PRs target to only run in upstream repo | name: Add bugs to bugs project
on:
issues:
types:
- opened
pull_request_target:
types:
- opened
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1.5.2
... | name: Add bugs to bugs project
on:
issues:
types:
- opened
pull_request_target:
types:
- opened
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
if: github.repository == 'erlang/otp'
steps:
- name: Generate token
id: generate_token
... |
Send the CODENAME ENV to the image. | agent:
build: .
volumes:
- ./:/go/src/github.com/buildkite/agent
| agent:
build: .
volumes:
- ./:/go/src/github.com/buildkite/agent
environment:
- CODENAME
|
Bump actions/checkout from 2 to 2.3.4 | name: Tests
on: [pull_request]
jobs:
phpunit:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP
uses: sh... | name: Tests
on: [pull_request]
jobs:
phpunit:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Install PHP
uses... |
Revert "chore: make git config for user global" | name: Release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Get yarn cache ... | name: Release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Get yarn cache ... |
Use correct docker repo name | project_name: prometheus-nginxlog-exporter
builds:
- env:
- CGO_ENABLED=0
- GO111MODULE=on
goos:
- linux
goarch:
- amd64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^tes... | project_name: prometheus-nginxlog-exporter
builds:
- env:
- CGO_ENABLED=0
- GO111MODULE=on
goos:
- linux
goarch:
- amd64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^tes... |
Replace docker call with /bin/consul | ---
- hosts: consul_servers
tasks:
- name: check port 8300 open between all consul servers
wait_for:
host: "{{ hostvars[item].ansible_default_ipv4.address }}"
port: 8300
with_items: groups['consul_servers']
- name: check port 8302 open between all consul servers
wait_for:
host: "{{... | ---
- hosts: consul_servers
tasks:
- name: check port 8300 open between all consul servers
wait_for:
host: "{{ hostvars[item].ansible_default_ipv4.address }}"
port: 8300
with_items: groups['consul_servers']
- name: check port 8302 open between all consul servers
wait_for:
host: "{{... |
Update CI to use unversioned jobs template | - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-cover-jobs
- openstack-python3-yoga-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-cover-jobs
- openstack-python3-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
|
Update CI to use unversioned jobs template | - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-wallaby-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
|
Fix unable to process links for deployment | releases:
- name: bits-service
version: <%= ENV.fetch('RELEASE_VERSION', 'latest') %>
jobs:
- name: bits_service_z1
instances: 1
persistent_disk: 6064
templates:
- name: bits-service
release: bits-service
consumes:
nats: nil
- name: route_registrar
release: cf
consumes:
nats: ni... | releases:
- name: bits-service
version: <%= ENV.fetch('RELEASE_VERSION', 'latest') %>
jobs:
- name: bits_service_z1
instances: 1
persistent_disk: 6064
templates:
- name: bits-service
release: bits-service
consumes:
nats: nil
- name: route_registrar
release: cf
consumes:
nats: ni... |
Fix whitespace to follow style guide | {% set name = "pyxid" %}
{% set version = "1.0" %}
{% set sha256 = "e689bce2ed8ed4bff7174a3a79f8b639ebf6356807aec7e9da481217313214ff" %}
package:
name: pyxid
version: {{ version }}
source:
fn: pyxid-{{ version }}.tar.gz
url: https://github.com/cedrus-opensource/pyxid/archive/{{ version }}.tar.gz
sha256: {{ ... | {% set name = "pyxid" %}
{% set version = "1.0" %}
{% set sha256 = "e689bce2ed8ed4bff7174a3a79f8b639ebf6356807aec7e9da481217313214ff" %}
package:
name: pyxid
version: {{ version }}
source:
fn: pyxid-{{ version }}.tar.gz
url: https://github.com/cedrus-opensource/pyxid/archive/{{ version }}.tar.gz
sha256: {{ ... |
Update from Hackage at 2018-12-01T18:39:19Z | homepage: https://github.com/cartazio/securehash-sha3
changelog-type: markdown
hash: e6dd451ad6922d3c4374270ca16f757a3f4c471d110a2199a90caa43a07ee63f
test-bench-deps: {}
maintainer: carter at wellposed dot com
synopsis: simple static linked SHA3 using private symbols and the ref impl
changelog: ! '# Revision history fo... | homepage: https://github.com/cartazio/securehash-sha3
changelog-type: markdown
hash: e6dd451ad6922d3c4374270ca16f757a3f4c471d110a2199a90caa43a07ee63f
test-bench-deps: {}
maintainer: carter at wellposed dot com
synopsis: simple static linked SHA3 using private symbols and the ref impl
changelog: ! '# Revision history fo... |
Move Python interpreter and feedvalidator path to config | TRANSITLAND_DATASTORE_AUTH_TOKEN: iamallowedtotouchthis
SIDEKIQ_DASHBOARD_USERNAME: onlyneedonproduction
SIDEKIQ_DASHBOARD_PASSWORD: onlyneedonproduction
TRANSITLAND_FEED_REGISTRY_PATH: <%= Rails.root.join('tmp', 'transitland-feed-registry') %>
TRANSITLAND_FEED_DATA_PATH: <%= Rails.root.join('tmp', 'transitland-feed-da... | TRANSITLAND_DATASTORE_AUTH_TOKEN: iamallowedtotouchthis
SIDEKIQ_DASHBOARD_USERNAME: onlyneedonproduction
SIDEKIQ_DASHBOARD_PASSWORD: onlyneedonproduction
TRANSITLAND_FEED_REGISTRY_PATH: <%= Rails.root.join('tmp', 'transitland-feed-registry') %>
TRANSITLAND_FEED_DATA_PATH: <%= Rails.root.join('tmp', 'transitland-feed-da... |
Remove auto deployement lines for st2contrib and st2incubator. | ---
pack_group: st2packs
repositories:
# To deploy a pack from a forked st2contrib on GitHub update & uncomment the following
# ! packs deploy me/st2contrib/<pack_name>
#<my-GitHub-user>/st2contrib:
# repo: "https://github.com/<my-GitHub-user>/st2contrib.git"
# subtree: true
#If you have your own ST2 P... | ---
pack_group: st2packs
repositories:
# To deploy a pack from a forked st2contrib on GitHub update & uncomment the following
# ! packs deploy me/st2contrib/<pack_name>
#<my-GitHub-user>/st2contrib:
# repo: "https://github.com/<my-GitHub-user>/st2contrib.git"
# subtree: true
#If you have your own ST2 P... |
Build for Darwin and Windows in CI | version: 2
executorType: machine
jobs:
build:
environment:
GOPATH: /home/circleci/.go_workspace
working_directory: $GOPATH/src/github.com/moby/tool
steps:
- checkout
- run: go get github.com/golang/lint/golint
- run: cd $GOPATH/src/github.com/moby/tool && make test | version: 2
executorType: machine
jobs:
build:
environment:
GOPATH: /home/circleci/.go_workspace
working_directory: $GOPATH/src/github.com/moby/tool
steps:
- checkout
- run: go get github.com/golang/lint/golint
- run: cd $GOPATH/src/github.com/moby/tool && make test
- run: cd ... |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: content/writings
label: Writings
create: all
match: "**/*"
new_doc_ext: ".mdx"
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
b... | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: directory
path: content/writings
label: Writings
create: all
match: "**/*"
new_doc_ext: mdx
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
bu... |
Revert "tests/kernel/obj_tracking: Filter cAVS 2.5 builds to prevent DSP host hangs" | tests:
kernel.objects.tracking:
tags: kernel
platform_exclude: qemu_x86_tiny intel_adsp_cavs25
| tests:
kernel.objects.tracking:
tags: kernel
platform_exclude: qemu_x86_tiny
|
Update from Hackage at 2019-10-27T21:24:14Z | homepage: https://github.com/andrewthad/primitive-sort
changelog-type: ''
hash: 5cc048fa166660192bc0d0bce6d37ca9f0409f8ee1bffa3706d4967345e5a4d1
test-bench-deps:
tasty-smallcheck: -any
base: -any
doctest: ! '>=0.10'
primitive-sort: -any
HUnit: -any
smallcheck: -any
gauge: -any
containers: -any
ghc-pri... | homepage: https://github.com/andrewthad/primitive-sort
changelog-type: ''
hash: 631f605f66d310e5677f7e32c87a0ea4b2d60efc2073db6b769b18b69212f798
test-bench-deps:
tasty-smallcheck: -any
base: -any
doctest: ! '>=0.10'
primitive-sort: -any
HUnit: -any
smallcheck: -any
gauge: -any
containers: -any
ghc-pri... |
Update osx_image for Travis CI | # ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode10
before_install:
- gem install xcpretty
script:
set -o pipefail &&
travis_retry
xcodebuild test
-workspace CotEditor.xcworkspace
-scheme CotEditor
CODE_SIGN_IDENTITY=""
CODE_SIGNING_REQUIRED=NO
| xc... | # ref. http://docs.travis-ci.com/user/languages/objective-c/
language: objective-c
osx_image: xcode10.1
before_install:
- gem install xcpretty
script:
set -o pipefail &&
travis_retry
xcodebuild test
-workspace CotEditor.xcworkspace
-scheme CotEditor
CODE_SIGN_IDENTITY=""
CODE_SIGNING_REQUIRED=NO
| ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.