Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Fix creation of debug version of IdnaMap | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
script:
- bin/create-idnamap --debug test/assets/IdnaMappingTable.txt -
- phpunit
notifications:
email: false
| sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
script:
- bin/create-idnamap.sh --debug test/assets/IdnaMappingTable.txt -
- phpunit
notifications:
email: false
|
Switch to JDK 7 when generating code coverage report and sending it to coveralls | language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
after_success:
- ./gradlew jacocoTestReport coveralls
| language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
after_success:
- jdk_switcher use oraclejdk7
- ./gradlew jacocoTestReport coveralls
|
Add confirmation for linux header install | language: python
python:
- 2.7
sudo: required
dist: trusty
env:
- ANSIBLE_VERSION=1.9.6
# - ANSIBLE_VERSION=2.0.2.0
# - ANSIBLE_VERSION=2.0.0.2
install:
- pip install -r requirements.txt
- pip install -q ansible==$ANSIBLE_VERSION
## Create module package and install it at the same level as the project
- ... | language: python
python:
- 2.7
sudo: required
dist: trusty
env:
- ANSIBLE_VERSION=1.9.6
# - ANSIBLE_VERSION=2.0.2.0
# - ANSIBLE_VERSION=2.0.0.2
install:
- pip install -r requirements.txt
- pip install -q ansible==$ANSIBLE_VERSION
## Create module package and install it at the same level as the project
- ... |
Update Travis to Xcode 9 | language: objective-c
xcode_project: Franz.xcodeproj
xcode_scheme: franz-Package
sudo: required
services:
- docker
| language: objective-c
xcode_project: Franz.xcodeproj
xcode_scheme: franz-Package
osx_image: xcode9
sudo: required
services:
- docker
|
Install nose during install step. | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
script:
- python setup.py test
sudo: false
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install nose
script:
- python setup.py test
sudo: false
|
Disable abi check on Travis-CI | language: cpp
compiler:
- gcc
- clang
before_install:
- 'ci/before_install.sh'
env:
global:
matrix:
- BUILD_CORE_ONLY=OFF BUILD_TYPE=Debug
- BUILD_CORE_ONLY=OFF BUILD_TYPE=Release
- BUILD_CORE_ONLY=ON BUILD_TYPE=Debug
- BUILD_CORE_ONLY=ON BUILD_TYPE=Release
before_script: cmake -DBUILD_CORE_ON... | language: cpp
compiler:
- gcc
- clang
before_install:
- 'ci/before_install.sh'
env:
global:
matrix:
- BUILD_CORE_ONLY=OFF BUILD_TYPE=Debug
- BUILD_CORE_ONLY=OFF BUILD_TYPE=Release
- BUILD_CORE_ONLY=ON BUILD_TYPE=Debug
- BUILD_CORE_ONLY=ON BUILD_TYPE=Release
before_script: cmake -DBUILD_CORE_ON... |
Update Travis config, add PHP 7.4. | language: php
dist: trusty
cache:
directories:
- $HOME/.composer
sudo: false
matrix:
fast_finish: true
include:
- php: '5.4'
- php: '5.6'
- php: '7.0'
- php: '7.3'
install:
- composer -n --no-ansi install --dev --prefer-source
| language: php
dist: trusty
cache:
directories:
- $HOME/.composer
sudo: false
matrix:
fast_finish: true
include:
- php: '5.4'
- php: '5.6'
- php: '7.0'
- php: '7.2'
- php: '7.4'
before_install:
# turn off XDebug
- phpenv config-rm xdebug.ini
install:
- composer install --no-progress -... |
Remove when condition, host modules does not work | ---
- name:
become: yes
hostname:
name: "{{ inventory_hostname }}"
- name: add hostname to /etc/hosts
become: yes
template:
src: etc/hosts.j2
dest: /etc/hosts
owner: root
group: root
mode: 0644
when:
- os_family is not 'Darwin'
| ---
- name:
become: yes
hostname:
name: "{{ inventory_hostname }}"
- name: add hostname to /etc/hosts
become: yes
template:
src: etc/hosts.j2
dest: /etc/hosts
owner: root
group: root
mode: 0644
|
Exclude :extras group from Travis | language: ruby
rvm:
- 1.9.2
- 1.9.3
| language: ruby
rvm:
- 1.9.2
- 1.9.3
bundler_args: --without extras
|
Change back to continous deployment by default | assembly-informational-format: '{NuGetVersion}'
next-version: 3.0.0
| assembly-informational-format: '{NuGetVersion}'
mode: ContinuousDeployment
next-version: 3.0.0
|
Add date time format to locale | # Files in the config/locales directory are used for internationalization
# and are automatically loaded by Rails. If you want to use locales other
# than English, add the necessary files in this directory.
#
# To use the locales, use `I18n.t`:
#
# I18n.t 'hello'
#
# In views, this is aliased to just `t`:
#
# <... | # Files in the config/locales directory are used for internationalization
# and are automatically loaded by Rails. If you want to use locales other
# than English, add the necessary files in this directory.
#
# To use the locales, use `I18n.t`:
#
# I18n.t 'hello'
#
# In views, this is aliased to just `t`:
#
# <... |
Fix bogus duplicate code warning. | engines:
phpcodesniffer:
enabled: true
config:
standard: "PSR1,PSR2"
phpmd:
enabled: true
checks:
CleanCode/StaticAccess:
enabled: false
Naming/ShortVariable:
enabled: false
Naming/ShortMethodName:
enabled: false
Naming/BooleanGetMethodName:
... | engines:
phpcodesniffer:
enabled: true
config:
standard: "PSR1,PSR2"
phpmd:
enabled: true
checks:
CleanCode/StaticAccess:
enabled: false
Naming/ShortVariable:
enabled: false
Naming/ShortMethodName:
enabled: false
Naming/BooleanGetMethodName:
... |
Add feature branch temporarily to refine JSDoc on Doclets.io | packageJson: package.json
dir: src
articles:
- Overview: readme.md
branches:
- master
- develop
- feature/*
- release/*
- hotfix/*
| packageJson: package.json
dir: src
articles:
- Overview: readme.md
branches:
- master
- develop
- feature/*
- release/*
- hotfix/*
- feature/#11-cleanup-project
|
Change Librem Social 1.4.0 tag | Categories:
- Internet
License: GPL-3.0-only
AuthorName: Purism SPC
AuthorEmail: feedback@puri.sm
WebSite: https://librem.one
SourceCode: https://source.puri.sm/liberty/social/android
IssueTracker: https://source.puri.sm/liberty/social/android/issues
Changelog: https://source.puri.sm/liberty/social/android/blob/maste... | Categories:
- Internet
License: GPL-3.0-only
AuthorName: Purism SPC
AuthorEmail: feedback@puri.sm
WebSite: https://librem.one
SourceCode: https://source.puri.sm/liberty/social/android
IssueTracker: https://source.puri.sm/liberty/social/android/issues
Changelog: https://source.puri.sm/liberty/social/android/blob/maste... |
Add code coverage to Scrutinizer | filter:
paths: [src/*]
excluded_paths: [spec/*, tests/*]
tools:
php_analyzer: true
php_code_sniffer:
config:
standard:
"PSR2"
checks:
php:
code_rating: true | filter:
paths: [src/*]
excluded_paths: [spec/*, tests/*]
tools:
php_analyzer: true
php_code_sniffer:
config:
standard:
"PSR2"
checks:
php:
code_rating: true
build:
dependencies:
override:
- composer install --no-interaction --prefer-source
tests:
override:
-
... |
Allow -> literal for multiline Proc | Lint/HandleExceptions:
Enabled: false
Lint/UnderscorePrefixedVariableName:
Enabled: false
Lint/UnusedBlockArgument:
Enabled: false
Lint/UnusedMethodArgument:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/LineL... | Lint/HandleExceptions:
Enabled: false
Lint/UnderscorePrefixedVariableName:
Enabled: false
Lint/UnusedBlockArgument:
Enabled: false
Lint/UnusedMethodArgument:
Enabled: false
Metrics/AbcSize:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/LineL... |
Whitelist stage for approval branch. | machine:
node:
version: stable
environment:
PATH: ${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin:${HOME}/.yarn/bin
dependencies:
pre:
- curl -o- -L https://yarnpkg.com/install.sh | bash
override:
- yarn cache clean
- bundle install
- yarn install --force
- bower install... | machine:
node:
version: stable
environment:
PATH: ${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin:${HOME}/.yarn/bin
dependencies:
pre:
- curl -o- -L https://yarnpkg.com/install.sh | bash
override:
- yarn cache clean
- bundle install
- yarn install --force
- bower install... |
Update CircleCI to Xcode 7.3 | machine:
xcode:
version: 7.2
test:
override:
- script/cibuild
| machine:
xcode:
version: 7.3
test:
override:
- script/cibuild
|
Use the latest develop version of Docksal in tests | language: generic
services:
- docker
env:
global:
- REPO=docksal/cli
- LATEST_VERSION=7.2
- DOCKSAL_VERSION=master
matrix:
- VERSION=5.6
- VERSION=7.0
- VERSION=7.1
- VERSION=7.2
before_install:
- sudo apt-get -qq update
- sudo apt-get install libfcgi0ldbl # cgi-fcgi binary use... | language: generic
services:
- docker
env:
global:
- REPO=docksal/cli
- LATEST_VERSION=7.2
- DOCKSAL_VERSION=develop
matrix:
- VERSION=5.6
- VERSION=7.0
- VERSION=7.1
- VERSION=7.2
before_install:
- sudo apt-get -qq update
- sudo apt-get install libfcgi0ldbl # cgi-fcgi binary us... |
Add nodejs versions into TravisCI | language: node_js
node_js:
- "0.12"
- "2"
- "3"
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
| language: node_js
node_js:
- "0.12"
- "iojs-v1"
- "iojs-v2"
- "iojs-v3"
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
|
Remove graphiz dependancy for testing purpose | #sudo: true
#before_script:
# - sudo apt-get update -q
# - sudo apt-get install gfortran liblapack-dev gcc
# - sudo apt-get install graphviz
sudo: false
addons:
apt:
packages:
- gfortran
- gcc
- liblapack-dev
- graphviz
cache:
directories:
- $HOME/.opam/
language: python
python:
- "... | #sudo: true
#before_script:
# - sudo apt-get update -q
# - sudo apt-get install gfortran liblapack-dev gcc
# - sudo apt-get install graphviz
sudo: false
addons:
apt:
packages:
- gfortran
- gcc
- liblapack-dev
# - graphviz
cache:
directories:
- $HOME/.opam/
language: python
python:
- ... |
Install bundler 1.9 on Travis | language: ruby
rvm:
- 2.2.2
- 2.1.6
- 2.0.0-p645
| language: ruby
before_install:
- gem install bundler -v 1.9
rvm:
- 2.2.2
- 2.1.6
- 2.0.0-p645
|
Allow failure on jruby head. | ---
language: ruby
sudo: false
cache: bundler
bundler_args: --without yard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- jruby
- rbx-2
env:
global:
- JRUBY_OPTS="-Xcli.debug=true --debug"
matrix:
allow_failures:
- rvm: ruby-head
- rv... | ---
language: ruby
sudo: false
cache: bundler
bundler_args: --without yard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- jruby
- jruby-head
- rbx-2
env:
global:
- JRUBY_OPTS="-Xcli.debug=true --debug"
matrix:
allow_failures:
- rvm: rub... |
FIX Updated Travis configuration to use Xcode 10 | language: objective-c
osx_image: xcode9
before_install:
- gem install cocoapods
- carthage bootstrap --platform ios
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- rake build:ios DESTINATION='OS=10.0,name=iPhone 6s'
- rake build:ios DESTINATION='platform=iOS Simulator,name... | language: objective-c
osx_image: xcode10
before_install:
- gem install cocoapods
- carthage bootstrap --platform ios
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- rake build:ios DESTINATION='OS=10.0,name=iPhone 6s'
- rake build:ios DESTINATION='platform=iOS Simulator,nam... |
Add an axis on ZMQ version. | language: python
python:
- 2.6
- 2.7
# comment out pypy until travis updates to pypy 2.0/2.1, cffi doesn't work
# on PyPy 1.9
# - pypy
env:
- REACTOR=select
- REACTOR=epoll
install:
- sudo apt-get install libzmq3-dev
- pip install -r requirements.txt --use-mirrors
script:
- trial... | language: python
python:
- 2.6
- 2.7
# comment out pypy until travis updates to pypy 2.0/2.1, cffi doesn't work
# on PyPy 1.9
# - pypy
env:
- REACTOR=select ZMQ_VERSION=2
- REACTOR=epoll ZMQ_VERSION=2
- REACTOR=epoll ZMQ_VERSION=3
- REACTOR=epoll ZMQ_VERSION=3
install:
- test "$Z... |
Fix Python executable and path for latest Travis | sudo: false
language: python
python:
- 2.6
- 2.7
cache:
pip: true
directories:
- $HOME/perl5
install:
- export PERL5LIB=~/perl5/lib/perl5
- export PATH=~/perl5/bin:$PATH
- pip install coverage matplotlib==1.5.3
- curl -L https://cpanmin.us/ -o cpanm && chmod a+x cpanm
- ./cpanm --local-lib=~/perl5... | sudo: false
language: python
python:
- 2.6
- 2.7
cache:
pip: true
directories:
- $HOME/perl5
install:
- export PERL5LIB=~/perl5/lib/perl5
- export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages)
- export PATH=~/perl5/bin:$PATH
- pip install coverage matplotlib==1.5.3
- c... |
Fix travais test - 2 | ---
# Travis file for locales role
language: python
python: "2.7"
before_install:
# Make sure everything's up to date.
- sudo apt-get update -qq
install:
# Install Ansible.
- pip install ansible
# Add ansible.cfg to pick up roles path.
- "cp ./tests/ansible.cfg ./"
script:
# Check the role/playbook'... | ---
# Travis file for locales role
language: python
python: "2.7"
before_install:
# Make sure everything's up to date.
- sudo apt-get update -qq
install:
# Install Ansible.
- pip install ansible
# Add ansible.cfg to pick up roles path.
- "cp ./tests/ansible.cfg ./"
script:
# Check the role/playbook'... |
Comment out coveralls to stop breaking builds | language: go
sudo: false
go:
- tip
before_install:
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
| language: go
sudo: false
go:
- tip
#before_install:
# - go get github.com/mattn/goveralls
#script:
# - $HOME/gopath/bin/goveralls -service=travis-ci
|
Remove appraisal from Travis config | language: ruby
bundler_args: --without extras
script: rake appraisal
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
gemfile:
- gemfiles/activerecord-3.0.gemfile
- gemfiles/activerecord-3.1.gemfile
- gemfiles/activerecord-3.2.gemfile
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-19mode... | language: ruby
bundler_args: --without extras
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
gemfile:
- gemfiles/activerecord-3.0.gemfile
- gemfiles/activerecord-3.1.gemfile
- gemfiles/activerecord-3.2.gemfile
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-19mode
|
Add support for 3.4 and 3.5. | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "pypy"
install:
- pip install -r requirements.txt
- python setup.py install
- pip install coveralls
- pip install flake8==2.5.0
script:
- flake8 calexicon/ --max-complexity 5 --max-line-length 99 --ignore E201,E202,E402
- coverage run --source=cale... | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
install:
- pip install -r requirements.txt
- python setup.py install
- pip install coveralls
- pip install flake8==2.5.0
script:
- flake8 calexicon/ --max-complexity 5 --max-line-length 99 --ignore E201,E202,E402
- covera... |
Update to use Swift 3.1 CI scripts | os:
- linux
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode8.2
script:
- eval "$(curl -sL https://raw.githubusercontent.com/brokenhandsio/swift/master/ci)"
| os:
- linux
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode8.3
script:
- eval "$(curl -sL https://swift.vapor.sh/ci-3.1)"
- eval "$(curl -sL https://swift.vapor.sh/codecov)"
|
Allow for HHVM to fail, its just to see if this works anyway | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist --no-suggest;
script: vendor/bin/phpunit | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist --no-suggest;
script: vendor/bin/phpunit |
Add ant and ant-optional for Travis CI | # Use Docker-based container (instead of OpenVZ)
sudo: false
# https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming
# Travis now defaults to Trusty, which is missing openjdk6.
dist: precise
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot
# WORKAROUND https://github.com/travis-c... | # Use Docker-based container (instead of OpenVZ)
sudo: false
# https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming
# Travis now defaults to Trusty, which is missing openjdk6.
dist: precise
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot
# WORKAROUND https://github.com/travis-c... |
Fix Lambda not being deployed | dist: bionic
language: generic
os: linux
branches:
only:
- deploy
deploy:
- provider: lambda
access_key_id: $AWS_S3_ACCESS_KEY_ID
secret_access_key: $AWS_S3_SECRET_ACCESS_KEY
region: "us-east-1"
function_name: "blog-martincostello-com-redirect-folders"
role: "arn:aws:iam::492538393790:role... | dist: bionic
language: generic
os: linux
branches:
only:
- deploy
deploy:
- provider: lambda
access_key_id: $AWS_S3_ACCESS_KEY_ID
secret_access_key: $AWS_S3_SECRET_ACCESS_KEY
region: "us-east-1"
function_name: "blog-martincostello-com-redirect-folders"
role: "arn:aws:iam::492538393790:role... |
Test against MRI 2.5.1, 2.4.4, 2.3.7, 2.2.10, and 2.1.10 | language: ruby
cache: bundler
sudo: false
bundler_args: --without perf
script: bundle exec rake
before_install:
- gem install bundler
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0-p648
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
matrix:
allow_failures:
... | language: ruby
cache: bundler
sudo: false
bundler_args: --without perf
script: bundle exec rake
before_install:
- gem install bundler
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0-p648
- 2.1.10
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
matrix:
... |
Add Ruby 1.9.3 to Travis CI build matrix. | language: ruby
rvm:
- 2.1.0
- 2.0.0
| language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
|
Add 3.2 and php 5.6 test | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
language: php
php:
- 5.3
sudo: false
env:
- DB=MYSQL CORE_RELEASE=3.1
matrix:
include:
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3
before_script:
- git clone git://github.com/silverstripe-labs/silverstripe-travis-... | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
language: php
php:
- 5.3
sudo: false
env:
- DB=MYSQL CORE_RELEASE=3.1
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.2
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3
before_script:
- git clone git... |
Move Travis build to Yarn | sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- node_modules
install:
- npm install
script:
- npm run lint
- npm run test
after_success:
- npm run codecov
| sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- node_modules
install:
- yarn install
script:
- yarn run lint
- yarn test
after_success:
- yarn run codecov
|
Remove running specs for Ruby 1.9.3 | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.2.3
before_install: gem install bundler
git:
depth: 1
| language: ruby
rvm:
- 2.0.0
- 2.1.1
- 2.2.3
before_install: gem install bundler
git:
depth: 1
|
Test with latest Ruby versions | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.5
- 2.5.7
- 2.4.9
- 2.3.8
- ruby-head
- jruby-9.2.5.0
gemfile:
- gemfiles/rails_4.2.10.gemfile
- gemfiles/rails_5.0.7.gemfile
- gemfiles/rails_5.1.6.gemfile
- gemfiles/rails_5.2.0.gemfile
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
- 2.4.10
- 2.3.8
- ruby-head
- jruby-9.2.13.0
gemfile:
- gemfiles/rails_4.2.10.gemfile
- gemfiles/rails_5.0.7.gemfile
- gemfiles/rails_5.1.6.gemfile
- gemfiles/rails_5.2.0.gemfile
|
Add example running to Travis configuration | language: python
python: "3.5"
install: "pip install tox coveralls"
env:
- TOX_ENV=py3
- TOX_ENV=py27
- TOX_ENV=pylint
- TOX_ENV=doc
script: tox -e $TOX_ENV
after_success: coveralls
| language: python
python: "3.5"
install: "pip install tox coveralls"
env:
- TOX_ENV=py3
- TOX_ENV=py27
- TOX_ENV=pylint
- TOX_ENV=doc
- TOX_ENV=examples-py3
- TOX_ENV=examples-py27
script: tox -e $TOX_ENV
after_success: coveralls
|
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 -... |
Include golang cover tool for test coverage metrics on CI | language: go
go:
- 1.2
- 1.3
script: bin/unit
before_script:
- export PATH=$HOME/gopath/bin:$PATH
- echo $PATH
- go get github.com/tools/godep
- which godep
- godep restore
notifications:
webhooks:
- http://pulse.pivotallabs.com/projects/351885a3-fe2e-44df-9b25-76bd4a19f297/status
email:
- ... | language: go
go:
- 1.2
- 1.3
script: bin/unit
before_script:
- export PATH=$HOME/gopath/bin:$PATH
- go get code.google.com/p/go.tools/cmd/cover
- go get github.com/tools/godep
- godep restore
notifications:
webhooks:
- http://pulse.pivotallabs.com/projects/351885a3-fe2e-44df-9b25-76bd4a19f297/statu... |
Update from Hackage at 2022-10-09T08:56:24Z | homepage: http://hspec.github.io/
changelog-type: ''
hash: e9d680a6c5d91a4be0ddae2cb459a206f26937ff73600256321275dcdac25c8a
test-bench-deps:
hspec-contrib: -any
base: ==4.*
hspec: -any
hspec-core: '>=2.6.0 && <2.10'
HUnit: -any
QuickCheck: -any
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Contribute... | homepage: http://hspec.github.io/
changelog-type: ''
hash: 301a94b5892d63f34b7f863a7e080dc7c6b97b6d509f7f27b1f42080baac26e1
test-bench-deps:
hspec-contrib: -any
base: ==4.*
hspec: -any
hspec-core: '>=2.6.0'
HUnit: -any
QuickCheck: -any
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Contributed functio... |
Update from Hackage at 2016-11-19T10:08:05Z | homepage: https://github.com/cocreature/system-locale
changelog-type: ''
hash: ef22b0c977e3fd978ad795eda8124279e4e5712d08815234b63cd3b3f97718e9
test-bench-deps:
base: -any
hspec: -any
system-locale: -any
maintainer: moritz.kiefer@purelyfunctional.org
synopsis: Get system locales
changelog: ''
basic-deps:
base: ... | homepage: https://github.com/cocreature/system-locale
changelog-type: ''
hash: 3681691c486cb637328329037f5ccb6bc266310cc4db7bb04072a7084328cfa4
test-bench-deps:
base: -any
hspec: -any
system-locale: -any
maintainer: moritz.kiefer@purelyfunctional.org
synopsis: Get system locales
changelog: ''
basic-deps:
base: ... |
Use proper versions of packages for CI | language: python
python:
- "3.5"
- "3.6"
install:
- pip install .
- pip install pytest codecov pytest-cov
- export PYTHONPATH="." # No data is collected by `coverage` without this.
branches:
only:
- master
- develop
script:
- python -m pytest --cov=dsawl --cov-config .coveragerc
after_success:
... | language: python
python:
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
- pip install .
- pip install pytest codecov pytest-cov
- export PYTHONPATH="." # No data is collected by `coverage` without this.
branches:
only:
- master
- develop
script:
- python -m pytest --cov=dsawl --cov-... |
Remove older node versions that are breaking CI builds | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
- "7"
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: change | language: node_js
node_js:
- "5"
- "6"
- "7"
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: change |
Add PHP 7.3 target to Travis configuration | language: php
matrix:
include:
- php: 7.1
- php: 7.2
- php: nightly
fast_finish: true
allow_failures:
- php: nightly
before_install:
- phpenv config-rm xdebug.ini || true
- composer config --global github-oauth.github.com $GITHUB_TOKEN
install: composer install --pr... | language: php
matrix:
include:
- php: 7.1
- php: 7.2
- php: 7.3
- php: nightly
fast_finish: true
allow_failures:
- php: nightly
before_install:
- phpenv config-rm xdebug.ini || true
- composer config --global github-oauth.github.com $GITHUB_TOKEN
install: co... |
Disable email notifications from Travis. | ---
language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
before_install:
- phpenv config-rm xdebug.ini || true
- composer self-update
install:
- composer install --prefer-source
script: ./vendor/bin/phpunit
| ---
language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
before_install:
- phpenv config-rm xdebug.ini || true
- composer self-update
install:
- composer install --prefer-source
script: ./vendor/bin/phpunit
notifications:
email: false
|
Remove rustfmt testing until the style RFCs stabilize that a little more. | sudo: false
language: rust
rust:
- nightly
before_script: (cargo install --verbose --root $HOME rustfmt || true)
script:
- cd backend
- cargo fmt -- --write-mode=diff
- cargo build --verbose
- cargo test --verbose
cache: cargo
env:
- PATH=$HOME/.cargo/bin:$PATH
| sudo: false
language: rust
cache: cargo
rust:
- nightly
script:
- cargo build --verbose
- cargo test --verbose
|
Enable fast finish in Travis | branches:
only:
- master
language: ruby
bundler_args: --without development
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
- git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-release
- .forge-release/publish
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
matrix:
... | ---
branches:
only:
- master
language: ruby
bundler_args: --without development
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
- git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-release
- .forge-release/publish
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
matrix:... |
Add OpenMPI path to current path | # Ubuntu 14.04 Trusty support
sudo: required
dist: trusty
language: cpp
# Conifguration matrix
matrix:
include:
- compiler: gcc
env:
- CXX_COMPILER=g++-4.9
- CC_COMPILER=gcc-4.9
- FC_COMPILER=gfortran-4.9
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
... | # Ubuntu 14.04 Trusty support
sudo: required
dist: trusty
language: cpp
# Conifguration matrix
matrix:
include:
- compiler: gcc
env:
- CXX_COMPILER=g++-4.9
- CC_COMPILER=gcc-4.9
- FC_COMPILER=gfortran-4.9
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
... |
Clean up Travis CI config. | git:
depth: 5
addons:
apt:
packages:
- libcurl4-openssl-dev # required to avoid SSL errors
- openjdk-8-jre
language: node_js
node_js:
- "10"
env:
global:
- RUBY_VERSION=2.4
before_install:
- export NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- rvm use $RUBY_VERSION --install --binary --fuzzy... | git:
depth: 5
language: node_js
node_js:
- "10"
env:
global:
- RUBY_VERSION=2.5
before_install:
- export NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- rvm use $RUBY_VERSION --install --binary --fuzzy
install:
- npm ci
- bundle install --deployment --jobs=3 --retry=3 --clean
script:
- bundle exec jekyll... |
Add ruby-head as allowed failure. | rvm:
- 1.9.2
- 1.9.3
notifications:
recipients:
- jari.bakken@gmail.com
- p0deje@gmail.com
irc: "irc.freenode.net#watir"
before_script:
- support/travis.sh
env:
- WATIR_WEBDRIVER_BROWSER=firefox
- WATIR_WEBDRIVER_BROWSER=firefox ALWAYS_LOCATE=false
- WATIR_WEBDRIVER_BROWSER=firefox PREFER_CSS=1 ... | rvm:
- 1.9.2
- 1.9.3
- ruby-head
notifications:
recipients:
- jari.bakken@gmail.com
- p0deje@gmail.com
irc: "irc.freenode.net#watir"
before_script:
- support/travis.sh
env:
- WATIR_WEBDRIVER_BROWSER=firefox
- WATIR_WEBDRIVER_BROWSER=firefox ALWAYS_LOCATE=false
- WATIR_WEBDRIVER_BROWSER=firefox... |
Add Redis to Travis config. | language: ruby
rvm:
- 2.1.1
addons:
postgresql: '9.3'
before_script:
- psql -c 'create database asm_test;' -U postgres
- cp config/database.yml.travis config/database.yml
- bin/rake db:schema:load RAILS_ENV=test
env:
global:
secure: e5U3AYlkOhCiDJxHnR+tAkARa+EL3mcKYQujnerIkXxcCHz2D2cRgYutGYb6sfZxZaspZsk62EyxGTe... | language: ruby
rvm:
- 2.1.1
addons:
postgresql: '9.3'
services:
- redis-server
before_script:
- psql -c 'create database asm_test;' -U postgres
- cp config/database.yml.travis config/database.yml
- bin/rake db:schema:load RAILS_ENV=test
env:
global:
secure: e5U3AYlkOhCiDJxHnR+tAkARa+EL3mcKYQujnerIkXxcCHz2D2cR... |
Install pep8 before trying to use it | language: python
python:
- "3.4"
# command to install dependencies
install:
- pep8 .
- pip install .
# command to run tests
script: python -m unittest discover maloja | language: python
python:
- "3.4"
# command to install dependencies
install:
- pip install pep8
- pip install .
# command to run tests
script:
- pep8 .
- python -m unittest discover maloja |
Add gems for osx role. | language: objective-c
before_install:
- brew update
install:
- sudo pip install ansible --quiet
script:
- bash install.sh --skip-short-stack
- cp ~/.short-stack/templates/stack-test.yml ~/.stack.yml
- short-stack
- >
short-stack
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| ... | language: objective-c
before_install:
- brew update
install:
- sudo pip install ansible --quiet
- gem install json
- gem install CFPropertyList
script:
- bash install.sh --skip-short-stack
- cp ~/.short-stack/templates/stack-test.yml ~/.stack.yml
- short-stack
- >
short-stack
| grep -q 'changed=0.*failed=0'
&&... |
Update the Ruby build matrix for Travis CI. | sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.5
- 2.3.1
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
| sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
|
Allow Python 2.6 builds to fail | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
matrix:
allow_failures:
- python: "3.2"
- python: "3.3"
- python: "pypy"
install:
- uname -a
- sudo apt-get update -qq
- sudo apt-get install -qq curl protobuf-compiler libprotobuf-dev libncurse... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
matrix:
allow_failures:
- python: "2.6"
- python: "3.2"
- python: "3.3"
- python: "pypy"
install:
- uname -a
- sudo apt-get update -qq
- sudo apt-get install -qq curl protobuf-compiler l... |
Test with latest rubies, dropping EOL ones. | language: ruby
rvm:
- 2.5.8
- 2.6.6
- 2.7.2
- 3.0.0
gemfile:
- gemfiles/activerecord_6.0.gemfile
- gemfiles/activerecord_6.1.gemfile
fast_finish: true
| language: ruby
rvm:
- 2.6.9
- 2.7.5
- 3.0.3
gemfile:
- gemfiles/activerecord_6.0.gemfile
- gemfiles/activerecord_6.1.gemfile
fast_finish: true
|
Set test command for TravisCI | language: ruby
rvm:
- 1.8.7
env:
- PUPPET_GEM_VERSION="3.4.3"
| language: ruby
script: "bundle exec rake spec"
rvm:
- 1.8.7
env:
- PUPPET_GEM_VERSION="3.4.3"
|
Use nosetests -v for more useful output on success. | language: python
python:
- "2.7"
install: pip install -r requirements.txt
script: nosetests
| language: python
python:
- "2.7"
install: pip install -r requirements.txt
script: nosetests -v
|
Add PHP 7.0 to the list of tested PHP versions. | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer update
script:
- php vendor/bin/phpunit
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover log/coverage.xml
- wget ... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
before_script:
- composer self-update
- composer update
script:
- php vendor/bin/phpunit
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-covera... |
Add patch version back to Travis config It did not like that they were missing | language: ruby
sudo: false
rvm:
- 2.2
- 2.3
script: bundle exec rspec
env:
- PAGINATOR=kaminari
- PAGINATOR=will_paginate
| language: ruby
sudo: false
rvm:
- 2.2.5
- 2.3.1
script: bundle exec rspec
env:
- PAGINATOR=kaminari
- PAGINATOR=will_paginate
|
Remove unneded JaCoCoReport from Travis-CI | language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
- git config --unset-all remote.origin.fetch
- git config --add remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
- git fetch --unshallow
- git fetch origin testbranch:testbranch
after_success:
- ./gradlew jacocoTestReport
after_fail... | language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
- git config --unset-all remote.origin.fetch
- git config --add remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
- git fetch --unshallow
- git fetch origin testbranch:testbranch
after_failure:
- cat build/test-results/*.xml
|
Test on Node 0.8 on Travis CI. | language: node_js
node_js:
- 0.6
- 0.7
branches:
only:
- master
notifications:
recipients:
- michi@netzpiraten.ch
| language: node_js
node_js:
- 0.6
- 0.7
- 0.8
branches:
only:
- master
notifications:
recipients:
- michi@netzpiraten.ch
|
Add npm install to tavis conf. | language: node_js
node_js:
- "0.10"
script: cd server/ && npm test
| language: node_js
node_js:
- "0.10"
before_install:
- cd server/
install:
- npm install
script:
- npm test
|
Fix error with pybuilder + Travis CI + Python 3.6 | language: python
python:
- "pypy"
# pypy3 is broken until https://github.com/pallets/flask/pull/1841
# is released, which should happen in flask version 0.11.2.
# - "pypy3"
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install pybuilder
- pip install coveralls
- pyb install_depend... | language: python
python:
- "pypy"
# pypy3 is broken until https://github.com/pallets/flask/pull/1841
# is released, which should happen in flask version 0.11.2.
# - "pypy3"
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -U pip setuptools
- pip install pybuilder
- pip instal... |
Drop tests for PHP < 5.5, add PHP 7.1 and 7.2 | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
matrix:
allow_failures:
- php: hhvm
| language: php
php:
- 5.5
- 5.6
- 7.1
- 7.2
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
matrix:
allow_failures:
- php: hhvm
|
Add "pgp-happy-eyeballs" in Travis to help cut down on gpg-related issues | language: bash
services: docker
env:
- VERSION=5.0-rc VARIANT=
- VERSION=5.0-rc VARIANT=32bit
- VERSION=5.0-rc VARIANT=alpine
- VERSION=4.0 VARIANT=
- VERSION=4.0 VARIANT=32bit
- VERSION=4.0 VARIANT=alpine
- VERSION=3.2 VARIANT=
- VERSION=3.2 VARIANT=32bit
- VERSION=3.2 VARIANT=alpine
install:
- g... | language: bash
services: docker
env:
- VERSION=5.0-rc VARIANT=
- VERSION=5.0-rc VARIANT=32bit
- VERSION=5.0-rc VARIANT=alpine
- VERSION=4.0 VARIANT=
- VERSION=4.0 VARIANT=32bit
- VERSION=4.0 VARIANT=alpine
- VERSION=3.2 VARIANT=
- VERSION=3.2 VARIANT=32bit
- VERSION=3.2 VARIANT=alpine
install:
- g... |
Build kore with NOTLS=1 (Travis CI). | language: c
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository -y ppa:maxmind/ppa
- sudo apt-get -qq update
- sudo apt-get install -y libmaxminddb-dev libssl-dev
- git clone https://git.kore.io/kore.git
- cd kore && make
- sudo make install
- cd -
script: kodev build
| language: c
compiler:
- clang
- gcc
before_install:
- sudo add-apt-repository -y ppa:maxmind/ppa
- sudo apt-get -qq update
- sudo apt-get install -y libmaxminddb-dev libssl-dev
- git clone https://git.kore.io/kore.git
- cd kore && make NOTLS=1
- sudo make install
- cd -
script: kodev build
|
Add ability to unittest puppet 4 | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--color --format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_G... | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--color --format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_G... |
Change project name for better paths | #
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site... | #
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site... |
Change the `sass_dir` to `load_paths` for multiple folders | # Website settings
title: 1upnote
tagline: Web design, development and UX
description: >-
1upnote is a blog that focuses on standards-based design techniques,
useful UX information and expert tips for building effective user interfaces.
baseurl: ''
url: https://1upnote.com
permalink: /:title
timezone: Asia/Seoul
ve... | # Website settings
title: 1upnote
tagline: Web design, development and UX
description: >-
1upnote is a blog that focuses on standards-based design techniques,
useful UX information and expert tips for building effective user interfaces.
baseurl: ''
url: https://1upnote.com
permalink: /:title
timezone: Asia/Seoul
ve... |
Add mirror to prose config | markdown: redcarpet
prose:
metadata:
_posts:
- name: "title"
field:
element: "text"
label: "Title"
value: ""
placeholder: "Title Goes Here"
- name: "layout"
field:
element: "text"
label: "Layout"
value: "post"
... | markdown: redcarpet
prose:
metadata:
_posts:
- name: "title"
field:
element: "text"
label: "Title"
value: ""
placeholder: "Title Goes Here"
- name: "layout"
field:
element: "text"
label: "Layout"
value: "post"
... |
Edit config.yml for initial site | ########################### EDIT YOUR SETTINGS HERE
# Site settings
title: Brume # give your site a title
email: you@example.com # put your email address in here; optional
# edit your site description; keep it brief
description: > # this just means to ignore newlines until "baseurl:"
Brume is simple. It's easy to use... | ########################### EDIT YOUR SETTINGS HERE
# Site settings
title: Codey Codey # give your site a title
email: you@example.com # put your email address in here; optional
# edit your site description; keep it brief
description: > # this just means to ignore newlines until "baseurl:"
A Blog for learning to code... |
Change the permalink style to `/:title` | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... |
Use setup-action to install JDK 5 | name: JDK
on:
push:
paths:
- '.github/workflows/jdks.yml'
- 'install-jdk.sh'
jobs:
jdk-ea:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: source install-jdk.sh --dry-run
jdk-5:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: source i... | name: JDK
on:
push:
paths:
- '.github/workflows/jdks.yml'
- 'install-jdk.sh'
jobs:
jdk-ea:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: source install-jdk.sh --dry-run
jdk-5:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: source i... |
Remove single quote check from eslint since prettier formats with single quotes | env:
browser: true
commonjs: true
es6: true
node: true
mocha: true
extends: 'eslint:recommended'
parserOptions:
ecmaVersion: 2017
ecmaFeatures:
experimentalObjectRestSpread: true
jsx: true
sourceType: module
plugins:
- react
rules:
indent:
- error
- tab
linebreak-style:
- error... | env:
browser: true
commonjs: true
es6: true
node: true
mocha: true
extends: 'eslint:recommended'
parserOptions:
ecmaVersion: 2017
ecmaFeatures:
experimentalObjectRestSpread: true
jsx: true
sourceType: module
plugins:
- react
rules:
indent:
- error
- tab
linebreak-style:
- error... |
Add caching of Maven deps | name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 15 ]
name: Java ${{ matrix.java }} CI
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: ${{ mat... | name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 15 ]
name: Java ${{ matrix.java }} CI
steps:
- uses: actions/checkout@v2
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/... |
Add pub_semver for Semver parsing. | name: atom_dartlang
version: 0.3.0
description: An experimental Dart plugin for Atom.
homepage: https://github.com/dart-atom/dartlang
environment:
sdk: '>=1.0.0 <2.0.0'
dependencies:
frappe: ^0.4.0
logging: ^0.11.0
markdown: ^0.7.0
dev_dependencies:
grinder: ^0.7.0
html: ^0.12.0
test: ^0.12.0
| name: atom_dartlang
version: 0.3.0
description: An experimental Dart plugin for Atom.
homepage: https://github.com/dart-atom/dartlang
environment:
sdk: '>=1.0.0 <2.0.0'
dependencies:
frappe: ^0.4.0
logging: ^0.11.0
markdown: ^0.7.0
dev_dependencies:
grinder: ^0.7.0
html: ^0.12.0
pub_semver: ^1.2.1
test:... |
Drop unneeded quoting from env variable in workflows yaml | name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
env:
RUSTFLAGS: '-Dwarnings'
jobs:
test:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.36.0]
steps:
- uses: actions/checkout@v3
... | name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
env:
RUSTFLAGS: -Dwarnings
jobs:
test:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.36.0]
steps:
- uses: actions/checkout@v3
... |
Fix CI workflow to run against each Ruby version in matrix | ---
name: ci
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-20.04
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
ruby: [2.5.8, 2.6.6, 2.7.2, 3.0.0, jruby-9.2.11.1]
env:
BUNDLE_PATH: vendor/bundle
steps:
- uses: ... | ---
name: ci
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-20.04
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
ruby: [2.5.8, 2.6.6, 2.7.2, 3.0.0, jruby-9.2.11.1]
env:
BUNDLE_PATH: vendor/bundle
steps:
- uses: ... |
Remove CI for x86 mingw. | environment:
PATH: '%PATH%;C:\Program Files (x86)\Rust\bin;C:\MinGW\bin'
RUST_BACKTRACE: 1
matrix:
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-msvc
- TARGET: i686-pc-windows-gnu
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
- rust-nig... | environment:
PATH: '%PATH%;C:\Program Files (x86)\Rust\bin;C:\MinGW\bin'
RUST_BACKTRACE: 1
matrix:
- TARGET: x86_64-pc-windows-msvc
- TARGET: i686-pc-windows-msvc
install:
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
- rust-nightly-%TARGET%.exe /VERYSILENT /N... |
Use Visual Studio 2017 build image on AppVeyor. | environment:
matrix:
- platform: x64
GH_TOKEN:
secure: 1cWm5j4ljdD+w6LLOv24rbj1ON4cbrT49CQype/BCQLtM5sjnD3x83wpIqFhexM9
image: Visual Studio 2015
cache:
- node_modules
install:
- ps: Install-Product node 8 x64
- set CI=true
- npm -g install npm@latest
- npm install
- set NODE_ENV=productio... | environment:
matrix:
- platform: x64
GH_TOKEN:
secure: 1cWm5j4ljdD+w6LLOv24rbj1ON4cbrT49CQype/BCQLtM5sjnD3x83wpIqFhexM9
image: Visual Studio 2017
cache:
- node_modules
install:
- ps: Install-Product node 8 x64
- set CI=true
- npm -g install npm@latest
- npm install
- set NODE_ENV=productio... |
Fix known hosts config script value | heat_template_version: rocky
description: 'SSH Known Hosts Config'
parameters:
known_hosts:
type: string
resources:
SSHKnownHostsConfig:
type: OS::Heat::SoftwareConfig
properties:
group: script
config: |
str_replace:
params:
KNOWN_HOSTS: {get_param: known_hos... | heat_template_version: rocky
description: 'SSH Known Hosts Config'
parameters:
known_hosts:
type: string
resources:
SSHKnownHostsConfig:
type: OS::Heat::SoftwareConfig
properties:
group: script
config:
str_replace:
params:
KNOWN_HOSTS: {get_param: known_hosts... |
Upgrade U-boot to fix RAM frequency issue | ---
# Ansible playbook for KoomBook EDU RDC
#It will be always localhost
- hosts: localhost
roles:
# Has to be always enable
- logs
- tinc-static
# - role: upgradeIdc
# version: "0.9.0"
| ---
# Ansible playbook for KoomBook EDU RDC
#It will be always localhost
- hosts: localhost
pre_tasks:
- name: Upgrade U-boot
apt: deb=http://filer.bsf-intranet.org/linux-u-boot-next-lime2_5.23_armhf.deb
roles:
# Has to be always enable
- logs
- tinc-static
# - role: upgradeIdc
# ... |
Add pre-existing credits to Kalei's credits | name: Kalei Sadarananda
start: 2013
end: 2016
majors:
- Biology
courses:
2012-2013:
fall:
- CHEM 125A
- GCON 113C
- JAPAN 111A
- MATH 126D
interim:
- GCON 115A
spring:
- BIO 126A
- CHEM 126B
... | name: Kalei Sadarananda
start: 2013
end: 2016
majors:
- Biology
credits:
- 2
courses:
2012-2013:
fall:
- CHEM 125A
- GCON 113C
- JAPAN 111A
- MATH 126D
interim:
- GCON 115A
spring:
- BIO 126A
- CH... |
Drop CI support for 2.064.2. | language: d
sudo: false
matrix:
include:
- d: dmd
env: [FRONTEND=2.070]
- d: dmd-2.069.2
env: [FRONTEND=2.069]
- d: dmd-2.068.2
env: [FRONTEND=2.068]
env: [COVERAGE=true]
- d: dmd-2.067.1
env: [FRONTEND=2.067]
- d: dmd-2.066.1
env: [FRONTEND=2.066]
- d: dmd... | language: d
sudo: false
matrix:
include:
- d: dmd
env: [FRONTEND=2.070]
- d: dmd-2.069.2
env: [FRONTEND=2.069]
- d: dmd-2.068.2
env: [FRONTEND=2.068]
env: [COVERAGE=true]
- d: dmd-2.067.1
env: [FRONTEND=2.067]
- d: dmd-2.066.1
env: [FRONTEND=2.066]
- d: dmd... |
Move messaging up in documentation navigation | site_name: Goblint documentation
site_description: Goblint static analysis framework documentation
repo_url: https://github.com/goblint/analyzer
theme:
name: readthedocs
hljs_languages: # non-default languages, see https://highlightjs.org/download/
- ocaml
# prev_next_buttons_location: both
markdown_extensi... | site_name: Goblint documentation
site_description: Goblint static analysis framework documentation
repo_url: https://github.com/goblint/analyzer
theme:
name: readthedocs
hljs_languages: # non-default languages, see https://highlightjs.org/download/
- ocaml
# prev_next_buttons_location: both
markdown_extensi... |
Bump actions/setup-python from 1.1.1 to 2.3.1 | # Copyright (C) 2020 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
name: Run pre-commit on all files
on:
- pull_request
- push
jobs:
run_pre_commit:
name: Run pre-commit on all files
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up Python... | # Copyright (C) 2020 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
name: Run pre-commit on all files
on:
- pull_request
- push
jobs:
run_pre_commit:
name: Run pre-commit on all files
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up Python... |
Make Git pre-commit hook auto-format WORKSPACE as well. | - repo: https://github.com/Lucas-C/pre-commit-hooks.git
sha: c25201a00e6b0514370501050cf2a8538ac12270
hooks:
- id: remove-crlf
files: (?!.*warp-ctc)^.*$
- repo: https://github.com/reyoung/mirrors-yapf.git
sha: v0.13.2
hooks:
- id: yapf
files: (.*\.(py|bzl)|BUILD|.*\.BUILD)$ ... | - repo: https://github.com/Lucas-C/pre-commit-hooks.git
sha: c25201a00e6b0514370501050cf2a8538ac12270
hooks:
- id: remove-crlf
files: (?!.*warp-ctc)^.*$
- repo: https://github.com/reyoung/mirrors-yapf.git
sha: v0.13.2
hooks:
- id: yapf
files: (.*\.(py|bzl)|BUILD|.*\.BUILD|WOR... |
Update Status to 3.8-beta6 (42) | Categories:
- Theming
License: Apache-2.0
SourceCode: https://github.com/fennifith/Status
IssueTracker: https://github.com/fennifith/Status/issues
Changelog: https://github.com/fennifith/Status/releases
AutoName: Status
Summary: An overlay-based statusbar replacement
Description: Status is a status bar replacement t... | Categories:
- Theming
License: Apache-2.0
SourceCode: https://github.com/fennifith/Status
IssueTracker: https://github.com/fennifith/Status/issues
Changelog: https://github.com/fennifith/Status/releases
AutoName: Status
Summary: An overlay-based statusbar replacement
Description: Status is a status bar replacement t... |
Update from Hackage at 2020-06-16T22:55:32Z | homepage: https://github.com/prsteele/GlpkHs#readme
changelog-type: markdown
hash: 046fbc5fc49aab6570a410b8de7b510741d338bd3295688595d844255ce4d1ab
test-bench-deps:
base: '>=4.7 && <5'
tasty-discover: -any
derive-storable: '>=0.1.2.0 && <0.2'
tasty-hunit: -any
tasty: -any
glpk-headers: -any
maintainer: stee... | homepage: https://github.com/prsteele/glpk-headers-haskell#readme
changelog-type: markdown
hash: 49f35aa4f9df18b28efcd8ea408a8b6a40dd398d60f90c6ee4ba21e597e693d7
test-bench-deps:
base: '>=4.7 && <5'
tasty-discover: -any
derive-storable: '>=0.1.2.0 && <0.2'
tasty-hunit: -any
tasty: -any
glpk-headers: -any
ma... |
Update NuGet manual publish gh action | name: Marten NuGet Manual Publish
on: [workflow_dispatch]
env:
config: Release
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
dotnet_core_version: 5.0.100-rc.2.20479.15
jobs:
publish_job:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@... | name: Marten NuGet Manual Publish
on: [workflow_dispatch]
env:
config: Release
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
dotnet_core_version: 5.0.x
jobs:
publish_job:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name... |
Increase memory limit for registry app from 128M to 512M | ---
applications:
- name: registry
memory: 128M
disk_quota: 32M
buildpack: go_buildpack
instances: 1
env:
GOPACKAGENAME: example-apps/registry
| ---
applications:
- name: registry
memory: 512M
disk_quota: 32M
buildpack: go_buildpack
instances: 1
env:
GOPACKAGENAME: example-apps/registry
|
Revert "Compose: use absolute file paths in volumes." | version: '2'
services:
dmptool:
build:
context: .
args:
GIT: https://github.com/der-scheme/dmptool.git
RELEASE: build-test
JOBS: 4
network_mode: "host"
ports:
- "80:80"
- "443:443"
volumes:
- ${PWD}/conf/etc/nginx/custom.conf:/etc/nginx/custom.conf... | version: '2'
services:
dmptool:
build:
context: .
args:
GIT: https://github.com/der-scheme/dmptool.git
RELEASE: build-test
JOBS: 4
network_mode: "host"
ports:
- "80:80"
- "443:443"
volumes:
- ./conf/etc/nginx/custom.conf:/etc/nginx/custom.conf
... |
Add wordpress dependency for nginx service | version: "2"
services:
mysql:
image: mysql:5.7
volumes:
- mysql-data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
wiki:
build: wiki/docker-mediawiki
depends_on:
- mysql
ports:
- "8080:80"
volumes:
- ./wiki/conf:/var/www-shared/html
links:
... | version: "2"
services:
mysql:
image: mysql:5.7
volumes:
- mysql-data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
wiki:
build: wiki/docker-mediawiki
depends_on:
- mysql
ports:
- "8080:80"
volumes:
- ./wiki/conf:/var/www-shared/html
links:
... |
Upgrade backups role to work with new OS version | ---
- name: Add the Percona repository key
apt_key:
id: 8507EFA5
keyserver: keys.gnupg.net
- name: Add the Percona sources
apt_repository: repo='deb http://repo.percona.com/apt precise main'
- name: Install percona xtrabackup
apt: pkg=percona-xtrabackup update_cache=yes cache_valid_time=3600
- name: Copy ... | ---
- name: Add the Percona repository key
apt_key:
id: 8507EFA5
keyserver: keys.gnupg.net
- name: Add the Percona sources
apt_repository: repo='deb http://repo.percona.com/apt xenial main'
- name: Install percona xtrabackup
apt: pkg=percona-xtrabackup update_cache=yes cache_valid_time=3600
- name: Copy a... |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: markdown
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: content/pages
label: Pages
create: all
match: "**/*"
- type: directory
path: content/posts
label: Posts
create: all
match: "**/*"
upload_dir: static/images
public_path: "/images"
front_matter... | ---
new_page_extension: md
auto_deploy: false
admin_path: ''
webhook_url:
sections:
- type: directory
path: content/pages
label: Pages
create: all
match: "**/*"
- type: directory
path: content/posts
label: Posts
create: all
match: "**/*"
upload_dir: static/images
public_path: "/images"
front_matter_pat... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.