Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add back 5.3 for now... Await discussion on support. | language: php
sudo: false
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: hhvm-nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
before_script... | language: php
sudo: false
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: hhvm-nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
bef... |
Update Home Assistant to 0.55.1 for config checks in Travis CI | language: python
python:
- '3.4'
- '3.5'
- '3.6'
env:
- HASS=0.55.0
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
| language: python
python:
- '3.4'
- '3.5'
- '3.6'
env:
- HASS=0.55.1
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
|
Cut down on verbosity in Travis | language: bash
sudo: false
os:
- osx
- linux
env:
global:
- GIMME_TMP="/var/tmp/gimme"
- GIMME_ENVS_DIR="/var/tmp/gimme/envs"
- GIMME_VERSIONS_DIR="/var/tmp/gimme/versions"
- GIMME_DEBUG=1
script: ./test-install $(< known-binary-versions)
| language: bash
sudo: false
os:
- osx
- linux
env:
global:
- GIMME_TMP="/var/tmp/gimme"
- GIMME_ENVS_DIR="/var/tmp/gimme/envs"
- GIMME_VERSIONS_DIR="/var/tmp/gimme/versions"
script: ./test-install $(< known-binary-versions)
|
Increase line length in checks | sudo: false
language: python
python: 3.8
branches:
only:
- master
install:
- pip install -e .[test]
# Each step below must succeed for the build to pass
script:
- coverage run --source=. test.py
- coverage report -m
- pycodestyle --format=pylint --count .
| sudo: false
language: python
python: 3.8
branches:
only:
- master
install:
- pip install -e .[test]
# Each step below must succeed for the build to pass
script:
- coverage run --source=. test.py
- coverage report -m
- pycodestyle --format=pylint --max-line-length=120 --count .
|
Remove Gtk+ from Travis CI configuration | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
before_install:
- sudo apt-get update
- sudo apt-get install libgirepository1.0-dev gobject-introspection gir1.2-gtk-3.0
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec... | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
before_install:
- sudo apt-get update
- sudo apt-get install libgirepository1.0-dev gobject-introspection
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake test"
|
Put back those platforms, lets see if Travis helps us fix them. | language: ruby
rvm:
- ruby-head
- 2.1.1
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
- rbx-2.2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
rvm:
- ruby-head
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
- rbx-2.1
- rbx-2.2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
|
Remove building for publish stage | language: node_js
node_js:
- 10
cache:
directories:
- ~/.npm
- ~/.cache
install:
- npm ci
jobs:
include:
- stage: Judging bundle size
script: npm run bundlesize
- stage: Linting code
script: npm run lint
- stage: Running tests
script: npm run test
- stage: Building f... | language: node_js
node_js:
- 10
cache:
directories:
- ~/.npm
- ~/.cache
install:
- npm ci
jobs:
include:
- stage: Judging bundle size
script: npm run bundlesize
- stage: Linting code
script: npm run lint
- stage: Running tests
script: npm run test
- stage: Publishing... |
Update CI to Xcode 10.0/iOS 12.0 | language: objective-c
osx_image: xcode9.3
xcode_sdk: iphonesimulator10.0
script:
- set -o pipefail
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON iOS" -destination "platform=iOS Simulator,name=iPhone 6" build-for-testing test | xcpretty
- travis_retry xcodebuild -workspace SwiftyJSON.xc... | language: objective-c
osx_image: xcode10.0
xcode_sdk: iphonesimulator12.0
script:
- set -o pipefail
- travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON iOS" -destination "platform=iOS Simulator,name=iPhone 6" build-for-testing test | xcpretty
- travis_retry xcodebuild -workspace SwiftyJSON.x... |
Use the container-based infrastructure on Travis | language: php
php:
- 5.4
- 5.5
- 5.6
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- phpunit tests
- ./tests/lint.sh
git:
depth: 5
| language: php
php:
- 5.4
- 5.5
- 5.6
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- phpunit tests
- ./tests/lint.sh
git:
depth: 5
|
Enable Ruby 2.2 in Travis-CI. | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0
- 2.1
- jruby-19mode
- rbx-2
cache: bundler
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby
- rbx-2
cache: bundler
|
Add PyPy3 to Travis build matrix | sudo: false
language: python
notifications:
email: false
env:
global:
python:
- pypy
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
install:
- pip install -r requirements.txt
- pip install -r tests/requirements.txt
script:
make test
after_success:
codecov | sudo: false
language: python
notifications:
email: false
python:
- pypy
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- pypy3
install:
- pip install -r requirements.txt
- pip install -r tests/requirements.txt
script:
make test
after_success:
codecov
|
Remove node version from testing that doesn't exist yet | language: node_js
node_js:
- 14
- 12
- 10
cache: yarn
matrix:
fast_finish: true
notifications:
email: false
| language: node_js
node_js:
- 13
- 12
- 10
cache: yarn
matrix:
fast_finish: true
notifications:
email: false
|
Add build on nightly version | language: php
php:
- hhvm
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
matrix:
include:
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest"
cache:
directories:
- $COMPOSER_CACHE_DIR
before_install:
- composer selfupdate
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLA... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
matrix:
fast_finish: true
include:
- php: 5.3
env: COMPOSER_FLAGS="--prefer-lowest"
allow_failures:
- php: nightly
cache:
directories:
- $COMPOSER_CACHE_DIR
before_install:
- composer selfupdate
inst... |
Update the test matrix on Travis to Python 3.6+ | language: python
python:
- 3.5
- 3.6
- 3.7
- nightly
env:
global:
- MOZ_HEADLESS=1
matrix:
- GROUP=docs
- GROUP=nbextensions
- GROUP=python
matrix:
exclude:
- python: 3.5
env: GROUP=docs
- python: 3.6
env: GROUP=docs
- python: nightly
env: GROUP=docs
- python: 3.5
e... | language: python
python:
- 3.6
- 3.7
- 3.8
- nightly
env:
global:
- MOZ_HEADLESS=1
matrix:
- GROUP=docs
- GROUP=nbextensions
- GROUP=python
matrix:
exclude:
- python: 3.6
env: GROUP=docs
- python: 3.7
env: GROUP=docs
- python: 3.8
env: GROUP=docs
- python: nightly
e... |
Raise minimum supported compiler version to 1.31 | language: rust
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- rust: 1.17.0
script: cargo check
- rust: 1.31.0
- rust: nightly
env: CLIPPY
script: |
if rustup component add clippy; then
cargo clippy
fi
script:
- cargo build... | language: rust
matrix:
include:
- rust: stable
- rust: beta
- rust: nightly
- rust: 1.31.0
- rust: nightly
env: CLIPPY
script: |
if rustup component add clippy; then
cargo clippy
fi
script:
- cargo build
- cargo test
|
Remove PostGIS. Travis processes comments. | language: ruby
matrix:
include:
- os: linux
dist: trusty
sudo: required
addons:
postgresql: 9.5
- os: osx
osx_image: xcode8.3
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then rm -rf /usr/local/var/postgres && initdb /usr/local/var/postgres -E utf8; fi
- if [[ "$TRAVIS_O... | language: ruby
matrix:
include:
- os: linux
dist: trusty
sudo: required
addons:
postgresql: 9.5
- os: osx
osx_image: xcode8.3
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then rm -rf /usr/local/var/postgres && initdb /usr/local/var/postgres -E utf8; fi
- if [[ "$TRAVIS_O... |
Use latest Chef point releases for testing | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
env:
- CHEF_VERSION=0.9.18
- CHEF_VERSION=0.10.10
- CHEF_VERSION=10.14.4
- CHEF_VERSION=10.16.4
matrix:
allow_failures:
- rvm: 2.0.0
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
env:
- CHEF_VERSION="~> 0.9.18"
- CHEF_VERSION="~> 0.10.10"
- CHEF_VERSION="~> 10.14.4"
- CHEF_VERSION="~> 10.16.4"
matrix:
allow_failures:
- rvm: 2.0.0
|
Use the specific supported version of Node in Travis | language: node_js
node_js:
- "0.10"
- "node"
- "iojs"
script: npm test
sudo: false
| language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
script: npm test
sudo: false
|
Add python 3.6 test support to CI | language: python
python:
- "2.6"
- "2.7"
install: pip install -r requirements.txt --use-mirrors
script: python test.py
| language: python
python:
- "2.6"
- "2.7"
- "3.6"
install: pip install -r requirements.txt --use-mirrors
script: python test.py
|
Add slack notifications to tech-gov-uk/skyscape-opensource channel | 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 | language: python
python:
- '3.4'
install:
- pip install pep8
- pip install .
script:
- pep8 .
- python -m unittest discover maloja
notifications:
slack:
secure: xkasG52OVnQP3tdXlgUPN82l8FNjFcP2bp0eaPq4LkF4aCBCZukJhw0BOwMoN3yp7iIiQlgQ8to7I9zk0trd+BoKphNVMhi8u+ICeAybq/nPIhNM9CFuRwkCgWAfO9MZiqQk4BGijY60Y5DNtLMEUVCnf... |
Add JavaScript tests to Travis CI. | language: scala
scala:
- 2.10.3
script: sbt test
| language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
script:
- sbt test
- grunt test
|
Test on released sprockets 3 instead of beta | language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1
- 2.2
env:
matrix:
- SPROCKETS_VERSION="~> 2.1.0"
- SPROCKETS_VERSION="~> 2.12.0"
- SPROCKETS_VERSION="~> 3.0.0.beta.10"
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1
- 2.2
env:
matrix:
- SPROCKETS_VERSION="~> 2.1.0"
- SPROCKETS_VERSION="~> 2.12.0"
- SPROCKETS_VERSION="~> 3.0.0"
|
Allow go tip to fail | language: go
before_install:
- go get github.com/stretchr/testify
env:
GO111MODULE=on
go:
- '1.11.x'
- '1.12.x'
- '1.13.x'
- tip
script:
- go mod vendor
- go test -mod vendor -race -v ./...
| language: go
before_install:
- go get github.com/stretchr/testify
env:
GO111MODULE=on
go:
- '1.11.x'
- '1.12.x'
- '1.13.x'
- tip
matrix:
allow_failures:
- go: tip
script:
- go mod vendor
- go test -mod vendor -race -v ./...
|
Add debian 8 to tests. | ---
sudo: required
language: python
services:
- docker
env:
global:
- ANSIBLE_HOST_KEY_CHECKING=False
- VERBOSE_TESTS=1
matrix:
- TEST_OSVER="debian:7"
- TEST_OSVER="ubuntu:1404"
- TEST_OSVER="centos:6"
before_install:
# hack! https://github.com/travis-ci/travis-ci/issues/4778
- sudo se... | ---
sudo: required
language: python
services:
- docker
env:
global:
- ANSIBLE_HOST_KEY_CHECKING=False
- VERBOSE_TESTS=1
matrix:
- TEST_OSVER="debian:7"
- TEST_OSVER="debian:8"
- TEST_OSVER="ubuntu:1404"
- TEST_OSVER="centos:6"
before_install:
# hack! https://github.com/travis-ci/travi... |
Install requirements using file and fastcluster using pip | language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
before_install:
# http://conda.pydata.org/docs/travis.html#the-travis-yml-file
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash... | language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
before_install:
# http://conda.pydata.org/docs/travis.html#the-travis-yml-file
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash... |
Add Node.js 12 to CI setting | language: node_js
node_js:
- "node"
- "6"
- "8"
- "10"
before_install:
- pip install --user codecov
after_success:
- codecov --file coverage/lcov.info --disable search
| language: node_js
node_js:
- "node"
- "6"
- "8"
- "10"
- "12"
before_install:
- pip install --user codecov
after_success:
- codecov --file coverage/lcov.info --disable search
|
Use `curl` retry flags for waiting for service | dist: bionic
language:
- generic
before_install:
- docker-compose build
- docker images
- docker-compose -f docker-compose.yml -f docker-compose.debug.yml up -d
- docker-compose ps
script:
- curl --connect-timeout 10 http://localhost:8002
- docker-compose logs --no-color
- docker logs chtsh
- CHEAT... | dist: bionic
language:
- generic
before_install:
- docker-compose build
- docker images
- docker-compose -f docker-compose.yml -f docker-compose.debug.yml up -d
- docker-compose ps
script:
- curl --retry 3 --retry-all http://localhost:8002
- docker-compose logs --no-color
- docker logs chtsh
- CHEA... |
Remove test runs with REE from Travis CI config | language: ruby
rvm:
- 1.8.7
- 1.9.2
- ree
before_script:
- 'git clone git://github.com/puppetlabs/puppetlabs-apt.git spec/fixtures/modules/apt'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.17
- PUPPET_VERSION=2.7.19
matrix:
exclude:
- rvm: 1.9.2
env: PUPPET_VERSION=2.6.14
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
before_script:
- 'git clone git://github.com/puppetlabs/puppetlabs-apt.git spec/fixtures/modules/apt'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.17
- PUPPET_VERSION=2.7.19
|
Use mruby 1.4.1 instead of 1.4.0 | # MIT License
#
# Copyright (c) MATSUMOTO Ryosuke 2014
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, m... | # MIT License
#
# Copyright (c) MATSUMOTO Ryosuke 2014
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, m... |
Update site URL in config to HTTPS | # 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 edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For te... | # 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 edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For te... |
Use GHC 8.0.1 on Gitlab CI | image: haskell:7.10.3
cache:
paths:
- .stack
before_script:
- export STACK_ROOT=$(pwd)/.stack
- apt-get update -qq && apt-get install -qq -y m4 libpq-dev
- cp secrets.m4.example secrets.m4
- make files
- stack install hspec-discover
- stack install --only-dependencies
- stack build
# Haven't fi... | image: haskell:8.0.1
cache:
paths:
- .stack
before_script:
- export STACK_ROOT=$(pwd)/.stack
- apt-get update -qq && apt-get install -qq -y m4 libpq-dev
- cp secrets.m4.example secrets.m4
- make files
- stack install hspec-discover
- stack install --only-dependencies
- stack build
# Haven't fig... |
Fix disabling PEP257 warning D211 | doc-warnings: yes
test-warnings: no
strictness: medium
max-line-length: 120
autodetect: yes
requirements:
- dev-requirements.txt
ignore-paths:
- apps
- sandbox
- docs
- pywinauto/unittests
pep8:
disable:
- D211
| doc-warnings: yes
test-warnings: no
strictness: medium
max-line-length: 120
autodetect: yes
requirements:
- dev-requirements.txt
ignore-paths:
- apps
- sandbox
- docs
- pywinauto/unittests
pep257:
disable:
- D211 # conflicts with D203
|
Update Linux Cmake to new version 3.0.0 | name: Linux Cmake
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
env:
EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }}
jobs:
Linux-cma... | name: Linux Cmake
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
env:
EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }}
jobs:
Linux-cma... |
Replace gitconfig global excludesfile setting | ---
# This is an example of the kinds of things that you can configure via hiera.
# If you've left the defaults in `/hiera.yml`, you might want to copy this file
# to `hiera/common.yaml`, or feel free to start with a blank slate!
# Have a gander at some of these examples to get an idea of some of the things
# that you... | ---
# This is an example of the kinds of things that you can configure via hiera.
# If you've left the defaults in `/hiera.yml`, you might want to copy this file
# to `hiera/common.yaml`, or feel free to start with a blank slate!
# Have a gander at some of these examples to get an idea of some of the things
# that you... |
Remove Node minor version requirement from AppVeyor | # Test against this version of Node.js
environment:
matrix:
# node.js
- nodejs_version: "8.0"
- nodejs_version: "6.0"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm in... | # Test against this version of Node.js
environment:
matrix:
# node.js
- nodejs_version: "8"
- nodejs_version: "6"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm instal... |
Add mpi as running requirement | {% set name = "ray" %}
{% set version = "2.3.1" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: Ray-{{ version }}.tar.bz2
url: https://downloads.sourceforge.net/project/denovoassembler/Ray-{{ version }}.tar.bz2
md5: 82f693c4db60af4328263c9279701009
build:
number: 0
skip: No
requirement... | {% set name = "ray" %}
{% set version = "2.3.1" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: Ray-{{ version }}.tar.bz2
url: https://downloads.sourceforge.net/project/denovoassembler/Ray-{{ version }}.tar.bz2
md5: 82f693c4db60af4328263c9279701009
build:
number: 0
skip: No
requirement... |
Disable Flowable 5 tests GitHub Workflow for pull requests, because this build always fails. | name: Flowable 5 Build
on: [push, pull_request]
jobs:
test_jdk:
name: Flowable 5 Tests
runs-on: ubuntu-latest
env:
# '>-' is a special YAML syntax and means that new lines would be replaced with spaces
# and new lines from the end would be removed
MAVEN_CONFIG: >-
-V
-B... | name: Flowable 5 Build
on: [push]
jobs:
test_jdk:
name: Flowable 5 Tests
runs-on: ubuntu-latest
env:
# '>-' is a special YAML syntax and means that new lines would be replaced with spaces
# and new lines from the end would be removed
MAVEN_CONFIG: >-
-V
-B
--no-... |
Add Kim back to the PR review rotation | numberOfReviewers: 2
# This group should NEVER be changed based on availability; it's to help
# determine if a PR author is an external contributor.
team:
- brettcannon
- int19h
- karthiknadig
- karrtikr
- kimadeline
- luabud
- paulacamargo25
# Comment yourself out when you will be unavailable for revie... | numberOfReviewers: 2
# This group should NEVER be changed based on availability; it's to help
# determine if a PR author is an external contributor.
team:
- brettcannon
- int19h
- karthiknadig
- karrtikr
- kimadeline
- luabud
- paulacamargo25
# Comment yourself out when you will be unavailable for revie... |
Fix syntax error in CI script | name: Deployment with Maven
on:
push:
branches:
- master
- develop
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Display github.ref
... | name: Deployment with Maven
on:
push:
branches:
- master
- develop
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Display github.ref
... |
Test in node 0.11 too | language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
|
Add more versions to Travis file | language: node_js
node_js:
- 0.10
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgeos-dev
| language: node_js
node_js:
- '0.10'
- '0.12'
- '4.4'
- '5.10'
- '6.0'
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgeos-dev
|
Update django to latest point releases | language: python
python:
- 3.3
- 2.7
script: make test
notifications:
email: false
env:
global:
- DATABASE_URL='postgres://postgres@localhost/incuna_auth'
matrix:
- DJANGO_VERSION=1.6.3
- DJANGO_VERSION=1.5.4
- DJANGO_VERSION=1.4
matrix:
exclude:
- env: DJANGO_VERSION=1.4
python... | language: python
python:
- 3.3
- 2.7
script: make test
notifications:
email: false
env:
global:
- DATABASE_URL='postgres://postgres@localhost/incuna_auth'
matrix:
- DJANGO_VERSION=1.6.3
- DJANGO_VERSION=1.5.6
- DJANGO_VERSION=1.4.11
matrix:
exclude:
- env: DJANGO_VERSION=1.4.11
... |
Add a notification when the build is succeeded. | language: csharp
solution: ObjectDisposedFodyAddin.sln
mono: none
dotnet: 2.2.402
install:
- dotnet restore
script:
- dotnet build -c Release
- dotnet test -c Release ./src/Tests
| language: csharp
solution: ObjectDisposedFodyAddin.sln
mono: none
dotnet: 2.2.402
install:
- dotnet restore
script:
- dotnet build -c Release
- dotnet test -c Release ./src/Tests
notifications:
webhooks: https://outlook.office.com/webhook/2b7add9b-4261-4095-8521-3bcf267a002d@990414fa-d0a3-42f5-b740-21d864a44a28... |
Update from Hackage at 2018-02-07T23:37:45Z | homepage: ''
changelog-type: ''
hash: c70717002b52555fe5f8a381a7d4149d4ead41c045376c9dcbda798e728c9d70
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: ATS scripts for Cabal builds
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
unix: -any
Cabal: ! '>=2.0'
filemanip: -any
base: ! '>... | homepage: ''
changelog-type: ''
hash: 6bb895144c7a5560e5d468c2f5e34ac91409749c443d6f0d5f3a6f354f1587e9
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: ATS scripts for Cabal builds
changelog: ''
basic-deps:
http-client: -any
bytestring: -any
unix: -any
Cabal: ! '>=2.0'
filemanip: -any
base: ! '>... |
Update Dokuwiki to v0.17 (61) | Categories:
- Internet
License: GPL-3.0-or-later
SourceCode: https://github.com/fabienli/DokuwikiAndroid
IssueTracker: https://github.com/fabienli/DokuwikiAndroid/issues
AutoName: Dokuwiki
Description: Android application to access a dokuwiki and keep pages in local cache.
RepoType: git
Repo: https://github.com/fab... | Categories:
- Internet
License: GPL-3.0-or-later
SourceCode: https://github.com/fabienli/DokuwikiAndroid
IssueTracker: https://github.com/fabienli/DokuwikiAndroid/issues
AutoName: Dokuwiki
Description: Android application to access a dokuwiki and keep pages in local cache.
RepoType: git
Repo: https://github.com/fab... |
Add default/securityGroups and default/vpc entries to YML config | server:
port: 8083
default:
bake:
account: default
front50:
baseUrl: http://localhost:8080
tide:
baseUrl: http://localhost:8090
oort:
baseUrl: http://localhost:7002
mort:
baseUrl: http://localhost:7002
kato:
baseUrl: http://localhost:7002
echo:
enabled: false
bakery:
baseUrl: http://localhost:80... | server:
port: 8083
default:
bake:
account: default
securityGroups:
vpc:
securityGroups:
front50:
baseUrl: http://localhost:8080
tide:
baseUrl: http://localhost:8090
oort:
baseUrl: http://localhost:7002
mort:
baseUrl: http://localhost:7002
kato:
baseUrl: http://localhost:7002
echo:
enabled:... |
Update from Hackage at 2018-05-08T21:57:18Z | homepage: https://github.com/tonyday567/numhask#readme
changelog-type: ''
hash: 35bf9071468a7eaae7d60f07a81d35ae1a7129fb32c4f1ec53a0df0acb08a888
test-bench-deps: {}
maintainer: tonyday567@gmail.com
synopsis: numeric classes
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.12'
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'... | homepage: https://github.com/tonyday567/numhask#readme
changelog-type: ''
hash: 7c67d7c40d00c35241d475d77afc5e5434821ac28a4188005a2d79da928c2756
test-bench-deps: {}
maintainer: tonyday567@gmail.com
synopsis: numeric classes
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.12'
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'... |
Fix typo in name of test | ---
"Get an empty emote info":
- skip:
version: " - 5.3.99"
reason: this API doesn't exist in 5.3.x yet
- do:
remote.info: {}
- is_true: ''
| ---
"Get an empty remote info":
- skip:
version: " - 5.3.99"
reason: this API doesn't exist in 5.3.x yet
- do:
remote.info: {}
- is_true: ''
|
Add osx and win anaconda build targets | package: s3fs
user: s3fs
platform:
- linux-64
engine:
- python=2.7
- python=3.4
- python=3.5
install:
- conda config --add channels dask
before_script:
- conda info
- python -V
script:
- conda build conda.recipe
build_targets: conda
iotimeout: 600
| package: s3fs
user: s3fs
platform:
- linux-64
- osx-64
- win-64
engine:
- python=2.7
- python=3.4
- python=3.5
install:
- conda config --add channels dask
before_script:
- conda info
- python -V
script:
- conda build conda.recipe
build_targets: conda
iotimeout: 600
|
Update from Hackage at 2020-12-26T22:45:44Z | homepage: https://github.com/sol/markdown-unlit#readme
changelog-type: ''
hash: 42e8052f6c497b200f6819c54bcd113fa5e0ed9a539408eacfbeaf3685b99b07
test-bench-deps:
base: ==4.*
hspec: ==2.*
stringbuilder: -any
silently: -any
base-compat: -any
temporary: -any
QuickCheck: -any
directory: -any
maintainer: Sim... | homepage: https://github.com/sol/markdown-unlit#readme
changelog-type: ''
hash: 9815c9e0f95b3a7fd85a9526e4293ac3d4d84559d7c3a6e7c30c30cfbaf864c6
test-bench-deps:
base: ==4.*
hspec: ==2.*
stringbuilder: -any
silently: -any
base-compat: -any
temporary: -any
QuickCheck: -any
directory: -any
maintainer: Sim... |
Deploy via Github Actions (try 2) | name: Deployment
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: yarn install
- run: yarn test
publish-gh:
needs: test
runs-on: ubuntu-latest
steps:
- use... | name: Deployment
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: yarn install
- run: yarn test
publish-gh:
needs: test
runs-on: ubuntu-latest
steps:
- use... |
Fix an incorrect script path | version: 2
jobs:
Unit Test:
docker:
- image: circleci/python:3.7.1
steps:
- checkout
- run:
command: |
sudo pip install virtualenv
sudo pip install nox
nox -f noxfile.py -s unit
Lint:
docker:
- image: circleci/python:3.7.1
steps... | version: 2
jobs:
Unit Test:
docker:
- image: circleci/python:3.7.1
steps:
- checkout
- run:
command: |
sudo pip install virtualenv
sudo pip install nox
nox -f noxfile.py -s unit
Lint:
docker:
- image: circleci/python:3.7.1
steps... |
Update app memory to 160MB | ---
declared-services:
talent-manager-db:
label: cloudantNoSQLDB
plan: Shared
personality-insights-talent-manager:
label: personality_insights
plan: standard
applications:
- disk_quota: 1024M
host: recruitapp
name: recruitapp
path: ./webStarterApp.war
instances: 1
buildpack: https://github... | ---
declared-services:
talent-manager-db:
label: cloudantNoSQLDB
plan: Shared
personality-insights-talent-manager:
label: personality_insights
plan: standard
applications:
- disk_quota: 1024M
host: recruitapp
name: recruitapp
path: ./webStarterApp.war
instances: 1
buildpack: https://github... |
Revert "Ajout d'une route pour l'api" | tram_admin:
resource: "@TramAdminBundle/Resources/config/routing.yml"
prefix: /
tram_user:
resource: "@TramUserBundle/Resources/config/routing.yml"
prefix: /
tram:
resource: "@TramBundle/Resources/config/routing.yml"
prefix: /
api:
pattern: /api
host: api-dev.grenoble-tram.fr
root:... | tram_admin:
resource: "@TramAdminBundle/Resources/config/routing.yml"
prefix: /
tram_user:
resource: "@TramUserBundle/Resources/config/routing.yml"
prefix: /
tram:
resource: "@TramBundle/Resources/config/routing.yml"
prefix: /
root:
pattern: /
defaults:
_controller: Framew... |
Add backup disk to transition-postgresql-slave | ---
lv:
data:
pv: '/dev/sdb1'
vg: 'postgresql'
mount:
/var/lib/postgresql:
disk: '/dev/mapper/postgresql-data'
govuk_lvm: 'data'
mountoptions: 'defaults'
govuk_postgresql::server::slave::master_host: 'transition-postgresql-master-1.backend'
| ---
lv:
postgresql:
pv: '/dev/sdb1'
vg: 'backups'
data:
pv: '/dev/sdc1'
vg: 'postgresql'
mount:
/var/lib/postgresql:
disk: '/dev/mapper/postgresql-data'
govuk_lvm: 'data'
mountoptions: 'defaults'
/var/lib/autopostgresqlbackup:
disk: '/dev/mapper/backups-postgresql'
govuk_lv... |
Remove unneeded properties related to frontend only | spring:
# Internalization
messages.basename: i18n/messages
# JPA
jpa:
open-in-view: false
# Resources
resources:
cache:
cachecontrol:
max-age: 31536000s
# Flyway
flyway:
enabled: false # to keep boot from migrating
# Primary datasource properties
primary:
datasource:
url... | spring:
# Internalization
messages.basename: i18n/messages
# Flyway
flyway:
enabled: false # to keep boot from migrating
# Primary datasource properties
primary:
datasource:
url: jdbc:h2:mem:primary
username: sa
password:
flyway:
location: classpath:db/migration/primary
jpa:
prope... |
Remove comments from middle of the devices list | parameter_defaults:
#NtpServer: 10.5.26.10
DockerPuppetDebug: false
OvercloudControlFlavor: control
ControllerCount: 1
OvercloudComputeFlavor: compute
ComputeCount: 1
OvercloudCephStorageFlavor: ceph-storage
CephStorageCount: 3
CephPoolDefaultSize: 1
CephPoolDefaultPgNum: 32
CephAnsiblePlaybo... | parameter_defaults:
#NtpServer: 10.5.26.10
DockerPuppetDebug: false
OvercloudControlFlavor: control
ControllerCount: 1
OvercloudComputeFlavor: compute
ComputeCount: 1
OvercloudCephStorageFlavor: ceph-storage
CephStorageCount: 3
CephPoolDefaultSize: 1
CephPoolDefaultPgNum: 32
CephAnsiblePlaybo... |
Test on the latest Debian in TK | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: debian-7.11
- name: debian-8.6
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: default
run_list:
- recipe[ufw::default]
| driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: debian-7.11
- name: debian-8.7
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: default
run_list:
- recipe[ufw::default]
|
Remove hack for ubuntu cloud archive | - hosts: controller
roles:
- role: test-matrix
test_matrix_role: primary
- hosts: subnode
roles:
- role: test-matrix
test_matrix_role: subnode
- hosts: all
roles:
- configure-swap
- setup-stack-user
- setup-tempest-user
- setup-devstack-source-dirs
- setup-devstack-log-d... | - hosts: controller
roles:
- role: test-matrix
test_matrix_role: primary
- hosts: subnode
roles:
- role: test-matrix
test_matrix_role: subnode
- hosts: all
roles:
- configure-swap
- setup-stack-user
- setup-tempest-user
- setup-devstack-source-dirs
- setup-devstack-log-d... |
Add test Dockerfile to Dependabot configuration | version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
| version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/tests/multiple-ports/"
schedule:
interval: "daily"
|
Set code signing secrets in desktop build workflow | name: build-desktop
on:
push:
paths:
- "core/**"
- "desktop/**"
- ".github/workflows/build-desktop.yml"
jobs:
build-desktop:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- os: ubuntu-latest
os-short: lnx
- os: ... | name: build-desktop
on:
push:
paths:
- "core/**"
- "desktop/**"
- ".github/workflows/build-desktop.yml"
jobs:
build-desktop:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
env:
GH_TOKEN: ${{ github.token }}
steps:
... |
Add tinytex and htmltools for knitting R markdown files | channels:
- conda-forge
- bioconda
dependencies:
- r-base
- r-tidyverse
- r-biocmanager
- nano
- bioconductor-breastcancermainz
- bioconductor-biobase
- bioconductor-limma
- bioconductor-pathview
- bioconductor-hgu133a.db | channels:
- conda-forge
- bioconda
dependencies:
- r-base
- r-tidyverse
- r-biocmanager
- r-htmltools
- r-tinytex
- nano
- bioconductor-breastcancermainz
- bioconductor-biobase
- bioconductor-limma
- bioconductor-pathview
- bioconductor-hgu133a.db
|
Add Python 3.6, 3.7, 3.8 to testing | name: Test Workflow
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [2]
os: [ubuntu-latest]
services:
SQLServer:
image: mcr.microsoft.com/mssql/server:2017-latest
... | name: Test Workflow
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [2, 3.6, 3.7, 3.8]
os: [ubuntu-latest]
services:
SQLServer:
image: mcr.microsoft.com/mssql/serv... |
Update ci thrift version to 0.13.0, comment google gradle repo | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubunt... | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubunt... |
Use mariadb instead of mysql | version: '2'
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
ports:
- "31215:31215"
volumes:
- "./cloogle.log:/usr/src/cloogle/cloogle.log"
- "./cache:/usr/src/cloogle/cache"
restart: always
cap_add:
- IPC_LOCK
frontend:
build:
c... | version: '2'
services:
backend:
build:
context: .
dockerfile: backend/Dockerfile
ports:
- "31215:31215"
volumes:
- "./cloogle.log:/usr/src/cloogle/cloogle.log"
- "./cache:/usr/src/cloogle/cache"
restart: always
cap_add:
- IPC_LOCK
frontend:
build:
c... |
Update Chubby Click to v1.6 (10) | Categories:
- Multimedia
License: GPL-3.0-or-later
WebSite: https://codeberg.org/agrigolo/chubby-click
SourceCode: https://codeberg.org/agrigolo/chubby-click
IssueTracker: https://codeberg.org/agrigolo/chubby-click/issues
AutoName: Chubby Click
RepoType: git
Repo: https://codeberg.org/agrigolo/chubby-click.git
Bui... | Categories:
- Multimedia
License: GPL-3.0-or-later
WebSite: https://codeberg.org/agrigolo/chubby-click
SourceCode: https://codeberg.org/agrigolo/chubby-click
IssueTracker: https://codeberg.org/agrigolo/chubby-click/issues
AutoName: Chubby Click
RepoType: git
Repo: https://codeberg.org/agrigolo/chubby-click.git
Bui... |
Update DbCleaner for Whatsapp to 1.1 (4) | AntiFeatures:
- NonFreeDep
Categories:
- System
License: GPL-3.0-only
AuthorName: Thabang Serumula
AuthorEmail: tjserumula@gmail.com
AuthorWebSite: http://www.thabangserumula.co.za/
SourceCode: https://github.com/tserumula/DbCleanerforWhatsapp
IssueTracker: https://github.com/tserumula/DbCleanerforWhatsapp/issues
... | AntiFeatures:
- NonFreeDep
Categories:
- System
License: GPL-3.0-only
AuthorName: Thabang Serumula
AuthorEmail: tjserumula@gmail.com
AuthorWebSite: http://www.thabangserumula.co.za/
SourceCode: https://github.com/tserumula/DbCleanerforWhatsapp
IssueTracker: https://github.com/tserumula/DbCleanerforWhatsapp/issues
... |
Fix "edit this page" links in docs | streams:
schemes:
theme:
type: ReadOnlyStream
prefixes:
'':
- user/themes/site
- user/themes/learn2
google_analytics_code: UA-57144786-2
github:
position: top # top | bottom | off
tree: https://github.com/select2/docs/blob/develop/
com... | streams:
schemes:
theme:
type: ReadOnlyStream
prefixes:
'':
- user/themes/site
- user/themes/learn2
google_analytics_code: UA-57144786-2
github:
position: top # top | bottom | off
tree: https://github.com/select2/select2/blob/develop/docs/... |
Enable debug on GitHub Maven build to see what RAT is finding unapproved. | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... |
Test Python 3.11 on CI | # This workflow will install project dependencies and run all tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
test:
runs-on: ubuntu-latest
... | # This workflow will install project dependencies and run all tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
test:
runs-on: ubuntu-latest
... |
Update flake8-bugbear in pre-commit config | repos:
- repo: https://github.com/asottile/pyupgrade
rev: v1.16.3
hooks:
- id: pyupgrade
- repo: https://github.com/python/black
rev: 19.3b0
hooks:
- id: black
language_version: python3
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.7
hooks:
- id: flake8
additional_dependencies: ['flake8-bug... | repos:
- repo: https://github.com/asottile/pyupgrade
rev: v1.16.3
hooks:
- id: pyupgrade
- repo: https://github.com/python/black
rev: 19.3b0
hooks:
- id: black
language_version: python3
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.7
hooks:
- id: flake8
additional_dependencies: ['flake8-bug... |
Update setuptools_scm recipe to version 1.15.5 | {% set version = "1.15.0" %}
package:
name: setuptools_scm
version: {{ version }}
source:
fn: setuptools_scm-{{ version }}.tar.gz
url: https://pypi.io/packages/source/s/setuptools_scm/setuptools_scm-{{ version }}.tar.gz
sha256: daf12d05aa2155a46aa357453757ffdc47d87f839e62114f042bceac6a619e2f
build:
numbe... | {% set version = "1.15.5" %}
package:
name: setuptools_scm
version: {{ version }}
source:
fn: setuptools_scm-{{ version }}.tar.gz
url: https://pypi.io/packages/source/s/setuptools_scm/setuptools_scm-{{ version }}.tar.gz
sha256: 145b2a8a609e0fd66108a92a06fe62d0fb329c0eb944f2d5c7ae3ca24222f29e
build:
numbe... |
Update from Hackage at 2018-06-23T12:29:59Z | homepage: ''
changelog-type: ''
hash: 239458fa2ab9d519a2628e3d642629b1890c6bd9e1b87187e0bac2fa22604c8f
test-bench-deps:
base: -any
hspec: -any
cdeps: -any
maintainer: vamchale@gmail.com
synopsis: Extract dependencies from C code.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5'
text: -any
... | homepage: ''
changelog-type: ''
hash: b1a881bee2d8f9d6994f1b0f441ae3794a3a846c01730c76fae91ce608a10555
test-bench-deps:
base: -any
hspec: -any
cdeps: -any
maintainer: vamchale@gmail.com
synopsis: Extract dependencies from C code.
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.9 && <5'
text: -any
... |
Update from Hackage at 2017-01-05T05:12:06Z | homepage: ''
changelog-type: ''
hash: de943df0d88f9690592f8491fbfd616d1eeaea958fd0fdc98fb452807b274ba2
test-bench-deps: {}
maintainer: Alex Lang <me@alang.ca>
synopsis: Bindings to the QuadProg++ quadratic programming library
changelog: ''
basic-deps:
base: ! '>=4.5 && <4.9'
hmatrix: ! '>=0.16'
vector: ! '>=0.9'
... | homepage: ''
changelog-type: ''
hash: 75479889212c155bfc845a72b9bdb8cfd34cb0b608904dd1888a9cdb3204627b
test-bench-deps: {}
maintainer: Alex Lang <me@alang.ca>
synopsis: Bindings to the QuadProg++ quadratic programming library
changelog: ''
basic-deps:
base: ! '>=4.5 && <5.1'
hmatrix: ! '>=0.16'
vector: ! '>=0.9'
... |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templates:
- journal
- typ... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: projects
label: Projects
create: documents
match: "**/*.md"
templates:
- project
- type: directory
path: journal
label: Journal
create: documents
match: "**/*.md"
templates:
- journal
- typ... |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
previ... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: assets/images
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
... |
Fix problem that redmine-db was not used | version: '2'
services:
redmine:
image: redmine:3.3-passenger
restart: always
environment:
REDMINE_DB_USERNAME: redmine
REDMINE_DB_PASSWORD: redmine
HTTP_PROXY:
HTTPS_PROXY:
http_proxy:
https_proxy:
NO_PROXY: gitbucket
ports:
- "3000:3000"
volumes_f... | version: '2'
services:
redmine:
image: redmine:3.3-passenger
restart: always
environment:
REDMINE_DB_POSTGRES: redmine-db
REDMINE_DB_USERNAME: redmine
REDMINE_DB_PASSWORD: redmine
HTTP_PROXY:
HTTPS_PROXY:
http_proxy:
https_proxy:
NO_PROXY: gitbucket
po... |
Update openWorkout to 1.3 (13) | Categories:
- Sports & Health
License: GPL-3.0-or-later
AuthorName: olie.xdev
SourceCode: https://github.com/oliexdev/openWorkout
IssueTracker: https://github.com/oliexdev/openWorkout/issues
Changelog: https://github.com/oliexdev/openWorkout/releases
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_... | Categories:
- Sports & Health
License: GPL-3.0-or-later
AuthorName: olie.xdev
SourceCode: https://github.com/oliexdev/openWorkout
IssueTracker: https://github.com/oliexdev/openWorkout/issues
Changelog: https://github.com/oliexdev/openWorkout/releases
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_... |
Update eslint config in test to reflect node version specified by travis build | env:
node: true
mocha: true
parserOptions:
ecmaVersion: 9
rules:
no-console: 0
| env:
node: true
mocha: true
parserOptions:
ecmaVersion: 10
rules:
no-console: 0
|
Remove renovate, build with kaniko | stages:
- build
- renovate
default:
tags:
- kubernetes
include:
- project: max/ci-templates
file: renovate.yml
- project: max/ci-templates
file: docker.yml
Renovate:
stage: renovate
extends: .renovate
variables:
RENOVATE_GIT_AUTHOR: "Renovate <ekeih@users.noreply.github.com>"
rules:... | stages:
- build
default:
tags:
- kubernetes
include:
- project: max/ci-templates
file: kaniko.yml
latest:
extends: .kaniko-gitlab-release-latest
|
Update from Hackage at 2017-03-28T10:33:04Z | homepage: github.com/opencog/atomspace/tree/master/opencog/haskell
changelog-type: ''
hash: b25a3017bf4a285aa9d3ef3675e8f3b29012a0d951ad8d63414c50addd335a83
test-bench-deps: {}
maintainer: '-'
synopsis: Haskell Bindings for the AtomSpace.
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
transformers: ! '>=0.3'
all-v... | homepage: github.com/opencog/atomspace/tree/master/opencog/haskell
changelog-type: ''
hash: 64f96a576687f7c089f82d8e5fb4c48ff0f8cd324bcfc200e15ee6bde67f5ee9
test-bench-deps: {}
maintainer: '-'
synopsis: Haskell Bindings for the AtomSpace.
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
transformers: ! '>=0.3'
all-v... |
Test on Node 5 instead of 4 | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "4"
# Install scripts. (runs aft... | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "5"
# Install scripts. (runs aft... |
Update TinyBit launcher to 5.1 (18) | Categories:
- System
- Theming
License: GPL-3.0-only
AuthorName: TBog
SourceCode: https://github.com/TBog/TBLauncher
IssueTracker: https://github.com/TBog/TBLauncher/issues
AutoName: TinyBit launcher
RepoType: git
Repo: https://github.com/TBog/TBLauncher
Builds:
- versionName: '4.5'
versionCode: 14
com... | Categories:
- System
- Theming
License: GPL-3.0-only
AuthorName: TBog
SourceCode: https://github.com/TBog/TBLauncher
IssueTracker: https://github.com/TBog/TBLauncher/issues
AutoName: TinyBit launcher
RepoType: git
Repo: https://github.com/TBog/TBLauncher
Builds:
- versionName: '4.5'
versionCode: 14
com... |
Remove cython as a run dependency. | {% set version = "0.11.0" %}
package:
name: dipy
version: {{ version }}
source:
fn: dipy-{{ version }}.tar.gz
url: https://pypi.python.org/packages/source/d/dipy/dipy-{{ version }}.tar.gz
md5: 7723e8994d31e910d47b7a0cf064a3d8
build:
number: 0
script: python setup.py install
requirements:
build:
... | {% set version = "0.11.0" %}
package:
name: dipy
version: {{ version }}
source:
fn: dipy-{{ version }}.tar.gz
url: https://pypi.python.org/packages/source/d/dipy/dipy-{{ version }}.tar.gz
md5: 7723e8994d31e910d47b7a0cf064a3d8
build:
number: 0
script: python setup.py install
requirements:
build:
... |
Update Live Burger Wallpaper to 1.2.2 (122) | Categories:
- Theming
License: GPL-3.0-only
SourceCode: https://gitlab.com/samsumas/LivingBurger
IssueTracker: https://gitlab.com/samsumas/LivingBurger/issues
Changelog: https://gitlab.com/samsumas/LivingBurger/tags
AutoName: BurgerWP
Description: |-
Very nice Wallpaper featuring some pizza and burger. Burger an... | Categories:
- Theming
License: GPL-3.0-only
SourceCode: https://gitlab.com/samsumas/LivingBurger
IssueTracker: https://gitlab.com/samsumas/LivingBurger/issues
Changelog: https://gitlab.com/samsumas/LivingBurger/tags
AutoName: Live Burger Wallpaper
Description: |-
Very nice Wallpaper featuring some pizza and burg... |
Update set automatic deploy workflow | name: Set automatic_deploys
on:
workflow_dispatch:
inputs:
resetImageTag:
description: 'Reset image tag to main'
required: false
default: false
type: boolean
automaticDeploysEnabled:
description: 'Activate automatic deploys'
required: false
defa... | name: Set automatic deploys
run-name: Set automatic deploys to ${{ inputs.setAutomaticDeploys }} in ${{ inputs.environment }}
on:
workflow_dispatch:
inputs:
setAutomaticDeploys:
description: 'Set automatic deploys'
required: false
type: choice
options:
- enabled
... |
Include Bash completions in the VM. | ---
- name: install system devel packages
yum: name={{ item }} state=present
with_items:
- git
- gcc
- make
- vim
- unzip
| ---
- name: install system devel packages
yum: name={{ item }} state=present
with_items:
- git
- gcc
- make
- vim
- unzip
- bash-completion
|
Increase cloud build time limit. | steps:
- name: 'gcr.io/cloud-builders/go:debian'
args: ['build', './cmd/kritis/signer']
env: ['PROJECT_ROOT=github.com/grafeas/kritis']
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: /bin/bash
args:
- -c
- |
cp signer integration/signer/ &&
cd integration/signer &&
./si... | steps:
- name: 'gcr.io/cloud-builders/go:debian'
args: ['build', './cmd/kritis/signer']
env: ['PROJECT_ROOT=github.com/grafeas/kritis']
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: /bin/bash
args:
- -c
- |
cp signer integration/signer/ &&
cd integration/signer &&
./si... |
Update buildkite plugin shellcheck to v1.1.2 | steps:
- label: ":shell: Tests"
plugins:
docker-compose#v1.2.1:
run: tests
- label: ":sparkles: Lint"
plugins:
plugin-linter#v1.0.0:
name: ecr
- label: ":shell: Shellcheck"
plugins:
shellcheck#v1.0.1:
files: hooks/**
skip: "Shellcheck doesn't pass right ... | steps:
- label: ":shell: Tests"
plugins:
docker-compose#v1.2.1:
run: tests
- label: ":sparkles: Lint"
plugins:
plugin-linter#v1.0.0:
name: ecr
- label: ":shell: Shellcheck"
plugins:
shellcheck#v1.1.2:
files: hooks/**
skip: "Shellcheck doesn't pass right ... |
Update from Hackage at 2016-11-20T11:23:55Z | homepage: https://github.com/m0rphism/haskell-dmenu
changelog-type: ''
hash: 9fc040e034d861c2e0f72b12c02bc818347d26e03d81f93d95e19d6d075e045b
test-bench-deps: {}
maintainer: Hannes Saffrich <m0rphism@zankapfel.org>
synopsis: Complete bindings to the dmenu and dmenu2 command line tools.
changelog: ''
basic-deps:
base:... | homepage: https://github.com/m0rphism/haskell-dmenu
changelog-type: ''
hash: af2c9ffe7dc26bb2ecfcd0242c22ab2e6ee0dd750977c9d1ebb7b5ae965738f2
test-bench-deps: {}
maintainer: Hannes Saffrich <m0rphism@zankapfel.org>
synopsis: Complete bindings to the dmenu and dmenu2 command line tools.
changelog: ''
basic-deps:
base:... |
Build a docker image if build is successful | language: clojure
lein: lein2
script: lein midje
| language: clojure
before_install:
- sudo sh -c "wget -qO- https://get.docker.io/gpg | apt-key add -"
- sudo sh -c "echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
- echo exit 101 | sudo tee /usr/sbin/policy-rc.d
- sudo chmod +x /usr/sbin/policy-rc.d
install:
- sudo ap... |
Update Ruby requirement for CircleCI | machine:
services:
- elasticsearch
ruby:
version:
2.2.1
environment:
DB_TEST_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test
checkout:
post:
## Customize dependencies
dependencies:
pre:
## Customize database setup
database:
override:
- bundle exec rake db:create db:structure:lo... | machine:
services:
- elasticsearch
ruby:
version:
2.2.2
environment:
DB_TEST_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test
checkout:
post:
## Customize dependencies
dependencies:
pre:
## Customize database setup
database:
override:
- bundle exec rake db:create db:structure:lo... |
Add nginx 1.13.4, remove nginx 1.13.3 | ---
language: staticfile
default_versions:
- name: nginx
version: 1.13.3
dependencies:
- name: nginx
version: 1.13.3
uri: https://buildpacks.cloudfoundry.org/dependencies/nginx/nginx-1.13.3-linux-x64-53917f43.tgz
md5: 53917f43684d6ec825ca469ab586c0d2
cf_stacks:
- cflinuxfs2
pre_package: scripts/build.sh
inc... | ---
language: staticfile
default_versions:
- name: nginx
version: 1.13.4
dependencies:
- name: nginx
version: 1.13.4
uri: https://buildpacks.cloudfoundry.org/dependencies/nginx/nginx-1.13.4-linux-x64-3b4180ad.tgz
md5: 3b4180ad6025758250698d0c4e143244
cf_stacks:
- cflinuxfs2
pre_package: scripts/build.sh
inc... |
Use grafana image of OMD container | version: '3'
services:
sakuli:
container_name: sakulie2e
image: consol/sakuli-ubuntu-xfce:latest
volumes:
- ./sakuli_docker_test:/headless/sakuli_docker_test
- ./sahi_ff_profile_template:/headless/sakuli/sahi/config/ff_profile_template
- ./sahi_certs:/headless/sakuli/sahi/use... | version: '3'
services:
sakuli:
container_name: sakulie2e
image: consol/sakuli-ubuntu-xfce:latest
volumes:
- ./sakuli_docker_test:/headless/sakuli_docker_test
- ./sahi_ff_profile_template:/headless/sakuli/sahi/config/ff_profile_template
- ./sahi_certs:/headless/sakuli/sahi/use... |
Add chunk mime type to default mapping | # HEADS UP: the 'variables' node will be removed after parsing!
variables:
integer_no_index: &integer_no_index
type: integer
index: "no"
string_no_index: &string_no_index
type: string
index: "no"
# Properties to index
properties:
# tags attached to chunks
tags:
type: string # array of stri... | # HEADS UP: the 'variables' node will be removed after parsing!
variables:
integer_no_index: &integer_no_index
type: integer
index: "no"
string_no_index: &string_no_index
type: string
index: "no"
# Properties to index
properties:
# tags attached to chunks
tags:
type: string # array of stri... |
Fix namespace selector in csi-livenees-monitoring | ---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: csi-liveness
namespace: rook-ceph
labels:
team: rook
spec:
namespaceSelector:
matchNames:
- default
selector:
matchLabels:
app: csi-liveness
endpoints:
- port: csi-http-metrics
path: /metrics
... | ---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: csi-liveness
namespace: rook-ceph
labels:
team: rook
spec:
namespaceSelector:
matchNames:
- rook-ceph
selector:
matchLabels:
app: csi-liveness
endpoints:
- port: csi-http-metrics
path: /metrics
... |
Update actions/setup-node action to v3 | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_requ... | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_requ... |
Add gianu as common default theme for oh my zsh | # global mysql configuration
mysql_root_password: 'gcd'
mysql_default_engine: 'InnoDB'
# gcd mysql database configuration
local_gcd_mysql_user: 'root'
local_gcd_mysql_password: 'gcd'
local_gcd_mysql_db: 'gcd'
user:
name: Your Github.com username
email: Your Github.com email | # global mysql configuration
mysql_root_password: 'gcd'
mysql_default_engine: 'InnoDB'
# gcd mysql database configuration
local_gcd_mysql_user: 'root'
local_gcd_mysql_password: 'gcd'
local_gcd_mysql_db: 'gcd'
user:
name: Your Github.com username
email: Your Github.com email
# default oh my zsh theme
... |
Remove personal Quay image group | # Example solver resource; override as you see fit.
apiVersion: org.optaplanner.solver/v1
kind: Solver
metadata:
name: school-timetabling
spec:
kafkaCluster: my-cluster
kafkaBootstrapServers: my-cluster-kafka-bootstrap.openshift-operators.svc.cluster.local:9092
solverImage: quay.io/rsynek/school-timetabling:lat... | # Example solver resource; override as you see fit.
apiVersion: org.optaplanner.solver/v1
kind: Solver
metadata:
name: school-timetabling
spec:
kafkaCluster: my-cluster
kafkaBootstrapServers: my-cluster-kafka-bootstrap.openshift-operators.svc.cluster.local:9092
solverImage: quay.io/example/school-timetabling:la... |
Update from Hackage at 2016-03-10T05:20:47+0000 | homepage: ''
changelog-type: ''
hash: 6d9d9ea008fe6ded8df490d7e9520048f54539fd3e9cced75095992ce5fff85a
test-bench-deps: {}
maintainer: ''
synopsis: Hot-swappable FRP
changelog: ''
basic-deps:
stm: ! '>=2.2.0.1 && <2.5'
base: ! '>=4.8 && <4.9'
containers: ! '>0.4.0.0 && <0.6'
safe: ! '>=0.3 && <0.4'
all-versions... | homepage: ''
changelog-type: ''
hash: e183bcd6a9b8ce4ae6f06323377b28d1e2231081f98d51d99275294c7f000178
test-bench-deps: {}
maintainer: Tom Murphy
synopsis: Hot-swappable FRP
changelog: ''
basic-deps:
stm: ! '>=2.2.0.1 && <2.5'
base: ! '>=4.8 && <4.9'
containers: ! '>0.4.0.0 && <0.6'
safe: ! '>=0.3 && <0.4'
all-... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.