Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Disable similar code checks in code climate | ---
engines:
duplication:
enabled: true
config:
languages:
- javascript
exclude_fingerprints:
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.js"
| ---
engines:
duplication:
enabled: true
config:
languages:
- javascript
checks:
Similar code:
enabled: false
exclude_fingerprints:
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- "**.js"
|
Fix code coverage configuration for Scrutinizer CI | build:
environment:
python: 3.7.7
dependencies:
override:
- "pip install -r requirements.txt -r requirements-test.txt"
nodes:
analysis:
tests:
override:
- js-scrutinizer-run
- py-scrutinizer-run
coverage:
tests:
override:
- command:
... | build:
environment:
python: 3.7.7
dependencies:
override:
- "pip install -r requirements.txt -r requirements-test.txt"
nodes:
analysis:
tests:
override:
- js-scrutinizer-run
- py-scrutinizer-run
coverage:
tests:
override:
- command: '... |
Use version 2.4 as TargetVersion for Rubocop. | inherit_gem:
rubocop-shopify: rubocop.yml
require:
- ./lib/statsd/instrument/rubocop.rb
AllCops:
TargetRubyVersion: 2.3
UseCache: true
CacheRootDirectory: tmp/rubocop
Exclude:
- statsd-instrument.gemspec
Naming/FileName:
Enabled: true
Exclude:
- lib/statsd-instrument.rb
# Enable our own cops... | inherit_gem:
rubocop-shopify: rubocop.yml
require:
- ./lib/statsd/instrument/rubocop.rb
AllCops:
TargetRubyVersion: 2.4
UseCache: true
CacheRootDirectory: tmp/rubocop
Exclude:
- statsd-instrument.gemspec
Naming/FileName:
Enabled: true
Exclude:
- lib/statsd-instrument.rb
# Enable our own cops... |
Set resource limit for kube-ui addon container. | apiVersion: v1
kind: ReplicationController
metadata:
name: kube-ui-v1
namespace: default
labels:
k8s-app: kube-ui
version: v1
kubernetes.io/cluster-service: "true"
spec:
replicas: 1
selector:
k8s-app: kube-ui
version: v1
template:
metadata:
labels:
k8s-app: kube-ui
... | apiVersion: v1
kind: ReplicationController
metadata:
name: kube-ui-v1
namespace: default
labels:
k8s-app: kube-ui
version: v1
kubernetes.io/cluster-service: "true"
spec:
replicas: 1
selector:
k8s-app: kube-ui
version: v1
template:
metadata:
labels:
k8s-app: kube-ui
... |
Use Dependabot to update GitHub Actions | version: 2
updates:
- package-ecosystem: nuget
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
| version: 2
updates:
- package-ecosystem: nuget
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: daily
|
Build with Maven 3.3.9 on AppVeyor | version: '{build}'
skip_tags: true
clone_depth: 10
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.7.0
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: >-
$MVNDIR = 'C:\bin\apache-maven-3.3.1\'
if(!(Test-Path -Path $MVNDIR )){
Write-Host (Test-Path -Path $MVNDIR)
... | version: '{build}'
skip_tags: true
clone_depth: 10
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.7.0
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: >-
$MVNDIR = 'C:\tools\apache-maven-3.3.9\'
if(!(Test-Path -Path $MVNDIR )){
Write-Host (Test-Path -Path $MVNDIR... |
Update travis build instructions for VS 2017 | version: 1.0.{build}
branches:
only:
- master
- staging_master
image: Visual Studio 2015
clone_depth: 1
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\BitFunnel_CMake.sln
test_script:
- cd build-msvc
- ctest -C Debug --verbose
# TODO: Add Releas... | version: 1.0.{build}
branches:
only:
- master
- staging_master
image: Visual Studio 2017
clone_depth: 1
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\BitFunnel_CMake.sln
test_script:
- cd build-msvc
- ctest -C Debug --verbose
# TODO: Add Releas... |
Add io.js testing in Appveyor | # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.11
- nodejs_version: 0.12
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:node... | # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
#node.js
- nodejs_version: 0.10
- nodejs_version: 0.11
- nodejs_version: 0.12
#io.js
- nodejs_version: 2.5.0
install:
- ps: Update... |
Allow empty checksum on cinst install for AppVeyor | build: false
shallow_clone: false
platform:
- x86
- x64
environment:
matrix:
- php: 5.6.17
- php: 7.0.4
matrix:
fast_finish: true
clone_folder: c:\projects\IsoCodesValidator
init:
- SET PATH=C:\Program Files\OpenSSL;c:\tools\php;%PATH%
install:
- cinst php -version %php%
- cd c:\tools\php
... | build: false
shallow_clone: false
platform:
- x86
- x64
environment:
matrix:
- php: 5.6.17
- php: 7.0.4
matrix:
fast_finish: true
clone_folder: c:\projects\IsoCodesValidator
init:
- SET PATH=C:\Program Files\OpenSSL;c:\tools\php;%PATH%
install:
- cinst php --allow-empty-checksums -version %php... |
Update build to use dotnet command line | nuget:
account_feed: true
before_build:
- nuget restore
configuration: Release
build:
project: PlayerRank.sln
verbosity: minimal
after_build:
- cmd: nuget pack PlayerRank\PlayerRank.csproj -version "%GitVersion_NuGetVersion%" -prop "target=Release"
- cmd: appveyor PushArtifact "PlayerRank.%GitVersion_Nu... | configuration: Release
image: Visual Studio 2017 Preview
install:
- choco install GitVersion.Portable
- GitVersion /output buildserver
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '%GitVersion_MajorMinorPatch%'
package_version: '%GitVersion_NuGetVersion%'
before_build:
- dotnet restore
buil... |
Disable parallel build and try to fix artifact name | version: '{branch}-rev{build}'
shallow_clone: true
os:
- Visual Studio 2015
environment:
matrix:
- TOOLSET: vs2015
install:
- cd build && "./premake5.exe" %TOOLSET% && cd ..
configuration:
- DebugDynamic
- ReleaseDynamic
platform:
- Win32
- x64
build:
parallel: true
project: build/$(TOOLSET)/... | version: '{branch}-rev{build}'
shallow_clone: true
os:
- Visual Studio 2015
environment:
matrix:
- TOOLSET: vs2015
install:
- cd build && "./premake5.exe" %TOOLSET% && cd ..
configuration:
- DebugDynamic
- ReleaseDynamic
platform:
- Win32
- x64
build:
project: build/$(TOOLSET)/NazaraEngine.sln
... |
Reduce permissions on sig-cluster-lifecycle-cluster-api-alerts@kubernetes.io to member only. | groups:
- email-id: sig-cluster-lifecycle-cluster-api-alerts@kubernetes.io
name: sig-cluster-lifecycle-cluster-api-alerts
description: |-
settings:
WhoCanPostMessage: "ANYONE_CAN_POST"
ReconcileMembers: "true"
owners:
- detiber@gmail.com
- jdetiberus@equinix.com
- jeewan... | groups:
- email-id: sig-cluster-lifecycle-cluster-api-alerts@kubernetes.io
name: sig-cluster-lifecycle-cluster-api-alerts
description: |-
settings:
WhoCanPostMessage: "ANYONE_CAN_POST"
ReconcileMembers: "true"
members:
- naadir@randomvariable.co.uk
- detiber@gmail.com
- ... |
Add phpcs PSR2 to Scruntinizer | tools:
external_code_coverage: true
checks:
php:
code_rating: true
duplication: true | tools:
external_code_coverage: true
php_code_sniffer:
config:
standard: "PSR2"
checks:
php:
code_rating: true
duplication: true |
Replace individual developer names with dsde-pipelines-developers | version: 2
group_defaults:
approve_by_comment:
approve_regex: '^:\+1:'
enabled: true
groups:
reviewers:
required: 1
conditions:
branches:
- master
users:
- als364
- apchagi
- danxmoran
- gbggrant
- hensonc
- jacarey
- ktibbett
- nh1... | version: 2
group_defaults:
approve_by_comment:
approve_regex: '^:\+1:'
enabled: true
groups:
reviewers:
required: 1
conditions:
branches:
- master
teams:
- dsde-pipelines-developers
users:
- nh13
- tfenne
- yfarjoun
|
Fix integration test for iojs. Missing path has different error message in io.js . | - params:
sendman: ../../../../../bin/sendman
- description: Command help should display help information
command: '{sendman} --help'
exitcode: 0
output: 'Usage: sendman'
- description: Command init should display message about creating sample configuration file
command: '{sendman} init'
exitcode: 0
o... | - params:
sendman: ../../../../../bin/sendman
- description: Command help should display help information
command: '{sendman} --help'
exitcode: 0
output: 'Usage: sendman'
- description: Command init should display message about creating sample configuration file
command: '{sendman} init'
exitcode: 0
o... |
Update Node version for TestRepos workflow from 12 to 16. | name: TestRepos
on:
pull_request:
push:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-... | name: TestRepos
on:
pull_request:
push:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-... |
Update snapshot controller to use k8s.gcr.io | # This YAML file shows how to deploy the volume snapshot controller
---
kind: StatefulSet
apiVersion: apps/v1
metadata:
name: volume-snapshot-controller
namespace: kube-system
labels:
addonmanager.kubernetes.io/mode: Reconcile
spec:
serviceName: "volume-snapshot-controller"
replicas: 1
selector:
m... | # This YAML file shows how to deploy the volume snapshot controller
---
kind: StatefulSet
apiVersion: apps/v1
metadata:
name: volume-snapshot-controller
namespace: kube-system
labels:
addonmanager.kubernetes.io/mode: Reconcile
spec:
serviceName: "volume-snapshot-controller"
replicas: 1
selector:
m... |
Rename vars and changed text in test workflow | name: build
on: [push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4', '8.0']
name: Testing on PHP ${{ matrix.php-versions }}
steps:
- uses: actions/checkout@v2
- name: setup
uses: shivammathur/setup-php@v2
with:
php-versi... | name: Tests
on: [push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.4', '8.0']
name: Testing on PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
... |
Check for use_openshift_sdn when restarting openvswitch. | ---
- name: restart openvswitch
service: name=openvswitch state=restarted
when: not (ovs_service_status_changed | default(false) | bool)
notify:
- restart openvswitch pause
- name: restart openvswitch pause
pause: seconds=15
when: openshift.common.is_containerized | bool
- name: restart node
service: na... | ---
- name: restart openvswitch
service: name=openvswitch state=restarted
when: not (ovs_service_status_changed | default(false) | bool) and openshift.common.use_openshift_sdn | bool
notify:
- restart openvswitch pause
- name: restart openvswitch pause
pause: seconds=15
when: openshift.common.is_containeri... |
Install 32-bit GCC for Linux | notifications:
email:
on_success: change
on_failure: always
language: csharp
solution: BuildAMation.sln
matrix:
include:
- os: linux
mono: latest
script:
- msbuild /p:Configuration=Release BuildAMation.sln && python codingtools/test_bam.py && source env.sh && cd tests && python runtests.py... | notifications:
email:
on_success: change
on_failure: always
language: csharp
solution: BuildAMation.sln
install:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install gcc-multilib; fi
matrix:
include:
- os: linux
mono: latest
script:
- msbuild /p:Configuration=Release BuildAMation.... |
Add infer for static analysis | language: android
jdk: oraclejdk8
os: linux
dist: xenial
env:
global:
- ANDROID_API_LEVEL=29
- ANDROID_BUILD_TOOLS_VERSION=29.0.2
android:
components:
- tools
- platform-tools
- tools
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
- android-$ANDROID_API_LEVEL
... | language: android
jdk: oraclejdk8
os: linux
dist: xenial
env:
global:
- ANDROID_API_LEVEL=29
- ANDROID_BUILD_TOOLS_VERSION=29.0.2
android:
components:
- tools
- platform-tools
- tools
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
- android-$ANDROID_API_LEVEL
... |
Update Travis CI to xenial | ---
sudo: required
dist: trusty
language: python
python: "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-apt python-pycurl curl ufw
install:
- pip install ansible --upgrade
- ansible --version
- printf '[defaults]\nroles_path=../' >ansible.cfg
- echo localhost > inventory
s... | ---
sudo: required
dist: xenial
language: python
python: "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-apt python-pycurl curl ufw
install:
- pip install ansible --upgrade
- ansible --version
- printf '[defaults]\nroles_path=../' >ansible.cfg
- echo localhost > inventory
s... |
Add 5.20 to Travis CI builds | language: perl
install: true
script: perl ./Build.PL
perl:
- "5.12"
- "5.14"
- "5.18"
branches:
only:
- master
- stable
| language: perl
install: true
script: perl ./Build.PL
perl:
- "5.12"
- "5.14"
- "5.18"
- "5.20"
branches:
only:
- master
- stable
|
Add doc generation to Travis |
language: rust
| language: rust
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
cargo doc &&
echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html &&
sudo pip install ghp-import &&
ghp-import -n target/doc &&
git pus... |
Switch to xvfb service declaration | # use java support.
language: java
# run in container.
sudo: false
# use linux as operating system.
os: linux
matrix:
fast_finish: true
include:
- jdk: openjdk8
if: branch = master OR tag =~ ^v1\.[0-9]+\.[0-9]+ # match v1.x.x
- jdk: openjdk11
if: branch = jdk10 OR tag =~ ^v2\.[0-9]+\.[0-9]+ #... | # use java support.
language: java
# run in container.
sudo: false
# use linux as operating system.
os: linux
matrix:
fast_finish: true
include:
- jdk: openjdk8
if: branch = master OR tag =~ ^v1\.[0-9]+\.[0-9]+ # match v1.x.x
- jdk: openjdk11
if: branch = jdk10 OR tag =~ ^v2\.[0-9]+\.[0-9]+ #... |
Test on latest point releases of Ruby | language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
env:
- DATABASE_ADAPTER=sqlite3
- DATABASE_ADAPTER=postgresql
rvm:
- 2.0.0
- 2.1.4
- 2.2.0
gemfile:
- gemfiles/4.0.0.gemfile
- gemfiles/4.0.1.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
| language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
env:
- DATABASE_ADAPTER=sqlite3
- DATABASE_ADAPTER=postgresql
rvm:
- 2.0
- 2.1
- 2.2
gemfile:
- gemfiles/4.0.0.gemfile
- gemfiles/4.0.1.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
|
Move form npm to yarn | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '4'
before_install:
- npm i -g npm
before_script:
- npm prune
after_script:
- npm run coveralls
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_afte... | sudo: false
language: node_js
notifications:
email: false
node_js:
- '4'
before_install:
- npm install -g yarn
before_script:
- yarn prune
after_script:
- yarn run coveralls
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all.py
- export $(cat .to_ex... |
Add cache of hypothesis database. | language: python
python:
- 2.7
- 3.4
- 3.5
install:
- pip install -r requirements.txt
- python setup.py develop
- pip install coveralls
- pip install sphinx
script:
- cd docs; make html
- cd ..
- python doctests.py
- coverage run --source=ciw -m unittest discover ciw
- pip uninstall -y ciw
- p... | language: python
python:
- 2.7
- 3.4
- 3.5
cache:
directories:
- $TRAVIS_BUILD_DIR/.hypothesis
install:
- pip install -r requirements.txt
- python setup.py develop
- pip install coveralls
- pip install sphinx
script:
- cd docs; make html
- cd ..
- python doctests.py
- coverage run --source... |
Update to neo4j 2.2.5, JRuby 1.7.20, and start testing against jruby-9.0.0.0 | script:
- "bundle exec rubocop"
- "export CODECLIMATE_REPO_TOKEN=04853df625409de0a0f4e9126aee11bbee3428c81c20c27df6e6ab5c60bff2c8 && export JRUBY_OPTS='-X+O -J-Djruby.launch.inproc=false -J-Xmx700m -J-XX:MaxPermSize=2048m' && bundle exec rake neo4j:install[$NEO4J_VERSION] neo4j:start default --trace"
language: ruby... | script:
- "bundle exec rubocop"
- "export CODECLIMATE_REPO_TOKEN=04853df625409de0a0f4e9126aee11bbee3428c81c20c27df6e6ab5c60bff2c8 && export JRUBY_OPTS='-X+O -J-Djruby.launch.inproc=false -J-Xmx700m -J-XX:MaxPermSize=2048m' && bundle exec rake neo4j:install[$NEO4J_VERSION] neo4j:start default --trace"
language: ruby... |
Remove unsupported PHP versions from Travis matrix | language: php
dist: trusty
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == "hhvm"* ]]; then curl -sSfL -o ~/.phpenv/versions/hhvm/bin... | language: php
dist: xenial
php:
- 7.3
- 7.4
before_script:
- composer install
script: phpunit --verbose
|
Update PHP versions for tests | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit
|
Change cmake ppa: george-edison55/precise-backports -> george-edison55/cmake-3.x | # Travis CI Build.
# HOME path: /home/travis
# Git clone path: /home/travis/build/osom8979/tbag
language: cpp
cache:
apt: true
directories:
- /home/travis/tparty
compiler: g++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- git
... | # Travis CI Build.
# HOME path: /home/travis
# Git clone path: /home/travis/build/osom8979/tbag
language: cpp
cache:
apt: true
directories:
- /home/travis/tparty
compiler: g++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- george-edison55-cmake-3.x
packages:
- git
- cmak... |
Use go1.11 as default go version | language: go
sudo: true
go:
- 1.10.x
# Disable tests for 1.11.x temporarily, since test fails because of code formating issues.
# We need to insert empty line manually to avoid test failure, instead of having gofmt to do the job
# - 1.11.x
go_import_path: github.com/uber/zanzibar
env:
global:
- GO15... | language: go
sudo: true
go:
- 1.11.x
go_import_path: github.com/uber/zanzibar
env:
global:
- GO15VENDOREXPERIMENT=1
- TEST_TIMEOUT_SCALE=10
cache:
directories:
- vendor
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qq time
- sudo apt-get install -qq build-essential libssl-dev... |
Set user name and email for git with Travis-CI. | language: python
python:
- "3.6"
- "3.5"
- "3.4"
before_install:
- export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
addons:
apt_packages:
- pandoc
install:
- pip install .
- pip install -r requirements.txt
before_script:
- export PYTHONPATH=$PYTHON... | language: python
python:
- "3.6"
- "3.5"
- "3.4"
before_install:
- export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
addons:
apt_packages:
- pandoc
install:
- pip install .
- pip install -r requirements.txt
before_script:
- export PYTHONPATH=$PYTHON... |
Fix Bundler --without args of Travis-CI | bundler_args: --without development --without doc
env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- jruby-19mode
- jruby-head
- rbx-2
- ruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
fast_finish: true
sudo: false
| bundler_args: --without development doc
env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- jruby-19mode
- jruby-head
- rbx-2
- ruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
fast_finish: true
sudo: false
|
Add latest Ruby versions to Travis config | language: ruby
cache: bundler
rvm:
- 2.2.5
- 2.3.1
- ruby-head
- rbx
- jruby
script: bundle exec rspec
before_install:
- gem update bundler
| language: ruby
cache: bundler
rvm:
- 2.3
- 2.4
- 2.5
- ruby-head
- jruby
- rbx-3
script: bundle exec rspec
before_install:
- gem install bundler
|
Drop Flask 0.9 from testing. | language: python
services: redis-server
python:
- "2.7"
env:
- FLASK_VERSION=0.9 REDIS_VERSION=2.4.13
- FLASK_VERSION=0.9 REDIS_VERSION=2.6.2
- FLASK_VERSION=0.9 REDIS_VERSION=2.7.4
- FLASK_VERSION=0.10 REDIS_VERSION=2.4.13
- FLASK_VERSION=0.10 REDIS_VERSION=2.6.2
- FLASK_VERSION=0.10 REDIS_VERSION=2.7.4
install... | language: python
services: redis-server
python:
- "2.7"
env:
- FLASK_VERSION=0.10 REDIS_VERSION=2.4.13
- FLASK_VERSION=0.10 REDIS_VERSION=2.6.2
- FLASK_VERSION=0.10 REDIS_VERSION=2.7.4
install:
- "pip install -r requirements.txt"
- "pip install -r requirements_tests.txt"
- "pip install -I Flask==$FLASK_VERSION"
... |
Update Travis CI API key | language: node_js
node_js:
- '0.12'
- '4'
- 'iojs'
before_script: npm install -g grunt-cli
deploy:
provider: npm
email: nwoltman@outlook.com
api_key:
secure: A0JrkJErayUL66RW/iZdHmHvFPJyG3LBtaaxs6UI5JzGC6zpaMdiTRZlZkIiSb4YM/bUq71GkIqCBZguvqTaXEFe960K7En+3YZQ8234rXDp3g5Xg8PDEp4NCvfn0r1SETCU0D+kGy3avyQHc7... | language: node_js
node_js:
- '0.12'
- 'iojs'
- '4'
before_script: npm install -g grunt-cli
deploy:
provider: npm
email: nwoltman@outlook.com
api_key:
secure: HD/8J5TaxDQMws6ZiIzfUCm6JzcHlwxiFK4wWU+0btIvP53ukwxgr3Jpdwi0VADff8pQJDxywIcPp9T7BJDK9uC/SAwKVwvfdizVwIFODY1TbJXNDjrzm0YPkNcNsmlPl1xied9Nj6b2yUurfJ... |
Enable sudo so we can start psql | language: clojure
sudo: false
script: make test
services:
- postgresql
env:
- RILL_POSTGRES_DB=rill_test RILL_POSTGRES_USER=postgres
notifications:
slack:
secure: UTuoaiCsgYYCBC/ii5xDKnkOEj2njQ0AyHOm3EZfu8MeG1YjpKXCdCXhbRLQIgmkdxHy6jQJU83JOkv15u8q3Y2f6w6X/nUEwccMicot6hDBNDxmj0oJqoscJCemFnINJ7mfUe0diaNHuZ7NiVCRimB... | language: clojure
sudo: required
script: make test
services:
- postgresql
env:
- RILL_POSTGRES_DB=rill_test RILL_POSTGRES_USER=postgres
notifications:
slack:
secure: UTuoaiCsgYYCBC/ii5xDKnkOEj2njQ0AyHOm3EZfu8MeG1YjpKXCdCXhbRLQIgmkdxHy6jQJU83JOkv15u8q3Y2f6w6X/nUEwccMicot6hDBNDxmj0oJqoscJCemFnINJ7mfUe0diaNHuZ7NiVCR... |
Stop CI to upgrade to composer v2, until dependency(wikimedia/composer-merge-plugin) does not support it. | os:
- linux
language: php
php:
# - '5.6'
# - '7.0'
# - '7.1'
# - '7.2'
- '7.3'
- '7.4'
- '8.0'
services:
# - mongodb
- mysql
before_script:
- sleep 10
# - mongo horizontlaravel --eval 'db.createUser({user:"travis",pwd:"test",roles:["readWrite"]})
- mysql -e 'CREATE DATABASE IF NOT EXISTS horizontlar... | os:
- linux
language: php
php:
# - '5.6'
# - '7.0'
# - '7.1'
# - '7.2'
- '7.3'
- '7.4'
- '8.0'
services:
# - mongodb
- mysql
before_script:
- sleep 10
# - mongo horizontlaravel --eval 'db.createUser({user:"travis",pwd:"test",roles:["readWrite"]})
- mysql -e 'CREATE DATABASE IF NOT EXISTS horizontlar... |
Revert "Bump libclang version to latest" | # Make sure we run in the docker container
sudo: false
language: c
addons:
apt:
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
- python-virtualenv
- libclang1-3.8
cache:
directories:
- compiler/
before_scri... | # Make sure we run in the docker container
sudo: false
language: c
addons:
apt:
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
- python-virtualenv
- libclang1-3.4
cache:
directories:
- compiler/
before_scri... |
Revert "Try more JDK again" | language: java
jdk:
- openjdk8
# As long as travis/Ubuntu problem exists only run with one JDK
- openjdk9
- openjdk10
- openjdk11
# Not possible with language level 1.6
# - openjdk12
#before_script:
# - pip install --user codecov
#after_success:
# - codecov
#addons:
# srcclr: true
| language: java
jdk:
- openjdk8
# As long as travis/Ubuntu problem exists only run with one JDK
# - openjdk9
# - openjdk10
# - openjdk11
# Not possible with language level 1.6
# - openjdk12
#before_script:
# - pip install --user codecov
#after_success:
# - codecov
#addons:
# srcclr: true
|
Remove Ruby 1.8.7 from Travis tests | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
gemfile:
- gemfiles/rails-3.1.gemfile
- gemfiles/rails-3.2.gemfile
- gemfiles/rails-4.0.gemfile
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/rails-4.0.gemfile
| language: ruby
rvm:
- 1.9.3
- 2.0.0
gemfile:
- gemfiles/rails-3.1.gemfile
- gemfiles/rails-3.2.gemfile
- gemfiles/rails-4.0.gemfile
|
Work around new poetry bug | language: python
python:
- "3.5"
- "3.6"
#- "3.7"
addons:
chrome: stable # Just to be sure
apt:
packages:
- libmysqlclient-dev
- libmagickwand-dev
- poppler-utils
- tesseract-ocr
cache:
pip: true
npm: true
apt: true
install:
- npm install --ci
- pip install poetry --up... | language: python
python:
- "3.5"
- "3.6"
#- "3.7"
addons:
chrome: stable # Just to be sure
apt:
packages:
- libmysqlclient-dev
- libmagickwand-dev
- poppler-utils
- tesseract-ocr
cache:
pip: true
npm: true
apt: true
install:
- npm install --ci
- pip install poetry --up... |
Use Xcode 7.2 on TravisCI | language: objective-c
install:
- bundle install --jobs=3 --retry=3
script: bundle exec rake test
after_success: slather
cache:
directories:
- vendor/bundle
| osx_image: xcode7.2
language: objective-c
install:
- bundle install --jobs=3 --retry=3
script: bundle exec rake test
after_success: slather
cache:
directories:
- vendor/bundle
|
Add Ruby 2.0.0 to Travis-CI test matrix | language: ruby
rvm:
- 1.9.3
- jruby-19mode
- jruby-head
| language: ruby
rvm:
- 1.9.3
- jruby-19mode
- jruby-head
- 2.0.0
|
Support of Ruby 2.2 has ended | cache: bundler
language: ruby
sudo: false
rvm:
- 2.5.0
- 2.4.3
- 2.3.6
- 2.2.9
before_install: "gem update --system" # https://github.com/travis-ci/travis-ci/issues/8974
| cache: bundler
language: ruby
sudo: false
rvm:
- 2.5.1
- 2.4.4
- 2.3.7
before_install: "gem update --system" # https://github.com/travis-ci/travis-ci/issues/8974
|
Revert to using secure variables | dist: trusty
sudo: required
language: c
compiler:
- clang
- gcc
before_install:
- git submodule update --init --recursive
- sudo apt-get update
- sudo apt-get install python-docutils
- git clone https://github.com/varnishcache/varnish-cache.git
- cd varnish-cache && ./autogen.sh && ./configure && make &&
... | dist: trusty
sudo: required
language: c
compiler:
- clang
- gcc
before_install:
- git submodule update --init --recursive
- sudo apt-get update
- sudo apt-get install python-docutils
- git clone https://github.com/varnishcache/varnish-cache.git
- cd varnish-cache && ./autogen.sh && ./configure && make &&
... |
Add Bundler to install scripts for Travis | language: ruby
rvm:
- 2.7.0
install:
- npm install
script:
- bundle exec rspec
- npm run test
| language: ruby
rvm:
- 2.7.0
install:
- bundle install
- npm install
script:
- bundle exec rspec
- npm run test
|
Fix 1.8.7 builds on Travis | bundler_args: --without development
language: ruby
rvm:
- jruby-19mode
- rbx-19mode
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
matrix:
allow_failures:
- rvm: rbx-19mode
env:
- OCTOKIT_TEST_GITHUB_LOGIN="api-padawan" OCTOKIT_TEST_GITHUB_PASSWORD="MYSOCRATESNOTE" OCTOKIT_TEST_GITHUB_TOKEN="6a21f190e342... | bundler_args: --without development
language: ruby
rvm:
- jruby-19mode
- rbx-19mode
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
matrix:
allow_failures:
- rvm: rbx-19mode
env:
- OCTOKIT_TEST_GITHUB_LOGIN="api-padawan" OCTOKIT_TEST_GITHUB_PASSWORD="MYSOCRATESNOTE" OCTOKIT_TEST_GITHUB_TOKEN="6a21f190e342... |
Use latest MRI 2.2 release, rather than 2.2.0. | language: ruby
cache: bundler
rvm:
- 2.2
- 2.3.4
- 2.4.1
before_install:
- gem install bundler
before_script:
- ./bin/literals
- bundle exec appraisal update
script: bundle exec appraisal rspec
| language: ruby
cache: bundler
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
before_install:
- gem install bundler
before_script:
- ./bin/literals
- bundle exec appraisal update
script: bundle exec appraisal rspec
|
Remove that last retry command | language: objective-c
osx_image: xcode9.3
xcode_workspace: ReceptionKit.xcworkspace
xcode_scheme: ReceptionKit
# From https://github.com/travis-ci/travis-ci/issues/6675
before_install:
- export IOS_SIMULATOR_UDID=`instruments -s devices | grep "iPad Pro (12.9-inch" | awk -F '[ ]' '{print $4}' | awk -F '[\[]' '{print... | language: objective-c
osx_image: xcode9.3
xcode_workspace: ReceptionKit.xcworkspace
xcode_scheme: ReceptionKit
# From https://github.com/travis-ci/travis-ci/issues/6675
before_install:
- export IOS_SIMULATOR_UDID=`instruments -s devices | grep "iPad Pro (12.9-inch" | awk -F '[ ]' '{print $4}' | awk -F '[\[]' '{print... |
Move to Travis-CI container-based infrastructure | language: python
python:
- "2.7"
- "3.3"
- "3.4"
# does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
# maintainers to fix their pypy-dev package.
#- "pypy"
# command to install dependencies
install:
- sudo apt-get update -qq
- sudo apt-get install -y r-base
- pi... | # to use container-based infrastructure
sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
# command to install dependencies
addons:
apt:
packages:
- r-base
install:
- pip install -r dev_requirements.txt --use-mirrors
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip i... |
Install jupyter for the tests | language: python
matrix:
include:
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: true
# command to install dependencies
#before_install:
# - sudo apt-get install coinor-cbc
install:
- pip install .
- pip install coveralls sphinx nbformat pytest-cov
# command to run tests... | language: python
matrix:
include:
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: true
# command to install dependencies
#before_install:
# - sudo apt-get install coinor-cbc
install:
- pip install .
- pip install coveralls sphinx nbformat pytest-cov jupyter
# command to r... |
Update list of Perl versions to be tested | sudo: false
language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
- "5.26"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cp... | sudo: false
language: perl
perl:
- "5.30"
- "5.28"
- "5.26"
- "5.24"
- "5.22"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notes... |
Remove extra npm install command | sudo: false
language: php
php:
- '5.6'
- '5.5'
- '5.4'
before_install:
- pyrus install pear/PHP_CodeSniffer
- phpenv rehash
- npm install bower
- npm install gulp
- npm install
install:
- composer install --no-dev --no-scripts --quiet --optimize-autoloader
- npm install --silent --no-spin -p ./web/app... | sudo: false
language: php
php:
- '5.6'
- '5.5'
- '5.4'
before_install:
- pyrus install pear/PHP_CodeSniffer
- phpenv rehash
- npm install bower
- npm install gulp
install:
- composer install --no-dev --no-scripts --quiet --optimize-autoloader
- npm install --silent --no-spin -p ./web/app/themes/ado-theme... |
Add new version of Go | language: go
before_install:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure
- go get -u github.com/alecthomas/gometalinter
- gometalinter --install
go:
- 1.8
- 1.8.1
- 1.8.2
- 1.8.3
- 1.9
- 1.9.1
- 1.9.2
- tip
script:
- make test
- make lint
services:
- redis-server
env:
- REDIS_... | language: go
before_install:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure
- go get -u github.com/alecthomas/gometalinter
- gometalinter --install
go:
- 1.8
- 1.8.1
- 1.8.2
- 1.8.3
- 1.9
- 1.9.1
- 1.9.2
- 1.9.3
- 1.9.4
- 1.10.0
- tip
script:
- make test
- make lint
services:
... |
Fix for builds on Travis failing due to bundler error | language: ruby
rvm:
- "2.1.2"
- "1.9.3"
- "1.8.7"
| language: ruby
before_install:
- gem install bundler
rvm:
- "2.1.2"
- "1.9.3"
- "1.8.7"
|
Add portmidi installation via apt | language: ruby
rvm:
- 1.8.7
notifications:
email: false
| language: ruby
rvm:
- 1.8.7
before_install:
- sudo apt-get update
- sudo apt-get install portmidi
notifications:
email: false
|
Update Travis CI testing matrix | ---
language: ruby
bundler_args: --without development system_tests
before_install: rm Gemfile.lock || true
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.3.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_V... | ---
language: ruby
bundler_args: --without development
before_install:
- rm Gemfile.lock || true
- gem update bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_GEM_VERSION="~> 3.8.0" STRICT_VARIABLES=yes FUTURE_PARSER=yes
- PUPPET_GEM_VERSION="~> 4.0.0" STRICT_VARIABLES=yes
... |
Update Travis to use Gradle wrapper | language: java
jdk:
- openjdk8
env:
- TEST_COMMAND="gradle clean build"
- TEST_COMMAND="mvn clean install"
script:
- (eval "$TEST_COMMAND")
| language: java
jdk:
- openjdk8
env:
- TEST_COMMAND="./gradlew clean build"
- TEST_COMMAND="mvn clean install"
script:
- (eval "$TEST_COMMAND")
|
Use the new build env on Travis | language: ruby
script: bundle exec rake travis
matrix:
fast_finish: true
include:
- rvm: 1.8.7
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.0
gemfile: Gemfile
- rvm: 2.1.1
gemfile: Gemfile
- rvm: 2... | language: ruby
sudo: false
script: bundle exec rake travis
matrix:
fast_finish: true
include:
- rvm: 1.8.7
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.0
gemfile: Gemfile
- rvm: 2.1.1
gemfile: Gemfile... |
Revert "added before script to setup /tmp" | language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Pharo-alpha
- Pharo-6.1
- Pharo-5.0
before_script:
#/tmp does not exist in travis by default
#To make tests run correctly, create /tmp before running the scripts
#https... | language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Pharo-alpha
- Pharo-6.1
- Pharo-5.0 |
Switch to an actually modern Ubuntu dist | language: python
python:
- "3.6"
- "3.9"
cache: pip
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/28fee1f221c705851580
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never ... | language: python
python:
- "3.6"
- "3.9"
dist: focal
cache: pip
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/28fee1f221c705851580
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_sta... |
Remove to support io.js from TravisCI. | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4"
notifications:
email: false
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
notifications:
email: false
|
Remove Ruby 2.4 from the CI matrix | language: ruby
sudo: false
rvm:
- 2.4.5
- 2.5.3
- ruby-head
cache:
bundler: true
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
script:
- bundle exec rake
| language: ruby
sudo: false
rvm:
- 2.5.3
- ruby-head
cache:
bundler: true
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
script:
- bundle exec rake
|
Drop CI coverage for ruby 2.1 | sudo: false
language: ruby
rvm:
- 2.1.0
- 2.2.4
- 2.3.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
services:
- redis-server
script: bin/rspec
bundler_args: --without benchmarking
| sudo: false
language: ruby
rvm:
- 2.2.4
- 2.3.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
services:
- redis-server
script: bin/rspec
bundler_args: --without benchmarking
|
Update Travis config to latest. Move Coveralls submission to after_success . | sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info ... | sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
after_success
- cat .bob/coverage/buster-istan... |
Update branch in github actions. | name: github pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
- name: Build
run: hugo --verbose --minify
- name: Deploy
uses: peaceiris/act... | name: github pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
- name: Build
run: hugo --verbose --minify
- name: Deploy
uses: peaceiris/actio... |
Check 64-bit linux builds with gnu and musl libc | language: rust
cache: cargo
services: docker
rust:
- stable
- beta
- nightly
install:
- cargo install cross || true
- source ~/.cargo/env || true
script:
- cross build --target $TARGET
- cross build --target $TARGET --release
env:
- TARGET=armv7-unknown-linux-musleabihf
- TARGET=armv7-unknown-linux-gn... | language: rust
cache: cargo
services: docker
rust:
- stable
- beta
- nightly
install:
- cargo install cross || true
- source ~/.cargo/env || true
script:
- cross build --target $TARGET
- cross build --target $TARGET --release
env:
- TARGET=armv7-unknown-linux-gnueabihf
- TARGET=armv7-unknown-linux-mus... |
Set my email address for notifications | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby
- rbx
gemfile:
- Gemfile
script: "bundle exec rspec spec/"
branches:
only:
- master
notifications:
email: false
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby
- rbx
gemfile:
- Gemfile
script: "bundle exec rspec spec/"
branches:
only:
- master
notifications:
email: 'nate@envylabs.com'
|
Move bundler install to before secion | language: java
jdk:
- openjdk7
- oraclejdk7
install:
- gem install bundler
- bundle install
- echo "yes" | sudo apt-add-repository ppa:sharpie/for-science
- echo "yes" | sudo apt-add-repository ppa:sharpie/postgis-stable
- echo "yes" | sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable
- sudo apt-... | language: java
jdk:
- openjdk7
- oraclejdk7
before_install:
- gem install bundler
install:
- bundle install
- echo "yes" | sudo apt-add-repository ppa:sharpie/for-science
- echo "yes" | sudo apt-add-repository ppa:sharpie/postgis-stable
- echo "yes" | sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstab... |
Remove jruby build for now | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
script: RAILS_ENV=test bundle exec rspec spec
| language: ruby
rvm:
- 1.9.3
- 2.0.0
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
script: RAILS_ENV=test bundle exec rspec spec
|
Update Travis. Let's try to enable Apple TV simulator again? | language: objective-c
xcode_project: BinarySpec.xcodeproj
xcode_scheme: BinarySpecTests
osx_image: xcode7.2
env:
- XCODE_SDK=iphonesimulator9.2
- XCODE_SDK=macosx10.11
## The AppleTV simulator's XCTest is referring to the wrong library paths :(
# - XCODE_SDK=appletvsimulator9.0
## Travis doesn't seem to s... | language: objective-c
xcode_project: BinarySpec.xcodeproj
xcode_scheme: BinarySpecTests
osx_image: xcode7.3
env:
- XCODE_SDK=iphonesimulator9.3
- XCODE_SDK=appletvsimulator9.2
- XCODE_SDK=macosx10.11
## Travis doesn't seem to support the real devices yet
# - XCODE_SDK=iphoneos9.1
# - XCODE_SDK=appl... |
Use Xcode 10.2 image in Travis CI | language: objective-c
os: osx
osx_image: xcode10
before_install:
- gem install xcpretty
before_script:
- set -o pipefail
script:
- xcodebuild test -project ./AttributedLabel.xcodeproj -scheme AttributedLabelTests -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 8' | xcpre... | language: objective-c
os: osx
osx_image: xcode10.2
before_install:
- gem install xcpretty
before_script:
- set -o pipefail
script:
- xcodebuild test -project ./AttributedLabel.xcodeproj -scheme AttributedLabelTests -configuration Debug -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 8' | xcp... |
Test with Node 8, add greenkeeper lock updater | language: node_js
node_js:
- 6
- 4
before_install:
- npm i -g npm@latest
| language: node_js
node_js:
- 8
- 6
- 4
before_install:
- npm i -g npm@5
- install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
|
Install Cocoapods 1.0.0 now that it’s released | language: objective-c
osx_image: xcode7.2
env:
global:
- CONFIG=opt
- TEST=objc
- JOBS=1
before_install:
- gem install cocoapods -v '1.0.0.beta.4'
- brew install gflags
# Pod install does this too, but we don't want the output.
- pod repo update --silent
install:
- make grpc_objective_c_plugin
... | language: objective-c
osx_image: xcode7.2
env:
global:
- CONFIG=opt
- TEST=objc
- JOBS=1
before_install:
- gem install cocoapods -v '1.0.0'
- brew install gflags
# Pod install does this too, but we don't want the output.
- pod repo update --silent
install:
- make grpc_objective_c_plugin
- push... |
Use latest miniconda for tests | language: python
python:
- "2.7"
branches:
only:
- master
- /^v[0-9].*$/
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=$HOME/anaconda/bin:$PATH
# Update conda
- con... | language: python
python:
- "2.7"
branches:
only:
- master
- /^v[0-9].*$/
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=$HOME/anaconda/bin:$PATH
# Update conda
- co... |
Fix scheme name for iOS test bundle | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8.2
language: objective-c
# cache: cocoapods
podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-direct... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8.2
language: objective-c
# cache: cocoapods
podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-direct... |
Test various core recipes in Travis | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
before_install:
- composer self-update
- composer require silverstripe/recipe-cms ^1
script:
- php vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- mv coverage.xml ~/build/$TRAVIS_REPO_SLUG
- cd ~/build/$TRAVIS_REPO_SLUG
- bash <(curl ... | language: php
matrix:
include:
- php: 5.6
env: DB=MYSQL RECIPE_VERSION=1.0.x-dev
- php: 7.0
env: DB=MYSQL RECIPE_VERSION=1.1.x-dev
- php: 7.1
env: DB=MYSQL RECIPE_VERSION=4.2.x-dev
- php: 7.2
env: DB=MYSQL RECIPE_VERSION=4.x-dev
before_install:
- composer self-update
- co... |
Fix unit testing call for Travis | os:
- linux
- osx
language: csharp
env:
- CONFIGURATION=Release FLAVOUR=release
mono:
- 4.8.0
solution: IronPython.sln
script:
- if [[ "$TRAVIS_OS_NAME" != "osx" ]] ; then sudo apt-get install -y binfmt-support libmono-system-windows-forms4.0-cil ; fi
- mono Util/NuGet/nuget.exe restore
- make $FLAVO... | os:
- linux
- osx
language: csharp
env:
- CONFIGURATION=Release
mono:
- 4.8.0
solution: IronPython.sln
script:
- if [[ "$TRAVIS_OS_NAME" != "osx" ]] ; then sudo apt-get install -y binfmt-support libmono-system-windows-forms4.0-cil ; fi
- mono Util/NuGet/nuget.exe restore
- make
- pushd bin/$CONFIGU... |
Remove assembly.cs versioning and re-enable nuget publishing | # {build} is required by AppVeyor to uniquely identify its builds on the url
# It is a continuously incrementing number so when used it violates the reset
# smaller build parts rule of semantic versioning. Therefore we introduce a
# second environment variable semantic_version.
# Until a newer version of dotnet/nuget s... | # {build} is required by AppVeyor to uniquely identify its builds on the url
# It is a continuously incrementing number so when used it violates the reset
# smaller build parts rule of semantic versioning. Therefore we introduce a
# second environment variable semantic_version.
# Until a newer version of dotnet/nuget s... |
Use build script for Appveyor. | version: '{build}'
before_build:
- cmd: nuget restore
build:
verbosity: minimal | version: '{build}'
build_script:
- ps: ./build.ps1
test: off
|
Use supported NodeJS version on Win CI build | # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- NODE_VERSION: "6"
NPM_VERSION: "3"
- NODE_VERSION: "7"
NPM_VERSION: "3"
- NODE_VERSION: "7"
NPM_VERSION: "4"
- NODE_VERSION: "8"
NPM_VERSION: "4"
- NODE_VERSION: "8"
NPM_VERSION: "5"
... | # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- NODE_VERSION: "8"
NPM_VERSION: "5"
- NODE_VERSION: "9"
NPM_VERSION: "5"
- NODE_VERSION: "10"
NPM_VERSION: "6"
platform:
- x86
- x64
install:
- ps: Install-Product node $env:NODE_VERSION
- node --... |
Update from Hackage at 2018-03-09T14:27:46Z | homepage: https://github.com/mvv/posix-socket
changelog-type: ''
hash: 711cb60161fa3df47b88a70fcc2bc2df1da32d2d6b812b60fa4cc781feffdbf0
test-bench-deps: {}
maintainer: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
synopsis: Bindings to the POSIX socket API
changelog: ''
basic-deps:
bytestring: ! '>=0.9.1.10'
un... | homepage: https://github.com/mvv/posix-socket
changelog-type: ''
hash: 4947e832ace8b40a26039f533f321b1e6a590f315ebadceca3960e5cc9f5f625
test-bench-deps: {}
maintainer: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
synopsis: Bindings to the POSIX socket API
changelog: ''
basic-deps:
bytestring: ! '>=0.9.1.10'
un... |
Update from Forestry.io - Updated Forestry configuration | ---
label: Article
hide_body: false
is_partial: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: post
- name: title
label: Title
type: text
hidden: false
default: ''
| ---
label: Article
hide_body: false
is_partial: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: post
- name: title
label: Title
type: text
hidden: false
default: ''
- type: datetime
|
Update release and deploy targets | image: ruby:1.9
environment:
- CODECLIMATE_REPO_TOKEN
- COVERALLS_TOKEN
- GIT_COMMIT
- GIT_SSH_KEY
- RUBYGEMS_API_KEY
targets:
build:
- bundle install --path=vendor/bundle
- bundle exec rake spec
release:
- mkdir -p ~/.ssh
- cp ${GIT_SSH_KEY} ~/.ssh/id_rsa
- chmod 0600 ~/.ssh/id_rsa... | image: ruby:1.9
environment:
- CODECLIMATE_REPO_TOKEN
- COVERALLS_TOKEN
- GIT_COMMIT
- GIT_SSH_KEY
- RUBYGEMS_API_KEY
targets:
build:
- bundle install --path=vendor/bundle
- bundle exec rake spec
release:
- git config user.name lstephen
- git config user.email levi.stephen@gmail.com
... |
Make 'aliases' an optional parameter | ---
# Where the rubber meets the road. stuff gets done
- name: Manage ssh_known_hosts file
sshknownhosts:
host: "{{ item.name }}"
aliases: "{{ item.aliases|join(',') }}"
state: "{{ item.state|default(ssh_known_hosts_state) }}"
dest: "{{ item.path|default(ssh_known_hosts_path) }}"
enctype: "{{ item... | ---
# Where the rubber meets the road. stuff gets done
- name: Manage ssh_known_hosts file
sshknownhosts:
host: "{{ item.name }}"
aliases: "{{ item.aliases|join(',') if item.aliases is defined else omit }}"
state: "{{ item.state|default(ssh_known_hosts_state) }}"
dest: "{{ item.path|default(ssh_known_... |
Fix branch specifier in GH Actions workflow | name: Build
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
cache: 'npm'
- run: npm ci
- run: npm ... | name: Build
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
cache: 'npm'
- run: ... |
Fix Gtest compilation in workflow | name: Routine Exam
on: [push, pull_request]
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Install gtest manually
run: sudo apt-get install libgtest-dev
&& cd /usr/src/gtest
&& CXX=g++-10 sudo cmake CMakeLists.txt
&& sudo make -j
&& sudo... | name: Routine Exam
on: [push, pull_request]
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Install gtest manually
run: sudo apt-get install libgtest-dev
&& cd /usr/src/gtest
&& CXX=g++-10 sudo cmake CMakeLists.txt
&& sudo make -j
&& sudo... |
Update the rvm install path to use /home/nick | ---
- hosts: localhost
remote_user: travis
sudo: true
vars:
rvm1_rubies:
- 'ruby-2.1.0'
- 'ruby-2.1.2'
rvm1_user: 'travis'
rvm1_group: 'audio'
rvm1_temp_download_path: '/tmp'
rvm1_install_path: '~/.rvm'
roles:
- ansible-ruby | ---
- hosts: localhost
remote_user: travis
sudo: true
vars:
rvm1_rubies:
- 'ruby-2.1.0'
- 'ruby-2.1.2'
rvm1_user: 'travis'
rvm1_group: 'audio'
rvm1_temp_download_path: '/tmp'
rvm1_install_path: '$HOME/.rvm'
roles:
- ansible-ruby |
Use different port for local query service | server.port: 9021
spring:
cloud:
config:
uri: http://localhost:8888
| server.port: 9022
spring:
cloud:
config:
uri: http://localhost:8888
|
Switch to newer ci image | pr:
- master
jobs:
- job: Windows
pool:
vmImage: windows-2019
steps:
- powershell: ./build.ps1 -Target Build
- job: Delivery
dependsOn:
- Windows
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
pool:
vmImage: windows-2019
steps:
- powershell: ./build... | pr:
- master
jobs:
- job: Windows
pool:
vmImage: windows-2022
steps:
- powershell: ./build.ps1 -Target Build
- job: Delivery
dependsOn:
- Windows
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
pool:
vmImage: windows-2022
steps:
- powershell: ./build.... |
Update from Hackage at 2017-12-20T01:39:21Z | homepage: https://github.com/SaneTracker/librato
changelog-type: ''
hash: 8efc9ff9ebb1b96a0231cb5e41f2165ce9030f6c753b91dad8cf1aa348020797
test-bench-deps: {}
maintainer: ian@iankduncan.com
synopsis: Bindings to the Librato API
changelog: ''
basic-deps:
http-client: -any
either: -any
bytestring: -any
base: <5
... | homepage: https://github.com/SaneTracker/librato
changelog-type: ''
hash: 3dfad8c6ae5d6370dfb85126aa6f80f73b3469d2dad4f7466bdcbb5b4809ad1a
test-bench-deps: {}
maintainer: ian@iankduncan.com
synopsis: Bindings to the Librato API
changelog: ''
basic-deps:
http-client: -any
either: <5
bytestring: -any
base: <5
u... |
Update from Hackage at 2015-07-28T11:38:58+0000 | homepage: http://github.com/takano-akio/fast-builder
changelog-type: ''
hash: ea807df536ba9bdbb7c9658644db16478acdff7df1bb3be4af094072ddb721ad
test-bench-deps:
fast-builder: -any
true-name: -any
bytestring: -any
stm: -any
base: -any
unordered-containers: -any
text: -any
criterion: -any
process: -any
... | homepage: http://github.com/takano-akio/fast-builder
changelog-type: ''
hash: 3b2833df832f98c31f03b19100daf8113e02938ad97feefe1ddeb8c17b93b2af
test-bench-deps:
fast-builder: -any
true-name: -any
bytestring: -any
stm: -any
base: -any
unordered-containers: -any
text: -any
criterion: -any
process: -any
... |
Add proper indentation for readbility | name: odm2adminenv
channels:
- conda-forge
dependencies:
- python=2.7
- django=1.9
- psycopg2
- pip:
- django-uuidfield
- django-ajax-selects
- django-admin-shortcuts
- djangocms-admin-style==0.2.7
- django-apptemplates
- django-daterange-filter
- django-import-export
- django-jquery | name: odm2adminenv
channels:
- conda-forge
dependencies:
- python=2.7
- django=1.9
- psycopg2
- pip:
- django-uuidfield
- django-ajax-selects
- django-admin-shortcuts
- djangocms-admin-style==0.2.7
- django-apptemplates
- django-daterange-filter
- django-import-export
- django-... |
Update config to reflect change to https | # top level stuff you probably don't need to touch
highlighter: rouge
markdown: kramdown
#rdiscount:
# extensions: [smart]
permalink: /:title
paginate: 5
gems: [jekyll-paginate]
port: 3000
safe: true
# edit here to achieve your personal greatness
url: http://hautahi.com/
description: Kia ora, I'm an economist based ... | # top level stuff you probably don't need to touch
highlighter: rouge
markdown: kramdown
#rdiscount:
# extensions: [smart]
permalink: /:title
paginate: 5
gems: [jekyll-paginate]
port: 3000
safe: true
# edit here to achieve your personal greatness
url: https://hautahi.com/
description: Kia ora, I'm an economist based... |
Change baseurl to correct host page on GitHub pages | # Site settings
title: Emerald | A simple Jekyll blog
description: "A minimal blog template, build with Jekyll."
url: "http://www.jacoporabolini.com/emerald"
author:
name: "Jacopo Rabolini"
email: "hello@jacoporabolini.com"
url: "http://www.jacoporabolini.com"
# Build settings
baseurl: /emerald/ # Change this to... | # Site settings
title: Emerald | A simple Jekyll blog
description: "A minimal blog template, build with Jekyll."
url: "http://www.jacoporabolini.com/emerald"
author:
name: "Jacopo Rabolini"
email: "hello@jacoporabolini.com"
url: "http://www.jacoporabolini.com"
# Build settings
baseurl: / # Change this to your re... |
Fix issue when uploading large files | ###############################
##### TOSCAna Properties ######
###############################
toscana:
mappings:
enable-artifact-list: true
################################
##### Spring HTTP Settings #####
################################
spring:
main:
banner-mode: "off"
# http:
# multipart:
# e... | ###############################
##### TOSCAna Properties ######
###############################
toscana:
mappings:
enable-artifact-list: true
################################
##### Spring HTTP Settings #####
################################
spring:
main:
banner-mode: "off"
http:
m... |
Remove host param in order to make d2bm v2 work | ---
declared-services:
evemongo:
label: mongodb
plan: 100
everedis:
label: rediscloud
plan: 30mb
applications:
- name: macreduce
memory: 256M
instances: 1
host: macreduce
domain: mybluemix.net
path: .
services:
- everedis
- evemongo
| ---
declared-services:
evemongo:
label: mongodb
plan: 100
everedis:
label: rediscloud
plan: 30mb
applications:
- name: macreduce
memory: 256M
instances: 1
domain: mybluemix.net
path: .
services:
- everedis
- evemongo
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.