Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Check dependencies on a monthly basis | version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: daily
time: "00:00"
timezone: Europe/Paris
open-pull-requests-limit: 2
reviewers:
- Morendil
- fpagnoux
- sandcha
- maukoquiroga
labels:
- kind:improvement
ignore:
- dependency-name: flake8-bugbear
ve... | version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: monthly
labels:
- kind:dependencies
|
Update with www and https API | ---
- provider_name: Instagram
provider_url: https://instagram.com
endpoints:
- schemes:
- http://instagram.com/p/*
- http://instagr.am/p/*
- https://instagram.com/p/*
- https://instagr.am/p/*
url: http://api.instagram.com/oembed
docs_url: http://instagram.com/developer/embedding/#oembed
... | ---
- provider_name: Instagram
provider_url: https://instagram.com
endpoints:
- schemes:
- http://instagram.com/p/*
- http://instagr.am/p/*
- http://www.instagram.com/p/*
- http://www.instagr.am/p/*
- https://instagram.com/p/*
- https://instagr.am/p/*
- https://www.instagram.com/p/*
... |
Build on ubuntu and osx. | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup OCaml
uses: avsm/setup-ocaml@v1.0
- name: Install depext module
run: opam install -y depext
- name: Pin locally
run: opam pin -y add --no-action .
- name: Install lo... | name: CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v1
- name: Setup OCaml
uses: avsm/setup-ocaml@v1.0
- name: Install depext module
run: opam install -y depext
- name: Pin... |
Update from Hackage at 2017-04-29T00:45:46Z | homepage: http://ivorylang.org
changelog-type: ''
hash: 0fa37aeb8c009a31030e0fe7fbb278907c41909c0f06d74b9942adbf58fc446f
test-bench-deps: {}
maintainer: trevor@galois.com, leepike@galois.com
synopsis: Safe embedded C programming.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
text: -any
filepath: -any
dlist: !... | homepage: http://ivorylang.org
changelog-type: ''
hash: ee5cc42275279d67f2f7c8335b1f2fd399298a57f3e6a2bb5756d10a77c24980
test-bench-deps: {}
maintainer: trevor@galois.com, leepike@galois.com
synopsis: Safe embedded C programming.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
text: -any
filepath: -any
dlist: !... |
Test against fewer, more recent PHP versions | language: php
php:
- "5.3"
- "5.4"
- "5.5"
- "hhvm"
before_script:
- curl -s https://getcomposer.org/installer | php && php composer.phar update --dev
script:
- mkdir -p build/logs
- php vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml -c SilMock/tests/phpunit.xml SilMock/tests/
after_scr... | language: php
php:
- "5.6"
- "7.0"
- "7.1"
before_script:
- curl -s https://getcomposer.org/installer | php && php composer.phar update --dev
script:
- mkdir -p build/logs
- php vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml -c SilMock/tests/phpunit.xml SilMock/tests/
after_script:
- ph... |
Configure composer for PHP 5.3 | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
before_script:
- travis_retry composer self-update
- if [ "$TRAVIS_PHP_VERSION" == "5.3.3" ]; then composer config disable-tls true; fi
- travis_retry composer install --prefer-source --no-interaction
script: composer te... | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
before_script:
- travis_retry composer self-update
- if [ "$TRAVIS_PHP_VERSION" == "5.3.3" ]; then composer config disable-tls true; composer config secure-http false; fi
- travis_retry composer install --prefer-source --... |
Add olasd as phabricator read-only user | smtp::virtual_aliases:
- destination: "@%{hiera('phabricator::vhost::name')}"
alias: "%{hiera('phabricator::user')}"
smtp::mail_aliases:
- user: "%{hiera('phabricator::user')}"
aliases:
- "| %{hiera('phabricator::basepath')}/phabricator/scripts/mail/mail_handler.php"
ssh::port: 2222
networks:
eth0... | smtp::virtual_aliases:
- destination: "@%{hiera('phabricator::vhost::name')}"
alias: "%{hiera('phabricator::user')}"
smtp::mail_aliases:
- user: "%{hiera('phabricator::user')}"
aliases:
- "| %{hiera('phabricator::basepath')}/phabricator/scripts/mail/mail_handler.php"
ssh::port: 2222
networks:
eth0... |
Add update_cache to apt_repository task | ---
- name: Install apt HTTPS Transport | apt
apt:
state: latest
name: apt-transport-https
update_cache: yes
- name: "Import Signing Key via HKP | {{ repository_key }}"
apt_key:
state: present
keyserver: 'hkp://keyserver.ubuntu.com:80'
id: "{{ repository_key }}"
when: repository_key is de... | ---
- name: Install apt HTTPS Transport | apt
apt:
state: latest
name: apt-transport-https
update_cache: yes
- name: "Import Signing Key via HKP | {{ repository_key }}"
apt_key:
state: present
keyserver: 'hkp://keyserver.ubuntu.com:80'
id: "{{ repository_key }}"
when: repository_key is de... |
Update snyk clojure action to v2 | ---
name: Snyk Clojure Merge
on: push
jobs:
snyk_clojure:
runs-on: ubuntu-latest
steps:
- name: checkout the current PR
uses: actions/checkout@v2
with:
fetch-depth: 1
persist-credentials: false
- name: Run Clojure Snyk Scan
id: scan
# rather than point to a versi... | ---
name: Snyk Clojure Merge
on: push
jobs:
snyk_clojure:
runs-on: ubuntu-latest
steps:
- name: Connect to Twingate
uses: twingate/github-action@v1
with:
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
- name: checkout the current PR
uses: actions/checkout@v2
with:
... |
Update from Hackage at 2021-03-13T22:13:30Z | homepage: ''
changelog-type: ''
hash: 7984f031fba06cdc0054f9c7637e3f963855cf642c4e8319222ef5dd2cf2f549
test-bench-deps: {}
maintainer: pepeiborra@gmail.com
synopsis: Explicit imports plugin for Haskell Language Server
changelog: ''
basic-deps:
shake: -any
ghc: -any
lsp: -any
base: '>=4.12 && <5'
unordered-con... | homepage: ''
changelog-type: ''
hash: 2269a025346eb1b09f90f90b752d68294a6980de5022c2ba018fc0f0274f903d
test-bench-deps: {}
maintainer: pepeiborra@gmail.com
synopsis: Explicit imports plugin for Haskell Language Server
changelog: ''
basic-deps:
shake: -any
ghc: -any
lsp: -any
base: '>=4.12 && <5'
unordered-con... |
Add bgp support to ubuntu_router | ---
- name: Configure ldn router
hosts: rpi1.ldn.fap.no
roles:
- role: roles/caddy-server
- role: roles/ubuntu_router
- role: roles/ubuntu_router_ap
- role: roles/rpi_netboot_master
| ---
- name: Configure ldn router
hosts: rpi1.ldn.fap.no
roles:
- role: roles/caddy-server
- role: roles/ubuntu_router
- role: roles/ubuntu_router_ap
- role: roles/ubuntu_router_bgp
- role: roles/ubuntu_router_bgp_kube_neighbours
- role: roles/rpi_netboot_master
|
Fix the copy paste SNAFU | name: Continuous Integration
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
include-prerelease: true
env:
DOT... | name: Continuous Integration
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
include-prerelease: true
env:
DOT... |
Test deployment to PyPi using Github Actions | name: Deploy to PyPi
on:
push:
branches:
- master
jobs:
release:
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
name: PyPi Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout repo
- name: Set up Python 3.8
u... | name: Deploy to PyPi
# Trigger deployment to test
on:
#release:
# types: [created]
push:
branches: [master]
jobs:
release:
# if: github.event_name == 'release' && github.event.action == 'created'
name: PyPi Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
na... |
Allow JRuby to fail, as it isn't supported yet | name: Testing
on:
push:
pull_request:
jobs:
test:
name: Test with Ruby-${{ matrix.ruby }}
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [2.6, 2... | name: Testing
on:
push:
pull_request:
# GitHub Actions notes
# - outcome in step name so we can see it without having to expand logs
# - every step must define a `uses` or `run` key
jobs:
test:
name: Test with Ruby-${{ matrix.ruby }}
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fa... |
Add missed dep in xpdacq recipe. | {% set version = "0.5.1" %}
package:
name: xpdacq
version: {{ version }}
source:
url: https://github.com/xpdacq/xpdacq/archive/v{{ version }}.tar.gz
fn: xpdacq-v{{ version }}.tar.gz
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
b... | {% set version = "0.5.1" %}
package:
name: xpdacq
version: {{ version }}
source:
url: https://github.com/xpdacq/xpdacq/archive/v{{ version }}.tar.gz
fn: xpdacq-v{{ version }}.tar.gz
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
b... |
Fix broken About page link | # Site navigation links
- title: Work
url: /work/
- title: Blog
url: /articles/
- title: About
| # Site navigation links
- title: Work
url: /work/
- title: Blog
url: /articles/
- title: About
url: /about/
|
Update StartFlagExploit to 1.0 (3) | Categories:
- Security
License: GPL-2.0-only
AuthorName: ChickenHook
SourceCode: https://github.com/ChickenHook/StartFlagExploit
IssueTracker: https://github.com/ChickenHook/StartFlagExploit/issues
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8UH5MBVYM3J36
Bitcoin: bc1qvll2mp5ndwd4sgyc... | Categories:
- Security
License: GPL-2.0-only
AuthorName: ChickenHook
SourceCode: https://github.com/ChickenHook/StartFlagExploit
IssueTracker: https://github.com/ChickenHook/StartFlagExploit/issues
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8UH5MBVYM3J36
Bitcoin: bc1qvll2mp5ndwd4sgyc... |
Add env variables to build script | # Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | # Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... |
Add firstName and surname user fixture | Model_User:
Guest:
username: guest
password: 084e0343a0486ff05530df6c705c8bb4
Member:
username: member
password: aa08769cdcb26674c6706093503ff0a3
Admin:
username: admin
password: 21232f297a57a5a743894a0e4a801fc3
Owner:
username: owner
password: 72122ce96bfec66e2396d2e25225d70a | Model_User:
Guest:
username: guest
password: 084e0343a0486ff05530df6c705c8bb4
firstName: Guest
surname: User
Member:
username: member
password: aa08769cdcb26674c6706093503ff0a3
firstName: Member
surname: User
Admin:
username: admin
password: 21232f297a57a5a743894a0e4a801f... |
Remove comment about memcached being optional | ---
# You can optionally deploy memcache, for the Flux daemon to cache
# container image metadata.
apiVersion: apps/v1
kind: Deployment
metadata:
name: memcached
spec:
replicas: 1
selector:
matchLabels:
name: memcached
template:
metadata:
labels:
name: memcached
spec:
conta... | ---
# memcached deployment used by Flux to cache
# container image metadata.
apiVersion: apps/v1
kind: Deployment
metadata:
name: memcached
spec:
replicas: 1
selector:
matchLabels:
name: memcached
template:
metadata:
labels:
name: memcached
spec:
containers:
- name: m... |
Use Ruby 3.0.0 in CI | name: Spec
jobs:
specs:
strategy:
fail-fast: false
matrix:
os: [macos-10.15]
ruby: [2.3, 2.5, 2.6, 2.7, 3.0]
name: ${{ matrix.os }} / Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout git
uses: actions/checkout@v1
- name: Insta... | name: Spec
jobs:
specs:
strategy:
fail-fast: false
matrix:
os: [macos-10.15]
ruby: [2.3, 2.5, 2.6, 2.7, 3.0.0]
name: ${{ matrix.os }} / Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout git
uses: actions/checkout@v1
- name: Ins... |
Build GUI on github actions | name: .NET Core CI
on: [push, pull_request]
jobs:
build:
name: .NET on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name... | name: .NET Core CI
on: [push, pull_request]
jobs:
build:
name: .NET on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name... |
Update Chord Reader 2 to 2.1.0 (2) | Categories:
- Multimedia
- Science & Education
License: GPL-3.0-only
AuthorName: AndInTheClouds
SourceCode: https://github.com/AndInTheClouds/chordreader2
IssueTracker: https://github.com/AndInTheClouds/chordreader2/issues
AutoName: Chord Reader 2
RepoType: git
Repo: https://github.com/AndInTheClouds/chordreader2... | Categories:
- Multimedia
- Science & Education
License: GPL-3.0-only
AuthorName: AndInTheClouds
SourceCode: https://github.com/AndInTheClouds/chordreader2
IssueTracker: https://github.com/AndInTheClouds/chordreader2/issues
AutoName: Chord Reader 2
RepoType: git
Repo: https://github.com/AndInTheClouds/chordreader2... |
Add pip+maturin to host deps | {% set name = "aedat" %}
{% set version = "1.2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/aedat-{{ version }}.tar.gz
sha256: 6b0e2433a926e6fef24dd1a82e3358a911dd2bd58959e630a3ef3f50f7c7d08f
build:
number: 0
skip: True... | {% set name = "aedat" %}
{% set version = "1.2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/aedat-{{ version }}.tar.gz
sha256: 6b0e2433a926e6fef24dd1a82e3358a911dd2bd58959e630a3ef3f50f7c7d08f
build:
number: 0
skip: True... |
Add goodwanghan as a maintainer | {% set name = "triad" %}
{% set version = "0.5.4" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 8c3ed820eac2d08372e1535efced0b08609f00a2548cbbb8213f2b0abc375d1b
build:
noarch: python
... | {% set name = "triad" %}
{% set version = "0.5.4" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 8c3ed820eac2d08372e1535efced0b08609f00a2548cbbb8213f2b0abc375d1b
build:
noarch: python
... |
Use templates for cover and lower-constraints | - project:
templates:
- check-requirements
- openstack-python-jobs-horizon
- openstack-python35-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- manila-ui-dsvm:
voting: false
- openstack-tox-lower-constraints:
... | - project:
templates:
- check-requirements
- openstack-cover-jobs-horizon
- openstack-lower-constraints-jobs-horizon
- openstack-python-jobs-horizon
- openstack-python35-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- ... |
Add placeholder for changing default desktop image. | ---
- name: Custom Gnome Terminal "copy" keybinding to ctrl-c
shell: 'gconftool-2 /apps/gnome-terminal/keybindings/copy -s -t string "<Primary>c"'
- name: Custom Gnome Terminal "paste" keybinding to ctrl-v
shell: 'gconftool-2 /apps/gnome-terminal/keybindings/paste -s -t string "<Primary>v"'
| ---
- name: Custom Gnome Terminal "copy" keybinding to ctrl-c
shell: 'gconftool-2 /apps/gnome-terminal/keybindings/copy -s -t string "<Primary>c"'
- name: Custom Gnome Terminal "paste" keybinding to ctrl-v
shell: 'gconftool-2 /apps/gnome-terminal/keybindings/paste -s -t string "<Primary>v"'
#- name: Set desktop ba... |
Update from Hackage at 2017-11-14T08:37:01Z | homepage: ''
changelog-type: ''
hash: 099b796da452ba3eb5d4cd83e72a8a73c0f9022a33f2a94b4c573229175d787c
test-bench-deps:
base: ! '>=4 && <5'
hspec: -any
async: -any
concurrent-dns-cache: -any
dns: -any
maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
synopsis: Concurrent DNS cache
changelog: ''
basic-deps:
bytestr... | homepage: ''
changelog-type: ''
hash: 398547d882936ddf5ddb220edd370b3f4fd5cfd9bec68de15f60bf30a6a197c6
test-bench-deps:
base: ! '>=4 && <5'
hspec: -any
async: -any
concurrent-dns-cache: -any
dns: <3
maintainer: Kazu Yamamoto <kazu@iij.ad.jp>
synopsis: Concurrent DNS cache
changelog: ''
basic-deps:
bytestrin... |
Add Ruby 2.0 to list of rubies | language: ruby
rvm:
- 1.8.7
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
|
Patch setup.py for external spglib | language: python
sudo: false
dist: trusty
python:
- '2.7'
- '3.6'
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- source $HOME/miniconda/etc/profile.d/conda.sh
- echo $TRAVIS_PYTHON_VERSION
- conda activate
- c... | language: python
sudo: false
dist: trusty
python:
- '2.7'
- '3.6'
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- source $HOME/miniconda/etc/profile.d/conda.sh
- echo $TRAVIS_PYTHON_VERSION
- conda activate
- c... |
Update from Hackage at 2022-05-08T21:15:23Z | homepage: https://github.com/AshleyYakeley/witness
changelog-type: ''
hash: b114c2646fecceab5ebb3c3e2e6ccb2f7cdca7a27fedac6146d8055a0ee9be60
test-bench-deps: {}
maintainer: <ashley@semantic.org>
synopsis: values that witness types
changelog: ''
basic-deps:
semigroupoids: -any
base: '>=4.14 && <5'
constraints: -an... | homepage: https://github.com/AshleyYakeley/witness
changelog-type: markdown
hash: 62d4c841d71fc4856a3221a945f9053b6bfaf8d1e6414dc834afb657222ff050
test-bench-deps: {}
maintainer: <ashley@semantic.org>
synopsis: values that witness types
changelog: |
## [0.6] - 2022-05-08
- reorganise modules
- rename types and fu... |
Update the org.realityforge.akasha dependency coordinates. | repositories:
remote:
- https://stocksoftware.jfrog.io/stocksoftware/maven2
- https://repo.maven.apache.org/maven2
- https://stocksoftware.jfrog.io/stocksoftware/staging
artifacts:
idea_codestyle: au.com.stocksoftware.idea.codestyle:idea-codestyle:xml:1.17
braincheck: org.realityforge.braincheck:brainc... | repositories:
remote:
- https://stocksoftware.jfrog.io/stocksoftware/maven2
- https://repo.maven.apache.org/maven2
- https://stocksoftware.jfrog.io/stocksoftware/staging
artifacts:
idea_codestyle: au.com.stocksoftware.idea.codestyle:idea-codestyle:xml:1.17
braincheck: org.realityforge.braincheck:brainc... |
Fix running Sauce on demand on CircleCI | machine:
node:
version: 5.7.1
test:
pre:
- echo ${FOO}
deployment:
beta-dev-heroku:
branch: master
heroku:
- git push git@heroku.com:citizenship-appointment-beta.git $CIRCLE_SHA1:master
- BROWSER=chrome SAUCE_ON_DEMAND=true npm run cross-browser-test
| machine:
node:
version: 5.7.1
test:
pre:
- echo ${FOO}
deployment:
beta-dev-heroku:
branch: master
commands:
- git push git@heroku.com:citizenship-appointment-beta.git $CIRCLE_SHA1:master
- BROWSER=chrome SAUCE_ON_DEMAND=true npm run cross-browser-test
|
Fix centos 8 openstack repo by using the 8-stream one | ---
openstack_version: ussuri
openstack_repo: "http://mirror.centos.org/centos/{{ ansible_distribution_major_version }}/cloud/x86_64/openstack-{{ openstack_version }}/"
heat_cfntools_packages:
- heat-cfntools
- curl
| ---
openstack_version: ussuri
openstack_repo: "http://mirror.centos.org/centos/{{ ansible_distribution_major_version }}-stream/cloud/x86_64/openstack-{{ openstack_version }}/"
heat_cfntools_packages:
- heat-cfntools
- curl
|
Add suffix checker to CI | name: ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
name: Ruby ${{matrix.ruby}} | OS ${{matrix.os}}
strategy:
fail-fast: false
matrix:
ruby: [ 2.7, 2.6, jruby ]
os: [ ubuntu-latest, macos-latest ]
s... | name: ci
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
name: Ruby ${{matrix.ruby}} | OS ${{matrix.os}}
strategy:
fail-fast: false
matrix:
ruby: [ 2.7, 2.6, jruby ]
os: [ ubuntu-latest, macos-latest ]
s... |
Bump actions/checkout from 2.3.4 to 2.3.5 | name: ci
on:
push:
pull_request:
schedule:
- cron: '0 2 * * *'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 40
strategy:
fail-fast: false
matrix:
include:
- java: 8
scala: 2_12
- java: 8
scala: 2_13
- java: 8
... | name: ci
on:
push:
pull_request:
schedule:
- cron: '0 2 * * *'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 40
strategy:
fail-fast: false
matrix:
include:
- java: 8
scala: 2_12
- java: 8
scala: 2_13
- java: 8
... |
Add new line to udev rules file | ---
- name: Copy udev rules for correct yubikey device mode
copy:
content: SUBSYSTEM=="usb", ACTION=="add|change", ATTR{idVendor}=="1050", ATTR{idProduct}=="0010", MODE="0666"
dest: /etc/udev/rules.d/70-yubikey_fix_mode.rules
notify:
- Reload udev rules
| ---
- name: Copy udev rules for correct yubikey device mode
copy:
content: |
SUBSYSTEM=="usb", ACTION=="add|change", ATTR{idVendor}=="1050", ATTR{idProduct}=="0010", MODE="0666"
dest: /etc/udev/rules.d/70-yubikey_fix_mode.rules
notify:
- Reload udev rules
|
Revert "Replace pure linux with vagga box" | image: 'tailhook/vagga:v0.7.0'
before_script:
- vagga _build test
test:
script:
- vagga lint
| image: 'python:3.6.1'
before_script:
# installing pre-commit
- 'apk update && apk upgrade && apk add --no-cache git'
- pip install -c requirements/constraints.txt -r requirements/linters.txt -r requirements/common.txt
- HOME=$CI_PROJECT_DIR pre-commit install-hooks
test:
script:
# basically just run pre-... |
Remove JSCS linter for Atom | ---
brew_taps: []
npm_packages:
- dockerlint
- eslint
- yaml-js
- csslint
brew_packages:
- node
cask_packages:
- atom
- font-inconsolata
- font-source-code-pro
atom_packages:
- atom-terminal
- project-manager
- atomatigit
- trailing-spaces
- auto-detect-indentation
- highlight-selected
- h... | ---
brew_taps: []
npm_packages:
- dockerlint
- eslint
- yaml-js
- csslint
brew_packages:
- node
cask_packages:
- atom
- font-inconsolata
- font-source-code-pro
atom_packages:
- atom-terminal
- project-manager
- atomatigit
- trailing-spaces
- auto-detect-indentation
- highlight-selected
- h... |
Add filter for code intelligence | build:
environment:
php:
version: '7.1'
project_setup:
before:
- mysql -e "CREATE DATABASE IF NOT EXISTS test_db"
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover=coverage'
... | build:
environment:
php:
version: '7.1'
project_setup:
before:
- mysql -e "CREATE DATABASE IF NOT EXISTS test_db"
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover=coverage'
... |
Add tag for openvpn specific tasks. | ---
- hosts: all
sudo: yes
roles:
- common
- consul
- hosts: mesos-master
tasks: []
tags:
- always
- hosts: mesos-slave
tasks: []
tags:
- always
- hosts: storage
tasks: []
tags:
- always
- hosts: openvpn
sudo: yes
roles:
- openvpn-firewall
- Stouts.openvpn
vars:
... | ---
- hosts: all
sudo: yes
roles:
- common
- consul
- hosts: mesos-master
tasks: []
tags:
- always
- hosts: mesos-slave
tasks: []
tags:
- always
- hosts: storage
tasks: []
tags:
- always
- hosts: openvpn
sudo: yes
roles:
- openvpn-firewall
- Stouts.openvpn
vars:
... |
Split Verification & Test in seperate stage in Travis | sudo: required
services:
- docker
language: go
matrix:
include:
- go: 1.8
install:
- mkdir -p $HOME/gopath/src/k8s.io
- mv $TRAVIS_BUILD_DIR $HOME/gopath/src/k8s.io/autoscaler
- hack/install-verify-tools.sh
- export PATH=$GOPATH/bin:$PATH
- hack/for-go-proj.sh install
script:
- hack/verify-all.... | sudo: required
services:
- docker
language: go
go:
- 1.8
before_script:
- mkdir -p $HOME/gopath/src/k8s.io
- mv $TRAVIS_BUILD_DIR $HOME/gopath/src/k8s.io/autoscaler
- hack/install-verify-tools.sh
- export PATH=$GOPATH/bin:$PATH
install: true
jobs:
include:
- stage: Install
script: hack/for... |
Revert "Only submit coverage on nightly" | language: julia
os:
- linux
- osx
julia:
- release
- nightly
notifications:
email: false
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'Pkg.clone(pwd()); Pkg.build("DataFrames");'
- if [ $TRAVIS_JULIA_VERSION = "nightly" ]; then julia -e 'Pkg.test("DataFrames", coverage=t... | language: julia
os:
- linux
- osx
julia:
- release
- nightly
notifications:
email: false
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("DataFrames"); Pkg.test("DataFrames"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.d... |
Add caching for apt and pip | language: python
python:
- "3.4"
before_install:
- git clone https://github.com/agrbin/svgtex.git
- pushd svgtex
- "phantomjs main.js &"
- popd
install:
- "pip install -r requirements.txt"
script:
- python -m unittest discover mathml_to_image_service
notifications:
webhooks:
urls:
- https://we... | language: python
python:
- "3.4"
cache:
- apt
directories:
- $HOME/.pip-cache/
- /home/travis/virtualenv/python3.4
before_install:
- git clone https://github.com/agrbin/svgtex.git
- pushd svgtex
- "phantomjs main.js &"
- popd
install:
- pip install -r requirements.txt --download-ca... |
Revert change to container-based testing on Travis (temporarily?) | sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- install_dependencies.sh
before_script:
- cd chassis
script:
- nosetests
- python tools/lint.py
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- install_dependencies.sh
before_script:
- cd chassis
script:
- nosetests
- python tools/lint.py
|
Switch to trusty on 1.4 branch | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
addons:
apt:
packages:
- parallel
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
before_script:
- rm -f ~/.phpenv/versions/$(phpen... | language: php
sudo: false
dist: trusty
cache:
directories:
- $HOME/.composer/cache
addons:
apt:
packages:
- parallel
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
include:
- dist: precise
php: 5.3
fast_finish: true
allow_failures:
- php: nightly
be... |
Add sh to install.sh script. | ---
os:
- osx
script:
- "install.sh --skip-short-stack"
| ---
os:
- osx
script:
- "sh install.sh --skip-short-stack"
|
Test in Travis from Rust 1.18 | language: rust
sudo: false
env:
- FEATURES='serde-1'
matrix:
include:
- rust: 1.12.0
- rust: stable
env:
- NODEFAULT=1
- rust: beta
- rust: nightly
env:
- NODEFAULT=1
- rust: nightly
env:
- NODROP_FEATURES='use_needs_drop'
- rust: nightly
env:
... | language: rust
sudo: false
env:
- FEATURES='serde-1'
matrix:
include:
- rust: 1.18.0
- rust: stable
env:
- NODEFAULT=1
- rust: beta
- rust: nightly
env:
- NODEFAULT=1
- rust: nightly
env:
- NODROP_FEATURES='use_needs_drop'
- rust: nightly
env:
... |
Remove experimental Ruby 2.1.0 build Gemfile | language: ruby
rvm: 2.0.0
services: mongodb
matrix:
include:
- rvm: 2.1.0
gemfile: gemfiles/Gemfile.ruby-2.1.0
allow_failures:
- rvm: 2.1.0
gemfile: gemfiles/Gemfile.ruby-2.1.0
| language: ruby
rvm: 2.1.2
|
Remove Node 4.7 from Travis CI | language: node_js
sudo: false
before_install:
- npm update -g npm
install:
- travis_retry npm install
node_js:
- "8"
- "7"
- "6"
- "4.7"
| language: node_js
sudo: false
before_install:
- npm update -g npm
install:
- travis_retry npm install
node_js:
- "8"
- "7"
- "6"
|
Update the Travis image too | osx_image: xcode7.1
language: objective-c
before_install:
- brew update
- brew outdated xctool || brew upgrade xctool
install: script/bootstrap
script: script/cibuild
notifications:
email: false
env:
global:
secure: L4C3hHzXc/sgL35dIz3kjqIzPWnXCHsFOgbOcz0f249zlnegeKHQdChm4HUDtfrbmKLMYQCIvVfcgPeLaHkCSeHqXUihXLT2... | osx_image: xcode8.3
language: objective-c
before_install:
- brew update
- brew outdated xctool || brew upgrade xctool
install: script/bootstrap
script: script/cibuild
notifications:
email: false
env:
global:
secure: L4C3hHzXc/sgL35dIz3kjqIzPWnXCHsFOgbOcz0f249zlnegeKHQdChm4HUDtfrbmKLMYQCIvVfcgPeLaHkCSeHqXUihXLT2... |
Add PHP 7.4 to unit tests | language: php
sudo: required
dist: trusty
php:
- "7.2"
- "7.3"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "master"
- php: "nightly"
install:
- travis_retry composer install --no-interaction
- wget -c -nc --retry-connrefused --tries=0 https://... | language: php
sudo: required
dist: trusty
php:
- "7.2"
- "7.3"
- "7.4"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "master"
- php: "nightly"
install:
- travis_retry composer install --no-interaction
- wget -c -nc --retry-connrefused --trie... |
Allow Travis CI PyPy job to fail without failing the complete build | sudo: true
language: python
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
- python: 3.7
- python: 3.8
- python: pypy
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes fakeroot openssh-server
install:
- pip install --requirement=requirements-travis.txt
... | sudo: true
language: python
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
- python: 3.7
- python: 3.8
- python: pypy
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes fakeroot openssh-server
install:
- pip install --requirement=requirements-travis.txt
... |
Test Node 9 instead of 7 on Travis | ---
language: node_js
node_js:
- "4"
- "6"
- "7"
- "8"
sudo: false
cache:
yarn: true
env:
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-lts-2.12
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allo... | ---
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
sudo: false
cache:
yarn: true
env:
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-lts-2.12
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-defaul... |
Make it actually execute gradlew | language: java
matrix:
include:
- jdk: oraclejdk8
install: true
sudo: false
cache:
directories:
- .autoconf
- $HOME/.gradle
after_success:
- gradlew clean build jar jacocoTestReport uploadArchives
- bash <(curl -s https://codecov.io/bash)
| language: java
matrix:
include:
- jdk: oraclejdk8
install: true
sudo: false
cache:
directories:
- .autoconf
- $HOME/.gradle
after_success:
- ./gradlew clean build jar jacocoTestReport uploadArchives
- bash <(curl -s https://codecov.io/bash)
|
Use the pre-release builds of chefdk | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk... | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefd... |
Add 'install' script for Travis CI to do decode tests | language: perl
| language: perl
before_install: ./java/install.sh
perl:
- "5.22"
- "5.20"
- "5.18"
- "5.14"
- "5.10"
|
Make unittest2 conditional. It is already included in Python 2.7 and up. | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
sudo: false
addons:
apt:
packages:
- curl
- zlib1g
- zlib1g-dev
install:
- ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/
- pip install pillow unittest2 ; true
script: tests/alltests.py
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
sudo: false
addons:
apt:
packages:
- curl
- zlib1g
- zlib1g-dev
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install unittest2; fi
- pip install pillow
script: tests/alltests.py
|
Update exclusions for Better Code Hub CI | exclude:
- /.install_hdf5_1_10.sh
- /.install_hdf5_1_8.sh
- /coverity_model.c
- /getopt/.*
- /ossfuzz/.*
- /src/fortran/matio_internal.c
- /src/snprintf.c
component_depth: 1
languages:
- cpp
- script
| exclude:
- /.ci/.*
- /.github/.*
- /coverity_model.c
- /getopt/.*
- /ossfuzz/.*
- /src/fortran/matio_internal.c
- /src/snprintf.c
component_depth: 1
languages:
- cpp
- script
|
Fix GitHub 403s on Travis | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
# Install Varnish
- sudo apt-get update -qq
- sudo apt-get install -qq varnish
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.3' ]; then ./tests/install-apache.sh; fi"
# Install deps
- composer update --dev
script: phpunit --coverage-clover=coverage.clo... | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
# Install Varnish
- sudo apt-get update -qq
- sudo apt-get install -qq varnish
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.3' ]; then ./tests/install-apache.sh; fi"
# Install deps
- composer update --dev --prefer-source
script: phpunit --coverage-clo... |
Use latest Galaxy release for testing | sudo: false
language: python
cache: pip
python: 2.7
before_install:
- export GALAXY_RELEASE=release_17.05
install:
- pip install flake8 flake8-import-order planemo
- planemo conda_init
- planemo --version
- ~/miniconda3/bin/conda --version
- echo $TRAVIS_COMMIT_RANGE
- |
planemo ci_find_repos --exc... | sudo: false
language: python
cache: pip
python: 2.7
before_install:
- export GALAXY_RELEASE=release_17.09
install:
- pip install flake8 flake8-import-order planemo
- planemo conda_init
- planemo --version
- ~/miniconda3/bin/conda --version
- echo $TRAVIS_COMMIT_RANGE
- |
planemo ci_find_repos --exc... |
Use sudo: false for faster builds | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install -U -r dev-requirements.txt
- pip install -U .
before_script:
- flake8 .
script: py.test
| language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install -U -r dev-requirements.txt
- pip install -U .
before_script:
- flake8 .
script: py.test
|
FIx requirements path for Travis | dist: xenial
language: python
python:
- '3.7'
install: 'pip install -r requirements.txt '
script: nosetests
notifications:
email: false
slack:
secure: aD/F8MRz7SM1gXexhxy/K5frXpumUNspUOpf0MLXu+SgkPFsHg3Ev8FfT4e1l6edZq+X6HGcshKfgkbRz4BkPky5Lja3GXzknanwdIM5GLqxajsy/0w27lwrarO534L+jMyIDrUtSGgUspnU8tqTe5voEZ3lxxZXf... | dist: xenial
language: python
python:
- '3.7'
install: 'pip install -r requirements/testing.txt '
script: nosetests
notifications:
email: false
slack:
secure: aD/F8MRz7SM1gXexhxy/K5frXpumUNspUOpf0MLXu+SgkPFsHg3Ev8FfT4e1l6edZq+X6HGcshKfgkbRz4BkPky5Lja3GXzknanwdIM5GLqxajsy/0w27lwrarO534L+jMyIDrUtSGgUspnU8tqTe5voE... |
Use Docker containers with cache for Travis CI builds | ---
language: php
php:
- 5.3
- 5.4
notifications:
email: false
slack:
secure: bpD3fT1VbGKMSrVCh5NiqQEnKUETpnhrDFXrCjNnQnq0O4aiePmMInpgEDqQiNm7/znjtWSwdyAValSsJXUc1JdkS7rAr95OfKd0vimc7IsSxeqdHYMEFSVrRoJbd6UGyXU6gaexqW02EWHmWvtk18mL2X2M5+o76GamBQWcn/k=
install:
- composer selfupdate
- composer install ... | ---
language: php
sudo: false
php:
- 5.3
- 5.4
cache:
directories:
- $HOME/.composer/cache
notifications:
email: false
slack:
secure: bpD3fT1VbGKMSrVCh5NiqQEnKUETpnhrDFXrCjNnQnq0O4aiePmMInpgEDqQiNm7/znjtWSwdyAValSsJXUc1JdkS7rAr95OfKd0vimc7IsSxeqdHYMEFSVrRoJbd6UGyXU6gaexqW02EWHmWvtk18mL2X2M5+o76Gam... |
Update Travis configuration to support build on Xcode 11.2 | language: objective-c
osx_image: xcode9
script:
- xcodebuild clean build test -workspace ActionSheetPicker-3.0.xcworkspace -scheme ActionSheetPicker -sdk iphonesimulator -destination "platform=iOS Simulator,OS=11.0,name=iPhone X" ONLY_ACTIVE_ARCH=NO
notifications:
email:
recipients:
- sky4winder+action... | language: objective-c
osx_image: xcode11.2
script:
- xcodebuild clean build test -workspace ActionSheetPicker-3.0.xcworkspace -scheme ActionSheetPicker -sdk iphonesimulator -destination "platform=iOS Simulator,OS=11.0,name=iPhone X" ONLY_ACTIVE_ARCH=NO
notifications:
email:
recipients:
- sky4winder+act... |
Revert "Temporarily comment out JRuby to accomodate Travis issue" | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
gemfile:
- Gemfile
- gemfiles/Gemfile.mongoid-2.4.x
env: SSL_CERT_DIR=/etc/ssl/certs
matrix:
exclude:
- rvm: 1.8.7
gemfile: Gemfile
env: SSL_CERT_DIR=/etc/ssl/certs
- rvm: 1.9.2
gemfile: Gemfile
env: SSL_CERT_DIR=/etc/ssl/certs
- rvm: 1.9.3
... | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-19mode
gemfile:
- Gemfile
- gemfiles/Gemfile.mongoid-2.4.x
env: SSL_CERT_DIR=/etc/ssl/certs
matrix:
exclude:
- rvm: 1.8.7
gemfile: Gemfile
env: SSL_CERT_DIR=/etc/ssl/certs
- rvm: 1.9.2
gemfile: Gemfile
env: SSL_CERT_DIR=/etc/ssl/certs
... |
Revert "Try Node.js 0.10 again in Travis." | language: node_js
node_js:
- "0.8"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.8"
before_script:
- npm install -g grunt-cli
|
Update configuration to use a distribution with Java 8 | language: java
install: true
jdk:
- oraclejdk8
script:
- ./gradlew -S clean build
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
- rm -f $HOME/.gradle/caches/*/fileHashes/fileHashes.bin
- rm -f $HOME/.gradle/caches/*/fileHashes/fi... |
dist: trusty
language: java
install: true
jdk:
- oraclejdk8
script:
- ./gradlew -S clean build
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
- rm -f $HOME/.gradle/caches/*/fileHashes/fileHashes.bin
- rm -f $HOME/.gradle/caches/*... |
Build on iphonesimulator to avoid the code signing issue now | language: objective-c
xcode_workspace: DailyReview.xcworkspace
xcode_scheme: Development | language: objective-c
script: xctool -workspace DailyReview.xcworkspace -scheme Development -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO clean build test
|
Remove explicit Carthage installation steps from Travis config | ---
language: objective-c
osx_image: xcode7.3
xcode_project: Arex.xcodeproj
xcode_scheme: Arex
before_install:
- brew update
- brew install carthage
- carthage bootstrap --platform ios --verbose
| ---
language: objective-c
osx_image: xcode7.3
xcode_project: Arex.xcodeproj
xcode_scheme: Arex
before_install:
- carthage bootstrap --platform ios --verbose
|
Update from Hackage at 2019-09-25T07:34:40Z | homepage: http://hackage.haskell.org/package/regex-pcre
changelog-type: ''
hash: e09a03f905816b83f2286fe34158c6cb449ded4a6f67377a859f3f503c81b85c
test-bench-deps: {}
maintainer: TextRegexLazy@personal.mightyreason.com
synopsis: Replaces/Enhances Text.Regex
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4 && ... | homepage: http://hackage.haskell.org/package/regex-pcre
changelog-type: ''
hash: 47ef1021f7ca128f83cff7220fc6a97a29e6aae33c74da237cc57855814d624a
test-bench-deps: {}
maintainer: TextRegexLazy@personal.mightyreason.com
synopsis: Replaces/Enhances Text.Regex
changelog: ''
basic-deps:
bytestring: <0.11
base: ! '>=4 &&... |
Set firehose.doppler.idle_timeout to enable re-establishing firehose connection | - type: replace
path: /instance_groups/name=firehose/networks
value:
- name: cf
- type: replace
path: /instance_groups/name=firehose/vm_type
value: medium
| - type: replace
path: /instance_groups/name=firehose/networks
value:
- name: cf
- type: replace
path: /instance_groups/name=firehose/vm_type
value: medium
- type: replace
path: /instance_groups/name=firehose/jobs/name=firehose_exporter/properties/firehose_exporter/doppler/idle_timeout?
value: 5m
|
Revert "Revert "opendev.org mirrors: switch out DFW, switch in IAD"" | # This file contains ansible variables that are used by our zuul-executors.
---
# NOTE(ianw): 2019-05 this list of clouds will grow as we provision
# new opendev.org based mirrors, but then eventually be removed once
# all are updated.
zuul_site_mirror_fqdn: >-
{%- if nodepool.region + "." + nodepool.cloud in [ "DFW.... | # This file contains ansible variables that are used by our zuul-executors.
---
# NOTE(ianw): 2019-05 this list of clouds will grow as we provision
# new opendev.org based mirrors, but then eventually be removed once
# all are updated.
zuul_site_mirror_fqdn: >-
{%- if nodepool.region + "." + nodepool.cloud in [ "IAD.... |
Disable parallel bundle install to fix rbx builds | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode # JRuby (1.9)
- rbx-2
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode # JRuby (1.9)
- rbx-2
install: "bundle install --retry=3"
|
Update Ruby versions tested by Travis | language: ruby
cache: bundler
script: bundle exec rspec
sudo: false
gemfile:
- gemfiles/rack_1.5.gemfile
- gemfiles/rack_1.6.gemfile
- gemfiles/rack_2.0.gemfile
- gemfiles/rack_2.1.gemfile
- gemfiles/rack_2.2.gemfile
rvm:
- 2.3.8
- 2.4.9
- 2.5.8
- 2.6.5
- 2.7.0
before_install:
- gem install bun... | language: ruby
cache: bundler
script: bundle exec rspec
sudo: false
gemfile:
- gemfiles/rack_1.5.gemfile
- gemfiles/rack_1.6.gemfile
- gemfiles/rack_2.0.gemfile
- gemfiles/rack_2.1.gemfile
- gemfiles/rack_2.2.gemfile
rvm:
- 2.6.8
- 2.7.4
- 3.0.2
- 3.1.0-dev
before_install:
- gem install bundler -... |
Set java_script as javascript in Hound config | coffee_script:
config_file: coffeelint.json
java_script:
enabled: false
| coffee_script:
config_file: coffeelint.json
javascript:
enabled: false
|
Build containers in a matrix | name: ci
on:
push:
branches:
- 'master'
- 'github-action'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
... | name: ci
on:
push:
branches:
- 'master'
- 'github-action'
jobs:
docker:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: nginx-pagespeed
folder: ningx-pagespeed
arch: [ linux/amd64 ]
- name: php72-cli
folder: php/7.2... |
Fix branch name to master. | name: Build main JDK 15
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 15
uses: actions/setup-java@v1
with:
java-version: 15
- name: Build with M... | name: Build main JDK 15
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 15
uses: actions/setup-java@v1
with:
java-version: 15
- name: Build wi... |
Allow dev and test dbs to be configured with URL | default: &default
adapter: postgresql
encoding: unicode
pool: 5
template: template0
development:
<<: *default
database: publishing_api_development
test:
<<: *default
database: publishing_api_test
production:
<<: *default
# Rails reads values from DATABASE_URL env var.
| default: &default
adapter: postgresql
encoding: unicode
pool: 5
template: template0
development:
<<: *default
database: publishing_api_development
url: <%= ENV["DATABASE_URL"]%>
test:
<<: *default
database: publishing_api_test
url: <%= ENV["DATABASE_URL"].try(:sub, /([-_]development)?$/, '_test')%... |
Fix the yml parser issue with unescaped backslash in double quoted string | ---
name: Doctrine Sandbox Migrations
table_name: doctrine_migration_versions_test
migrations:
- { "class": "Doctrine\DBAL\Migrations\Tests\Stub\Version1Test", "version": "Version1Test" }
- { "class": "Doctrine\DBAL\Migrations\Tests\Stub\Version2Test", "version": "Version2Test" }
- { "class": "Doctrine\DBAL\Migra... | ---
name: Doctrine Sandbox Migrations
table_name: doctrine_migration_versions_test
migrations:
- { 'class': 'Doctrine\DBAL\Migrations\Tests\Stub\Version1Test', 'version': 'Version1Test' }
- { 'class': 'Doctrine\DBAL\Migrations\Tests\Stub\Version2Test', 'version': 'Version2Test' }
- { 'class': 'Doctrine\DBAL\Migra... |
Update the girder role system dependencies | ---
- name: Install build dependencies
apt:
name: "{{ item }}"
become: yes
with_items:
- git
- build-essential
- python-dev
- python-tk
- tcl8.6-dev
- tk8.6-dev
- libffi-dev
- libssl-dev
- name: Download
git:
repo: "https://github.com/girder/girder.git"
dest: "{{ gi... | ---
- name: Install build dependencies
apt:
name: "{{ item }}"
become: yes
with_items:
- curl
- git
- libffi-dev
- build-essential
- libgif-dev
- libjpeg-dev
- libssl-dev
- zlib1g-dev
- name: Download
git:
repo: "https://github.com/girder/girder.git"
dest: "{{ girde... |
Disable django tests for now | machine:
environment:
ENV: dev
SECRET_KEY: testing-on-circle-ci
POSTGRES_USER: ubuntu
POSTGRES_HOST: localhost
UNPP_LOGS_PATH: /home/ubuntu/logs
dependencies:
pre:
- mkdir -p /home/ubuntu/logs
- pip install -r backend/requirements/dev.pip
test:
override:
- cd backend && python ma... | machine:
environment:
ENV: dev
SECRET_KEY: testing-on-circle-ci
POSTGRES_USER: ubuntu
POSTGRES_HOST: localhost
UNPP_LOGS_PATH: /home/ubuntu/logs
dependencies:
pre:
- mkdir -p /home/ubuntu/logs
- pip install -r backend/requirements/dev.pip
test:
override:
# TODO: Run django tests
# ... |
Update DarkModeLiveWallpaper to 1.1.1 (7) | Categories:
- Theming
License: GPL-3.0-or-later
AuthorEmail: cuzi-android@openmail.cc
SourceCode: https://github.com/cvzi/darkmodewallpaper
IssueTracker: https://github.com/cvzi/darkmodewallpaper/issues
Translation: https://crwd.in/darkmodewallpaper
Changelog: https://github.com/cvzi/darkmodewallpaper/blob/HEAD/CHANG... | Categories:
- Theming
License: GPL-3.0-or-later
AuthorEmail: cuzi-android@openmail.cc
SourceCode: https://github.com/cvzi/darkmodewallpaper
IssueTracker: https://github.com/cvzi/darkmodewallpaper/issues
Translation: https://crwd.in/darkmodewallpaper
Changelog: https://github.com/cvzi/darkmodewallpaper/blob/HEAD/CHANG... |
Fix syntax for the when clause | ---
- name: "Verify redirect value and fail"
fail: msg="Redirect should be a complete URL, not {{ redirect }}"
when: "redirect is defined and not {{ redirect | match('^https?://') }}"
- include: common.yml
when: httpd_common is not defined
- set_fact: httpd_common=True
- file: state=directory path={{ document_... | ---
- name: "Verify redirect value and fail"
fail: msg="Redirect should be a complete URL, not {{ redirect }}"
when: "redirect is defined and not redirect | match('^https?://')"
- include: common.yml
when: httpd_common is not defined
- set_fact: httpd_common=True
- file: state=directory path={{ document_root }... |
Fix serverspec config test with Travis values - 2 | ---
# 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:
- "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... |
Build the C extensions first. | language: python
python:
- 2.7
- 3.4
- 3.5
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
install:
- pip install Cython
- pip inst... | language: python
python:
- 2.7
- 3.4
- 3.5
# https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
install:
- pip install Cython
- pip inst... |
Add libgtest to the matrix | language: cpp
addons:
apt:
packages:
- libgtest-dev
install:
- export INITIAL_DIR=$PWD
- wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
- tar -xvf /tmp/cmake.tar.gz
- export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH
matrix:
incl... | language: cpp
install:
- export INITIAL_DIR=$PWD
- wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
- tar -xvf /tmp/cmake.tar.gz
- export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH
matrix:
include:
- compiler: gcc
addons:
apt:... |
Add sudo to the lsmod command | sudo: required
services:
- docker
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y qemu-kvm bridge-utils libvirt-bin
- lsmod | grep kvm
- cd docker/qemu-nvme/
install:
- docker build -t ljishen/qemu-nvme .
before_script:
- wget -O img/vm.img http://cloud-images.ubuntu.com/xenial/cur... | sudo: required
services:
- docker
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y qemu-kvm bridge-utils libvirt-bin
- sudo lsmod | grep kvm
- cd docker/qemu-nvme/
install:
- docker build -t ljishen/qemu-nvme .
before_script:
- wget -O img/vm.img http://cloud-images.ubuntu.com/xenia... |
Update references to opencv 2.4.9 | language: node_js
before_install:
- sudo apt-get install build-essential
- curl -sL https://github.com/Itseez/opencv/archive/2.4.6.1.zip > opencv.zip
- unzip opencv.zip
- rm opencv.zip
- mkdir opencv-build
- cd opencv-build/
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_opencv... | language: node_js
before_install:
- sudo apt-get install build-essential
- curl -sL https://github.com/Itseez/opencv/archive/2.4.9.zip > opencv.zip
- unzip opencv.zip
- rm opencv.zip
- mkdir opencv-build
- cd opencv-build/
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_opencv_j... |
Add latest Ruby versions to Travis matrix | language: ruby
rvm:
- 2.5.1
- 2.4.4
- 2.3.7
- 2.2
- 2.1
- 2.0
matrix:
# Rubinius periodically fails in general, and it always segfaults for RuboCop
# in particular. Until we figure out how to make it work consistently, allow
# it to fail without breaking the build.
allow_failures:
- rvm: rbx-2
... | language: ruby
rvm:
- 2.6.0
- 2.5.3
- 2.4.5
- 2.3.8
- 2.2
- 2.1
- 2.0
matrix:
# Rubinius periodically fails in general, and it always segfaults for RuboCop
# in particular. Until we figure out how to make it work consistently, allow
# it to fail without breaking the build.
allow_failures:
- rv... |
Add `composer self-update` to before_script | language: php
before_script:
- composer install --dev
php:
- 5.4
- 5.5
- 5.6
| language: php
before_script:
- composer self-update
- composer install
php:
- 5.4
- 5.5
- 5.6
|
Test with newer version of Puppet v3 | ---
env:
- PUPPET_VERSION=2.7.22
- PUPPET_VERSION=3.3.1
notifications:
email: false
rvm:
- 1.9.3
- 1.8.7
matrix:
allow_failures:
- env: PUPPET_VERSION=2.7.22
language: ruby
before_script: "gem install --no-ri --no-rdoc bundler"
script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--format docum... | ---
env:
- PUPPET_VERSION=2.7.22
- PUPPET_VERSION=3.3.2
notifications:
email: false
rvm:
- 1.9.3
- 1.8.7
matrix:
allow_failures:
- env: PUPPET_VERSION=2.7.22
language: ruby
before_script: "gem install --no-ri --no-rdoc bundler"
script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--format docum... |
Install only one compiler per container | language: cpp
env:
matrix:
- COMPILER=g++-4.8
- COMPILER=g++-4.9
- COMPILER=g++-5
- COMPILER=clang++-3.6
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise
- llvm-toolchain-precise-3.6
packages:
- g++-4.8
- g++-4.9
- g++-5
- clang-3.6
script:
make ... | language: cpp
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-4.8']
env: COMPILER=g++-4.8
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
... |
Update Travis YML to use JDK8 | language: android
jdk: oraclejdk7
android:
components:
- platform-tools
- tools
- build-tools-24.0.0
- android-24
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
cache:
directories:
- $HOME/.m2
- $HOME/.gradle
script:
- ./gradlew ... | language: android
jdk: oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-24.0.0
- android-24
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
cache:
directories:
- $HOME/.m2
- $HOME/.gradle
script:
- ./gradlew ... |
Update mainline ruby test targets |
language: ruby
rvm:
#- 1.8.7 # over from rufus-scheduler 3.4.0
#- 1.9.2
- 1.9.3
#- 2.0.0
- 2.1.1
- 2.2.3
- 2.3.3
- 2.4.1
- jruby-9.1.13.0
#matrix:
# include:
# - rvm: jruby-9.1.13.0
# #- env: JRUBY_OPTS="--profile.api"
#before_install: gem install bundler
script: bundle exec rspec
branches:... |
language: ruby
rvm:
#- 1.8.7 # over from rufus-scheduler 3.4.0
#- 1.9.2
- 1.9.3
#- 2.0.0
- 2.1.1
- 2.2.3
- 2.3.3
- 2.4.6
- 2.5.5
- 2.6.2
- jruby-9.1.13.0
#matrix:
# include:
# - rvm: jruby-9.1.13.0
# #- env: JRUBY_OPTS="--profile.api"
#before_install: gem install bundler
script: bundle ... |
Remove 1.8 from Travis build | language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.8.7
- jruby-19mode
- rbx-19mode
script: rspec spec
| language: ruby
rvm:
- 2.0.0
- 1.9.3
- jruby-19mode
script: rspec spec
|
Make sure to install the development packages with homebrew. | language: cpp
os:
- linux
- osx
dist: trusty
sudo: false
addons:
apt:
packages:
- libboost-dev
- libboost-thread-dev
- libboost-system-dev
- libboost-filesystem-dev
- libicu-dev
- maven
- wget
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ ... | language: cpp
os:
- linux
- osx
dist: trusty
sudo: false
addons:
apt:
packages:
- libboost-dev
- libboost-thread-dev
- libboost-system-dev
- libboost-filesystem-dev
- libicu-dev
- maven
- wget
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ ... |
Add coveralls report to CI run post step. | language: node_js
node_js:
- "0.10"
before_install: "npm install -g bob --loglevel error"
script: "bob build"
| language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Update Travis CI node versions | sudo: false
language: node_js
node_js:
- '7'
- '6'
- '4'
| sudo: false
language: node_js
node_js:
- '9'
- '8'
- '6'
|
Set PYTHON_BUILD_DEFINITIONS to locate custom def file | language: python
env:
global:
- VERSION='3.5-dev-python-org'
- ALIAS='3.5.0-dev'
- INSTALL_DEST=/opt/python
- PACKAGES='pip numpy nose pytest mock wheel'
install:
- true
script:
- pushd $HOME
- sudo env PYTHON_BUILD_ROOT=$TRAVIS_BUILD_DIR python-build $VERSION $INSTALL_DEST/$ALIAS
- sudo ln... | language: python
env:
global:
- VERSION='3.5-dev-python-org'
- ALIAS='3.5.0-dev'
- INSTALL_DEST=/opt/python
- PACKAGES='pip numpy nose pytest mock wheel'
install:
- true
script:
- pushd $HOME
- sudo env PYTHON_BUILD_DEFINITIONS=$TRAVIS_BUILD_DIR python-build $VERSION $INSTALL_DEST/$ALIAS
- ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.