Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Update from Hackage at 2019-02-04T06:45:46Z | homepage: https://oss.xkcd.com/
changelog-type: markdown
hash: 3da27750ad88395faf21e57ce95ddfd1648b8fb8c85626bdd4d7a5688062f484
test-bench-deps: {}
maintainer: oss@xkcd.com
synopsis: Provides instances missing from Hashable.
changelog: ! '# Revision history for hashable-orphans
## 0 -- YYYY-mm-dd
* First versi... | homepage: https://oss.xkcd.com/
changelog-type: markdown
hash: 746fed14fd792cbb4ab4d249e75ac1c1027c45daaf6d00faea208e8be1b8cf02
test-bench-deps: {}
maintainer: oss@xkcd.com
synopsis: Provides instances missing from Hashable.
changelog: |
# Revision history for hashable-orphans
## 0 -- YYYY-mm-dd
* First versio... |
Fix inspection step on CI | box: izumin5210/android:build-tools-23.0.3_target-api-23
build:
steps:
- script:
name: run gradle check
code: |
./gradlew --quiet --stacktrace --project-cache-dir=$WERCKER_CACHE_DIR -PdisablePreDex clean check
after-steps:
- script:
name: inspect build result
code:... | box: izumin5210/android:build-tools-23.0.3_target-api-23
build:
steps:
- script:
name: run gradle check
code: |
./gradlew --quiet --stacktrace --project-cache-dir=$WERCKER_CACHE_DIR -PdisablePreDex clean check
after-steps:
- script:
name: inspect build result
code:... |
Add infiksi as a dependent service | mirigata_db:
image: mysql:5.6
ports:
- ":3306"
env_file:
- passwords.env
environment:
MYSQL_DATABASE: mirigata_db
MYSQL_USER: mirigata
mirigata:
build: .
links:
- mirigata_db
ports:
- "80:8000"
environment:
DISCOVERY_MODE: env
SECRET_KEY: hmza=$)j(tuainnvk415z*fwj^4#)*+!... | mirigata_db:
image: mysql:5.6
ports:
- ":3306"
env_file:
- passwords.env
environment:
MYSQL_DATABASE: mirigata_db
MYSQL_USER: mirigata
infiksi:
image: mirigata/infiksi
ports:
- ":8080"
mirigata:
build: .
links:
- mirigata_db
- infiksi
ports:
- "80:8000"
environment:... |
Add stanza to ansible to run migrations | - name: Make a database dump to /tmp just in case
mysql_db:
state: dump
login_host: cdh-db.princeton.edu
name: "{{ db_name }}"
target: "{{backup_location}}"
- name: check for old symlink
command: "ls /var/www/{{ symlink }}"
register: result
ignore_errors: True
check_mode: no
- name: Copy old s... | - name: Make a database dump to /tmp just in case
mysql_db:
state: dump
login_host: cdh-db.princeton.edu
name: "{{ db_name }}"
target: "{{backup_location}}"
- name: Run database migrations
django_manage:
command: migrate
app_path: "{{ deploy }}"
virtualenv: "{{ deploy }}/env"
- name: che... |
Remove whitespace, force CI build | name: MacOS Homebrew Build
on: [push]
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Install
run: brew update; brew tap cyclone-scheme/cyclone ; brew -v install cyclone-scheme/cyclone/cyclone-bootstrap
- name: test
run: cyclone unit-tests.scm ; ./uni... | name: MacOS Homebrew Build
on: [push]
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Install
run: brew update; brew tap cyclone-scheme/cyclone ; brew -v install cyclone-scheme/cyclone/cyclone-bootstrap
- name: test
run: cyclone unit-tests.scm ; ./uni... |
Exclude node_modules of directories to check | AllCops:
RunRailsCops: true
Exclude:
- 'db/**/*'
- 'config/**/*'
- 'script/**/*'
- 'lib/**/*'
- 'bin/**/*'
Metrics/ClassLength:
CountComments: false
Max: 99999
Metrics/MethodLength:
CountComments: false
Max: 99999
Metrics/LineLength:
Max: 99999
Metrics/AbcSize:
Max: 99999 | AllCops:
RunRailsCops: true
Exclude:
- 'db/**/*'
- 'config/**/*'
- 'script/**/*'
- 'lib/**/*'
- 'bin/**/*'
- 'node_modules/**/*'
Metrics/ClassLength:
CountComments: false
Max: 99999
Metrics/MethodLength:
CountComments: false
Max: 99999
Metrics/LineLength:
Max: 99999
Metrics/AbcSize... |
Allow the experimental trigger of the integrated repo | ---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | ---
# Copyright 2017, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... |
Add build step to CI script | version: 2.1
orbs:
node: circleci/node@1.1.6
jobs:
build-and-test:
executor:
name: node/default
tag: '12-browsers'
steps:
- checkout
- node/with-cache:
steps:
- run: npm install
- run: npm run lint -- auth0-angular
- run: npm run test-ci
... | version: 2.1
orbs:
node: circleci/node@1.1.6
jobs:
build-and-test:
executor:
name: node/default
tag: '12-browsers'
steps:
- checkout
- node/with-cache:
steps:
- run: npm install
- run: npm run lint -- auth0-angular
- run: npm run build
... |
Remove caching in circleci job. | version: 2
workflows:
version: 2
eb-sqs-jobs:
jobs:
- test-python-3
- test-python-2
jobs:
test-python-3:
docker:
- image: circleci/python:3.5-jessie
steps:
- add_ssh_keys
- checkout
- run:
name: Install dependencies
command: sudo pip install... | version: 2
workflows:
version: 2
eb-sqs-jobs:
jobs:
- test-python-3
- test-python-2
- test-python-3-6
jobs:
test-python-3: &test-template
docker:
- image: circleci/python:3.5-jessie
steps:
- add_ssh_keys
- checkout
- run:
name: Install dependen... |
Remove CircleCI caches keyed from package-lock.json | version: 2
jobs:
build:
working_directory: ~/react-webpack-skeleton
docker:
- image: phryg1an/circleci-node:8.1.4
steps:
- checkout
- restore_cache:
keys:
- v1-{{ checksum ".nvmrc" }}-yarn-lock-{{ checksum "yarn.lock" }}
- v1-{{ checksum ".nvmrc" }}-npm-... | version: 2
jobs:
build:
working_directory: ~/react-webpack-skeleton
docker:
- image: phryg1an/circleci-node:8.1.4
steps:
- checkout
- restore_cache:
keys:
- v1-{{ checksum ".nvmrc" }}-yarn-lock-{{ checksum "yarn.lock" }}
- v1-{{ checksum ".nvmrc" }}-npm-... |
Use updated Wercker box with PHP 7.2. | box: dosomething/ds-docker-php
services:
- redis
build:
# The steps that will be executed on build
steps:
- script:
name: start mongodb
code: |-
sudo /usr/bin/mongod --quiet --config /etc/mongod.conf --fork --logpath /var/log/mongod.log
- leipert/composer-install@0.9.1
- np... | box: dosomething/ds-docker-php:7.2
services:
- redis
build:
# The steps that will be executed on build
steps:
- script:
name: start mongodb
code: |-
sudo /usr/bin/mongod --quiet --config /etc/mongod.conf --fork --logpath /var/log/mongod.log
- leipert/composer-install@0.9.1
... |
Remove old settings from default config | # SETTINGS
#
backends: [
{ type: "simple", alias: "Simple", settings: { url: "http://localhost:4567"}}
]
origins:
"Simple": {
store: "Simple",
source: "Source",
title: "Simple",
store_settings: {
url: "http://local... | origins:
"Simple": {
store: "Simple",
source: "Source",
title: "Simple",
store_settings: {
url: "http://localhost:4567",
}
}
|
Fix up Test Kitchen syntax | ---
driver:
name: vagrant
platforms:
<% %w(11.8.2).each do |chef_version| %>
- name: ubuntu-12.04
driver_config:
box: opscode_ubuntu-12.04
require_chef_omnibus: <%= chef_version %>
- name: centos-6.4
- name: centos-6.5
<% end %>
suites:
- name: default
run_list:
- recipe[apt::defa... | ---
driver:
name: vagrant
require_chef_omnibus: 11.8
platforms:
- name: ubuntu-12.04
- name: centos-6.4
- name: centos-6.5
suites:
- name: default
run_list:
- recipe[apt::default]
- recipe[zookeeper::default]
attributes:
|
Adjust RuboCop config to allow for vertically aligned attributes | Documentation:
Enabled: false
# Disable encoding requirement
Encoding:
Enabled: false
# The default 79 character limit is sometimes unproductive.
LineLength:
Max: 100
# The default 10 lines limit is unrealistic.
MethodLength:
Max: 50
CyclomaticComplexity:
Max: 10
SingleSpaceBeforeFirstArg:
Exclude:
... | Documentation:
Enabled: false
# Disable encoding requirement
Encoding:
Enabled: false
# The default 79 character limit is sometimes unproductive.
LineLength:
Max: 100
# The default 10 lines limit is unrealistic.
MethodLength:
Max: 50
CyclomaticComplexity:
Max: 10
# Advantageous for readability to line up... |
Fix the Java version to use the correct version | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: $... | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: $... |
Update from Hackage at 2022-02-24T10:40:05Z | homepage: https://gitlab.com/tonymorris/spacechar
changelog-type: markdown
hash: 94653d82ff21239c690e3b4eee4b77ebd567613bb612de5dd4376318ae5ac4ba
test-bench-deps: {}
maintainer: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
synopsis: Space Character
changelog: |
0.0.0.1
* The initial version of spacechar.
basic-deps:
base: ... | homepage: https://gitlab.com/tonymorris/spacechar
changelog-type: markdown
hash: f0862e6f43ce7d6cec32b2bb2d2d9435087a317ba0c8631a894f6c1382f78eeb
test-bench-deps: {}
maintainer: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
synopsis: Space Character
changelog: |
0.0.0.2
* Export list and haddock documentation.
0.0.0.1
*... |
Add fabric in python tools. | ---
- name: Update source.list
copy: src=source.list dest=/etc/apt/source.list
- name: Update packages
apt: update_cache=yes cache_valid_time=3600 upgrade=dist
- name: Install core packages
apt: name={{ item }} state=present
with_items:
- build-essential
- vim
- git-core
- name: Install python to... | ---
- name: Update source.list
copy: src=source.list dest=/etc/apt/source.list
- name: Update packages
apt: update_cache=yes cache_valid_time=3600 upgrade=dist
- name: Install core packages
apt: name={{ item }} state=present
with_items:
- build-essential
- vim
- git-core
- name: Install python to... |
Build fix missing environment variable. | machine:
pre:
- curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0
services:
- docker
dependencies:
override:
- docker version
- docker info
- scripts/buildSupportedImages.sh
test:
override:
- scripts/testImage.sh latest 8090
- scrip... | machine:
pre:
- curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0
services:
- docker
dependencies:
override:
- docker version
- docker info
- export TEST_JENKINS_VERSION=1.647
- export TEST_JENKINS_STABLE_VERSION=1.642.1
- scripts/buil... |
Add ext-intl to Wercker build. | box: dosomething/ds-docker-php
build:
steps:
- leipert/composer-install@0.9.1
- wercker/npm-install
- script:
name: build assets
code: npm run build
| box: dosomething/ds-docker-php
build:
steps:
- script:
name: install php extension
code: |-
sudo apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y php7.0-intl
- leipert/composer-install@0.9.1
- wercker/npm-install
- script:
... |
Disable frozen string literal comment cop | # The behavior of RuboCop can be controlled via the .rubocop.yml
# configuration file. It makes it possible to enable/disable
# certain cops (checks) and to alter their behavior if they accept
# any parameters. The file can be placed either in your home
# directory or in some project directory.
#
# RuboCop will start l... | # The behavior of RuboCop can be controlled via the .rubocop.yml
# configuration file. It makes it possible to enable/disable
# certain cops (checks) and to alter their behavior if they accept
# any parameters. The file can be placed either in your home
# directory or in some project directory.
#
# RuboCop will start l... |
Add external secret for knative build cluster | apiVersion: kubernetes-client.io/v1
kind: ExternalSecret
metadata:
name: s390x-cluster1
namespace: test-pods
spec:
backendType: gcpSecretsManager
projectId: s390x-knative
data:
- key: kubeconfig
name: config
version: latest
- key: ko-docker-repository
name: ko-docker-repo
version: latest
... | apiVersion: kubernetes-client.io/v1
kind: ExternalSecret
metadata:
name: s390x-cluster1
namespace: test-pods
spec:
backendType: gcpSecretsManager
projectId: s390x-knative
data:
- key: kubeconfig
name: config
version: latest
- key: ko-docker-repository
name: ko-docker-repo
version: latest
... |
Switch carbon image to a working graphite | version: '2'
services:
local_webserver:
build: ..
entrypoint: ./bin/webserver_with_carbon
ports:
- "3000:3000"
expose:
- "9090"
links:
- carbon_graphite
carbon_graphite:
image: rvernica/graphite
ports:
- "8080:8080"
expose:
- "2003"
| version: '2'
services:
local_webserver:
build: ..
entrypoint: ./bin/webserver_with_carbon
ports:
- "3000:3000"
expose:
- "9090"
links:
- carbon_graphite
carbon_graphite:
image: nickstenning/graphite
ports:
- "8080:80"
expose:
- "2003"
- "2004... |
Add cron task to restart Celery every day | ---
- name: Configure Celery service definition
template: src=celeryd.j2
dest=/etc/init.d/celeryd
mode=0755
notify:
- Restart Celery
- name: Configure Celery service definition defaults
template: src=celeryd-defaults.j2 dest=/etc/default/celeryd
notify:
- Restart Celery
- name:... | ---
- name: Configure Celery service definition
template: src=celeryd.j2
dest=/etc/init.d/celeryd
mode=0755
notify:
- Restart Celery
- name: Configure Celery service definition defaults
template: src=celeryd-defaults.j2 dest=/etc/default/celeryd
notify:
- Restart Celery
- name:... |
Use Ansible's pip module rather than calling pip which may or may not be within the venv | ---
- name: horizon venv
shell: cd /opt/stack/horizon && python tools/install_venv.py
notify:
- force django-1.5
# django 1.6 currently gets installed, and does not work.
- name: force django-1.5
shell: /opt/stack/horizon/.venv/bin/pip install Django==1.5.5
notify:
- restart apache
- name: disable apa... | ---
- name: horizon venv
shell: cd /opt/stack/horizon && python tools/install_venv.py
notify:
- force django-1.5
# django 1.6 currently gets installed, and does not work.
- name: force django-1.5
pip: name=Django version=1.5.5 chdir=/opt/stack/horizon virtualenv=/opt/stack/horizon/.venv
notify:
- resta... |
Update from Hackage at 2017-03-13T14:24:35Z | homepage: http://github.com/bgamari/hmatrix-svdlibc
changelog-type: ''
hash: 82919d8f5c9fc2047c3280a91d58127212a4ff12367e2cbfb1eec48d2371b3ae
test-bench-deps:
base: ! '>=4.6 && <5.0'
hspec: ! '>=2.2'
criterion: ! '>=1.1'
hmatrix-svdlibc: -any
QuickCheck: ! '>=2.8'
hmatrix: ==0.17.*
vector: ! '>=0.11'
main... | homepage: http://github.com/bgamari/hmatrix-svdlibc
changelog-type: ''
hash: 15274b2c128d87a7e6c03d7861bb1f9bcb7e71569a018c6629bec494972590e3
test-bench-deps:
base: ! '>=4.6 && <5.0'
hspec: ! '>=2.2'
criterion: ! '>=1.1'
hmatrix-svdlibc: -any
QuickCheck: ! '>=2.8'
hmatrix: ! '>=0.17 && <0.19'
vector: ! '>... |
Update from Hackage at 2021-02-03T10:39:11Z | homepage: http://www.github.com/ehamberg/fswatcher/
changelog-type: ''
hash: 90a9056bbd346acde16b2c8ba9f7fced0e02db63f4788c5efc543c8551b7ed34
test-bench-deps: {}
maintainer: ehamberg@gmail.com
synopsis: Watch a file/directory and run a command when it's modified
changelog: ''
basic-deps:
unix: ! '>=2.5'
base: ! '>=... | homepage: http://www.github.com/ehamberg/fswatcher/
changelog-type: ''
hash: 8285649abdba28a09a802bd3d48c76d44a50d6526271f98f595418407cf88e4c
test-bench-deps: {}
maintainer: erlend@hamberg.no
synopsis: Watch a file/directory and run a command when it's modified
changelog: ''
basic-deps:
unix: '>=2.5'
base: '>=4 && ... |
Tweak Ruby version in GitHub action config | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... |
Change handles of player fixtures for clarity | player1:
handle: "kieran"
game: playing_game
player2:
handle: "mitch"
game: playing_game
player3:
handle: "pragya"
game: playing_game
player4:
handle: "mikee"
game: playing_game | --- !omap
- player1:
id: 1
handle: "player 1"
game: playing_game
- player2:
id: 2
handle: "player 2"
game: playing_game
- player3:
id: 3
handle: "player 3"
game: playing_game
- player4:
id: 4
handle: "player 4"
game: playing_game |
Add fixture case with json body response | ---
- :request:
:method: GET
:path: /hello.json
:query: ""
:body: ""
:response:
:method: GET
:path: /hello.json
:status: 200
:headers:
Content-Type: application/json; charset=utf-8
:body: 'world'
- :request:
:method: GET
:path: /query.json
:query: "with=param... | ---
- :request:
:method: GET
:path: /hello.json
:query: ""
:body: ""
:response:
:method: GET
:path: /hello.json
:status: 200
:headers:
Content-Type: application/json; charset=utf-8
:body: 'world'
- :request:
:method: GET
:path: /query.json
:query: "with=param... |
Fix this broken config file that was probably doing something really weird | stone_plate:
worth: 0.6
wood_plate:
worth: 0.6
wood_button:
worth: 0.4
stone_button:
worth: 0.4
lever:
worth: 0.8
trap_door:
worth: 2
redstone_torch_on:
worth: 3
tripwire_hook:
worth: 1
redstone:
worth: 1
redstone_block:
worth: 9
redstone_lamp_off:
worth: 5
daylight_detector:
worth: 3
dropper... | stone_plate:
worth: 0.6
wood_plate:
worth: 0.6
wood_button:
worth: 0.4
stone_button:
worth: 0.4
lever:
worth: 0.8
trap_door:
worth: 2
redstone_torch_on:
worth: 3
tripwire_hook:
worth: 1
redstone:
worth: 1
redstone_block:
worth: 9
redstone_lamp_off:
worth: 5
daylight_detector:
worth: 3
dropper:
... |
Delete the removed option for Homebrew casks | ---
- name: Ensure docker-related packages are installed.
homebrew:
name: ["docker", "docker-machine", "docker-compose"]
state: present
- name: Ensure docker-related applications are installed.
homebrew_cask:
name: ["virtualbox", "kitematic"]
state: present
environment:
HOMEBREW_CASK_OPTS: "-... | ---
- name: Ensure docker-related packages are installed.
homebrew:
name: ["docker", "docker-machine", "docker-compose"]
state: present
- name: Ensure docker-related applications are installed.
homebrew_cask:
name: ["virtualbox", "kitematic"]
state: present
environment:
HOMEBREW_CASK_OPTS: "-... |
Update CI workflow to trigger deploy to integration | name: Build and publish to ECR
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-publish-image-to-ecr:
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_GOVUK_ECR... | name: CI
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
build-and-publish-image:
name: Build and publish image
uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main
secrets:
AWS_... |
Update from Hackage at 2020-04-24T21:34:15Z | homepage: ''
changelog-type: ''
hash: 4d2038d32bc5b7614a6956001aef109d3104fd1a0531c94f625ef0e55efa5f79
test-bench-deps: {}
maintainer: mniip@mniip.com
synopsis: A hack to use GHC.Prim primitives in GHCi
changelog: ''
basic-deps:
base: ==4.*
ghc-prim: -any
all-versions:
- 0.1.0.0
- 0.1.1.0
- 0.2.0.0
- 0.2.0.1
- 0.2.... | homepage: ''
changelog-type: ''
hash: 4d2038d32bc5b7614a6956001aef109d3104fd1a0531c94f625ef0e55efa5f79
test-bench-deps: {}
maintainer: mniip@mniip.com
synopsis: A hack to use GHC.Prim primitives in GHCi
changelog: ''
basic-deps:
base: ==4.*
ghc-prim: -any
all-versions:
- 0.1.0.0
- 0.1.1.0
- 0.2.0.1
- 0.2.0.2
author... |
Add preview error route to dev firewall | security:
providers:
in_memory:
memory: ~
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
default:
anonymous: ~
| security:
providers:
in_memory:
memory: ~
firewalls:
dev:
pattern: ^/(_(profiler|wdt|error)|css|images|js)/
security: false
default:
anonymous: ~
|
Add back deployment to GitHub release. | version: 0.0.0.{build}
shallow_clone: true
init:
- ps: if ($env:APPVEYOR_REPO_TAG_NAME) { Update-AppveyorBuild -Version $env:APPVEYOR_REPO_TAG_NAME.Substring(1) }
platform:
- Any CPU
configuration:
- Release
matrix:
fast_finish: true
assembly_info:
patch: true
file: AssemblyInfo.cs
assembly_version:... | version: 0.0.0.{build}
shallow_clone: true
init:
- ps: if ($env:APPVEYOR_REPO_TAG_NAME) { Update-AppveyorBuild -Version $env:APPVEYOR_REPO_TAG_NAME.Substring(1) }
platform:
- Any CPU
configuration:
- Release
matrix:
fast_finish: true
assembly_info:
patch: true
file: AssemblyInfo.cs
assembly_version:... |
Deploy built artifacts to s3 bucket | language: objective-c
osx_image: xcode8.3
xcode_project: BridgeAppSDK.xcodeproj
xcode_scheme: BridgeAppSDKSample
cache:
- bundler
before_install:
- bundle update
- echo -e "machine github.com\n login $CI_USER_TOKEN" >> ~/.netrc
script:
- ./travis/build.sh
| language: objective-c
osx_image: xcode8.3
xcode_project: BridgeAppSDK.xcodeproj
xcode_scheme: BridgeAppSDKSample
cache:
- bundler
before_install:
- bundle update
- echo -e "machine github.com\n login $CI_USER_TOKEN" >> ~/.netrc
script:
- "./travis/build.sh"
deploy:
skip_cleanup: true
provider: s3
access_key_id: ... |
Enable tests on linux, osx and windows | language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- pypy
install:
- pip install coveralls
- pip install tox
script:
coverage run --source=untangle ./setup.py test
after_success:
coveralls
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/4e8e4267e... | language: python
os:
- linux
- windows
- osx
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- pypy
install:
- pip install coveralls
- pip install tox
script:
coverage run --source=untangle ./setup.py test
after_success:
coveralls
notifications:
webhooks:
urls:
... |
ADD pod lib lint --quick | language: objective-c
notifications:
slack: devlucky:0AP12qjjfc2Zxc0s9yo1cQQm
env:
global:
- FASTLANE_LANE=ci_commit
matrix:
include:
- osx_image: xcode7.3
env: FASTLANE_ENV=ios83
- osx_image: xcode7.3
env: FASTLANE_ENV=ios93 KKP_CODECOV=true
after_success:
- bash <(curl -... | language: objective-c
notifications:
slack: devlucky:0AP12qjjfc2Zxc0s9yo1cQQm
env:
global:
- FASTLANE_LANE=ci_commit
matrix:
include:
- osx_image: xcode7.3
env: FASTLANE_ENV=ios83
- osx_image: xcode7.3
env: FASTLANE_ENV=ios93 KKP_CODECOV=true
after_success:
- bash <(curl -... |
Fix docker command in script | sudo: required
services:
- docker
language: node_js
node_js:
- "6"
env:
global:
- SERVER_TEST_IMG=entake/acuity-server:build-$TRAVIS_JOB_NUMBER
- SERVER_RELEASE_IMG=entake/acuity-server:latest
before_install:
- docker login -u $DOCKER_HUB_USER -p $DOCKER_HUB_PASSWORD
install:
- docker build -... | sudo: required
services:
- docker
language: node_js
node_js:
- "6"
env:
global:
- SERVER_TEST_IMG=entake/acuity-server:build-$TRAVIS_JOB_NUMBER
- SERVER_RELEASE_IMG=entake/acuity-server:latest
before_install:
- docker login -u $DOCKER_HUB_USER -p $DOCKER_HUB_PASSWORD
install:
- docker build -... |
Test on Travis CI with JDK 8. | language: clojure
lein: lein2
script:
- lein2 midje
- lein2 eastwood
branches:
only:
- master
- dev
jdk:
- oraclejdk7
services:
- redis
notifications:
hipchat:
rooms:
- ec1ead2b384476ea5bcb232b5bb9b6@Snooty Monkey | language: clojure
lein: lein2
script:
- lein2 midje
- lein2 eastwood
branches:
only:
- master
- dev
jdk:
- oraclejdk8
services:
- redis
notifications:
hipchat:
rooms:
- ec1ead2b384476ea5bcb232b5bb9b6@Snooty Monkey |
Add Python 3.5 to Travis CI | ---
sudo: false
dist: xenial
language: python
cache: pip
branches:
only:
- master
addons:
apt:
packages:
- p7zip-full
before_script:
- pip install tox
script: tox
notifications:
email: false
matrix:
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.6"
env: TOXE... | ---
sudo: false
dist: xenial
language: python
cache: pip
branches:
only:
- master
addons:
apt:
packages:
- p7zip-full
before_script:
- pip install tox
script: tox
notifications:
email: false
matrix:
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXE... |
Allow Homebrew to update itself in macOS builds | branches:
except:
- appveyor
language: cpp
addons:
apt:
packages:
- libusb-1.0-0-dev
- libftdi-dev
matrix:
include:
# macOS 10.14 and Xcode 11.2.1
- os: osx
osx_image: xcode11.2
# macOS 10.15.5 and Xcode 12.0
- os: osx
osx_image: xcode12
# Ubuntu LTS, gcc, x64
... | branches:
except:
- appveyor
language: cpp
addons:
apt:
packages:
- libusb-1.0-0-dev
- libftdi-dev
matrix:
include:
# macOS 10.14 and Xcode 11.2.1
- os: osx
osx_image: xcode11.2
# macOS 10.15.5 and Xcode 12.0
- os: osx
osx_image: xcode12
# Ubuntu LTS, gcc, x64
... |
Add Ruby 2.5 to Travis build matrix | language: ruby
rvm:
- 2.3
- 2.4
- ruby-head
- jruby-9.1.13.0
- jruby-head
before_install: gem install bundler
script: bundle exec rspec
| language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- ruby-head
- jruby-9.1.13.0
- jruby-head
before_install: gem install bundler
script: bundle exec rspec
|
Encrypt my PyPI password in the Travis CI config. | language: python
env:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
install:
- pip install .
script:
- py.test tests
deploy:
provider: pypi
user: kalekundert
on:
tags: true
| language: python
env:
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- nightly
install:
- pip install .
script:
- py.test tests
deploy:
provider: pypi
user: kalekundert
password:
secure: cDuG5VAtB8056/vZhiEp24P9hzbs+wP++e6GYqfkPuUoc7OYTTTdBmvSyBM6jQgUrrBnZ+IKaSyk1cTDUjyXYOItCkiYeFdrDghhR0wY9y48TfHViX7pTFICi9CkvxtUyai2NAbJqt... |
Install Devel::Cover 1.23 for 5.8 support | sudo: false
language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet -... | sudo: false
language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet -... |
Replace Java 15 with Java 16 in Travis CI. | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not ... |
Install dev environment from conda | language: python
python:
- '2.6'
- '2.7'
- '3.5'
install:
- pip install --upgrade pytest coverage codecov
- pip install -r requirements.txt
script:
- coverage run --source dmpr -m py.test
after_success:
- codecov
# deploy:
# provider: pypi
# user:
# password:
# secure:
# on:
# ... | language: python
python:
- '2.7'
- '3.5'
install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O minico... |
Allow nightly Python to fail | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "nightly"
- "pypy"
install: make deps
script: make
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "nightly"
- "pypy"
install: make deps
script: make
matrix:
allow_failures:
- python: "nightly"
|
Use CMS recipe in Travis configuration | language: php
env:
global:
- COMPOSER_ROOT_VERSION=4.0.x-dev
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv co... | language: php
env:
global:
- COMPOSER_ROOT_VERSION=4.0.x-dev
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv co... |
Create new CF space for Slack applications | language: python
python:
- '3.5'
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=halliwell setup.py test
after_success: coveralls
deploy:
- provider: cloudfoundry
edge: true
api: https://api.run.pez.pivotal.io
username: $CF_USERNAME
password: $CF_PASS... | language: python
python:
- '3.5'
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=halliwell setup.py test
after_success: coveralls
deploy:
- provider: cloudfoundry
edge: true
api: https://api.run.pez.pivotal.io
username: $CF_USERNAME
password: $CF_PASS... |
Drop Ruby 2.4 dut to EoL on AppVeyor | ---
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem install bundler --no-document -f
- bundle install
build: off
test_script:
- bundle exec rake test
deploy: off
environment:
matrix:
- ruby_version: "24"
- ruby_version: "24-x64"
- ruby_version: "25"
- ruby_version: "25-x64"
- ru... | ---
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem install bundler --no-document -f
- bundle install
build: off
test_script:
- bundle exec rake test
deploy: off
environment:
matrix:
- ruby_version: "25"
- ruby_version: "25-x64"
- ruby_version: "26"
- ruby_version: "26-x64"
- ru... |
Enable Git symlinks on AppVeyor | environment:
matrix:
- nodejs_version: '6'
- nodejs_version: '4'
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- set AVA_APPVEYOR=true
- npm install --global npm
- set PATH=%APPDATA%\npm;%PATH%
- npm install
- npm prune
matrix:
fast_finish: true
build: off
shallow_clone... | environment:
matrix:
- nodejs_version: '6'
- nodejs_version: '4'
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- set AVA_APPVEYOR=true
- git config core.symlinks true
- git reset --hard
- npm install --global npm
- set PATH=%APPDATA%\npm;%PATH%
- npm install
- npm pru... |
Use correct DNX runtime and architecture during build | version: 1.0.{build}
branches:
only:
- development/r1.0
- release/r1.0
image: Visual Studio 2015
install:
- cmd: >-
set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
dnvm install 1.0.0-rc1-update1 -r coreclr -arch x64
cache: C:\Users\appveyor\.dnx\packages
build_script:
- cmd: >-
dnvm use 1.0.0... | version: 1.0.{build}
branches:
only:
- development/r1.0
- release/r1.0
image: Visual Studio 2015
install:
- cmd: >-
set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
dnvm install 1.0.0-rc1-update1 -r coreclr -arch x64
cache: C:\Users\appveyor\.dnx\packages
build_script:
- cmd: >-
dnvm use 1.0.0... |
Update NuGet API key due to old key expiring | version: 0.8.{build}
branches:
only:
- master
pull_requests:
do_not_increment_build_number: true
install:
- nuget install secure-file -ExcludeVersion
- ps: .\build\decrypt-snk.ps1
- ps: .\build\install.ps1
build_script:
- ps: .\build\build.ps1 $env:APPVEYOR_BUILD_VERSION $env:APPVEYOR_REPO_TAG_NAME
test_scr... | version: 0.8.{build}
branches:
only:
- master
pull_requests:
do_not_increment_build_number: true
install:
- nuget install secure-file -ExcludeVersion
- ps: .\build\decrypt-snk.ps1
- ps: .\build\install.ps1
build_script:
- ps: .\build\build.ps1 $env:APPVEYOR_BUILD_VERSION $env:APPVEYOR_REPO_TAG_NAME
test_scr... |
Remove index-level settings from ES 5.x config | cluster.name: graylog_test
node.master: true
node.data: true
index.number_of_shards: 1
index.number_of_replicas: 0
network.host: _local:ipv4_
| cluster.name: graylog_test
node.master: true
node.data: true
network.host: _local:ipv4_
|
Move build target to 3.8, add job for 3.7 | version: 2.1
commands:
commonsteps:
steps:
- checkout
- run: |
pip install .[dev]
tox -e py
jobs:
build_target:
docker:
- image: python:3.7
steps:
- checkout
- run: |
python setup.py sdist
python setup.py bdist_wheel
pip ins... | version: 2.1
commands:
commonsteps:
steps:
- checkout
- run: |
pip install .[dev]
tox -e py
jobs:
build_target:
docker:
- image: python:3.8
steps:
- checkout
- run: |
python setup.py sdist
python setup.py bdist_wheel
pip ins... |
Add more optional inputs for finalizing buildpacks | ---
platform: linux
image_resource:
type: docker-image
source:
repository: cfbuildpacks/ci
inputs:
- name: buildpacks-ci
- name: buildpack
- name: pivotal-buildpacks-stack0
- name: pivotal-buildpacks-stack1
optional: true
outputs:
- name: buildpack-artifacts
run:
path: bash
args:
- -cl
... | ---
platform: linux
image_resource:
type: docker-image
source:
repository: cfbuildpacks/ci
inputs:
- name: buildpacks-ci
- name: buildpack
- name: pivotal-buildpacks-stack0
- name: pivotal-buildpacks-stack1
optional: true
- name: pivotal-buildpacks-stack2
optional: true
- name: pivotal-build... |
Revert "test/full: temporary disable falco on gpg key repository issue" | ---
- hosts: all
#- hosts: test-kitchen
vars:
# - harden_upgradeall: true
- harden_upgradeall: false
- harden_auditd_log_all_execve: true
- harden_auditd_log_all_socket: true
- harden_auditd_log_all_connect: true
- harden_testing: true
- ipv6_config: 'harden'
roles:
- juju4.redhat_ep... | ---
- hosts: all
#- hosts: test-kitchen
vars:
# - harden_upgradeall: true
- harden_upgradeall: false
- harden_auditd_log_all_execve: true
- harden_auditd_log_all_socket: true
- harden_auditd_log_all_connect: true
- harden_testing: true
- ipv6_config: 'harden'
roles:
- juju4.redhat_ep... |
Fix for vagrant vm installing things out of order | ---
# Update apt-cache and install the latest Miniconda
- hosts: all
sudo: yes
tasks:
- name: Update apt cache
apt: update-cache=yes
roles:
- miniconda
# Install kafka, zookeeper, redis
- include: kafka.yml
- include: zookeeper.yml
- include: redis.yml
# Restart Kafka because its finicky like that... | ---
# Update apt-cache and install the latest Miniconda
- hosts: all
sudo: yes
tasks:
- name: Update apt cache
apt: update-cache=yes
roles:
- miniconda
# Install kafka, zookeeper, redis
- include: zookeeper.yml
- include: kafka.yml
- include: redis.yml
|
Remove sudo from Travis config | sudo: required
dist: trusty
addons:
code_climate:
repo_token: e87e6bf1c253e0555437ebd23235fdfe2749b889358e7c6d100e4ea5b4f2e091
language: node_js
node_js:
- "8"
before_script:
- yarn build
script:
- yarn test
after_script:
- cat coverage/lcov.info | codeclimate
| dist: trusty
language: node_js
node_js:
- "8"
addons:
code_climate:
repo_token: e87e6bf1c253e0555437ebd23235fdfe2749b889358e7c6d100e4ea5b4f2e091
before_script:
- yarn build
script:
- yarn test
after_script:
- cat coverage/lcov.info | codeclimate
|
Remove support for PHP 5.5.9 | language: php
php:
- 5.5.9
- 5.6
install:
- composer self-update
before_script:
- cp .env.travis .env
- cp travis.phpunit.xml phpunit.xml
- mkdir /tmp/timegrid
- mysql -e 'create database test_timegrid;'
- composer install --dev --no-interaction
- php artisan key:generate
- php artisan migrate
... | language: php
php:
- 5.6
install:
- composer self-update
before_script:
- cp .env.travis .env
- cp travis.phpunit.xml phpunit.xml
- mkdir /tmp/timegrid
- mysql -e 'create database test_timegrid;'
- composer install --dev --no-interaction
- php artisan key:generate
- php artisan migrate
- php arti... |
Test against Django 1.5.5 as well. | language: python
python:
- "2.7"
env:
- DJANGO_VERSION=1.6.1
install:
- pip install -q flake8
- pip install -q Django==$DJANGO_VERSION
- python setup.py -q install
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- pybot test.robot
- flake8 .
| language: python
python:
- "2.7"
env:
- DJANGO_VERSION=1.5.5
- DJANGO_VERSION=1.6.1
install:
- pip install -q flake8
- pip install -q Django==$DJANGO_VERSION
- python setup.py -q install
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- pybot test.robot
- flake8 .
|
Set postgres as a service | language: ruby
sudo: false
rvm:
- 2.3.3
env:
- DB=postgresql
before_script:
- psql -c 'create database "github-inbox_test";' -U postgres
bundler_args: --without development production --deployment --jobs=3 --retry=3
cache: bundler
notifications:
email: false
| language: ruby
sudo: false
rvm:
- 2.3.3
services:
- postgresql
before_script:
- psql -c 'create database "github-inbox_test";' -U postgres
bundler_args: --without development production --deployment --jobs=3 --retry=3
cache: bundler
notifications:
email: false
|
Add Node.js stable to Travis config | sudo: false
language: node_js
node_js:
- iojs
- "0.12"
| sudo: false
language: node_js
node_js:
- iojs
- "0.12"
- "stable"
|
Reconfigure build matrix for Scala 2.11 | language: scala
scala:
- 2.11.8
- 2.12.1
jdk:
- oraclejdk8
before_install:
- if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then bash
scripts/decrypt-keys.sh; fi
- export PATH=${PATH}:./vendor/bundle
install:
- rvm use 2.2.3 --install --fuzzy
- gem update --system
- gem install sass
- gem ins... | language: scala
before_install:
- if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then bash
scripts/decrypt-keys.sh; fi
- export PATH=${PATH}:./vendor/bundle
install:
- rvm use 2.2.3 --install --fuzzy
- gem update --system
- gem install sass
- gem install jekyll -v 3.2.1
after_success:
- if... |
Drop support for Node.js 0.10, 0.12 et 4 | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
after_success:
- npm run coverage
- npm i codecov
- codecov -f ./coverage/lcov.info
notifications:
email:
on_success: never
| language: node_js
sudo: false
node_js:
- "6"
after_success:
- npm run coverage
- npm i codecov
- codecov -f ./coverage/lcov.info
notifications:
email:
on_success: never
|
Update Travis CI to Focal Fossa Ubuntu 20.04 | notifications:
email: false
git:
depth: 1
language: c
matrix:
include:
- name: "macOS 10.15.5"
os: osx
osx_image: xcode12
- name: "Ubuntu 18.04"
os: linux
dist: bionic
script:
- ./scripts/test.sh -v v1.1
| notifications:
email: false
git:
depth: 1
language: c
matrix:
include:
- name: "macOS 10.15.5"
os: osx
osx_image: xcode12
- name: "Ubuntu 20.04"
os: linux
dist: focal
script:
- ./scripts/test.sh -v v1.1
|
Remove notifications branch from Travis. | rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- dev
- notifications
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
| rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- dev
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
|
Enable build config validation in Travis CI. | os:
- linux
- osx
language: nix
cache:
directories:
- "/nix/store"
- "$HOME/.cabal/store"
timeout: 600
before_install:
- nix-shell --run true
install:
- nix-shell --run 'cabal v2-update'
script:
- nix-shell --run 'make test'
- nix-shell --run 'make lint'
before_deploy:
- nix-shell --run ... | version: ~> 1.0
os:
- linux
- osx
language: nix
cache:
directories:
- "/nix/store"
- "$HOME/.cabal/store"
timeout: 600
before_install:
- nix-shell --run true
install:
- nix-shell --run 'cabal v2-update'
script:
- nix-shell --run 'make test'
- nix-shell --run 'make lint'
before_deploy:
-... |
Remove Oracle JDK 6 from CI | language: java
jdk:
- oraclejdk6
- oraclejdk7
- oraclejdk8
script: mvn clean verify
| language: java
jdk:
- oraclejdk7
- oraclejdk8
script: mvn clean verify
|
Add cache and build steps | language: node_js
node_js:
- "6"
before_deploy:
- npm run-script predeploy
- LAST_COMMIT=$(git log -1 --pretty=format:'%h <%an> - %s')
- echo "Deploying changes from $LAST_COMMIT"
- node_modules/gh-pages/bin/gh-pages -d dist/ -m "Updates from $LAST_COMMIT"
deploy:
provider: pages
github_token: $GITHUB_T... | language: node_js
node_js:
- "6"
cache:
directories:
- "node_modules"
after_success:
- npm build
before_deploy:
- npm run-script predeploy
- LAST_COMMIT=$(git log -1 --pretty=format:'%h <%an> - %s')
- echo "Deploying changes from $LAST_COMMIT"
- node_modules/gh-pages/bin/gh-pages -d dist/ -m "U... |
Update Travis build script with newer Android emulator | sudo: false
language: android
android:
components:
- tools
- build-tools-25.0.0
- android-25
- extra-google-google_play_services
- extra-android-support
- extra
jdk:
- oraclejdk8
env:
matrix:
- ANDROID_TARGET=android-25 ANDROID_ABI=armeabi-v7a
before_install:
- echo yes | andro... | sudo: false
language: android
android:
components:
- tools
- build-tools-25.0.0
- android-25
- extra-google-google_play_services
- extra-android-support
- extra
jdk:
- oraclejdk8
env:
matrix:
- ANDROID_TARGET=android-25 ANDROID_ABI=armeabi-v7a
before_install:
- echo yes | andro... |
Stop testing on ruby 1.9.3 | language: ruby
rvm:
- 1.9.3
- 2.0.0
deploy:
edge: true
provider: chef-supermarket
user_id: criteo
cookbook_category: Package Management
client_key: .travis/client.pem
on:
tags: true
all_branches: true
before_deploy:
- openssl aes-256-cbc -K $encrypted_31f7c76bb631_key -iv $encrypted_31f7c76bb631_iv
... | language: ruby
rvm:
- 2.0.0
deploy:
edge: true
provider: chef-supermarket
user_id: criteo
cookbook_category: Package Management
client_key: .travis/client.pem
on:
tags: true
all_branches: true
before_deploy:
- openssl aes-256-cbc -K $encrypted_31f7c76bb631_key -iv $encrypted_31f7c76bb631_iv
-in .t... |
Set quiet flag for conda install | language: python
sudo: false
python:
- "2.7"
- "3.6"
install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O minicond... | language: python
sudo: false
python:
- "2.7"
- "3.6"
install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O minicond... |
Stop using Lerna to bootstrap regenerator-* packages before Travis CI tests. | before_install:
- npm install lerna@2.11.0
install:
- npm run bootstrap
language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
sudo: false
| install:
- npm install
- npm install packages/regenerator-*
language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
sudo: false
|
Allow HHVM build to fail | sudo: false
language: php
php:
- hhvm
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
env:
- SYMFONY_VERSION=2.4.*
- SYMFONY_VERSION=2.5.*
- SYMFONY_VERSION=2.6.*
- SYMFONY_VERSION=2.7.*
before_script:
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-... | sudo: false
language: php
php:
- hhvm
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
env:
- SYMFONY_VERSION=2.4.*
- SYMFONY_VERSION=2.5.*
- SYMFONY_VERSION=2.6.*
- SYMFONY_VERSION=2.7.*
before_script:
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-... |
Update from Hackage at 2017-02-23T19:18:58Z | homepage: http://github.com/erikcharlebois/elf
changelog-type: ''
hash: ee799ef0a50951dfd101fafee1b1d1816d272720e6d660afcdf499ff9b12d873
test-bench-deps: {}
maintainer: Erik Charlebois <erikcharlebois@gmail.com>
synopsis: Parser for ELF object format.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=2 && <5'
... | homepage: https://github.com/wangbj/elf
changelog-type: ''
hash: fcdf84ed8cbd195c07267ee5cadfe1fce72a56f78d3cfe3c6a517da78bfc3810
test-bench-deps: {}
maintainer: Baojun Wang <wangbj@gmail.com>
synopsis: Parser for ELF object format.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=2 && <5'
binary: -any
all-v... |
Update build script for Travis CI | language: csharp
solution: "./Extension Library/Extension Library.sln"
mono: none
install:
- nuget restore "./Extension Library/Extension Library.sln"
- nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
# script:
# - xbuild /p:Configuration=Release '.\Extension Library\Extension Library.sln'
... | language: csharp
solution: "./Extension Library/Extension Library.sln"
mono: none
# install:
# - nuget restore "./Extension Library/Extension Library.sln"
# - nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
# script:
# - xbuild /p:Configuration=Release '.\Extension Library\Extension Library... |
Configure Travis CI build to push to Artifactory OSS | language: groovy
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- chmod +x gradlew
- openssl aes-256-cbc -K $encrypted_bb9481c64672_key -iv $encrypted_bb9481c64672_iv -in secr... | language: groovy
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- chmod +x gradlew
- openssl aes-256-cbc -K $encrypted_bb9481c64672_key -iv $encrypted_bb9481c64672_iv -in secr... |
Test UDP6 control socket with B2BUA as well now that it's supported. | language: python
python:
- "2.7"
before_install:
- sh -x ./install_depends/opensips.sh
script:
sh -x ./test_opensips.sh
env:
- MM_TYPE=opensips RTPPC_TYPE=udp
- MM_TYPE=opensips RTPPC_TYPE=udp6
- MM_TYPE=opensips RTPPC_TYPE=unix
- MM_TYPE=b2bua RTPPC_TYPE=udp
- MM_TYPE=b2bua RTPPC_TYPE=unix
- MM_TYP... | language: python
python:
- "2.7"
before_install:
- sh -x ./install_depends/opensips.sh
script:
sh -x ./test_opensips.sh
env:
- MM_TYPE=opensips RTPPC_TYPE=udp
- MM_TYPE=opensips RTPPC_TYPE=udp6
- MM_TYPE=opensips RTPPC_TYPE=unix
- MM_TYPE=b2bua RTPPC_TYPE=udp
- MM_TYPE=b2bua RTPPC_TYPE=udp6
- MM_TYP... |
Make Travis CI run build on JRuby 9000 | sudo: false
cache: bundler
language: ruby
bundler_args: --without local_development
script: bundle exec rake
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-2
notifications:
recipients:
- timo.roessner@googlemail.com
- matijs... | sudo: false
cache: bundler
language: ruby
bundler_args: --without local_development
script: bundle exec rake
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- jruby-19mode
- jruby-head
- rbx-2
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: jruby-head
- rvm: rbx-2
notifications:
recipients:
- timo... |
Remove Travis os: linux as recommended by Travis Support | sudo: required
language: ruby
bundler_args: --without benchmarks development
# Temporary workaround for broken Rubygems on Travis
before_install:
- gem update --system 2.4.8
- gem --version
- bash .travis_setup.sh
os:
- linux
addons:
hosts:
- mysql2gem.example.com
rvm:
- 2.3.0
- 2.2
- 2.1
- 2.0.0
... | sudo: required
language: ruby
bundler_args: --without benchmarks development
# Temporary workaround for broken Rubygems on Travis
before_install:
- gem update --system 2.4.8
- gem --version
- bash .travis_setup.sh
addons:
hosts:
- mysql2gem.example.com
rvm:
- 2.3.0
- 2.2
- 2.1
- 2.0.0
- 1.9.3
- ... |
Fix Cloudant plan from "shared" to "Shared" | ---
declared-services:
talent-manager-db:
label: cloudantNoSQLDB
plan: shared
personality-insights-talent-manager:
label: personality_insights
plan: "IBM Watson Personality Insights Monthly Plan"
applications:
- disk_quota: 1024M
host: talent-manager
name: talent-manager
path: ./webStarterApp.... | ---
declared-services:
talent-manager-db:
label: cloudantNoSQLDB
plan: Shared
personality-insights-talent-manager:
label: personality_insights
plan: "IBM Watson Personality Insights Monthly Plan"
applications:
- disk_quota: 1024M
host: talent-manager
name: talent-manager
path: ./webStarterApp.... |
Drop old Go versions to fix Travis CI tests. | language: go
sudo: false
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- master
install:
- go get -v github.com/qedus/osmpbf
script:
- make init
- make race
- make cover
- make bench
after_success:
- go get -u github.com/mattn/goveralls
- export PATH=$PATH:$HOME/gopath/bin
- goveralls -cov... | language: go
sudo: false
go:
- 1.9.x
- 1.10.x
- master
install:
- go get -v github.com/qedus/osmpbf
script:
- make init
- make race
- make cover
- make bench
after_success:
- go get -u github.com/mattn/goveralls
- export PATH=$PATH:$HOME/gopath/bin
- goveralls -coverprofile=profile.cov -service... |
Build scala separately on Travis. | language: java
jdk:
- oraclejdk8
services:
- mongodb
addons:
postgresql: "9.3"
install:
- sh -c 'mvn -B -q install -DskipTests=true'
before_script:
- mysql -u root -e "source travis/mysql.sql"
- psql -U postgres -f travis/postgresql.sql
- psql -c 'create extension postgis;' -d querydsl -U postgres
- .... | language: java
jdk:
- oraclejdk8
services:
- mongodb
addons:
postgresql: "9.3"
env:
matrix:
- MODULE=!querydsl-scala
- MODULE=querydsl-scala
install:
- mvn -B -q install -DskipTests=true
before_script:
- mysql -u root -e "source travis/mysql.sql"
- psql -U postgres -f travis/postgresql.sql
- p... |
Move JRUBY_OPTS to global env | language: ruby
sudo: false
before_install:
- gem update --system 2.6.10
- gem --version
- gem install bundler --version 1.14.3 --no-rdoc --no-ri
- bundle --version
install: bundle _1.14.3_ install --without development doc
script: bundle _1.14.3_ exec rake
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.3
- 2.4.0
... | language: ruby
sudo: false
before_install:
- gem update --system 2.6.10
- gem --version
- gem install bundler --version 1.14.3 --no-rdoc --no-ri
- bundle --version
install: bundle _1.14.3_ install --without development doc
script: bundle _1.14.3_ exec rake
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
rvm:
# Inc... |
Allow unresolved dependencies (dbus on macos) | matrix:
include:
- os: osx
osx_image: xcode9.2
language: node_js
node_js: "9"
env:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
- os: linux
language: node_js
node_js: "6"
script:
- npm test
- npm r... | matrix:
include:
- os: osx
osx_image: xcode9.2
language: node_js
node_js: "9"
env:
- ELECTRON_CACHE=$HOME/.cache/electron
- ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
- ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true
- os: linux
language: node_js
... |
Change Travis-CI ruby target to 2.2.5 and 2.3.1 | language: ruby
cache: bundler
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1 | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.5
- 2.3.1
|
Remove npm deployment from Travis | language: node_js
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
- provider: npm
email: tituswormer@gmail.com
api_key:
secure: ckZSdQwfzyGtWCukRsbdLapWWQ2sGLLa2n6OX2tJO9lrd78ZIOIhfD/sjiuBZgRpHjib4fLdFQaifmV7gySYhIYZ70orAgpuUBtZG9bOqsb1Lk4Mdtb2VAGxYxKs1utpxSzQEsKjy... | language: node_js
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
provider: releases
api_key:
secure: PqrmrL8bDZSl/L2vgUF6fyeIBKjvQzG4HP2UfdjaBouk9V9zzQjFYz+9qbt5hdoUeDev8hHaBbWnSuj9xY89yog5IkohHwWW85TXpyFipG7FNGBxZH3GUwlQCzYGOPVqXfk12rWx2CsKs27r4jdo2GhbyifHT5EpzvzW9r2d/T0... |
Remove autocomplete-plus install from TravisCI setup | language: objective-c
notifications:
email:
on_success: never
on_failure: change
env:
- APM_TEST_PACKAGES="autocomplete-plus"
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
| language: objective-c
notifications:
email:
on_success: never
on_failure: change
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
|
Add CI to PyPI using Travis on tagged builds | sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
script: nosetests
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
script: nosetests
deploy:
provider: pypi
user: 'pennappslabs'
password:
secure: FGWvqYOqUVd8pAQdEOfV7fP8/52OrJO35wdi3qUW3ZsbFENHHUcQTQd87ccBKQwiHbfwv/B7x1v0L+PMyool9waytzYUFW1LJjcDpmCTQ2fhmmqTTyFF04WAeqI7KOjHhWBCT+Yn8Ch5P8dqVCyxSvw+UZjoHazk/67... |
Check both Gradle and Ant build process for CI | language: java
script:
- ant jar
- bash sample/test-sample.sh
sudo: false
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
notifications:
email:
on_success: change
on_failure: change
| language: java
sudo: false
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
script:
- ./gradlew clean
- ./gradlew assemble
- ./gradlew check
- ./gradlew jacocoTestReport
- ant jar
- bash sample/test-sample.sh
notifications:
email:
on_success: change
on_failure: change
|
Add a note for sudo | language:
android
git:
submodules: false
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
- wget http://dl.google.com/android/ndk/android-ndk-$NDK_VERSION-linux-x86_64.bin
- chmod +x android-ndk-$NDK_VERSION-linux-x86_64.... | env:
global:
- NDK_VERSION=r10e
sudo: false
language:
android
jdk:
- oraclejdk8
git:
submodules: false
android:
components:
- platform-tools
- tools
- build-tools-22.0.1
- android-22
- extra-android-support
- extra-android-m2repository
... |
Remove Travis failure exemption for Ruby 2.1.0 | rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
script:
- bundle exec rspec
- bundle exec rubocop
matrix:
allow_failures:
- rvm: 2.1.0
| rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
script:
- bundle exec rspec
- bundle exec rubocop
|
Enable CI build for this repository | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
before_script:
- 'npm install -g bower grunt-cli'
- 'bower install'
| language: node_js
install:
- npm install
script:
- grunt
cache:
directories:
- "node_modules" |
Remove most tests from Travis | language: php
os: linux
dist: bionic
jobs:
include:
- php: 5.5.9
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
dist: trusty
- php: 5.5
dist: trusty
- php: 5.6
dist: xenial
- php: 7.0
dist: xenial
- php: 7.1
... | language: php
os: linux
dist: trusty
jobs:
include:
- php: 5.5.9
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
- php: hhvm-3.18
allow_failures:
- php: 5.5.9
env: 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"'
- php: hhvm-3.18
fast_finish: true
install:
- travis_retry... |
Disable 1.8.7 build (syntax errors) | language: ruby
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
| language: ruby
rvm:
- 1.9.3
- 1.9.2
|
Make notifications quieter (Travis CI) | sudo: false
language: rust
cache:
- cargo
install:
- "script/bootstrap"
script:
- "script/cibuild"
rust:
- nightly
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- texinfo
- graphviz
notifications:
... | sudo: false
language: rust
cache:
- cargo
install:
- "script/bootstrap"
script:
- "script/cibuild"
rust:
- nightly
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- texinfo
- graphviz
notifications:
... |
Add missing deps and increment version | {% set version = "0.1.1" %}
package:
name: thermofun
version: {{ version }}
source:
url: https://github.com/thermomod/thermofun/archive/v{{ version }}.tar.gz
sha256: 1115b1dd2945a8789c41dafab67c9adee111d6dd292b6aa44eab2b4ba11c92ca
build:
number: 0
# skip: True # [win and vc<15]
requirements:
build:
... | {% set version = "0.1.2" %}
package:
name: thermofun
version: {{ version }}
source:
url: https://github.com/thermomod/thermofun/archive/v{{ version }}.tar.gz
sha256: 1115b1dd2945a8789c41dafab67c9adee111d6dd292b6aa44eab2b4ba11c92ca
build:
number: 0
# skip: True # [win and vc<15]
requirements:
build:
... |
Remove delayed expansion from PATH | version: "{build}"
platform:
- x86
- x64
clone_folder: c:\gopath\src\github.com\vlifesystems\rulehuntersrv
environment:
GOPATH: c:\gopath
install:
# pre-installed MinGW at C:\MinGW is 32bit only
# but MSYS2 at C:\msys64 has mingw64
- IF "%PLATFORM%" == "x86" set PATH="C:\mingw\bin;!PATH!"
- IF "%PLA... | version: "{build}"
platform:
- x86
- x64
clone_folder: c:\gopath\src\github.com\vlifesystems\rulehuntersrv
environment:
GOPATH: c:\gopath
install:
# pre-installed MinGW at C:\MinGW is 32bit only
# but MSYS2 at C:\msys64 has mingw64
- IF "%PLATFORM%" == "x86" set PATH="C:\mingw\bin;%PATH%"
- IF "%PLA... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.