doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
e0df2c7d-50be-489c-ba53-e193e0a0ab18 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "6.3.1"
deploy:
provider: npm
email: thomas.winckell@gmail.com
api_key: $NPM_TOKEN
on:
tags: true
after_success:
- codeclimate-test-reporter < ./coverage/lcov.info
addons:
code_climate:
repo_token: $CODE_CLIMATE_TOKEN
notifications:
email:
recipients:... | ```yaml
language: node_js
node_js:
- "6.3.1"
deploy:
- provider: npm
email: thomas.winckell@gmail.com
api_key: $NPM_TOKEN
on:
tags: true
- provider: s3
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
bucket: "travis-demo-client"
skip_cleanup: true
on:
... |
009b942e-9f09-4b29-9615-f0a0b6bd8a7b | {
"language": "YAML"
} | ```yaml
language: ruby
script: rake test
branches:
only:
- master
services:
- redis-server
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
jdk:
- openjdk6
- openjdk7
- oraclejdk7
matrix:
exclude:
- rvm: 2.0.0
jdk: openjdk7
- rvm: 2.0.0
jdk: openj... | ```yaml
language: ruby
script: rake test
branches:
only:
- master
services:
- redis-server
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
jdk:
- openjdk6
- openjdk7
- oraclejdk7
matrix:
exclude:
- rvm: 2.0.0
jdk: openjdk7
- rvm: 2.0.0
... |
99900dbd-e59a-4396-b8d5-8412420d2cdc | {
"language": "YAML"
} | ```yaml
language: php
dist: xenial
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
matrix:
include:
- name: PHPStan
php: 7.4
before_script:
- travis_retry composer update --no-interaction --no-dev
- curl -L https://github.com/phpstan/phpstan/releases/download/0.12.32/phpstan.ph... | ```yaml
language: php
dist: xenial
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
matrix:
include:
- name: PHPStan
php: 7.4.7
before_script:
- travis_retry composer update --no-interaction --no-dev
- curl -L https://github.com/phpstan/phpstan/releases/download/0.12.32/phpstan.... |
6f4e50e6-15f0-414c-b16e-dadb7c5aee8f | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
script: phpunit
```
Update composer before running tests | ```yaml
language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
before_script:
- composer self-update
script:
- phpunit
``` |
0dc0b1f3-122f-43b6-9b43-303136c55f7b | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: required
rvm:
- 2.1
- 2.2
- 2.3.1
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libpcap-dev
- gem install bundler
- bundler install --path vendor/bundle --jobs=3 --retry=3
script:
- bundler exec rake
- sudo bundler exec rake spec:sudo```
Add sudo on insta... | ```yaml
language: ruby
sudo: required
rvm:
- 2.1
- 2.2
- 2.3.1
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libpcap-dev
- sudo gem install bundler
- bundler install --path vendor/bundle --jobs=3 --retry=3
script:
- bundler exec rake
- sudo bundler exec rake spec:sudo``` |
df23e69f-8f1d-425d-a350-496e8f53279d | {
"language": "YAML"
} | ```yaml
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.11.4
# Specify service dependencies here if necessary
# CircleCI... | ```yaml
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:10.16
# Specify service dependencies here if necessary
# CircleCI ... |
98a1c080-a849-46bd-8bbd-f06b0593c2df | {
"language": "YAML"
} | ```yaml
version: 2
jobs:
minecraft_server:
docker:
- image: circleci/buildpack-deps:18.10
steps:
- checkout
- setup_remote_docker
- run: docker build minecraft-server
workflows:
version: 2
build:
jobs:
- minecraft_server
```
Add testing of minecraft-server image in Circ... | ```yaml
version: 2
jobs:
minecraft_server:
docker:
- image: circleci/buildpack-deps:18.10
steps:
- checkout
- setup_remote_docker
- run: docker build -t mc:$CIRCLE_BUILD_NUM minecraft-server
- run:
name: Test default version and type
no_output_timeout: "10s"
... |
c99c2498-4489-428f-9b26-67d1c39d715a | {
"language": "YAML"
} | ```yaml
version: 2.0
jobs:
build:
docker:
- image: clojure:lein-2.8.1
environment:
- DB_PORT: 5432
- CLOJARS_ENVIRONMENT: test
- image: postgres:12.1
environment:
- POSTGRES_USER=clojars
- POSTGRES_PASSWORD=clojars
- POSTGRES_DB=clojars... | ```yaml
version: 2.0
jobs:
build:
docker:
- image: clojure:lein-2.8.1
environment:
- DB_PORT: 5432
- CLOJARS_ENVIRONMENT: test
- image: postgres:12.1
environment:
- POSTGRES_USER=clojars
- POSTGRES_PASSWORD=clojars
- POSTGRES_DB=clojars... |
fdbf4959-767b-40da-b75d-29fd46d7ac48 | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: node_js
branches:
only:
- master
- develop
node_js:
- 8.16.*
cache:
- pip
- yarn
install:
- pip install --user awscli
before_script:
- yarn
script: ./travis/build.sh
deploy:
- provider: script
script: ./travis/deploy.sh
skip_cleanup: true
on:
repo:... | ```yaml
sudo: required
dist: trusty
language: node_js
branches:
only:
- master
- develop
node_js:
- 12.16.*
cache:
- pip
- yarn
install:
- pip install --user awscli
before_script:
- yarn
script: ./travis/build.sh
deploy:
- provider: script
script: ./travis/deploy.sh
skip_cleanup: true
on:
repo... |
976f4a42-0086-4d1b-a5a1-a1b04ed374cb | {
"language": "YAML"
} | ```yaml
notifications:
email:
on_success: never
on_failure: change
env:
global:
- DOTFILES_PATH=~/.dotfiles
matrix:
include:
- os: linux
sudo: required
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
- os: osx
before... | ```yaml
notifications:
email:
on_success: never
on_failure: change
env:
global:
- DOTFILES_PATH=~/.dotfiles
matrix:
include:
- os: linux
sudo: required
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
#- os: osx
# befo... |
a1606bb2-258c-4984-a476-3b58371d603e | {
"language": "YAML"
} | ```yaml
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
branches:
only:
- master
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.fre... | ```yaml
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
#- jruby-18mode
#- jruby-19mode
#- jruby-head
- rbx-18mode
- rbx-19mode
branches:
only:
- master
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin... |
daae8ff8-1c5e-41d6-aec5-efc5e82c7697 | {
"language": "YAML"
} | ```yaml
language: scala
jdk:
- oraclejdk8
scala:
- 2.11.6
script:
- cd code
- sbt ++$TRAVIS_SCALA_VERSION +publishLocal
- cd ../test-app
- sbt ++$TRAVIS_SCALA_VERSION -DplayTestVersion=2.4.0 +test
after_success:
- ! '[[ $TRAVIS_BRANCH == "master" ]] && { sbt +publish; };'
env:
global:
- secure: lWiAEXvfiZWpdhly/x9O... | ```yaml
language: scala
jdk:
- oraclejdk8
scala:
- 2.11.6
script:
- cd code
- sbt ++$TRAVIS_SCALA_VERSION +publishLocal
- cd ../test-app
- sbt ++$TRAVIS_SCALA_VERSION -DplayTestVersion=2.4.0 +test
- cd ../code
after_success:
- ! '[[ $TRAVIS_BRANCH == "master" ]] && { sbt +publish; };'
env:
global:
- secure: lWiAEXv... |
3935355f-bca2-45d8-9742-83255d36976a | {
"language": "YAML"
} | ```yaml
language: rust
rust:
- stable
- nightly
sudo: false
script:
- cargo build --features=ssl
- cargo test --features=ssl
env:
global:
secure: DUE2yG7/ASacYARIs7nysUAUhK86AqwE/PdQ3j+D5dqzxs3IOMSOcc7PA1r2w3FkXd52rENCYqKz2iReniJn4fG5S3Q+NbcfaYkhS/6P1y0sQB8yIIVeBRf/Bo2bR2P5TRh+piYWDmqYLUvsQ0... | ```yaml
language: rust
rust:
- stable
- nightly
sudo: false
script:
- cargo build
- cargo test
- cargo build --features=ssl
- cargo test --features=ssl
env:
global:
secure: DUE2yG7/ASacYARIs7nysUAUhK86AqwE/PdQ3j+D5dqzxs3IOMSOcc7PA1r2w3FkXd52rENCYqKz2iReniJn4fG5S3Q+NbcfaYkhS/6P1y0sQB8... |
84a741f3-19bb-40b8-9a31-4756615186b7 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
services:
- mongodb
before_script:
- rake db:mongoid:create_indexes
notifications:
campfire:
rooms:
- secure: "eEuzoYFXLPeIMt+zHGzZp6XCvbfxRDe8FA3kVwrNRB0zoOktPRZXD9O8ng2z\nx2Yg8C7i1unstuW0bjPvwphpdxJOTFSxliw6P4Xk1Y9HnTYQqqUbDat/zL9c\nAyjYezuRQgYFSBP2... | ```yaml
language: ruby
rvm:
- 2.0.0
services:
- mongodb
before_script:
- rake db:mongoid:create_indexes
notifications:
campfire:
rooms:
- secure: "eEuzoYFXLPeIMt+zHGzZp6XCvbfxRDe8FA3kVwrNRB0zoOktPRZXD9O8ng2z\nx2Yg8C7i1unstuW0bjPvwphpdxJOTFSxliw6P4Xk1Y9HnTYQqqUbDat/zL9c\nAyjYezuRQgYFSBP2BgNZ2RL9Ri... |
d7bf225d-1ad8-40e5-9c86-0c83ba59b27f | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
```
Update Travis CI ruby versions | ```yaml
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.1.5
- 2.2.0
- ruby-head
``` |
620c0058-df47-4044-80eb-8012e6efbfcc | {
"language": "YAML"
} | ```yaml
---
# file: roles/common/tasks/main.yml
- name: make sure debootstrap is installed
shell: type debootstrap
- name: make sure rinse is installed
shell: type rinse
- name: make sure docker is running
service: name=docker state=running
- name: execute stage 0 build
shell: sudo roles/common/files/stage-0... | ```yaml
---
# file: roles/common/tasks/main.yml
- name: make sure debootstrap is installed
shell: type debootstrap
- name: make sure rinse is installed
shell: type rinse
- name: make sure docker is running
service: name=docker state=running
- name: execute stage 0 build
shell: sudo roles/build/files/stage-0.... |
087d1d59-3385-43ae-9f6d-04a993196679 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "pypy"
- "3.3"
- "3.4"
install:
# Travis uses an outdated PyPy, this installs the most recent one.
- "[[ ${TOX_ENV} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true"
- "[[ ${TOX_ENV} == pypy ]] && sudo apt-get -y update && ... | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "pypy"
- "3.3"
- "3.4"
install:
# Travis uses an outdated PyPy, this installs the most recent one.
- "[[ ${TRAVIS_PYTHON_VERSION} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true"
- "[[ ${TRAVIS_PYTHON_VERSION} == pypy ]] &... |
d461c88e-bc4d-4753-8136-f7e54ecd2b45 | {
"language": "YAML"
} | ```yaml
### Config file for automatic testing at travis-ci.org
dist: xenial
language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
### command to install external dependencies
# using sudo instead of rvmsudo was causing some PATH problems:
# see http://stackoverflow... | ```yaml
### Config file for automatic testing at travis-ci.org
dist: xenial
language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
### command to install external dependencies
# using sudo instead of rvmsudo was causing some PATH problems:
# see http://stackoverflow... |
a4287fe6-0474-4dd7-8468-89217598243f | {
"language": "YAML"
} | ```yaml
before_install:
- gem install bundler
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
```
Add ruby 2.3.1 to unit tests | ```yaml
before_install:
- gem install bundler
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
- "2.3.1"
``` |
ef69ec33-1866-4808-ab43-10fbb3549fdf | {
"language": "YAML"
} | ```yaml
# Travis CI Configuration
language: node_js
node_js:
- "12"
- "11"
- "10"
- "9"
- "8"
install:
- npm install
- npm install coveralls
before_script:
- gulp build
script:
- npm run coverage
after_success:
- cat coverage/lcov.info | coveralls
```
Sort Travis Node versions from oldest to newes... | ```yaml
# Travis CI Configuration
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
- "12"
install:
- npm install
- npm install coveralls
before_script:
- gulp build
script:
- npm run coverage
after_success:
- cat coverage/lcov.info | coveralls
``` |
438c27f5-1f50-4a56-ad59-ade8b54c3d8b | {
"language": "YAML"
} | ```yaml
language: php
sudo: false
php:
- 5.6
env:
matrix:
- PHPUNIT_TEST=1
- PHPCS_TEST=1
matrix:
include:
- php: 5.6
env: PHPUNIT_TEST=1
- php: 7.0
env: PHPUNIT_TEST=1
- php: 7.1.2
env: PHPUNIT_TEST=1
before_script:
- composer validate
- composer install --dev --pref... | ```yaml
language: php
sudo: false
php:
- 5.6
env:
matrix:
- PHPUNIT_TEST=1
- PHPCS_TEST=1
matrix:
include:
- php: 5.6
env: PHPUNIT_TEST=1
- php: 7.0
env: PHPUNIT_TEST=1
- php: 7.1.2
env: PHPUNIT_TEST=1
before_script:
- composer validate
- composer install --dev --pref... |
8de2b603-5a64-4ea2-9774-97585ff5d271 | {
"language": "YAML"
} | ```yaml
sudo: false
language: erlang
install: 'true'
otp_release:
- 19.0
- 18.0
script: "./elvis rock && ./rebar3 do dialyzer, eunit"
```
Use latest rebar3 and persist cache on Travis | ```yaml
sudo: false
language: erlang
install: 'true'
before_script:
- wget https://s3.amazonaws.com/rebar3/rebar3
- chmod +x rebar3
env: PATH=$PATH:.
cache:
directories:
- $HOME/.cache/rebar3/
otp_release:
- 19.0
- 18.0
script: "./elvis rock && rebar3 do dialyzer, eunit"
``` |
805d53bb-e40c-4fdc-ab20-6681fd7a20c7 | {
"language": "YAML"
} | ```yaml
# Faster container-based infrastructure
sudo: false
language: python
python:
- "3.5"
- "3.6"
install:
- pip install -e .[tests] isort unify flake8
- pip freeze
script:
- pytest
- flake8
- isort --check-only --recursive asgiref tests
- unify --check-only --recursive --quote \" asgiref tests
`... | ```yaml
# Faster container-based infrastructure
sudo: false
language: python
python:
- "3.5"
- "3.6"
install:
- pip install -e .[tests] isort unify flake8
- pip freeze
script:
- pytest
- flake8
- isort --check-only --recursive asgiref tests
- unify --check-only --recursive --quote \" asgiref tests
... |
e5aaf5f3-028a-45ed-9796-efc155a4d633 | {
"language": "YAML"
} | ```yaml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
sudo: false
cache: packages
addons:
apt:
packages:
- python2.7
- python-numpy
```
Add scipy installation on Travis | ```yaml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
sudo: false
cache: packages
addons:
apt:
packages:
- python2.7
- python-numpy
- python-scipy
``` |
4f621f8d-c303-4ca9-ba83-dc086b651d6a | {
"language": "YAML"
} | ```yaml
language: go
go:
- "1.10.x"
script:
go build
```
Add test -race to CI | ```yaml
language: go
go:
- "1.10.x"
script:
go test -race ./...
``` |
d98ef971-d820-4edc-827f-856a15e12ff5 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode9
script:
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-macOS test
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-iOS
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-watchOS
- xcrun xcodebuild -project SipHash.xcodeproj -scheme S... | ```yaml
language: objective-c
osx_image: xcode9.3
script:
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-macOS test
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-iOS
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-watchOS
- xcrun xcodebuild -project SipHash.xcodeproj -scheme... |
3f5a37c7-a8c2-480e-a7b1-673698cb39df | {
"language": "YAML"
} | ```yaml
# 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 ... | ```yaml
# 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 ... |
4d7f8e5b-e247-4c43-80b4-299ebba1ae10 | {
"language": "YAML"
} | ```yaml
language: c
compiler:
- gcc
script: make test
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi
- sudo pip install git+https://github.com/openxc/openxc-python
- script/bootstrap.sh
... | ```yaml
language: c
compiler:
- gcc
script: make test
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq -y libgd2-xpm ia32-libs ia32-libs-multiarch; fi
- sudo pip install git+https://github.com/openxc/openxc-python
- script/bootstrap.sh
- cd src
... |
ecc688f0-9a87-46ce-9761-56a6afeed76b | {
"language": "YAML"
} | ```yaml
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
sudo: false
language: php
matrix:
include:
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.4
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.5
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
... | ```yaml
# See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
matrix:
include:
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.4
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.5
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: ... |
1c7d41b2-67ab-4022-8cea-af0cb84db9a3 | {
"language": "YAML"
} | ```yaml
before_install:
- gem install bundler
language: ruby
rvm:
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
```
Support of Ruby 2.4 has ended | ```yaml
before_install:
- gem install bundler
language: ruby
rvm:
- '2.5'
- '2.6'
- '2.7'
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
``` |
8de8e3cc-5183-48d1-b5ae-99d0674c96d9 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "0.10"
```
Use the standard Jade Travis configuration | ```yaml
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
``` |
e355717e-0bc5-48cf-a39b-09ddc8a4685f | {
"language": "YAML"
} | ```yaml
---
galaxy_info:
author: OpenStack
description: Security hardening role for OpenStack Ansible
company: OpenStack
license: Apache
min_ansible_version: 1.8
platforms:
- name: Ubuntu
versions:
- trusty
categories:
- cloud
- secuity
- system
dependencies: []
```
Fix typo: secuity -> s... | ```yaml
---
galaxy_info:
author: OpenStack
description: Security hardening role for OpenStack Ansible
company: OpenStack
license: Apache
min_ansible_version: 1.8
platforms:
- name: Ubuntu
versions:
- trusty
categories:
- cloud
- security
- system
dependencies: []
``` |
3a2a61a7-cc69-4530-93dc-e184b34d0a2b | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --dev --prefer-source
script: bin/phpspec run -fpretty --verbose
```
Fix invalid deps and move AttributeFactory to component | ```yaml
language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --no-interaction --prefer-source
script: bin/phpspec run -fpretty --verbose
``` |
8c9c4185-54e4-4b7a-8f3c-1b85418672b7 | {
"language": "YAML"
} | ```yaml
---
- name: Install Node, NPM and nginx
apt: name={{item}} state=installed
with_items:
- nodejs-legacy
- npm
- nginx-light
- name: Locally install dependencies
local_action: command npm install
args:
chdir: ../api
become: false
- name: Sync ipfs-search api
synchronize: src=.... | ```yaml
---
- name: Install Node, NPM and nginx
apt: name={{item}} state=installed
with_items:
- nodejs-legacy
- npm
- nginx-light
- name: Locally install dependencies
local_action: command npm install
args:
chdir: ../api
become: false
- name: Create destination folder for search api
... |
9e75c7fb-9681-45a6-b177-9604c2e610dc | {
"language": "YAML"
} | ```yaml
---
- name: Update apt-cache
apt: update_cache=yes cache_valid_time=3600
sudo: yes
- name: Upgrade the OS
apt: upgrade=yes
sudo: yes
- name: Install common packages
apt: pkg={{ item }} state=latest
sudo: yes
with_items:
- build-essential
- git
- tree
- vim
- curl
... | ```yaml
---
- name: Update apt-cache
apt: update_cache=yes cache_valid_time=3600
sudo: yes
- name: Upgrade the OS
apt: upgrade=yes
sudo: yes
- name: Install common packages
apt: pkg={{ item }} state=latest
sudo: yes
with_items:
- build-essential
- git
- tree
- vim
- curl
... |
58cffe1f-a5e2-4dc4-b2e2-4ade725ed60f | {
"language": "YAML"
} | ```yaml
apiVersion: kritis.grafeas.io/v1beta1
kind: VulnzSigningPolicy
metadata:
name: my-vsp
spec:
project: <ATTESTATION_PROJECT>
noteReference: projects/<NOTE_PROJECT>/notes/<NOTE_ID>
packageVulnerabilityRequirements:
maximumSeverity: MEDIUM
maximumFixNotAvailableSeverity: MEDIUM
allowlistCVEs:
... | ```yaml
apiVersion: kritis.grafeas.io/v1beta1
kind: VulnzSigningPolicy
metadata:
name: my-vsp
spec:
project: <ATTESTATION_PROJECT>
noteReference: projects/<NOTE_PROJECT>/notes/<NOTE_ID>
packageVulnerabilityRequirements:
maximumSeverity: LOW
maximumFixNotAvailableSeverity: ALLOW_ALL
allowlistCVEs:
... |
f722efae-5341-414e-8765-cfb1a6ce7c9a | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.7 # ubuntu 16.04
- 1.x
addons:
postgresql: "9.4"
apt:
packages:
- upx-ucl
- binutils
- fakeroot
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- gem install package_cloud
- pi... | ```yaml
language: go
go:
- 1.10 # ubuntu 18.04
- 1.x
addons:
postgresql: "9.4"
apt:
packages:
- upx-ucl
- binutils
- fakeroot
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- gem install package_cloud
- p... |
99a9ec43-b3b5-4001-bd0d-104c65fac468 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
allow_failures:
- php: 7
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev --prefer-source --no-interaction
script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.x... | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
cache:
directories:
- $HOME/.composer/cache/files
env:
- SYMFONY_VERSION=2.3.*
matrix:
allow_failures:
- php: 7
include:
- php: 5.6
env: SYMFONY_VERSION=3.0.*@dev
- php: 7
env: SYMFONY_VERSION=3.0.*@dev
before_scr... |
7488e41c-2ac5-453f-bdfb-5fb313e6f259 | {
"language": "YAML"
} | ```yaml
title: Information leakage issue in the sanitycheck module
link: https://simplesamlphp.org/security/201603-01
cve: CVE-2016-3124
branches:
master:
time: 2016-03-07 13:04:57
versions: ['<=1.14.1']
1.14:
time: 2016-03-07 13:06:15
versions: ... | ```yaml
title: Information leakage issue in the sanitycheck module
link: https://simplesamlphp.org/security/201603-01
cve: CVE-2016-3124
branches:
master:
time: 2016-03-07 13:04:57
versions: ['<=1.14.1']
reference: composer://simplesamlphp/simplesamlphp
``` |
09719054-21a8-4140-b1a5-6a9a817f953d | {
"language": "YAML"
} | ```yaml
name: Code quality checks
on:
push:
branches:
- main
pull_request:
jobs:
code_quality:
name: Check code quality
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, ... | ```yaml
name: Code quality checks
on:
push:
branches:
- main
pull_request:
jobs:
code_quality:
name: Check code quality
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, ... |
75891ab1-fa7b-4b89-b52d-086876dcf8fb | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
- pypy
install:
- python setup.py sdist
- pip install dist/`python setup.py --name`-`python setup.py --version`.tar.gz
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
before_script: pip install .
script:
... | ```yaml
dist: xenial
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
- pypy
install:
- python setup.py sdist
- pip install dist/`python setup.py --name`-`python setup.py --version`.tar.gz
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
before_script: pip instal... |
6ba3ea2c-e1e1-4942-9c00-dcc33eddf8d6 | {
"language": "YAML"
} | ```yaml
---
- name: python2 check
hosts: all
become: True
gather_facts: false
tasks:
- include: ../ubuntu-test-tools.yml
- name: agent
hosts: all
become: True
gather_facts: true
vars_files:
- agent_vars.yml
pre_tasks:
- name: Install nginx
include: ../nginx.yml
roles :
- an... | ```yaml
---
- name: python2 check
hosts: all
become: True
gather_facts: false
tasks:
- include: ../ubuntu-test-tools.yml
- name: agent
hosts: all
become: True
gather_facts: true
vars_files:
- agent_vars.yml
roles :
- ansible-consul
post_tasks:
- name: Pause till every thing is up... |
749d89b5-62d4-4ef1-997e-6723c88bdd54 | {
"language": "YAML"
} | ```yaml
language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- ruby-head
- jruby
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
addons:
code_climate:
repo_token: 2a03fa37ce5a5cb21bb117a736be5d83dcf9f1c3ea2b248f7af4c0a7b330d8c8
after_success:
- bundle exec codeclimate-test-reporter
notifications:
slack:
secure: I... | ```yaml
language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- ruby-head
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx-2
addons:
code_climate:
repo_token: 2a03fa37ce5a5cb21bb117a736be5d83dcf9f1c3ea2b248f7af4c0a7b330d8c8
after_success:
- bundle exec codeclimate-test-reporter
notifications:
slack:
secure: IfK... |
703a6482-f0ce-4384-9aa9-467707c8aa9b | {
"language": "YAML"
} | ```yaml
Categories:
- Connectivity
- System
License: MIT
AuthorName: cyanomiko
SourceCode: https://github.com/cyanomiko/dcnnt-android
IssueTracker: https://github.com/cyanomiko/dcnnt-android/issues
AutoName: Device Connect
RepoType: git
Repo: https://github.com/cyanomiko/dcnnt-android
Builds:
- versionName: 0.... | ```yaml
Categories:
- Connectivity
- System
License: MIT
AuthorName: cyanomiko
SourceCode: https://github.com/cyanomiko/dcnnt-android
IssueTracker: https://github.com/cyanomiko/dcnnt-android/issues
AutoName: Device Connect
RepoType: git
Repo: https://github.com/cyanomiko/dcnnt-android
Builds:
- versionName: 0.... |
7530375e-9674-4fcc-a557-720bb9d81ecd | {
"language": "YAML"
} | ```yaml
script: ./scripts/build
install:
- sudo apt-get update -qq
- sudo cp -r assets/fonts/* /usr/local/share/fonts/
- sudo fc-cache -f -v
- sudo apt-get install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
- sudo pip install python-docx
deploy:
provider: s3
access_key_id: AKIAI6DXQYKG4... | ```yaml
script: ./scripts/build
install:
- sudo apt-get update -qq
- sudo cp -r assets/fonts/* /usr/local/share/fonts/
- sudo fc-cache -f -v
- sudo apt-get install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
- sudo pip install python-docx
deploy:
provider: s3
access_key_id: AKIAI6DXQYKG4... |
81502aef-b9d9-4cf8-9c69-b5e77a3fc8be | {
"language": "YAML"
} | ```yaml
---
version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:$ELASTIC_VERSION
cap_add:
- IPC_LOCK
volumes:
- esdata1:/usr/share/elasticsearch/data
ports:
- 9200:9200
kibana:
image: docker.elastic.co/kibana/kibana:$ELASTIC_VERSION
... | ```yaml
---
version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:$ELASTIC_VERSION
cap_add:
- IPC_LOCK
volumes:
- /usr/share/elasticsearch/data
ports:
- 9200:9200
kibana:
image: docker.elastic.co/kibana/kibana:$ELASTIC_VERSION
links:
... |
26c9d5ac-e1a5-4da1-9c1d-c39edce660d1 | {
"language": "YAML"
} | ```yaml
space: init Lab
logo: initlab-logo.png
url: https://initlab.org
location:
address: floor 2, 6 Rila str., Sofia, Bulgaria
lat: 42.70789247
lon: 23.32527086
spacefed:
spacenet: false
spacesaml: false
spacephone: false
contact:
irc: irc://irc.ludost.net/#initlab
twitter: '@initLab'
ml: yo@initlab... | ```yaml
space: init Lab
logo: initlab-logo.png
url: https://initlab.org
location:
address: floor 3, 64A, Tsar Asen Str., Sofia, Bulgaria
lat: 42.6879500
lon: 23.3169100
spacefed:
spacenet: false
spacesaml: false
spacephone: false
contact:
irc: irc://irc.ludost.net/#initlab
twitter: '@initLab'
ml: yo@i... |
14164805-172e-4c20-9b05-13f9c8ec80fb | {
"language": "YAML"
} | ```yaml
---
metronome_powerdns_repo_master:
apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-metronome main"
gpg_key: "http://repo.powerdns.com/CBC8B383-pub.asc"
gpg_key_id: "D47975F8DAE32700A563E64FFF389421CBC8B383"
yum_repo_bas... | ```yaml
---
metronome_powerdns_repo_master:
apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-metronome-master main"
gpg_key: "http://repo.powerdns.com/CBC8B383-pub.asc"
gpg_key_id: "D47975F8DAE32700A563E64FFF389421CBC8B383"
yum_r... |
20c0bc70-9758-4c33-b904-7ebbbbe7fb2e | {
"language": "YAML"
} | ```yaml
name: Node
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
- 14
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: acti... | ```yaml
name: Node
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
- 14
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: acti... |
7cf18313-2cf7-42a6-94fd-6ae58412cb10 | {
"language": "YAML"
} | ```yaml
build:
type: build
commands:
- lein deps
- lein midje
deploy:
type: deploy
commands:
- lein deps
- lein daemon start ":web":
environment:
CIRCLE_ENV: "production"
SWANK: "true"
- sudo /etc/init.d/nginx :start
```
Fix a typo in circle config | ```yaml
build:
type: build
commands:
- lein deps
- lein midje
deploy:
type: deploy
commands:
- lein deps
- lein daemon start ":web":
environment:
CIRCLE_ENV: "production"
SWANK: "true"
- sudo /etc/init.d/nginx start
``` |
4fb62a4e-7851-47f8-bf75-dbc9afc031cb | {
"language": "YAML"
} | ```yaml
language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- 2.5.1
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
before_install:
- gem install rubygems-update && update_rubygems
# Rails 4.2 doesn't suppo... | ```yaml
language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- 2.5.1
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_install:
- gem install rubygems-update && update_rubyg... |
6abe24cd-d51f-45ca-8167-d153eec33109 | {
"language": "YAML"
} | ```yaml
Categories:
- System
License: Apache-2.0
AuthorName: Fynn Godau
AuthorEmail: fynngodau@mailbox.org
SourceCode: https://codeberg.org/fynngodau/usageDirect
IssueTracker: https://codeberg.org/fynngodau/usageDirect/issues
AutoName: usageDirect
RepoType: git
Repo: https://codeberg.org/fynngodau/usageDirect.git
... | ```yaml
Categories:
- System
License: Apache-2.0
AuthorName: Fynn Godau
AuthorEmail: fynngodau@mailbox.org
SourceCode: https://codeberg.org/fynngodau/usageDirect
IssueTracker: https://codeberg.org/fynngodau/usageDirect/issues
AutoName: usageDirect
RepoType: git
Repo: https://codeberg.org/fynngodau/usageDirect.git
... |
67e9af88-879a-4580-9a36-51adb08f7708 | {
"language": "YAML"
} | ```yaml
dependencies:
pre:
- cmake .
override:
- make
```
Install libgc-dev on CircleCI container | ```yaml
dependencies:
pre:
- sudo apt-get update; sudo apt-get install libgc-dev
- cmake .
override:
- make
test:
override:
- ./lisp < test.scm
``` |
f9925737-7b8f-463b-9d6d-3f44017c9223 | {
"language": "YAML"
} | ```yaml
jq/jq-linux64-1.5:
size: 3027945
object_id: 9302e872-a5fc-4141-b985-033d47829089
sha: d8e36831c3c94bb58be34dd544f44a6c6cb88568
vault-broker/vault-broker:
size: 6813888
object_id: f82da81b-85b3-4fdf-4405-1190424be308
sha: 42c70b44f619befb7c4d5417490877cda4f1657b
vault/vault_0.9.6_linux_amd64.zip:
s... | ```yaml
jq/jq-linux64-1.5:
size: 3027945
object_id: 9302e872-a5fc-4141-b985-033d47829089
sha: d8e36831c3c94bb58be34dd544f44a6c6cb88568
vault/vault_0.9.6_linux_amd64.zip:
size: 19726726
object_id: c0e52248-db33-4096-5593-53c0ccc70473
sha: 85b2093c0dd7b594b9f793fcb9d7ad73d8b04fdd
``` |
718012ad-e0c1-4ff0-845b-85ccb518e9ea | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.6"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script:
- pytest --cov=. --cov-report term-missing
branches:
only:
- master
- dev
- /^Release\/.*$/
after_success:
- coveralls
```
Revise Travis for new branch... | ```yaml
language: python
python:
- "3.6"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script:
- pytest --cov=. --cov-report term-missing
branches:
only:
- live
- beta
- dev
- /^Release\/.*$/
after_success:
- coveralls
``` |
e44f707c-6539-4ba1-98d2-d5a730c132c0 | {
"language": "YAML"
} | ```yaml
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # all
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
... | ```yaml
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
env:
DOTNET_NOLOGO: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Avoid pre-populating the NuGet package cache
steps:
- uses: actions/checkout@v3
with:
fetch-dept... |
f3d7f587-a9c2-4d2c-9a88-fd6e66118b4a | {
"language": "YAML"
} | ```yaml
# Action was shamelessly copied from here: https://stackoverflow.com/a/64311970
name: github pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
... | ```yaml
# Action was shamelessly copied from here: https://stackoverflow.com/a/64311970
name: github pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
... |
017effbd-d9c3-4191-93ac-8647340cb438 | {
"language": "YAML"
} | ```yaml
```
Enable Travis CI to build all branches | ```yaml
language: csharp
sudo: required
dist: trusty
env:
- CLI_VERSION=latest
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
mono:
- 4.2.3
os:
- linux
- osx
osx_image: xcode7.1
before_install:
- if test "... |
977c559b-5450-4864-85b9-27ea6d506a40 | {
"language": "YAML"
} | ```yaml
name: Node CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8, 10, 12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-ve... | ```yaml
name: Node CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8, 10, 12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-ve... |
fe4f7830-7baf-4f78-9957-5777f5cc664d | {
"language": "YAML"
} | ```yaml
name: main
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: [
{ msystem: MINGW64, arch: x86_64 },
{ msystem: MINGW32, arch: i686 }
]
defaults:
run:
shell: msys2 {0}
ste... | ```yaml
name: main
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: [
{ msystem: MINGW64, arch: x86_64 },
{ msystem: MINGW32, arch: i686 }
]
steps:
- uses: actions/checkout@v2
wit... |
2531bc10-3ebb-4dd6-b638-483337e5f109 | {
"language": "YAML"
} | ```yaml
dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
cache:
directories:
- node_modules
before_install:
- if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'consol... | ```yaml
dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- 7
cache:
directories:
- node_modules
before_install:
- if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.l... |
b7ead3ef-e295-4c96-ac38-c0b514e9851f | {
"language": "YAML"
} | ```yaml
name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build
- name: Run tests
run: cargo test
```
Test on PR and with all features enabled | ```yaml
name: Rust
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build
- name: Run tests
run: cargo test --features encoding,serialize
``` |
7e7626f9-9e63-42ab-b219-04fed03f3eeb | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-4.8
- sudo apt-get install -qq g++-4.8
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- export CFLAG... | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-4.8
- sudo apt-get install -qq g++-4.8
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- export CFLAG... |
5e2d26db-4774-4ccf-b315-8ddcef948435 | {
"language": "YAML"
} | ```yaml
language: node_js
cache: yarn
node_js:
- stable
- "8"
- "6"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
```
Rename latest Node.js version in Travis CI | ```yaml
language: node_js
cache: yarn
node_js:
- node
- "8"
- "6"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
``` |
d19cfbde-bfe7-4954-b10e-d90c18265364 | {
"language": "YAML"
} | ```yaml
language: go
os:
- linux
- osx
go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
- tip
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/860de7e374c89032863a
on_success: change
on_failure: always
on_start: never
email:
on_success: change
on_failure: alwa... | ```yaml
language: go
os:
- linux
- osx
go:
- 1.7
- 1.8
- tip
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/860de7e374c89032863a
on_success: change
on_failure: always
on_start: never
email:
on_success: change
on_failure: always
script: make debug
``` |
d1621b40-ade2-41c6-8e2f-00ddc3a471e6 | {
"language": "YAML"
} | ```yaml
# 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 informa... | ```yaml
# 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 informa... |
5ecfa650-32ea-48ca-a96d-2bd49fa27016 | {
"language": "YAML"
} | ```yaml
on: [push, pull_request]
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.11.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...```
Test across many Go ver... | ```yaml
on: [push, pull_request]
name: Test
jobs:
test111:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.11.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
test112:
runs-on: ... |
a703e9ee-cd2c-4df1-bd9f-c09a352f647f | {
"language": "YAML"
} | ```yaml
name: Test
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
mode: [run_tests]
python:
- "2.6"
- "3.2"
- "3.6"
- "3.8"
include:
- os: ubuntu-latest
mode: check_style
python: "2... | ```yaml
name: Test
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
mode: [run_tests]
python:
- "3.5"
- "3.8"
include:
- os: ubuntu-latest
mode: check_style
python: "2.7"
- os: ubuntu-latest
... |
140d3901-fafd-4b51-85d3-4f6f77814c1d | {
"language": "YAML"
} | ```yaml
name: Test Suite
on: [push, pull_request]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install dependencies
run: npm install
... | ```yaml
name: Test Suite
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install dependencies
run: n... |
39b28a69-bbfc-4ed9-b44b-a5e10c65bf4e | {
"language": "YAML"
} | ```yaml
language: scala
scala:
- 2.10.5
- 2.11.6
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
script:
- travis_retry "./travis.sh"
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
after_success: "... | ```yaml
language: scala
scala:
- 2.10.5
- 2.11.7
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
script:
- travis_retry "./travis.sh"
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
after_success: "... |
8472fc00-a246-44bc-9582-4864858eeab8 | {
"language": "YAML"
} | ```yaml
name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-v... | ```yaml
name: test
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2... |
bd433626-0667-4758-a103-e3b3e989f62d | {
"language": "YAML"
} | ```yaml
name: Node CI
on: [push]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.1
with:
node-v... | ```yaml
name: Node CI
on: [push]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.1
with:
node-v... |
ec698c52-75b7-4c56-8117-fd0c36f6a653 | {
"language": "YAML"
} | ```yaml
name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ mat... | ```yaml
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install, build, and test
run: |
npm ci
npm test
env:
... |
381f665c-5ff0-42a6-a561-4ef34ed1808f | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.8
notifications:
hipchat:
- secure: "HqBUrmf4P2bgvwb4b9PL1tBae2wcZaXadOgwRwAFhdhDZFHaKXIXlJRUW8tN\ntdO83OZgatxJrpWWQj8VYTfDuhlE3b3NxVWeXc3PkfrHmuvejQf4veh7kwR0\njLVE6jb+ZbFIwRE2W0VFLFKYQHI6PLem4W0OKXW5Shqzy8Ewlow="
irc:
channels: "irc.freenode.org#apiary"
on_succ... | ```yaml
language: node_js
node_js:
- 0.8
- 0.10
notifications:
hipchat:
- secure: "HqBUrmf4P2bgvwb4b9PL1tBae2wcZaXadOgwRwAFhdhDZFHaKXIXlJRUW8tN\ntdO83OZgatxJrpWWQj8VYTfDuhlE3b3NxVWeXc3PkfrHmuvejQf4veh7kwR0\njLVE6jb+ZbFIwRE2W0VFLFKYQHI6PLem4W0OKXW5Shqzy8Ewlow="
irc:
channels: "irc.freenode.org#apiary"
... |
c29f767c-3964-454b-94a8-87a7f80f8dd7 | {
"language": "YAML"
} | ```yaml
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
... | ```yaml
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
... |
5d8d5623-d22e-4d0f-852d-68a15c0392d5 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
```
Build with Node.js 10 on Travis CI. | ```yaml
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
``` |
d630e7c2-d937-491a-9eb5-98f9805a1bc0 | {
"language": "YAML"
} | ```yaml
name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --u... | ```yaml
name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --u... |
8f4136cc-4f18-4cfa-8ab0-235c3c66ae21 | {
"language": "YAML"
} | ```yaml
name: Test
on:
pull_request:
push:
schedule:
- cron: '0 6 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy3'
... | ```yaml
name: Test
on:
pull_request:
push:
schedule:
- cron: '0 6 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy-3.6'
... |
c0e46242-9c4f-41a7-b26f-0a47032b26d4 | {
"language": "YAML"
} | ```yaml
language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- tools # intentional, see travis-ci/docs-travis-ci-com#779
- build-tools-26.0.2
- android-22 # For emulator to work
- android-26
- extra-android-m2repository
- sys-img-armeabi-v7a-android-22
lice... | ```yaml
language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- tools # intentional, see travis-ci/docs-travis-ci-com#779
- build-tools-26.0.2
- android-22 # For emulator to work
- android-26
- extra-android-m2repository
- sys-img-armeabi-v7a-android-15
- ... |
4bab429a-81e1-4390-a37a-e0f4be765364 | {
"language": "YAML"
} | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example... | ```yaml
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example... |
33812f30-8800-4f25-b83d-734d78766b7e | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
python:
- "2.7"
- "3.6"
- "3.7"
install: pip install tox-travis
script: tox
```
Remove 3.7 from Travis config | ```yaml
sudo: false
language: python
python:
- "2.7"
- "3.6"
install: pip install tox-travis
script: tox
``` |
03f697c7-2c31-45c1-83ce-2dfd62c87c18 | {
"language": "YAML"
} | ```yaml
before_script:
- npm cache clean
- npm update -g npm
language: node_js
node_js:
- 0.8```
Fix Travis CI build error | ```yaml
before_script:
- npm cache clean
- npm update -g npm
language: node_js
node_js:
- 0.10``` |
d7f26d1d-6c04-4c08-9ae7-7a6ea26b2fb4 | {
"language": "YAML"
} | ```yaml
before_script: cp config/database.yml.example config/database.yml
language: ruby
rvm:
- 1.9.2
#- 1.9.3
script: bundle exec rake db:create db:migrate db:test:prepare default
branches:
only:
- master
```
Test against ruby-head (allow failures) | ```yaml
branches:
only:
- master
before_script: cp config/database.yml.example config/database.yml
language: ruby
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: ruby-head
rvm:
- 1.9.2
- 1.9.3
- ruby-head
script: bundle exec rake db:create db:migrate db:test:prepare default
``` |
e8a2f8cd-7239-48cd-aa12-f7c56d5e274e | {
"language": "YAML"
} | ```yaml
language: php
dist: trusty
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.cache/composer/files
matrix:
include:
- php: 5.6
- php: 7.3
fast_finish: true
before_script:
- composer install
- cp src/config.php.dist src/config.php
- git remote set-branches --add origin master
... | ```yaml
language: php
dist: trusty
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.cache/composer/files
matrix:
include:
- php: 7.3
fast_finish: true
before_script:
- composer install
- cp src/config.php.dist src/config.php
- git remote set-branches --add origin master
- git fetch
s... |
e8e7a0e2-8b7b-4a26-9488-fdee84e51ab2 | {
"language": "YAML"
} | ```yaml
language: objective-c
# xcode_workspace: ReactiveAccountStoreDemo.xcworkspace
# xcode_scheme: ReactiveAccountStoreDemo
# xcode_sdk:
# - iphonesimulator7.1
# - iphonesimulator7.0
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
before_install:
- brew update
- brew upgrade xctool
- gem upda... | ```yaml
language: objective-c
# xcode_workspace: ReactiveAccountStoreDemo.xcworkspace
# xcode_scheme: ReactiveAccountStoreDemo
# xcode_sdk:
# - iphonesimulator7.1
# - iphonesimulator7.0
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
before_install:
- brew update
- brew upgrade xctool
- gem upda... |
b08cf5f1-5b4b-4a74-b475-accf4d8797fd | {
"language": "YAML"
} | ```yaml
language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
env:
- USE_DEBUG=yes
- USE_DEBUG=no
before_script:
- curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recu... | ```yaml
language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
env:
- USE_DEBUG=yes
- USE_DEBUG=no
before_script:
- curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --... |
cc2c3b74-11f2-491d-a678-1d5969d217b2 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
script: set -e; mkdir -p build; npm run build; if [[ $(node --version) == v6* ]]; then npm run coveralls; chmod u+x scripts/deploy-edge-to-cdn.sh; ./scripts/deploy-edge-to-cdn.sh; fi
env:
global:
- GH_REF: github.com/ractiv... | ```yaml
sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
script: set -e; mkdir -p build; npm run build; if [[ $(node --version) == v6* ]]; then npm run coveralls; chmod u+x scripts/deploy-edge-to-cdn.sh; ./scripts/deploy-edge-to-cdn.sh; fi
env:
global:
- GH_REF: github.com/ractivejs/ractive.git
- CD... |
e6918eb1-e3df-49d4-9a5f-1e809a1d355c | {
"language": "YAML"
} | ```yaml
sudo: false
language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- tip
matrix:
allow_failures:
- go: tip
before_install:
- go get -u github.com/golang/dep/cmd/dep github.com/golangci/golangci-lint/cmd/golangci-lint
install:
- dep ensure
before_script:
- golangci-lint run
script:
- go test -cove... | ```yaml
sudo: false
language: go
go:
- 1.11.x
- 1.12.x
- tip
matrix:
allow_failures:
- go: tip
before_install:
- go get -u github.com/golang/dep/cmd/dep github.com/golangci/golangci-lint/cmd/golangci-lint
install:
- dep ensure
before_script:
- golangci-lint run
script:
- go test -covermode=atomi... |
cf1dfdd2-0401-40d3-bda8-c1cba2d18ba5 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode7.2
install:
- bundle install
script: bundle exec rake spec
```
Use Xcode 7.3 on TravisCI | ```yaml
language: objective-c
osx_image: xcode7.3
install:
- bundle install
script: bundle exec rake spec
``` |
9ad2faaa-9260-4fdd-83de-0bee22cc808c | {
"language": "YAML"
} | ```yaml
dist: trusty
sudo: false
language: python
python:
- 2.7
- &latest_py3 3.6
jobs:
fast_finish: true
include:
- stage: deploy
if: tag IS present
python: *latest_py3
install: skip
script: skip
deploy:
provider: pypi
on:
tags: true
all_branches: true
user... | ```yaml
dist: xenial
sudo: false
language: python
python:
- 2.7
- 3.6
- &latest_py3 3.7
jobs:
fast_finish: true
include:
- stage: deploy
if: tag IS present
python: *latest_py3
install: skip
script: skip
deploy:
provider: pypi
on:
tags: true
all_branches: true
... |
22fa4d68-f517-40f3-a3b4-f5886d153ff3 | {
"language": "YAML"
} | ```yaml
language: c, python3
addons:
apt:
packages:
- re2c
install:
- git clone https://github.com/martine/ninja.git
- cd ninja
- ./configure.py --bootstrap
- export PATH=$(pwd):$PATH
- cd ..
cache:
directories:
- ninja
script:
- ninja --version
- make Posix
- make run-posix
```
A... | ```yaml
language: c, python3
addons:
apt:
packages:
- re2c
install:
- CURDIR = $(pwd)
- if [ ! -d "~/foss/ninja" ]: then
- mkdir ~/foss/ninja
- git clone https://github.com/martine/ninja.git ~/foss/ninja
- cd ~/foss/ninja
- ./configure.py --bootstrap
fi
- export PATH=$(pwd):$PATH... |
19532c2a-11a5-4856-aa89-09edb02eeb8c | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.4
before_install:
- go get github.com/mattn/gom
services:
- rabbitmq
- redis-server
script: make
# Use Travis' container-based infrastructure:
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
notifications:
email: false
```
Make Travis te... | ```yaml
language: go
go:
- 1.5.3
before_install:
- go get github.com/mattn/gom
services:
- rabbitmq
- redis-server
script: make
# Use Travis' container-based infrastructure:
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
notifications:
email: false
``` |
f5a618f1-232e-4c8b-ab47-196a246824a2 | {
"language": "YAML"
} | ```yaml
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wge... | ```yaml
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
# Setup the environment before installing
before_install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$... |
bb458f33-4154-419a-8d3a-2b4871710ee2 | {
"language": "YAML"
} | ```yaml
env:
global:
- CC_TEST_REPORTER_ID=1561686e6399317b53a92aaad0550f8b91fe5af312e1f2852ab803ff6fcb6fa9
language: python
matrix:
include:
- python: "3.6"
dist: xenial
env:
TEST_REPORT_TARGET: "yes"
- python: "3.7"
dist: xenial
install:
- pip install pipenv
- pipenv install --dev --sk... | ```yaml
env:
global:
- CC_TEST_REPORTER_ID=1561686e6399317b53a92aaad0550f8b91fe5af312e1f2852ab803ff6fcb6fa9
language: python
matrix:
include:
- python: "3.6"
dist: xenial
- python: "3.7"
dist: xenial
env:
TEST_REPORT_TARGET: "yes"
install:
- pip install pipenv
- pipenv install --dev --sk... |
d295bb97-2fe0-4efe-950c-6b5bccd4fd16 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "3.4"
- "3.2"
- "2.7"
sudo: false
env:
- REQ="Django>=1.7,<1.8 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS==2.0a10"
install:
- pip install -q $REQ django-mptt==0.7.4 factory_boy==2.5.2 pytz==2015.4 flake8
- pyth... | ```yaml
language: python
python:
- "3.4"
- "3.2"
- "2.7"
sudo: false
env:
- REQ="Django>=1.7,<1.8 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS==2.0a10"
- REQ="Django>=1.10,<1.11 https://github.com/feincms/feincms/archive/next.zip"
install:
- pip i... |
b11c506f-b8c6-43cb-a0e2-cbf2efd56845 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
before_install:
- sudo apt-get install texlive-base
install:
- "pip install -r requirements.txt --use-mirrors"
script:
- make html && make html
- make singlehtml && make singlehtml
- make text
- make singletext
- make latexpdf
```
Uninstall a couple lar... | ```yaml
language: python
python:
- 2.6
- 2.7
before_install:
- sudo apt-get remove chromium firefox mongodb-10gen
- sudo apt-get install texlive-base
install:
- "pip install -r requirements.txt --use-mirrors"
script:
- make html && make html
- make singlehtml && make singlehtml
- make text
- make si... |
0415f211-6911-4090-988a-9865b5a2c59b | {
"language": "YAML"
} | ```yaml
language: go
# go1.11beta1 breaks the tests for lib/net/reverseconnection
go:
- "1.10"
before_install:
- go get github.com/mattn/goveralls
- REPO_NAME=$(basename $PWD)
- GITHUB_PATH=$(dirname $(dirname $PWD))
- SYMANTEC_PROJECT_DIR=${GITHUB_PATH}/Symantec/${REPO_NAME}
- mkdir -p ${SYMA... | ```yaml
language: go
# go1.11beta1 breaks the tests for lib/net/reverseconnection
go:
- "1.10"
before_install:
- go get github.com/mattn/goveralls
- REPO_NAME=$(basename $PWD)
- GITHUB_PATH=$(dirname $(dirname $PWD))
- SYMANTEC_PROJECT_DIR=${GITHUB_PATH}/Symantec/${REPO_NAME}
- mkdir -p ${SYMA... |
d739d4fc-d701-449d-b0f9-6c6fb038611f | {
"language": "YAML"
} | ```yaml
language: node_js
matrix:
include:
- node_js: '0.10'
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
env: COVERALLS=1
```
Remove Node 0.10 from Travis | ```yaml
language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
env: COVERALLS=1
``` |
d2c77c38-d8fc-4fc3-931e-e55c771a00a4 | {
"language": "YAML"
} | ```yaml
language: generic
matrix:
include:
- script:
- make test
- pod lib lint
env: JOB=Xcode
os: osx
osx_image: xcode8.3
before_install:
- pod repo update
- script:
- swift test
- swiftlint
env: JOB=SPM
os: osx
osx_image: xcod... | ```yaml
language: generic
matrix:
include:
- script:
- make test
- pod lib lint
env: JOB=Xcode
os: osx
osx_image: xcode8.3
before_install:
- pod repo update
- script:
- swift test
- swiftlint
env: JOB=SPM
os: osx
osx_image: xcod... |
c85590dc-8e89-4237-b490-ef115c9a3274 | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- "10"
- "8"
- "6"
notifications:
email:
recipients:
- ci@verylastroom.com
on_success: change
on_failure: change
before_script:
- yarn install --pure-install
script:
- yarn run test
```
Remove unused email notification o... | ```yaml
language: node_js
node_js:
- "10"
- "8"
- "6"
before_script:
- yarn install --pure-install
script:
- yarn run test
``` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.