commit
stringlengths 40
40
| old_file
stringlengths 4
237
| new_file
stringlengths 4
237
| old_contents
stringlengths 1
4.24k
| new_contents
stringlengths 1
4.87k
| subject
stringlengths 15
778
| message
stringlengths 15
8.75k
| lang
stringclasses 266
values | license
stringclasses 13
values | repos
stringlengths 5
127k
|
---|---|---|---|---|---|---|---|---|---|
ee74897cb46872059b3842379ebbf25ed68e35fc
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "7"
- "8"
- "9"
- "10"
- "11"
before_script:
- npm install -g gulp
script:
- gulp all test
|
language: node_js
node_js:
- "7"
- "8"
- "9"
- "10"
- "11"
- "12"
before_script:
- npm install -g gulp
script:
- gulp all test
|
Test in Node 12 as well
|
Test in Node 12 as well
|
YAML
|
mpl-2.0
|
palant/easypasswords,palant/easypasswords
|
4b05e17f05a2554ce800897dcd6dcb08b4c3b1d4
|
.travis.yml
|
.travis.yml
|
language: csharp
matrix:
include:
- os: linux
mono: latest
dotnet: 2.1.0
script: ./build.sh -t "Travis"
- os: osx
mono: latest
dotnet: 2.1.0
script: ./build.sh -t "Travis"
|
language: csharp
matrix:
include:
- os: linux
mono: latest
dotnet: 2.1.0
script: ./build.sh -t "Travis"
- os: osx
mono: latest
dotnet: 2.1.0
script: ./build.sh -t "Travis"
- os: windows
dotnet: 2.1.0
script: ./build.sh -t "Travis"
|
Add a Travis Windows build
|
Add a Travis Windows build
|
YAML
|
mit
|
stranne/Vasttrafik.NET,stranne/Vasttrafik.NET
|
4d2abeaa4e573df6accae69827b71a1a5bf727a8
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12.0"
env:
- TEST_DIR=router-page-switcher
- TEST_DIR=timer
script: cd $TEST_DIR && npm install && npm test
|
language: node_js
node_js:
- "0.12.0"
branches:
only:
- gh-pages
- /^.*$/
env:
- TEST_DIR=router-page-switcher
- TEST_DIR=timer
script: cd $TEST_DIR && npm install && npm test
|
Add gh-pages as a testing target on Travis
|
Add gh-pages as a testing target on Travis
|
YAML
|
mit
|
riot/examples,riot/examples,riot/examples
|
55b044ae32eec7be464bbeedf196c1a195c8dcb6
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
addons:
apt:
packages:
- gfortran
- gcc
notifications:
email: false
python:
- "2.7"
# command to install dependencies
install:
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# conditionally because it saves us some downloading if the version is
# the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda env create -f environment.yml
- source activate poets
# command to run tests
script:
- python setup.py test
|
language: python
sudo: false
addons:
apt:
packages:
- gfortran
- gcc
notifications:
email: false
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
- "3.5"
# command to install dependencies
install:
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# conditionally because it saves us some downloading if the version is
# the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda env create -f environment.yml
- source activate poets
# command to run tests
script:
- python setup.py test
|
Add tests for Python 3.4 and 3.5.
|
CI: Add tests for Python 3.4 and 3.5.
All our packages should support also Python 3.
|
YAML
|
mit
|
TUW-GEO/poets,TUW-GEO/poets,TUW-GEO/poets
|
d5ddb1a2bd8c0017f826d8f8ca1e1d09d7281412
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4"
- "6"
- "node"
after_success:
- "nyc report --reporter=text-lcov | coveralls"
|
language: node_js
cache:
yarn: true
directories:
- node_modules
node_js:
- "4"
- "6"
- "node"
after_success:
- "nyc report --reporter=text-lcov | coveralls"
|
Enable caching for yarn and node_modules in Travis CI config
|
Enable caching for yarn and node_modules in Travis CI config
|
YAML
|
mit
|
wKovacs64/hibp,wKovacs64/hibp,wKovacs64/hibp
|
89f773d3a98f89049d0443750de13d8b141aa6be
|
.travis.yml
|
.travis.yml
|
language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
script:
- ./build.sh --quiet verify
|
language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.3
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
script:
- ./build.sh --quiet verify
|
Update Travis osx image to xcode7.3
|
Update Travis osx image to xcode7.3
|
YAML
|
mit
|
henkmollema/Dapper-FluentMap,henkmollema/Dapper-FluentMap
|
7eaed0076c40bd95c534789bd88c3d254c36d08f
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
- "0.10"
sudo: false
install:
- npm install $TYPESCRIPT
- npm install
env:
- TYPESCRIPT=typescript
- TYPESCRIPT=typescript@next
|
language: node_js
node_js:
- "0.12"
sudo: false
install:
- npm install $TYPESCRIPT
- npm install
env:
- TYPESCRIPT=typescript
- TYPESCRIPT=typescript@next
|
Remove node v0.10 from test matrix
|
Remove node v0.10 from test matrix
|
YAML
|
mit
|
thomasguillory/ts-loader,jbrantly/ts-loader,TypeStrong/ts-loader,jaysoo/ts-loader,basarat/ts-loader,basarat/ts-loader,MortenHoustonLudvigsen/ts-loader,jbrantly/ts-loader,use-strict/ts-loader,MortenHoustonLudvigsen/ts-loader,jaysoo/ts-loader,bjfletcher/ts-loader,gsteacy/ts-loader,use-strict/ts-loader,bjfletcher/ts-loader,gsteacy/ts-loader,thomasguillory/ts-loader,jbrantly/ts-loader,TypeStrong/ts-loader,MortenHoustonLudvigsen/ts-loader,gsteacy/ts-loader
|
0e8ee281c40e0a9d5dc1e578d2c3c9d63fbe6ec9
|
.travis.yml
|
.travis.yml
|
before_install:
- sudo apt-get update --fix-missing
install:
- pip install numpy
- pip install genty
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
script:
- python -m unittest discover tests/
|
before_install:
- sudo apt-get update --fix-missing
install:
- pip install numpy
- pip install genty
- pip install pydub
- pip install matplotlib
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
script:
- python -m unittest discover tests/
|
Install pydub and matplotlib Remove tests for python 3.2 and 3.3
|
Install pydub and matplotlib
Remove tests for python 3.2 and 3.3
|
YAML
|
mit
|
amsehili/auditok
|
53c8fad9f5e017f182b588ba18e9297a7b5583eb
|
.travis.yml
|
.travis.yml
|
sudo: required
tags: true
services:
- docker
script:
- docker run --rm -v "$PWD":/go/src/github.com/ApsOps/gohaqd -w /go/src/github.com/ApsOps/gohaqd -e 'CGO_ENABLED=0' -e 'GOOS=linux' golang:1.7 /bin/bash -c "go build -a -v -ldflags '-w'"
after_success:
- export REPO=apsops/gohaqd
- export TAG=${TRAVIS_TAG:=latest}
- docker build -t $REPO:$TRAVIS_COMMIT .
- docker tag $REPO:$TRAVIS_COMMIT $REPO:$TAG
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push $REPO
|
sudo: required
tags: true
services:
- docker
script:
- docker run --rm -v "$PWD":/go/src/github.com/ApsOps/gohaqd -w /go/src/github.com/ApsOps/gohaqd -e 'CGO_ENABLED=0' -e 'GOOS=linux' golang:1.7 /bin/bash -c "go build -a -v -ldflags '-w'"
after_success:
- export REPO=apsops/gohaqd
- export TAG=${TRAVIS_TAG:=latest}
- docker build -t $REPO:$TAG .
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push $REPO
|
Build only git tags and latest docker images
|
Build only git tags and latest docker images
|
YAML
|
mit
|
ApsOps/gohaqd
|
5383bdacb3aa5cdc88d4ac7a6473c2e509464b02
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- WP_VERSION=latest WP_MULTISITE=0
- WP_VERSION=latest WP_MULTISITE=1
- WP_VERSION=4.1.7 WP_MULTISITE=0
- WP_VERSION=4.1.7 WP_MULTISITE=1
- WP_VERSION=3.9.8 WP_MULTISITE=0
- WP_VERSION=3.9.8 WP_MULTISITE=1
- WP_VERSION=3.7.9 WP_MULTISITE=0
- WP_VERSION=3.7.9 WP_MULTISITE=1
matrix:
exclude:
- php: 5.5
env: WP_VERSION=3.7.9 WP_MULTISITE=1
- php: 5.5
env: WP_VERSION=3.7.9 WP_MULTISITE=0
before_script:
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
- composer install --dev --prefer-source
script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then mkdir -p build/logs; phpunit --coverage-clover build/logs/clover.xml; fi
- if [ "$TRAVIS_BRANCH" != "master" ]; then phpunit -c bin/phpunit-nocover.xml; fi
after_script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then php vendor/bin/coveralls -v; fi
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then coveralls; fi
|
sudo: false
language: php
php:
- 5.5
- hhvm
env:
- WP_VERSION=latest WP_MULTISITE=0
- WP_VERSION=latest WP_MULTISITE=1
before_script:
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
- composer install --dev --prefer-source
script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then mkdir -p build/logs; phpunit --coverage-clover build/logs/clover.xml; fi
- if [ "$TRAVIS_BRANCH" != "master" ]; then phpunit -c bin/phpunit-nocover.xml; fi
after_script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then php vendor/bin/coveralls -v; fi
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then coveralls; fi
|
Update Travis to just test HHVM
|
Update Travis to just test HHVM
|
YAML
|
mit
|
jarednova/timber,mgmartel/timber,ogrosko/timber,xavivars/timber,mgmartel/timber,gchtr/timber,aprendiendoando/timber,jarednova/timber,ogrosko/timber,xavivars/timber,PrisisForks/timber,rpkoller/timber,josephbergdoll/timber,jarednova/timber,mgmartel/timber,gchtr/timber,josephbergdoll/timber,gchtr/timber,timber/timber,rpkoller/timber,aaemnnosttv/timber,gbarberi/timber,ogrosko/timber,anugupta/timber,PrisisForks/timber,anugupta/timber,josephbergdoll/timber,Jmayhak/timber,gbarberi/timber,aaemnnosttv/timber,anugupta/timber,gbarberi/timber,aaemnnosttv/timber,Jmayhak/timber,timber/timber,PrisisForks/timber,rpkoller/timber,aprendiendoando/timber,Jmayhak/timber,xavivars/timber,aprendiendoando/timber
|
e3de80cf527cd13527ef4c80100768d75cabc6a5
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.3"
# command to install dependencies
install:
- pip install flake8
- pip install pep257
# command to run tests
script:
- flake8 . --max-line-length=120
- pep257 . --ignore=D202
|
language: python
python:
- "3.3"
install:
- pip install flake8
- pip install pep257
- gem install travis
- gem install overcommit
before_script:
- git config --global user.email "[email protected]"
- git config --global user.name "Travis CI"
script:
- overcommit --run
|
Update Travis config to use overcommit
|
Update Travis config to use overcommit
|
YAML
|
mit
|
SublimeLinter/SublimeLinter-jsl
|
2380dcf5b2b857dc24c3f2741631a3eaa624d367
|
.travis.yml
|
.travis.yml
|
sudo: false
dist: bionic
language: python
# addons:
# apt:
# # sources:
# # - sourceline: "ppa:jonathonf/ffmpeg-4"
# packages:
# - python-dev
# - pkg-config
# - libudev-dev
# - libavformat-dev
# - libavcodec-dev
# - libavdevice-dev
# - libavutil-dev
# - libswscale-dev
# - libavresample-dev
# - libswresample-dev
# - libavfilter-dev
python:
- "3.7"
before_install:
- mv travis/travis_secrets.yaml secrets.yaml
- mv travis/travis.fake_ssl_crt travis.fake_ssl_crt
- mv travis/travis.fake_ssl_key travis.fake_ssl_key
install:
- pip3 install homeassistant
script:
- hass -c . --script check_config
|
sudo: false
dist: bionic
language: python
addons:
apt:
packages:
- python-dev
- pkg-config
- libavformat-dev
- libavcodec-dev
- libavdevice-dev
- libavutil-dev
- libswscale-dev
- libavresample-dev
- libavfilter-dev
python:
- "3.7"
before_install:
- mv travis/travis_secrets.yaml secrets.yaml
- mv travis/travis.fake_ssl_crt travis.fake_ssl_crt
- mv travis/travis.fake_ssl_key travis.fake_ssl_key
install:
- pip3 install homeassistant
script:
- hass -c . --script check_config
|
Update required packages per documentation.
|
Update required packages per documentation.
|
YAML
|
mit
|
shortbloke/home_assistant_config
|
50bc1ff25e9dcc549d4e5e78ab525389a294bd6c
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- iojs-v1.2.0
|
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- "node"
- "iojs-v1.2.0"
- "iojs"
|
Test on latest nodejs and iojs
|
Test on latest nodejs and iojs
|
YAML
|
mit
|
julienvincent/rpi-gpio.js,trojanspike/rpi-gpio.js,JamesBarwell/rpi-gpio.js
|
caf243869edf33d4f4e300301bb2eded2cbd3a9e
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO_VERSION="Django<1.9"
- DJANGO_VERSION="Django<1.10"
- DJANGO_VERSION="Django<1.11"
install:
- pip install -q $DJANGO_VERSION
- pip install flake8
script:
- flake8 --ignore=E501,W391 rpc4django
- ./runtravis.py
|
language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO_VERSION="Django<1.9"
- DJANGO_VERSION="Django<1.10"
- DJANGO_VERSION="Django<1.11"
- DJANGO_VERSION="Django<1.12"
install:
- pip install -q $DJANGO_VERSION
- pip install flake8
script:
- flake8 --ignore=E501,W391 rpc4django
- ./runtravis.py
|
Add updated Django and Python versions for TravisCI
|
Add updated Django and Python versions for TravisCI
|
YAML
|
bsd-3-clause
|
davidfischer/rpc4django,davidfischer/rpc4django,davidfischer/rpc4django
|
1955f39fab4466af9978fda116ba574912bad324
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-19mode
branches:
only:
- master
script: 'rake spec && bundle exec guard-jasmine'
notifications:
recipients:
- [email protected]
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-19mode
branches:
only:
- master
script: 'bundle exec rake spec && bundle exec guard-jasmine'
notifications:
recipients:
- [email protected]
|
Use Bundler for running rspec.
|
Use Bundler for running rspec.
|
YAML
|
mit
|
emilioforrer/haml_coffee_assets,jcouyang/haml_coffee_assets,omadahealth/haml_coffee_assets,Sija/haml_coffee_assets,wantedly/haml_coffee_assets,dlandau/haml_coffee_assets,nfm/haml_coffee_assets,nfm/haml_coffee_assets,ipmobiletech/haml_coffee_assets,nekath/haml_coffee_assets,RatioClothing/haml_coffee_assets,spodlecki/haml_coffee_assets,jcouyang/haml_coffee_assets,RatioClothing/haml_coffee_assets,Sija/haml_coffee_assets,nekath/haml_coffee_assets,spodlecki/haml_coffee_assets,netzpirat/haml_coffee_assets,omadahealth/haml_coffee_assets,xronos-i-am/haml_coffee_assets,emilioforrer/haml_coffee_assets,xronos-i-am/haml_coffee_assets,netzpirat/haml_coffee_assets,Verba/haml_coffee_assets,Verba/haml_coffee_assets,wantedly/haml_coffee_assets,ipmobiletech/haml_coffee_assets,dlandau/haml_coffee_assets
|
b589f430f5508706adbd756a5067369e61d58ef3
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo echo "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-4.0 main" > /etc/apt/sources.list.d/llvm4.list
- wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
- sudo apt-get -qq update
- sudo apt-get remove -y llvm
- sudo apt-get install -y llvm-4.0 llvm-4.0-dev llvm-4.0-runtime lld-4.0
- sudo update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-4.0 200
- llvm-config --version
- export RUST_TEST_THREADS=1
script:
- cargo build
- cargo test --all
- ./run_compiler_tests.sh
|
sudo: required
dist: trusty
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo bash -c 'echo "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-4.0 main" > /etc/apt/sources.list.d/llvm4.list'
- wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
- sudo apt-get -qq update
- sudo apt-get remove -y llvm
- sudo apt-get install -y llvm-4.0 llvm-4.0-dev llvm-4.0-runtime lld-4.0
- sudo update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-4.0 200
- llvm-config --version
- export RUST_TEST_THREADS=1
script:
- cargo build
- cargo test --all
- ./run_compiler_tests.sh
|
Install llvm4.list file, so that we don't get permission denied errors
|
Install llvm4.list file, so that we don't get permission denied errors
|
YAML
|
mit
|
GeorgeKT/cobra-lang,GeorgeKT/menhir-lang,GeorgeKT/menhir-lang,GeorgeKT/cobra-lang
|
78f204af19444afeeaffa1fa7e01042cd7439389
|
.travis.yml
|
.travis.yml
|
notifications:
slack: wtsi-cgpit:ptUMR1tkNyZJYd9TpGoss8WR
email: false
env:
- CC=gcc
addons:
apt:
packages:
- build-essential # everything
- autoconf # biobambam
- libtool # biobambam
- zlib1g-dev # many
- nettle-dev # cgpBigWig
- libncurses5-dev # samtools
- unzip # kentools/pcap
- libcurl4-openssl-dev # many
- libgd-dev
- libdb-dev
install: true
language: perl
perl:
- "5.22"
script:
- export PATH=$HOME/install/bin:$HOME/install/biobambam2/bin:$PATH
- git clone --depth 1 --single-branch --branch develop https://github.com/cancerit/cgpBigWig.git
- cd cgpBigWig
- ./setup.sh $HOME/install
- cd ../
- git clone --depth 1 --single-branch --branch hotfix/5.0.3 https://github.com/cancerit/PCAP-core.git
- cd PCAP-core
- ./setup.sh $HOME/install
- cd ../
- git clone --depth 1 --single-branch --branch dev https://github.com/cancerit/cgpVcf.git
- cd cgpVcf
- ./setup.sh $HOME/install
- cd ../
- ./setup.sh $HOME/install
dist: trusty
sudo: false
|
notifications:
slack: wtsi-cgpit:ptUMR1tkNyZJYd9TpGoss8WR
email: false
env:
- CC=gcc
addons:
apt:
packages:
- build-essential # everything
- autoconf # biobambam
- libtool # biobambam
- zlib1g-dev # many
- nettle-dev # cgpBigWig
- libncurses5-dev # samtools
- unzip # kentools/pcap
- libcurl4-openssl-dev # many
- libgd-dev
- libdb-dev
install: true
language: perl
perl:
- "5.22"
script:
- export PATH=$HOME/install/bin:$HOME/install/biobambam2/bin:$PATH
- git clone --depth 1 --single-branch --branch develop https://github.com/cancerit/cgpBigWig.git
- cd cgpBigWig
- ./setup.sh $HOME/install
- cd ../
- git clone --depth 1 --single-branch --branch develop https://github.com/cancerit/PCAP-core.git
- cd PCAP-core
- ./setup.sh $HOME/install
- cd ../
- git clone --depth 1 --single-branch --branch dev https://github.com/cancerit/cgpVcf.git
- cd cgpVcf
- ./setup.sh $HOME/install
- cd ../
- ./setup.sh $HOME/install
dist: trusty
sudo: false
|
Revert now develop of PCAP-core is fixed
|
Revert now develop of PCAP-core is fixed
|
YAML
|
agpl-3.0
|
cancerit/cgpCaVEManPostProcessing,cancerit/cgpCaVEManPostProcessing
|
ac1cb72e55e6cbfdfcc92eabd5cb619b3a6421cf
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
#- 1.9.3 # Travis broken September 2017
#- 2.1.1
- 2.2.2
- 2.3.1
- 2.4.1
#- jruby-19mode # Travis broken September 2017
#- jruby-20mode # Travis broken September 2017
matrix:
include:
- rvm: jruby-9.1.13.0
#- env: JRUBY_OPTS="--profile.api"
#before_install: gem install bundler
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
sudo: false
cache: bundler
#env:
# - FLOR_DEFAULT_TIMEOUT=7
|
language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
#- 1.9.3 # Travis broken September 2017
#- 2.1.1
- 2.2.2
- 2.3.1
- 2.4.1
#- jruby-19mode # Travis broken September 2017
#- jruby-20mode # Travis broken September 2017
- jruby-9.1.13.0
#matrix:
# include:
# - rvm: jruby-9.1.13.0
# #- env: JRUBY_OPTS="--profile.api"
#before_install: gem install bundler
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
sudo: false
cache: bundler
#env:
# - FLOR_DEFAULT_TIMEOUT=7
|
Stop using the matrix: on Travis
|
Stop using the matrix: on Travis
|
YAML
|
mit
|
floraison/flor,dmicky0419/flor,dmicky0419/flor,floraison/flor,dmicky0419/flor,floraison/flor,flon-io/flor
|
2559825e756103275a17d0adbd76b080bc544164
|
.travis.yml
|
.travis.yml
|
group: deprecated-2017Q4
language: python
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
dist: xenial # needed for python 3.7 as of 2019-04-05
env: TOXENV=py37
- python: pypy
env: TOXENV=pypy
before_install:
- "sudo rm -rf /var/lib/apt/lists/*"
- "sudo apt-get clean"
- "sudo apt-get update"
- "sudo apt-get install python-gi python3-gi"
install:
- "pip install tox coverage coveralls"
script:
- "tox"
- "coverage report"
after_success:
- "coveralls"
|
group: deprecated-2017Q4
language: python
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
dist: xenial # needed for python 3.7 as of 2019-04-05
env: TOXENV=py37
- python: 3.8
dist: xenial # needed for python 3.7 as of 2019-04-05
env: TOXENV=py38
- python: pypy
env: TOXENV=pypy
before_install:
- "sudo rm -rf /var/lib/apt/lists/*"
- "sudo apt-get clean"
- "sudo apt-get update"
- "sudo apt-get install python-gi python3-gi"
install:
- "pip install tox coverage coveralls"
script:
- "tox"
- "coverage report"
after_success:
- "coveralls"
|
Add py38 to Travis tests
|
Add py38 to Travis tests
|
YAML
|
lgpl-2.1
|
inducer/urwid,wardi/urwid,inducer/urwid,inducer/urwid,wardi/urwid,urwid/urwid,urwid/urwid,urwid/urwid,wardi/urwid
|
c82f7269084040f307e68ccae145e0655410f45b
|
.travis.yml
|
.travis.yml
|
language: php
os:
- linux
sudo: false
php:
# - 5.3 (doesn't recognize $var=[], only recognizes $var=array())
# - 5.4 (doesn't have finally{} in try blocks)
- 5.5
- 5.6
- 7.0
- nightly
matrix:
allow_failures:
- php: 7.0
- php: nightly
services:
- memcached
- mysql
addons:
apt:
packages:
- libgeoip-dev
install:
- pecl install geoip
- pear install http2
before_script:
- cp config.sample.json config.phoenix.json
script:
- bash -c 'set -e;for file in $(find . -type f -regex .*\.php -print); do php -e -l -f "$file"; done'
|
language: php
os:
- linux
sudo: false
php:
# - 5.3 (doesn't recognize $var=[], only recognizes $var=array())
# - 5.4 (doesn't have finally{} in try blocks)
- 5.5
- 5.6
- 7.0
- nightly
matrix:
allow_failures:
- php: nightly
services:
- memcached
- mysql
addons:
apt:
packages:
- libgeoip-dev
install:
- pear channel-update pear.php.net
- pecl install geoip
- pear install http2
before_script:
- cp config.sample.json config.phoenix.json
script:
- bash -c 'set -e;for file in $(find . -type f -regex .*\.php -print); do php -e -l -f "$file"; done'
|
Update pear channel and disallow PHP 7.0 failure
|
Update pear channel and disallow PHP 7.0 failure
|
YAML
|
agpl-3.0
|
BNETDocs/bnetdocs-web,BNETDocs/bnetdocs-web,BNETDocs/bnetdocs-web
|
611f3fe28cea8750783aba2e0fb4880cd5400dcc
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.5.4
- 1.6.2
- 1.7.1
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get labix.org/v2/mgo/bson
script:
- go test -v
- $HOME/gopath/bin/goveralls -service=travis-ci
env:
global:
secure: HWujU0uan88tfKH8uH9km6Biaq3fJOHeMvfZ9juVR1DK+jxX0NIQ2vSYyaoahxG/FMhUFntnXklFoq/RgmTc8cLwvFnqqGGMK/u+o65ZMTGDn0ud8y3CeqdJGiCAfG4ju/0ApZY6kxdrhoKuBQGG33ykMTxw7xGgN2Vh4x8hUbM=
|
language: go
go:
- 1.8
- 1.9
- 1.10
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get labix.org/v2/mgo/bson
script:
- go test -v
- $HOME/gopath/bin/goveralls -service=travis-ci
env:
global:
secure: HWujU0uan88tfKH8uH9km6Biaq3fJOHeMvfZ9juVR1DK+jxX0NIQ2vSYyaoahxG/FMhUFntnXklFoq/RgmTc8cLwvFnqqGGMK/u+o65ZMTGDn0ud8y3CeqdJGiCAfG4ju/0ApZY6kxdrhoKuBQGG33ykMTxw7xGgN2Vh4x8hUbM=
|
Update go version for using test
|
Update go version for using test
|
YAML
|
mit
|
hiyosi/filter
|
98ab4a5257fddcd646bbd430938fe1165d9da942
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "6.5"
- "6.1"
- "6"
- "5.11"
- "4.0"
|
language: node_js
node_js:
- "6.5"
- "6.1"
- "6"
- "5.11"
- "4.0"
os:
- linux
- osx
|
Add Linux/macOS builds for Travis CI
|
Add Linux/macOS builds for Travis CI
|
YAML
|
mit
|
Unibeautify/beautifier-prettydiff,Unibeautify/beautifier-prettydiff
|
45ac8daba9b3645b49b23a9e665a453b8481581c
|
.travis.yml
|
.travis.yml
|
language: cpp
os:
- linux
- osx
compiler:
- clang
- gcc
before_install:
- sudo apt-get update
install:
#Google Log
- svn checkout http://google-glog.googlecode.com/svn/trunk/ glog
- cd glog
- ./configure
- make -j4
- sudo make -j4 install
- cd ..
#Google Test
- sudo apt-get install libgtest-dev
- mkdir gtest
- cd gtest
- cmake /usr/src/gtest/
- make
- sudo mv libg* /usr/lib/
- cd ..
#OpenCV
- git clone https://github.com/Itseez/opencv.git
- cd opencv
- git checkout 2.4
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_opencv_java=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF ..
- make -j4
- sudo make -j4 install
- cd ../..
before_script:
#Main Program
- mkdir build
- cd build
- cmake ..
script: make
|
language: cpp
os:
- linux
- osx
compiler:
- clang
- gcc
before_install:
- sudo apt-get update
install:
#Upgrade
- sudo apt-get upgrade
#Boost
- sudo apt-get install libboost-dev
#Google Log
- svn checkout http://google-glog.googlecode.com/svn/trunk/ glog
- cd glog
- ./configure
- make -j4
- sudo make -j4 install
- cd ..
#Google Test
- sudo apt-get install libgtest-dev
- mkdir gtest
- cd gtest
- cmake /usr/src/gtest/
- make
- sudo mv libg* /usr/lib/
- cd ..
#OpenCV
- git clone https://github.com/Itseez/opencv.git
- cd opencv
- git checkout 2.4
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_opencv_java=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF ..
- make -j4
- sudo make -j4 install
- cd ../..
before_script:
#Main Program
- mkdir build
- cd build
- cmake ..
script: make
|
Add boost to tavis config
|
Add boost to tavis config
|
YAML
|
mit
|
Kazz47/my_utils
|
41a67affc32b8fc14504f1d7a82290a2adab15ce
|
.travis.yml
|
.travis.yml
|
language:
- c
- cpp
- go
- python
compiler:
- gcc
# - clang
before_install:
- sudo add-apt-repository -y ppa:zoogie/sdl2-snapshots
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -qq libsdl2-dev libsdl2-image-dev gcc-4.8 g++-4.8
- export GOPATH=$(pwd)
- go get -v github.com/veandco/go-sdl2/sdl
before_script:
- export CXX=g++-4.8
- export CC=gcc-4.8
script:
- make -C c++11
- make -C c++
- make -C c
- pushd go
- go build
- go test
- popd
#notifications:
# email: false
# irc:
# channels:
# - "irc.freenode.net#blabla"
# on_success: change
# on_failure: always
# template:
# - "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
# - "Change view : %{compare_url}"
# - "Build details : %{build_url}"
# use_notice: true
# skip_join: true
|
language:
- c
- cpp
- go
- python
dist: trusty
addons:
apt:
packages:
- build-essential
- libsdl2-dev
- cmake
matrix:
include:
- os: linux
compiler: gcc
- os: linux
compiler: clang
script:
- make -C c++11
- make -C c++98
- make -C c11
- pushd go
- go build
- go test
- popd
#notifications:
# email: false
# irc:
# channels:
# - "irc.freenode.net#blabla"
# on_success: change
# on_failure: always
# template:
# - "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
# - "Change view : %{compare_url}"
# - "Build details : %{build_url}"
# use_notice: true
# skip_join: true
|
Update the CI configuration script
|
Update the CI configuration script
|
YAML
|
mit
|
xyproto/hello_sdl2,xyproto/hello_sdl2,xyproto/hello_sdl2,xyproto/hello_sdl2,xyproto/hello_sdl2,xyproto/hello_sdl2,xyproto/hello_sdl2
|
187fee938bc27809d9019239e2cf33240eeca3d0
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
before_install:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
install:
- pip install -r requirements.txt --use-mirrors
- pip install coveralls --use-mirrors
script:
coverage run manage.py test
after_success:
- coveralls
|
language: python
python:
- "2.7"
before_install:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
install:
- pip install pip setuptools --upgrade
- pip install -r requirements.txt
- pip install coveralls
script:
coverage run manage.py test
after_success:
- coveralls
|
Upgrade pip and setuptools in Travis builds.
|
Upgrade pip and setuptools in Travis builds.
|
YAML
|
mit
|
zsiciarz/variablestars.net,zsiciarz/variablestars.net,zsiciarz/variablestars.net
|
4b0ff524a425041d17a837c3689c0a29638a37f8
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- "6"
sudo: false
cache:
directories:
- $HOME/.npm
env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- npm config set spin false
- npm install -g phantomjs-prebuilt
- phantomjs --version
install:
- npm install
script:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
|
---
language: node_js
node_js:
- "6"
sudo: false
cache:
directories:
- $HOME/.npm
env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- npm config set spin false
- npm install -g phantomjs-prebuilt
- phantomjs --version
install:
- npm install
script:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
|
Allow beta failures for now
|
CI: Allow beta failures for now
see https://github.com/emberjs/ember.js/issues/15236
|
YAML
|
mit
|
twokul/ember-cli-shims,ember-cli/ember-cli-shims,ember-cli/ember-cli-shims,twokul/ember-cli-shims
|
d198fd881064e71ac0d8453a410ea87da6fba16a
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- "pip install -U setuptools pip"
- "pip install pytest pytest-cov pytest-pep8 mock responses coveralls"
- "pip install ."
script: "py.test"
after_success: "coveralls"
branches:
only:
- master
- develop
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy"
install:
- "pip install -U setuptools pip"
- "pip install pytest pytest-cov pytest-pep8 mock responses coveralls"
- "pip install ."
script: "py.test"
after_success: "coveralls"
branches:
only:
- master
- develop
|
Test on modern Python 3
|
Test on modern Python 3
|
YAML
|
mit
|
tonyseek/flask-docker
|
6089207945f3605e1502033a4754cf33c5a765c2
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
jdk:
- oraclejdk8
script: "./bin/travis.sh"
|
language: java
sudo: false
jdk:
- oraclejdk9
script: "./bin/travis.sh"
|
Use JDK 9 on Travis.
|
Use JDK 9 on Travis.
|
YAML
|
bsd-3-clause
|
scaled/scala-compiler
|
580c96b4a970a5ae0f337ea481041d1e198e82b3
|
.travis.yml
|
.travis.yml
|
language: java
matrix:
include:
- jdk: oraclejdk8
-script: travis_retry ./gradlew clean headless allTests coverage coveralls -i
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
addons:
apt:
packages:
- oracle-java8-installer
|
language: java
matrix:
include:
- jdk: oraclejdk8
script: travis_retry ./gradlew clean headless allTests coverage coveralls -i
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
addons:
apt:
packages:
- oracle-java8-installer
|
Fix yml that cause the problems.
|
Fix yml that cause the problems.
|
YAML
|
mit
|
CS2103AUG2016-W09-C2/main,CS2103AUG2016-W09-C2/main
|
87b79d8f2b70d01cdf0e135fc3652354dbffc68c
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 7.1
- 7.2
before_script:
- composer self-update
|
language: php
php:
- 7.0
- 7.1
- 7.2
before_script:
- composer self-update
- composer update --prefer-source
|
Revert accidental removal of composer update
|
Revert accidental removal of composer update
|
YAML
|
mit
|
petercoles/Multilingual-Country-List
|
227242e31cab91f9b4142ff0e25947c647452423
|
.travis.yml
|
.travis.yml
|
language: ruby
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
bundler_args: --jobs=3 --retry=3
cache: bundler
script:
- bundle exec rake
- bundle exec codeclimate-test-reporter
|
language: ruby
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
bundler_args: --jobs=3 --retry=3
cache: bundler
script:
- bundle exec rspec
- bundle exec codeclimate-test-reporter
|
Make like rspec instead of rake?
|
Make like rspec instead of rake?
|
YAML
|
mit
|
Eric-Guo/wechat,wolflee/wechat-rails,skinnyworm/wechat-rails,Eric-Guo/wechat,wolflee/wechat-rails
|
ab197a173ec282a72e0bff26649e663be2732f53
|
.travis.yml
|
.travis.yml
|
language: objective-c
xcode_workspace: Tests/ThirdPartyMailerExample.xcworkspace
xcode_scheme: ThirdPartyMailerExample
xcode_sdk: iphonesimulator
osx_image: xcode7.3
|
language: objective-c
xcode_sdk: iphonesimulator
osx_image: xcode7.3
script:
- xcodebuild test -workspace Tests/ThirdPartyMailerExample.xcworkspace -scheme ThirdPartyMailerExample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
|
Update Travis configuration with custom build script
|
Update Travis configuration with custom build script
Standard options currently fail with Xcode 7.3
|
YAML
|
mit
|
vtourraine/ThirdPartyMailer
|
aabb7e292554a9cae90c177383b1b1e99ce4fe7a
|
.travis.yml
|
.travis.yml
|
sudo: false
addons:
apt:
sources:
- debian-sid
packages:
- texlive-latex-recommended
- texlive-latex-extra
- texlive-fonts-recommended
- texlive-science
- texlive-bibtex-extra
- texlive-latex-recommended
- latexmk
script:
- latexmk masterthesis
- latexmk presentation
|
sudo: false
addons:
apt:
packages:
- texlive-latex-recommended
- texlive-latex-extra
- texlive-fonts-recommended
- texlive-science
- texlive-bibtex-extra
- texlive-latex-recommended
- latexmk
script:
- latexmk masterthesis
- latexmk presentation
|
Revert "Use Debian unstable for tests."
|
Revert "Use Debian unstable for tests."
This reverts commit 47e7a662b64d4248992155389ad0ae706626acb1.
|
YAML
|
mit
|
fladi/CAMPUS02-LaTeX
|
66ded4c075e59ceccdef722261d4816b0756bdfb
|
.travis.yml
|
.travis.yml
|
# Config file for automatic testing at travis-ci.org
language: python
# http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "pypy3"
- "pypy"
install:
- pip install -U -r dev-requirements.txt
before_script:
- flake8 .
script: PATH=./tests/ffmpeg:$PATH PYTHONPATH=. py.test tests # is setting PYTHONPATH the right thing to do?
|
# Config file for automatic testing at travis-ci.org
language: python
# http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "pypy3"
- "pypy"
install:
- pip install -U -r dev-requirements.txt
#before_script:
# - flake8 .
script: PATH=./tests/ffmpeg:$PATH PYTHONPATH=. py.test tests # is setting PYTHONPATH the right thing to do?
|
Disable flake8 (until figured out how to run it on PyPy)
|
Disable flake8 (until figured out how to run it on PyPy)
|
YAML
|
mit
|
Ch00k/ffmpy,astroza/ffmpy,astroza/ffmpy,Ch00k/ffmpy
|
0d3ea8073bbcc99554e9c977e85609c547233562
|
.travis.yml
|
.travis.yml
|
language: csharp
mono: 5.2.0
solution: ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.sln
script:
- xbuild /p:Configuration=Release ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.sln
- mono ./src/packages/xunit.runner.console.*/tools/net452/xunit.console.exe ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.Tests/bin/Release/Objectivity.AutoFixture.XUnit2.AutoMoq.Tests.dll
|
language: csharp
mono: 5.2.0
solution: ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.sln
script:
- xbuild /p:Configuration=Release ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.sln
- mono ./src/packages/xunit.runner.console.*/tools/net452/xunit.console.exe ./src/Objectivity.AutoFixture.XUnit2.Core.Tests/bin/Release/Objectivity.AutoFixture.XUnit2.Core.Tests.dll ./src/Objectivity.AutoFixture.XUnit2.AutoMoq.Tests/bin/Release/Objectivity.AutoFixture.XUnit2.AutoMoq.Tests.dll
|
Include Core.Tests in test run on Travis
|
Include Core.Tests in test run on Travis
|
YAML
|
mit
|
ObjectivityLtd/AutoFixture.XUnit2.AutoMoq
|
480644da3d0b9e8df4b2a5be6d5c9c41929ebd37
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- '8'
- '9'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- '8'
- '10'
- '12'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
Drop node.js 9 support, add 10 and 12
|
Drop node.js 9 support, add 10 and 12
|
YAML
|
bsd-3-clause
|
unexpectedjs/unexpected-function-equality
|
4ec2519ef1218953e8436447dc3e832ebde50103
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
script:
- yarn run test
- yarn run lint
services:
- redis
|
sudo: required
dist: trusty
language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
script:
- yarn run test
- yarn run lint
services:
- redis
|
Drop node 4, 5 and add 8, 9
|
Drop node 4, 5 and add 8, 9
|
YAML
|
mit
|
seomoz/qless-js
|
de3ce16dbb054b6d1b14f3274935bbdccadd9790
|
docs/_data/navigation.yml
|
docs/_data/navigation.yml
|
- name: Get Started
link: /starting_pycharm.html
dropdown:
- name: PyCharm
link: /starting_pycharm.html
- name: Emacs
link: /starting_emacs.html
- name: Sublime Text
link: /starting_sublime_text.html
- name: Browser
link: /demo/
- name: Space Tracer
link: /space_tracer.html
dropdown:
- name: Getting Started
link: /starting_space_tracer.html
- name: How it Works
link: /howitworks.html
|
- name: Get Started
link: /starting_pycharm.html
dropdown:
- name: PyCharm
link: /starting_pycharm.html
- name: Emacs
link: /starting_emacs.html
- name: Sublime Text
link: /starting_sublime_text.html
- name: Browser
link: /demo/
- name: Space Tracer
link: /space_tracer.html
dropdown:
- name: Getting Started
link: /starting_space_tracer.html
- name: How it Works
link: /howitworks.html
- name: GitHub
link: https://github.com/donkirkby/live-py-plugin
|
Add link to GitHub repository.
|
Add link to GitHub repository.
|
YAML
|
mit
|
brandm/live-py-plugin,brandm/live-py-plugin,brandm/live-py-plugin,brandm/live-py-plugin,donkirkby/live-py-plugin,donkirkby/live-py-plugin,brandm/live-py-plugin,donkirkby/live-py-plugin,donkirkby/live-py-plugin,donkirkby/live-py-plugin
|
3eb3931231e7a98281c20eb9c48ba6f3e002639d
|
templates/locales/command_rdp.yml
|
templates/locales/command_rdp.yml
|
en:
vagrant_rdp:
detecting: |-
Detecting RDP info...
connecting: |-
Vagrant will now launch your RDP client with the connection parameters
above. If the connection fails, verify that the information above is
correct. Additionally, make sure the RDP server is configured and
running in the guest machine (it is disabled by default on Windows).
Also, verify that the firewall is open to allow RDP connections.
errors:
host_unsupported: |-
Vagrant doesn't support running an RDP client on your
host OS. Currently only Windows is supported for RDP
clients.
If you wish for the OS you're running to support launching
an RDP client, please contribute this functionality back
into Vagrant. At the very least, open an issue on how it
could be done and we can handle the integration.
rdp_undetected: |-
RDP connection information for this machine could not be
detected. This is typically caused when we can't find the IP
or port to connect to for RDP. Please verify you're forwarding
an RDP port and that your machine is accessible.
|
en:
vagrant_rdp:
detecting: |-
Detecting RDP info...
connecting: |-
Vagrant will now launch your RDP client with the connection parameters
above. If the connection fails, verify that the information above is
correct. Additionally, make sure the RDP server is configured and
running in the guest machine (it is disabled by default on Windows).
Also, verify that the firewall is open to allow RDP connections.
errors:
host_unsupported: |-
Vagrant doesn't support running an RDP client on your
host OS.
If you wish for the OS you're running to support launching
an RDP client, please contribute this functionality back
into Vagrant. At the very least, open an issue on how it
could be done and we can handle the integration.
rdp_undetected: |-
RDP connection information for this machine could not be
detected. This is typically caused when we can't find the IP
or port to connect to for RDP. Please verify you're forwarding
an RDP port and that your machine is accessible.
|
Update RDP error message since Windows only being supported isn't true
|
Update RDP error message since Windows only being supported isn't true
[GH-3845]
|
YAML
|
mit
|
legal90/vagrant,chrisvire/vagrant,vamegh/vagrant,miguel250/vagrant,lonniev/vagrant,cgvarela/vagrant,dustymabe/vagrant,carlosefr/vagrant,jkburges/vagrant,Sgoettschkes/vagrant,nickryand/vagrant,PatrickLang/vagrant,kalabiyau/vagrant,ferventcoder/vagrant,Endika/vagrant,gitebra/vagrant,PatOShea/vagrant,bryson/vagrant,iNecas/vagrant,modulexcite/vagrant,MiLk/vagrant,carlosefr/vagrant,bheuvel/vagrant,zsjohny/vagrant,Chhunlong/vagrant,mkuzmin/vagrant,wkolean/vagrant,wangfakang/vagrant,h4ck3rm1k3/vagrant,myrjola/vagrant,obnoxxx/vagrant,blueyed/vagrant,rivy/vagrant,johntron/vagrant,dhoer/vagrant,justincampbell/vagrant,clinstid/vagrant,juiceinc/vagrant,legal90/vagrant,dhoer/vagrant,tomfanning/vagrant,bshurts/vagrant,sax/vagrant,philwrenn/vagrant,tbarrongh/vagrant,shtouff/vagrant,janek-warchol/vagrant,tbriggs-curse/vagrant,fnewberg/vagrant,modulexcite/vagrant,loren-osborn/vagrant,jtopper/vagrant,invernizzi-at-google/vagrant,bdwyertech/vagrant,jmanero/vagrant,tjanez/vagrant,johntron/vagrant,sax/vagrant,stephancom/vagrant,kamigerami/vagrant,gpkfr/vagrant,taliesins/vagrant,zsjohny/vagrant,muhanadra/vagrant,ianmiell/vagrant,tbarrongh/vagrant,sideci-sample/sideci-sample-vagrant,Chhed13/vagrant,wangfakang/vagrant,tknerr/vagrant,jean/vagrant,patrys/vagrant,gitebra/vagrant,bryson/vagrant,wkolean/vagrant,tschortsch/vagrant,channui/vagrant,gbarberi/vagrant,Avira/vagrant,signed8bit/vagrant,benh57/vagrant,kamigerami/vagrant,mpoeter/vagrant,sax/vagrant,kalabiyau/vagrant,pwnall/vagrant,apertoso/vagrant,tomfanning/vagrant,bheuvel/vagrant,pwnall/vagrant,legal90/vagrant,tschortsch/vagrant,apertoso/vagrant,shtouff/vagrant,shtouff/vagrant,invernizzi-at-google/vagrant,mkuzmin/vagrant,benizi/vagrant,justincampbell/vagrant,signed8bit/vagrant,ArloL/vagrant,benizi/vagrant,tomfanning/vagrant,MiLk/vagrant,kamazee/vagrant,ferventcoder/vagrant,aneeshusa/vagrant,Endika/vagrant,jberends/vagrant,teotihuacanada/vagrant,rivy/vagrant,jkburges/vagrant,tknerr/vagrant,ArloL/vagrant,mpoeter/vagrant,janek-warchol/vagrant,carlosefr/vagrant,Chhunlong/vagrant,aneeshusa/vagrant,otagi/vagrant,bshurts/vagrant,gitebra/vagrant,Chhed13/vagrant,rivy/vagrant,chrisroberts/vagrant,philoserf/vagrant,mwrock/vagrant,sni/vagrant,crashlytics/vagrant,sni/vagrant,PatrickLang/vagrant,mpoeter/vagrant,gpkfr/vagrant,mwarren/vagrant,tjanez/vagrant,jtopper/vagrant,aaam/vagrant,dharmab/vagrant,doy/vagrant,TheBigBear/vagrant,darkn3rd/vagrant,Sgoettschkes/vagrant,jmanero/vagrant,TheBigBear/vagrant,mwrock/vagrant,theist/vagrant,pwnall/vagrant,senglin/vagrant,dharmab/vagrant,cgvarela/vagrant,chrisroberts/vagrant,aneeshusa/vagrant,blueyed/vagrant,jfchevrette/vagrant,clinstid/vagrant,evverx/vagrant,denisbr/vagrant,gbarberi/vagrant,kamigerami/vagrant,mpoeter/vagrant,blueyed/vagrant,clinstid/vagrant,wkolean/vagrant,signed8bit/vagrant,Chhunlong/vagrant,obnoxxx/vagrant,marxarelli/vagrant,tschortsch/vagrant,tjanez/vagrant,doy/vagrant,cgvarela/vagrant,dhoer/vagrant,myrjola/vagrant,patrys/vagrant,ianmiell/vagrant,mkuzmin/vagrant,benizi/vagrant,aaam/vagrant,BlakeMesdag/vagrant,h4ck3rm1k3/vagrant,petems/vagrant,Chhunlong/vagrant,benh57/vagrant,justincampbell/vagrant,bshurts/vagrant,PatrickLang/vagrant,BlakeMesdag/vagrant,jberends/vagrant,tbarrongh/vagrant,jhoblitt/vagrant,juiceinc/vagrant,sideci-sample/sideci-sample-vagrant,chrisvire/vagrant,bdwyertech/vagrant,sideci-sample/sideci-sample-vagrant,bdwyertech/vagrant,BlakeMesdag/vagrant,kamigerami/vagrant,teotihuacanada/vagrant,h4ck3rm1k3/vagrant,wangfakang/vagrant,justincampbell/vagrant,jfchevrette/vagrant,gajdaw/vagrant,kamazee/vagrant,patrys/vagrant,doy/vagrant,MiLk/vagrant,tknerr/vagrant,dustymabe/vagrant,otagi/vagrant,theist/vagrant,fnewberg/vagrant,philwrenn/vagrant,mwrock/vagrant,loren-osborn/vagrant,denisbr/vagrant,gajdaw/vagrant,zsjohny/vagrant,petems/vagrant,Chhed13/vagrant,jtopper/vagrant,philwrenn/vagrant,aaam/vagrant,senglin/vagrant,theist/vagrant,krig/vagrant,philoserf/vagrant,fnewberg/vagrant,denisbr/vagrant,jkburges/vagrant,bdwyertech/vagrant,chrisroberts/vagrant,lonniev/vagrant,ArloL/vagrant,nickryand/vagrant,genome21/vagrant,muhanadra/vagrant,tomfanning/vagrant,crashlytics/vagrant,Chhed13/vagrant,mwarren/vagrant,loren-osborn/vagrant,juiceinc/vagrant,PatOShea/vagrant,aaam/vagrant,modulexcite/vagrant,invernizzi-at-google/vagrant,kamazee/vagrant,Sgoettschkes/vagrant,chrisvire/vagrant,dharmab/vagrant,bheuvel/vagrant,jhoblitt/vagrant,genome21/vagrant,mitchellh/vagrant,mitchellh/vagrant,legal90/vagrant,obnoxxx/vagrant,dharmab/vagrant,aneeshusa/vagrant,sni/vagrant,sni/vagrant,jkburges/vagrant,benh57/vagrant,myrjola/vagrant,lukebakken/vagrant,miguel250/vagrant,gbarberi/vagrant,pwnall/vagrant,jmanero/vagrant,petems/vagrant,teotihuacanada/vagrant,tbriggs-curse/vagrant,lukebakken/vagrant,gpkfr/vagrant,channui/vagrant,tbriggs-curse/vagrant,rivy/vagrant,kalabiyau/vagrant,crashlytics/vagrant,jhoblitt/vagrant,apertoso/vagrant,gitebra/vagrant,vamegh/vagrant,Avira/vagrant,stephancom/vagrant,benh57/vagrant,johntron/vagrant,gpkfr/vagrant,bheuvel/vagrant,ArloL/vagrant,modulexcite/vagrant,marxarelli/vagrant,krig/vagrant,bryson/vagrant,iNecas/vagrant,Endika/vagrant,jfchevrette/vagrant,darkn3rd/vagrant,genome21/vagrant,apertoso/vagrant,kalabiyau/vagrant,kamazee/vagrant,genome21/vagrant,petems/vagrant,zsjohny/vagrant,PatrickLang/vagrant,vamegh/vagrant,johntron/vagrant,jean/vagrant,lukebakken/vagrant,h4ck3rm1k3/vagrant,signed8bit/vagrant,jtopper/vagrant,evverx/vagrant,taliesins/vagrant,gbarberi/vagrant,senglin/vagrant,jberends/vagrant,otagi/vagrant,tjanez/vagrant,miguel250/vagrant,darkn3rd/vagrant,Avira/vagrant,theist/vagrant,invernizzi-at-google/vagrant,marxarelli/vagrant,janek-warchol/vagrant,janek-warchol/vagrant,krig/vagrant,benizi/vagrant,nickryand/vagrant,doy/vagrant,mitchellh/vagrant,jhoblitt/vagrant,Sgoettschkes/vagrant,teotihuacanada/vagrant,shtouff/vagrant,dhoer/vagrant,muhanadra/vagrant,cgvarela/vagrant,vamegh/vagrant,lukebakken/vagrant,lonniev/vagrant,darkn3rd/vagrant,muhanadra/vagrant,jberends/vagrant,philoserf/vagrant,crashlytics/vagrant,myrjola/vagrant,tknerr/vagrant,marxarelli/vagrant,dustymabe/vagrant,ianmiell/vagrant,wangfakang/vagrant,blueyed/vagrant,mkuzmin/vagrant,tbriggs-curse/vagrant,TheBigBear/vagrant,chrisroberts/vagrant,TheBigBear/vagrant,Endika/vagrant,philwrenn/vagrant,senglin/vagrant,ianmiell/vagrant,mwarren/vagrant,jean/vagrant,jean/vagrant,dustymabe/vagrant,jfchevrette/vagrant,tbarrongh/vagrant,sax/vagrant,ferventcoder/vagrant,chrisvire/vagrant,gajdaw/vagrant,krig/vagrant,Avira/vagrant,otagi/vagrant,wkolean/vagrant,stephancom/vagrant,mwarren/vagrant,tschortsch/vagrant,mwrock/vagrant,denisbr/vagrant,bshurts/vagrant,carlosefr/vagrant,ferventcoder/vagrant,fnewberg/vagrant,mitchellh/vagrant,miguel250/vagrant,taliesins/vagrant,loren-osborn/vagrant,philoserf/vagrant,PatOShea/vagrant,iNecas/vagrant,stephancom/vagrant,lonniev/vagrant,PatOShea/vagrant,nickryand/vagrant,taliesins/vagrant,bryson/vagrant,juiceinc/vagrant,evverx/vagrant,channui/vagrant,jmanero/vagrant,patrys/vagrant
|
0a6bad6e3038d78d1e240aae803f20e2c8bc1f81
|
gemspec.yml
|
gemspec.yml
|
name: ore
version: 0.8.0
summary: Mine raw RubyGems from YAML
description:
Ore is a simple RubyGem building solution. Ore handles the
creation of Gem::Specification objects as well as building '.gem'
files. Ore allows the developer to keep all of the project information
in a single YAML file.
license: MIT
authors: Postmodern
email: [email protected]
homepage: http://github.com/ruby-ore/ore
has_yard: true
post_install_message: |
**************************************************************************
Generate a new Ruby library:
$ mine my_library --rspec --yard
Build the library:
$ rake build
Release the library to rubygems.org:
$ rake release
**************************************************************************
dependencies:
ore-core: ~> 0.1, >= 0.1.4
env: ~> 0.1.2
thor: ~> 0.14.3
development_dependencies:
ore-tasks: ~> 0.4
rspec: ~> 2.4
yard: ~> 0.6.1
|
name: ore
version: 0.7.3
summary: Mine raw RubyGems from YAML
description:
Ore is a simple RubyGem building solution. Ore handles the
creation of Gem::Specification objects as well as building '.gem'
files. Ore allows the developer to keep all of the project information
in a single YAML file.
license: MIT
authors: Postmodern
email: [email protected]
homepage: http://github.com/ruby-ore/ore
has_yard: true
post_install_message: |
**************************************************************************
Generate a new Ruby library:
$ mine my_library --rspec --yard
Build the library:
$ rake build
Release the library to rubygems.org:
$ rake release
**************************************************************************
dependencies:
ore-core: ~> 0.1, >= 0.1.4
env: ~> 0.1.2
thor: ~> 0.14.3
development_dependencies:
ore-tasks: ~> 0.4
rspec: ~> 2.4
yard: ~> 0.6.1
|
Revert "Version bump to 0.8.0."
|
Revert "Version bump to 0.8.0."
|
YAML
|
mit
|
dldinternet/ore,philoserf/ore,ruby-ore/ore,ruby-ore/ore,dldinternet/ore,philoserf/ore
|
f3f832a8bc9fa27a1f883d557277ac0fa60c1f9b
|
.forestry/front_matter/templates/partial-columns.yml
|
.forestry/front_matter/templates/partial-columns.yml
|
---
hide_body: false
is_partial: true
fields:
- type: field_group_list
label: Columns
name: columns
fields:
- type: text
name: title
label: Title
description: The title to display
config:
required: true
- type: textarea
label: Body
name: body
description: The content to display
config:
wysiwyg: true
schema:
format: markdown
required: true
- type: number
label: Width
name: width
config:
min: '1'
max: '12'
step: '1'
required: true
default: '4'
description: The width to apply in the 12-grid layout
config:
labelField: title
|
---
hide_body: false
is_partial: true
fields:
- type: number
name: column_count
label: Column Count
description: The number of columns
config:
min: '1'
max: '3'
step: '1'
required: true
- type: field_group_list
label: Columns
name: columns
fields:
- type: text
name: title
label: Title
description: The title to display
config:
required: true
- type: textarea
label: Body
name: body
description: The content to display
config:
wysiwyg: true
schema:
format: markdown
required: true
- type: number
label: Width
name: width
config:
min: '1'
max: '8'
step: '1'
required: false
description: The optional width to apply in the 12-grid layout
config:
labelField: title
|
Update from Forestry.io - Updated Forestry configuration
|
Update from Forestry.io - Updated Forestry configuration
|
YAML
|
mit
|
sarahwintondesign/sarahwintondesign.github.io,sarahwintondesign/sarahwintondesign.github.io
|
a50f0b529380b8f2c0eeb35338bc3148e22e8e5b
|
metadata/de.markusfisch.android.binaryeye.yml
|
metadata/de.markusfisch.android.binaryeye.yml
|
Categories:
- Multimedia
License: MIT
SourceCode: https://github.com/markusfisch/BinaryEye
IssueTracker: https://github.com/markusfisch/BinaryEye/issues
AutoName: Binary Eye
Description: |-
''Binary Eye'' works in portrait and landscape orientation, can read
inverted codes, is Material Design and doesn't do anything else but
decoding a barcode. It uses the ZXing ("Zebra Crossing") barcode scanning
library. Supported barcode formats are: AZTEC, CODABAR, CODE 39, CODE 93,
CODE 128, DATA MATRIX, EAN 8, EAN 13, ITF, MAXICODE, PDF417, QR CODE, RSS
14, RSS EXPANDED, UPC A, UPC E and UPC EAN EXTENSION.
RepoType: git
Repo: https://github.com/markusfisch/BinaryEye
Builds:
- versionName: 1.3.8
versionCode: 14
commit: 1.3.8
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.3.8
CurrentVersionCode: 14
|
Categories:
- Multimedia
License: MIT
SourceCode: https://github.com/markusfisch/BinaryEye
IssueTracker: https://github.com/markusfisch/BinaryEye/issues
AutoName: Binary Eye
Description: |-
''Binary Eye'' works in portrait and landscape orientation, can read
inverted codes, is Material Design and doesn't do anything else but
decoding a barcode. It uses the ZXing ("Zebra Crossing") barcode scanning
library. Supported barcode formats are: AZTEC, CODABAR, CODE 39, CODE 93,
CODE 128, DATA MATRIX, EAN 8, EAN 13, ITF, MAXICODE, PDF417, QR CODE, RSS
14, RSS EXPANDED, UPC A, UPC E and UPC EAN EXTENSION.
RepoType: git
Repo: https://github.com/markusfisch/BinaryEye
Builds:
- versionName: 1.3.8
versionCode: 14
commit: 1.3.8
subdir: app
gradle:
- yes
- versionName: 1.4.1
versionCode: 16
commit: 1.4.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.4.1
CurrentVersionCode: 16
|
Update Binary Eye to 1.4.1 (16)
|
Update Binary Eye to 1.4.1 (16)
|
YAML
|
agpl-3.0
|
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
|
f22bcf3e2fff57e9cd664cf729591c987c13b6f8
|
metadata/de.duenndns.gmdice.yml
|
metadata/de.duenndns.gmdice.yml
|
Categories:
- Games
License: GPL-2.0-only
SourceCode: https://github.com/ge0rg/gamemasterdice
IssueTracker: https://github.com/ge0rg/gamemasterdice/issues
AutoName: DSA Dice
Description: |-
A dice rolling application with a special focus on the 3D20 role playing game
(RPG) system.
Features:
* four configurable dice buttons (long-press to configure)
* backlog of recent dice rolls
* remembers the most commonly used dice
Supported games:
* Dungeons & Dragons (DnD)
* Neuroshima
* Monastyr
* Star Wars RPG
* Shadowrun
* and further d20 and 3d20 titles
RepoType: git
Repo: https://github.com/ge0rg/gamemasterdice.git
Builds:
- versionName: 0.1.5
versionCode: 6
commit: 852aa5d917a
- versionName: 0.1.6
versionCode: 7
commit: 0.1.6
- versionName: '1.0'
versionCode: 8
commit: '1.0'
gradle:
- yes
AutoUpdateMode: None
UpdateCheckMode: Tags
CurrentVersion: '1.0'
CurrentVersionCode: 8
|
Categories:
- Games
License: GPL-2.0-only
SourceCode: https://github.com/ge0rg/gamemasterdice
IssueTracker: https://github.com/ge0rg/gamemasterdice/issues
AutoName: DSA Dice
Description: |-
A dice rolling application with a special focus on the 3D20 role playing game
(RPG) system.
Features:
* four configurable dice buttons (long-press to configure)
* backlog of recent dice rolls
* remembers the most commonly used dice
Supported games:
* Dungeons & Dragons (DnD)
* Neuroshima
* Monastyr
* Star Wars RPG
* Shadowrun
* and further d20 and 3d20 titles
RepoType: git
Repo: https://github.com/ge0rg/gamemasterdice.git
Builds:
- versionName: 0.1.5
versionCode: 6
commit: 852aa5d917a
- versionName: 0.1.6
versionCode: 7
commit: 0.1.6
- versionName: '1.0'
versionCode: 8
commit: '1.0'
gradle:
- yes
AutoUpdateMode: None
UpdateCheckMode: Tags
CurrentVersion: 0.1.6
CurrentVersionCode: 7
|
Update CV of DSA Dice to 0.1.6 (7)
|
Update CV of DSA Dice to 0.1.6 (7)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
4a301a28028f16e27346176af56eb213ae21af64
|
product/dashboard/widgets/tenant_quotas.yaml
|
product/dashboard/widgets/tenant_quotas.yaml
|
description: tenant_quotas
title: Tenant Quotas
content_type: report
options:
visibility:
:roles:
- _ALL_
user_id:
resource_name: Tenant Quotas
resource_type: MiqReport
miq_schedule_options:
:run_at:
:interval:
:value: "1"
:unit: daily
enabled: true
read_only: true
|
description: tenant_quotas
title: Tenant Quotas
content_type: report
visibility:
:roles:
- _ALL_
user_id:
resource_name: Tenant Quotas
resource_type: MiqReport
miq_schedule_options:
:run_at:
:interval:
:value: "1"
:unit: daily
enabled: true
read_only: true
|
Remove key :options, we dont need it. we have default row value now
|
Remove key :options, we dont need it. we have default row value now
|
YAML
|
apache-2.0
|
fbladilo/manageiq,fbladilo/manageiq,mzazrivec/manageiq,NickLaMuro/manageiq,kbrock/manageiq,yaacov/manageiq,tzumainn/manageiq,maas-ufcg/manageiq,chessbyte/manageiq,jameswnl/manageiq,kbrock/manageiq,lpichler/manageiq,mkanoor/manageiq,hstastna/manageiq,romaintb/manageiq,jrafanie/manageiq,ailisp/manageiq,romanblanco/manageiq,israel-hdez/manageiq,juliancheal/manageiq,aufi/manageiq,jrafanie/manageiq,maas-ufcg/manageiq,andyvesel/manageiq,djberg96/manageiq,skateman/manageiq,agrare/manageiq,josejulio/manageiq,gmcculloug/manageiq,ManageIQ/manageiq,gerikis/manageiq,andyvesel/manageiq,fbladilo/manageiq,syncrou/manageiq,billfitzgerald0120/manageiq,djberg96/manageiq,NaNi-Z/manageiq,hstastna/manageiq,romaintb/manageiq,tzumainn/manageiq,jameswnl/manageiq,pkomanek/manageiq,josejulio/manageiq,borod108/manageiq,ManageIQ/manageiq,NaNi-Z/manageiq,matobet/manageiq,aufi/manageiq,KevinLoiseau/manageiq,ilackarms/manageiq,syncrou/manageiq,matobet/manageiq,romanblanco/manageiq,hstastna/manageiq,ManageIQ/manageiq,gmcculloug/manageiq,israel-hdez/manageiq,andyvesel/manageiq,juliancheal/manageiq,josejulio/manageiq,ailisp/manageiq,andyvesel/manageiq,syncrou/manageiq,jntullo/manageiq,durandom/manageiq,branic/manageiq,jntullo/manageiq,durandom/manageiq,d-m-u/manageiq,agrare/manageiq,mkanoor/manageiq,skateman/manageiq,israel-hdez/manageiq,lpichler/manageiq,maas-ufcg/manageiq,chessbyte/manageiq,lpichler/manageiq,gerikis/manageiq,billfitzgerald0120/manageiq,romaintb/manageiq,skateman/manageiq,jameswnl/manageiq,maas-ufcg/manageiq,jvlcek/manageiq,hstastna/manageiq,KevinLoiseau/manageiq,chessbyte/manageiq,pkomanek/manageiq,agrare/manageiq,NaNi-Z/manageiq,israel-hdez/manageiq,djberg96/manageiq,romaintb/manageiq,yaacov/manageiq,mresti/manageiq,tzumainn/manageiq,pkomanek/manageiq,ailisp/manageiq,ailisp/manageiq,KevinLoiseau/manageiq,tinaafitz/manageiq,gmcculloug/manageiq,mfeifer/manageiq,maas-ufcg/manageiq,branic/manageiq,agrare/manageiq,NickLaMuro/manageiq,mfeifer/manageiq,branic/manageiq,borod108/manageiq,tzumainn/manageiq,mkanoor/manageiq,maas-ufcg/manageiq,romanblanco/manageiq,KevinLoiseau/manageiq,romanblanco/manageiq,tinaafitz/manageiq,branic/manageiq,yaacov/manageiq,gmcculloug/manageiq,romaintb/manageiq,durandom/manageiq,jvlcek/manageiq,tinaafitz/manageiq,skateman/manageiq,NickLaMuro/manageiq,ilackarms/manageiq,durandom/manageiq,gerikis/manageiq,chessbyte/manageiq,borod108/manageiq,d-m-u/manageiq,billfitzgerald0120/manageiq,mresti/manageiq,pkomanek/manageiq,mkanoor/manageiq,mzazrivec/manageiq,jvlcek/manageiq,matobet/manageiq,djberg96/manageiq,matobet/manageiq,aufi/manageiq,mzazrivec/manageiq,ManageIQ/manageiq,KevinLoiseau/manageiq,kbrock/manageiq,borod108/manageiq,billfitzgerald0120/manageiq,yaacov/manageiq,gerikis/manageiq,d-m-u/manageiq,lpichler/manageiq,syncrou/manageiq,fbladilo/manageiq,aufi/manageiq,jrafanie/manageiq,jvlcek/manageiq,mzazrivec/manageiq,mresti/manageiq,ilackarms/manageiq,jrafanie/manageiq,jntullo/manageiq,jameswnl/manageiq,mresti/manageiq,josejulio/manageiq,romaintb/manageiq,juliancheal/manageiq,ilackarms/manageiq,kbrock/manageiq,KevinLoiseau/manageiq,juliancheal/manageiq,tinaafitz/manageiq,jntullo/manageiq,d-m-u/manageiq,mfeifer/manageiq,mfeifer/manageiq,NaNi-Z/manageiq,NickLaMuro/manageiq
|
5af4388f5d48d6f27cdf8c247f8fd07f1f241a88
|
defaults/main.yml
|
defaults/main.yml
|
---
shell_profiles:
- .bash_profile
nodejs_clean_install: false
nvm_symlink_exec: /usr/local/bin/nvm
nvm_version: v0.33.8
#nvm_repo: "https://github.com/xtuple/nvm.git"
ivm_repo: "https://github.com/demohi/ivm.git"
install_nvm: true
install_nvm_git: true
install_nodejs: true
install_ivm: false
install_iojs: false
install_npm: true
node_version: 10.0.0
node_versions:
- 4.8.2
- 5.12.0
- 6.11.2
- 7.9.0
- 8.9.1
- 9.7.1
node_packages:
- backbone
- grunt
- replace
- underscore
- yosay
|
---
shell_profiles:
- .bash_profile
nodejs_clean_install: false
nvm_symlink_exec: /usr/local/bin/nvm
nvm_version: v0.33.8
#nvm_repo: "https://github.com/xtuple/nvm.git"
ivm_repo: "https://github.com/demohi/ivm.git"
install_nvm: true
install_nvm_git: true
install_nodejs: true
install_ivm: false
install_iojs: false
install_npm: true
node_version: 10.0.0
node_versions:
- 4.8.2
- 5.12.0
- 6.11.2
- 7.9.0
- 8.9.1
- 9.11.2
node_packages:
- backbone
- grunt
- replace
- underscore
- yosay
|
Update default node v9 to 9.11.2
|
Update default node v9 to 9.11.2
|
YAML
|
mit
|
fubarhouse/fubarhouse.npm,fubarhouse/ansible-role-nodejs
|
d0ee2a47cf74aee53183f004d96d342da8a9936e
|
defaults/main.yml
|
defaults/main.yml
|
---
haproxy_ciphers:
- ECDHE-RSA-AES256-GCM-SHA384
- ECDHE-RSA-AES256-SHA384
- ECDHE-RSA-AES256-SHA
- AES256-GCM-SHA384
- AES256-SHA256
- AES256-SHA
- CAMELLIA256-SHA
- ECDHE-RSA-AES128-GCM-SHA256
- ECDHE-RSA-AES128-SHA256
- ECDHE-RSA-AES128-SHA
- AES128-GCM-SHA256
- AES128-SHA256
- AES128-SHA
- CAMELLIA128-SHA
- ECDHE-RSA-DES-CBC3-SHA
- DES-CBC3-SHA
|
---
haproxy_ciphers:
- ECDHE-RSA-AES256-GCM-SHA384
- ECDHE-RSA-AES256-SHA384
- ECDHE-RSA-AES256-SHA
- AES256-GCM-SHA384
- AES256-SHA256
- DHE-RSA-AES256-SHA
- AES256-SHA
- CAMELLIA256-SHA
- ECDHE-RSA-AES128-GCM-SHA256
- ECDHE-RSA-AES128-SHA256
- ECDHE-RSA-AES128-SHA
- AES128-GCM-SHA256
- AES128-SHA256
- DHE-RSA-AES128-SHA
- AES128-SHA
- CAMELLIA128-SHA
- ECDHE-RSA-DES-CBC3-SHA
- DES-CBC3-SHA
|
Add settings for robust PFS
|
Add settings for robust PFS
|
YAML
|
apache-2.0
|
betterplace/ansible-haproxy
|
4149db01c4d19ecdfb6ddaf77c24f539ac7dc32d
|
defaults/main.yml
|
defaults/main.yml
|
---
# user to add to docker group
docker_user: "{{ ansible_user }}"
# version that should be installed
docker_version: 17.04.0
# service related parameters
docker_listen_on_loopback: no
# registry related parameters
docker_registry: quay.io
docker_registry_password: ""
docker_registry_username: ""
# storage driver related parameters
docker_configure_storage_driver: no
docker_storage_driver: overlay
docker_storage_block_device: ""
docker_storage_filesystem: ext4
# proxy related parameters
docker_configure_proxy: no
docker_proxy_http: "http://proxy.tld:8080"
docker_proxy_https: "{{ docker_proxy_http }}"
docker_proxy_no_proxy:
- localhost
- 127.0.0.1
# CI parameters
docker_run_tests: no
|
---
# user to add to docker group
docker_user: "{{ ansible_user }}"
# version that should be installed
docker_version: 17.04.0
# service related parameters
docker_listen_on_loopback: no
# registry related parameters
docker_registry: registry.hub.docker.com
docker_registry_password: ""
docker_registry_username: ""
# storage driver related parameters
docker_configure_storage_driver: no
docker_storage_driver: overlay
docker_storage_block_device: ""
docker_storage_filesystem: ext4
# proxy related parameters
docker_configure_proxy: no
docker_proxy_http: "http://proxy.tld:8080"
docker_proxy_https: "{{ docker_proxy_http }}"
docker_proxy_no_proxy:
- localhost
- 127.0.0.1
# CI parameters
docker_run_tests: no
|
Change default registry to docker hub
|
Change default registry to docker hub
|
YAML
|
apache-2.0
|
betacloud/ansible-docker,betacloud/ansible-docker
|
571b8cf819d2fd3672e9785d5eb74e0b62067c0c
|
packages/mo/monopati.yaml
|
packages/mo/monopati.yaml
|
homepage: https://github.com/iokasimov/monopati
changelog-type: ''
hash: 833758fbda0c78c4928368bf58c09ad8b2548cc6f03d5a374cc502dc137ca824
test-bench-deps: {}
maintainer: Murat Kasimov <[email protected]>
synopsis: Well-typed paths
changelog: ''
basic-deps:
free: -any
split: -any
base: ==4.*
directory: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
author: Murat Kasimov
latest: '0.1.2'
description-type: haddock
description: Despite the fact that there are a plenty of various well-typed "path"
libraries in Haskell, I decided to write new one that I would like to use.
license-name: BSD3
|
homepage: https://github.com/iokasimov/monopati
changelog-type: ''
hash: f1c1d5720c4b7b165ca7d198da9d3c620bbae5ebe44b5bdad3f50dd48f287641
test-bench-deps:
free: -any
split: -any
base: ==4.*
hedgehog: -any
transformers: -any
directory: -any
maintainer: Murat Kasimov <[email protected]>
synopsis: Well-typed paths
changelog: ''
basic-deps:
free: -any
split: -any
base: ==4.*
directory: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
author: Murat Kasimov
latest: '0.1.3'
description-type: haddock
description: Despite the fact that there are a plenty of various well-typed "path"
libraries in Haskell, I decided to write new one that I would like to use.
license-name: BSD3
|
Update from Hackage at 2018-11-01T12:00:01Z
|
Update from Hackage at 2018-11-01T12:00:01Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
8d6a169b756505c14b1c3ba1fa0873b474552104
|
packages/re/regex-do.yaml
|
packages/re/regex-do.yaml
|
homepage: https://github.com/ciez/regex-do
changelog-type: ''
hash: 3a0ac3abaee2c44fd25d99894553a8bb855e9cc1d153b55d7ec13c2c3981620b
test-bench-deps:
regex-pcre: ! '>=0.94.4'
bytestring: ! '>=0.10.6.0'
base: ! '>=4.8'
hspec: ! '>=2.1.7'
text: -any
stringsearch: ! '>=0.3.6.6'
array: ! '>=0.5.1.0'
regex-base: ! '>=0.93.2'
regex-do: -any
QuickCheck: ! '>=2.8.1'
maintainer: Imants Cekusins
synopsis: PCRE regex funs
changelog: ''
basic-deps:
regex-pcre: ! '>=0.94.4'
bytestring: ! '>=0.10.6.0'
base: ! '>=4.8 && <4.9'
text: -any
stringsearch: ! '>=0.3.6.6'
array: ! '>=0.5.1.0'
regex-base: ! '>=0.93.2'
all-versions:
- '1.0'
author: Imants Cekusins
latest: '1.0'
description-type: haddock
description: Convenience functions to search, replace, format String | ByteString
with PCRE regex
license-name: PublicDomain
|
homepage: https://github.com/ciez/regex-do
changelog-type: ''
hash: 8bf8ae483e58433b0d289e4f225609447935796783bc37f76fc1fdb93ebcbc1c
test-bench-deps:
regex-pcre: -any
bytestring: -any
base: <=5.0
hspec: -any
text: -any
stringsearch: -any
array: -any
regex-base: -any
regex-do: -any
QuickCheck: -any
maintainer: Imants Cekusins
synopsis: PCRE regex funs
changelog: ''
basic-deps:
regex-pcre: -any
bytestring: -any
base: <=5.0
text: -any
stringsearch: -any
array: -any
regex-base: -any
all-versions:
- '1.0'
- '1.1'
author: Imants Cekusins
latest: '1.1'
description-type: haddock
description: Convenience functions to search, replace, format String | ByteString
with PCRE regex
license-name: PublicDomain
|
Update from Hackage at 2016-11-06T13:59:38Z
|
Update from Hackage at 2016-11-06T13:59:38Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
619ad895fc3321664147712c9949d5497fb920d6
|
packages/ta/tasty-th.yaml
|
packages/ta/tasty-th.yaml
|
homepage: http://github.com/bennofs/tasty-th
changelog-type: ''
hash: 918aeb00225280123e6fbfea264751d767cef0dd7c11dc44dad048a184b848ba
test-bench-deps: {}
maintainer: Benno Fünfstück <[email protected]>
synopsis: Automatic tasty test case discovery using TH
changelog: ''
basic-deps:
base: ! '>=4 && <5'
tasty: -any
template-haskell: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
author: Oscar Finnsson & Emil Nordling & Benno Fünfstück
latest: '0.1.4'
description-type: haddock
description: Generate tasty TestTrees automatically with TemplateHaskell. See the
README for example usage.
license-name: BSD3
|
homepage: http://github.com/bennofs/tasty-th
changelog-type: ''
hash: 964a332f0400c18ea5cccb0974799d3fe4bc2640e544ae67ea2d02c6f6642dc6
test-bench-deps: {}
maintainer: Benno Fünfstück <[email protected]>
synopsis: Automatic tasty test case discovery using TH
changelog: ''
basic-deps:
base: ! '>=4 && <5'
haskell-src-exts: ! '>=1.18.0'
tasty: -any
template-haskell: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
- '0.1.5'
author: Oscar Finnsson & Emil Nordling & Benno Fünfstück
latest: '0.1.5'
description-type: haddock
description: Generate tasty TestTrees automatically with TemplateHaskell. See the
README for example usage.
license-name: BSD3
|
Update from Hackage at 2017-04-01T14:14:39Z
|
Update from Hackage at 2017-04-01T14:14:39Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
ae0f5657a04196a3ce07a400d1386d9d24677ebe
|
roles/homeassistant/files/automations-kitchen.yaml
|
roles/homeassistant/files/automations-kitchen.yaml
|
- id: automation.alarm_kitchen_rice_cooker_is_keeping_warm
alias: "ALARM: Kitchen Rice Cooker is keeping warm"
mode: single
trigger:
- platform: time
at: "21:00"
- platform: time
at: "21:30"
- platform: time
at: "22:00"
- platform: time
at: "22:30"
condition:
- condition: numeric_state
entity_id: sensor.kitchen_rice_cooker_plug_power
above: 40
action:
- service: notify.all_devices
data:
title: "⚠️ ALARM"
message: ️Rice Cooker is Keeping Warm
data:
push:
interruption-level: time-sensitive
- delay:
hours: 1
|
- id: automation.alarm_kitchen_rice_cooker_is_keeping_warm
alias: "ALARM: Kitchen Rice Cooker is keeping warm"
mode: single
trigger:
- platform: time
at: "22:00"
- platform: time
at: "22:30"
- platform: time
at: "23:00"
- platform: time
at: "23:30"
condition:
- condition: numeric_state
entity_id: sensor.kitchen_rice_cooker_plug_power
above: 40
action:
- service: notify.all_devices
data:
title: "⚠️ ALARM"
message: ️Rice Cooker is Keeping Warm
data:
push:
interruption-level: time-sensitive
- delay:
hours: 1
|
Change times for automation.rice_cooker in HA
|
Change times for automation.rice_cooker in HA
|
YAML
|
mit
|
rewse/ansible-playbooks,rewse/ansible-playbooks,rewse/ansible-playbooks
|
87661ef308938c078229cfdba6deaa917b2bb4f7
|
runtime/syntax/julia.yaml
|
runtime/syntax/julia.yaml
|
filetype: julia
detect:
filename: "\\.jl$"
header: "^#!.*/(env +)?julia( |$)"
rules:
# built-in objects
- constant.bool: "\\b(true|false)\\b"
# built-in attributes
- constant: "__[A-Za-z0-9_]+__"
# definitions
- identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]"
# keywords
- statement: "\\b(baremodule|begin|break|catch|const|continue|do|else|elseif|end|export|finally|for|function|global|if|import|let|local|macro|module|quote|return|struct|try|using|while)\\b"
- statement: "\\b(abstract type|primitive type|mutable struct\\b)"
# decorators
- identifier.macro: "@[A-Za-z0-9_]+"
# operators
- symbol.operator: "[-+*/|=%<>&~^]|\\b(and|not|or|is|in)\\b"
# parentheses
- symbol.brackets: "([(){}]|\\[|\\])"
# numbers
- constant.number: "\\b[0-9]+\\b"
- constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'"
- constant.string:
start: "\"\"\""
end: "\"\"\""
rules: []
- constant.string:
start: "'''"
end: "'''"
rules: []
- comment:
start: "#"
end: "$"
rules: []
|
filetype: julia
detect:
filename: "\\.jl$"
header: "^#!.*/(env +)?julia( |$)"
rules:
# built-in objects
- constant.bool: "\\b(true|false)\\b"
# built-in attributes
- constant: "__[A-Za-z0-9_]+__"
# definitions
- identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[(]"
# keywords
- statement: "\\b(baremodule|begin|break|catch|const|continue|do|else|elseif|end|export|finally|for|function|global|if|import|let|local|macro|module|quote|return|struct|try|using|while)\\b"
- statement: "\\b(abstract type|primitive type|mutable struct\\b)"
# decorators
- identifier.macro: "@[A-Za-z0-9_]+"
# operators
- symbol.operator: "[-+*/|=%<>&~^]|\\b(in|isa|where)\\b"
# parentheses
- symbol.brackets: "([(){}]|\\[|\\])"
# numbers
- constant.number: "\\b[0-9]+\\b"
- constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'"
- constant.string:
start: "\"\"\""
end: "\"\"\""
rules: []
- constant.string:
start: "'''"
end: "'''"
rules: []
- comment:
start: "#"
end: "$"
rules: []
|
Update keywords for infix operators
|
Update keywords for infix operators
|
YAML
|
mit
|
zyedidia/micro,zyedidia/micro
|
57567b36c8ff81ea6d1ea8cddfc0e1bad5186264
|
data/transition-sites/cabinet-office.yml
|
data/transition-sites/cabinet-office.yml
|
---
site: cabinet-office
whitehall_slug: cabinet-office
homepage: https://www.gov.uk/government/organisations/cabinet-office
tna_timestamp: 20130128190123
host: www.cabinet-office.gov.uk
aliases:
- cabinet-office.gov.uk
global: =301 https://www.gov.uk/government/organisations/cabinet-office
|
---
site: cabinet-office
whitehall_slug: cabinet-office
homepage: https://www.gov.uk/government/organisations/cabinet-office
tna_timestamp: 20130128190123
host: www.cabinet-office.gov.uk
aliases:
- cabinet-office.gov.uk
- cabinet-office.co.uk
- www.cabinet-office.co.uk
- cabinet-office.com
- www.cabinet-office.com
- cabinet-office.uk
- www.cabinet-office.uk
global: =301 https://www.gov.uk/government/organisations/cabinet-office
|
Add further aliases for Cabinet Office
|
Add further aliases for Cabinet Office
They'd like to point more domains at Bouncer which takes users to the Cabinet Office page.
|
YAML
|
mit
|
alphagov/transition-config,alphagov/transition-config
|
b16cf17634660c6fdf7c08a23e57e34672b47dd2
|
defaults/main.yml
|
defaults/main.yml
|
---
jenkins_enabled: yes # The role is enabled
jenkins_name: jenkins
jenkins_user: jenkins
jenkins_group: jenkins
jenkins_http_port: 8000 # Set jenkins port
jenkins_ssh_key_file: "" # Set private ssh key for Jenkins user (path to key)
jenkins_ssh_known_hosts: [] # Set known hosts for ssh
jenkins_proxy: "" # Enable jenkins proxy. Values are: nginx, apache
jenkins_proxy_hostname: "" # Set proxy servername
jenkins_proxy_port: 80 # Set proxy port
jenkins_proxy_auth: yes # Enable http auth
jenkins_proxy_auth_users: [] # Add http auth users
# jenkins_proxy_auth_users:
# - { name: team, password: secret }
jenkins_apt_packages: [] # Ensure the packages installed
jenkins_plugins: [] # Ensure the plugins is installed
jenkins_jobs: [] # Simple manage Jenkins jobs
# Ex. jenkins_jobs:
# - name: job
# action: enable # (enable|disable|delete)
# - name: test
# action: disable
jenkins_configuration: /etc/default/jenkins
jenkins_home: /var/lib/jenkins
jenkins_logdir: /var/log/jenkins
jenkins_java: /usr/bin/java
jenkins_log: "{{jenkins}logdir}}/{{jenkins_name}}.log"
jenkins_pidfile: /var/run/jenkins.pid
jenkins_prefix: "/"
jenkins_run_standalone: yes
jenkins_war: /usr/share/jenkins/jenkins.war
|
---
jenkins_enabled: yes # The role is enabled
jenkins_name: jenkins
jenkins_user: jenkins
jenkins_group: jenkins
jenkins_http_port: 8000 # Set jenkins port
jenkins_ssh_key_file: "" # Set private ssh key for Jenkins user (path to key)
jenkins_ssh_known_hosts: [] # Set known hosts for ssh
jenkins_proxy: "" # Enable jenkins proxy. Values are: nginx, apache
jenkins_proxy_hostname: "{{inventory_hostname}}" # Set proxy servername
jenkins_proxy_port: 80 # Set proxy port
jenkins_proxy_auth: yes # Enable http auth
jenkins_proxy_auth_users: [] # Add http auth users
# jenkins_proxy_auth_users:
# - { name: team, password: secret }
jenkins_apt_packages: [] # Ensure the packages installed
jenkins_plugins: [] # Ensure the plugins is installed
jenkins_jobs: [] # Simple manage Jenkins jobs
# Ex. jenkins_jobs:
# - name: job
# action: enable # (enable|disable|delete)
# - name: test
# action: disable
jenkins_configuration: /etc/default/jenkins
jenkins_home: /var/lib/jenkins
jenkins_logdir: /var/log/jenkins
jenkins_java: /usr/bin/java
jenkins_log: "{{jenkins}logdir}}/{{jenkins_name}}.log"
jenkins_pidfile: /var/run/jenkins.pid
jenkins_prefix: "/"
jenkins_run_standalone: yes
jenkins_war: /usr/share/jenkins/jenkins.war
|
Set default hostname for proxy
|
Set default hostname for proxy
|
YAML
|
mit
|
turb/Stouts.jenkins,AlbanAndrieu/Stouts.jenkins,TouqeerHussain/Stouts.jenkins,Seraf/Stouts.jenkins
|
7813399a919f58a7df7366729376f78f82fc9051
|
defaults/main.yml
|
defaults/main.yml
|
---
drone_scheme: http
drone_hostname: "{{ ansible_ssh_host|default(inventory_hostname) }}"
drone_port: 80
drone_sslcert: ''
drone_sslkey: ''
drone_path: ''
drone_github_key: ''
drone_github_secret: ''
drone_github_domain: github.com
drone_github_apiurl: https://api.github.com
drone_bitbucket_key: ''
drone_bitbucket_secret: ''
drone_smtp_server: ''
drone_smtp_port: ''
drone_smtp_address: ''
drone_smtp_username: ''
drone_smtp_password: ''
drone_open_invitations: 0
|
---
drone_scheme: http
drone_hostname: "{{ ansible_ssh_host|default(inventory_hostname) }}"
drone_port: 80
drone_sslcert: ''
drone_sslkey: ''
drone_path: ''
drone_github_key: ''
drone_github_secret: ''
drone_github_domain: github.com
drone_github_apiurl: https://api.github.com
drone_bitbucket_key: ''
drone_bitbucket_secret: ''
drone_gitlab_domain: ''
drone_gitlab_apiurl: ''
drone_smtp_server: ''
drone_smtp_port: ''
drone_smtp_address: ''
drone_smtp_username: ''
drone_smtp_password: ''
drone_open_invitations: 0
|
Add forgotten defaults for gitlab
|
Add forgotten defaults for gitlab
|
YAML
|
apache-2.0
|
amos6224/ansible-drone
|
3a4d5afccb6cb435bf5a4d17ec0502abef9e1cd9
|
images/k8s-cloud-builder/variants.yaml
|
images/k8s-cloud-builder/variants.yaml
|
variants:
cross1.14:
CONFIG: 'cross1.14'
KUBE_CROSS_VERSION: 'v1.14.4-2'
SKOPEO_VERSION: 'v0.2.0'
cross1.13:
CONFIG: 'cross1.13'
KUBE_CROSS_VERSION: 'v1.13.9-5'
SKOPEO_VERSION: 'v0.2.0'
|
variants:
cross1.14:
CONFIG: 'cross1.14'
KUBE_CROSS_VERSION: 'v1.14.5-1'
SKOPEO_VERSION: 'v0.2.0'
cross1.13:
CONFIG: 'cross1.13'
KUBE_CROSS_VERSION: 'v1.13.13-1'
SKOPEO_VERSION: 'v0.2.0'
|
Build on kube-cross:v1.14.5-1 and v1.13.13-1
|
k8s-cloud-builder: Build on kube-cross:v1.14.5-1 and v1.13.13-1
Signed-off-by: Stephen Augustus <[email protected]>
|
YAML
|
apache-2.0
|
kubernetes/release,kubernetes/release
|
e5128d1c5e6624855549e4c5aefaf585994368e3
|
playbooks/roles/xapi_bridge/defaults/main.yml
|
playbooks/roles/xapi_bridge/defaults/main.yml
|
---
##
# Defaults for role xapi_bridge
#
xapi_bridge_user: xapi
xapi_bridge_user_group: adm #perms on tracking.log
xapi_bridge_app_dir: "{{ COMMON_APP_DIR }}/xapi"
xapi_bridge_user_home: "{{ xapi_bridge_app_dir }}"
xapi_bridge_repo: "https://github.com/appsembler/edx-xapi-bridge"
xapi_bridge_venv_dir: "{{ xapi_bridge_app_dir }}/venvs/xapi"
xapi_bridge_code_dir: "{{ xapi_bridge_app_dir }}/edx-xapi-bridge"
|
---
##
# Defaults for role xapi_bridge
#
xapi_bridge_user: xapi
xapi_bridge_user_group: adm #perms on tracking.log
xapi_bridge_app_dir: "{{ COMMON_APP_DIR }}/xapi"
xapi_bridge_user_home: "{{ xapi_bridge_app_dir }}"
xapi_bridge_repo: "https://github.com/appsembler/edx-xapi-bridge"
xapi_bridge_venv_dir: "{{ xapi_bridge_app_dir }}/venvs/xapi"
xapi_bridge_code_dir: "{{ xapi_bridge_app_dir }}/edx-xapi-bridge"
xapi_bridge_version: "master"
|
Set xapi_bridge_version default to "master"
|
Set xapi_bridge_version default to "master"
|
YAML
|
agpl-3.0
|
appsembler/configuration,appsembler/configuration,appsembler/configuration,appsembler/configuration
|
3b1b4a033f9efb21badba4be04ef1373733589f2
|
slacksoc.yaml
|
slacksoc.yaml
|
statefile: /var/slacksoc/state.gob
plugins:
- name: Respond
responses:
- trigger: "(yo|hey|hi|hello|sup),? slacksoc"
replies: ["hello", "wassup", "yo"]
- trigger: "((good)?bye|adios),? slacksoc"
replies: ["goodbye"]
- trigger: "how much better is slack than groupme?"
replies: ["infinity"]
- trigger: ".*slack.*"
reacts: ["raisedeyebrow"]
- name: Debug
trusted: ["brenns10", "mason", "bentley"]
- name: Love
baseUrl: https://cwrulove.appspot.com/api
- name: GitHub
- name: RealName
channel: general
|
statefile: /var/slacksoc/state.gob
plugins:
- name: Respond
responses:
- trigger: "(yo|hey|hi|hello|sup),? slacksoc"
replies: ["hello", "wassup", "yo"]
- trigger: "((good)?bye|adios),? slacksoc"
replies: ["goodbye"]
- trigger: "how much better is slack than groupme?"
replies: ["infinity"]
- trigger: ".*slack.*"
reacts: ["raisedeyebrow"]
- name: Debug
trusted: ["brenns10", "mason", "bentley"]
- name: Love
baseUrl: https://cwrulove.appspot.com/api
- name: GitHub
- name: RealName
channel: general
- name: HotPotato
timeout: 180
diversityThreshold: 2.5
|
Add HotPotato plugin introduced in v1.1.0
|
Add HotPotato plugin introduced in v1.1.0
|
YAML
|
mit
|
hacsoc/slacksoc,hacsoc/slacksoc
|
0c57d5a5f703e5f7af45a626136ebe3bcf50ed6e
|
config/final.yml
|
config/final.yml
|
---
blobstore:
provider: s3
options:
bucket_name: logsearch-bosh-release-blobs
region: eu-west-1
endpoint: https://s3-eu-west-1.amazonaws.com
final_name: logsearch
|
---
blobstore:
provider: s3
options:
bucket_name: logsearch-release-blobs
final_name: logsearch
|
Update S3 bucket for release blobs
|
Update S3 bucket for release blobs
|
YAML
|
apache-2.0
|
cloudfoundry-community/logsearch-boshrelease,cloudfoundry-community/logsearch-boshrelease,cloudfoundry-community/logsearch-boshrelease,cloudfoundry-community/logsearch-boshrelease
|
38c959f740e85810b22743ad413113f8e4ec600e
|
ansible/roles/blackstar/files/create_worker_ami.yml
|
ansible/roles/blackstar/files/create_worker_ami.yml
|
---
- hosts: localhost
connection: local
gather_facts: no
tasks:
- debug: var=instance_id
- debug: var=image_name
- name: create image of current worker instance
ec2_ami:
instance_id: "{{ instance_id }}"
name: "{{ image_name }}"
region: us-west-2
register: image
- debug: var=image
|
---
- hosts: localhost
connection: local
gather_facts: no
vars:
image_name: "worker-{{ DATA_BRANCH }}-{{ ansible_date_time.date }}"
tasks:
- debug: var=instance_id
- debug: var=image_name
- name: create image of current worker instance
ec2_ami:
instance_id: "{{ instance_id }}"
name: "{{ image_name }}"
region: us-west-2
register: image
- debug: var=image
|
Automate image name, worker-<data branch>-date
|
Automate image name, worker-<data branch>-date
|
YAML
|
bsd-3-clause
|
ucldc/ingest_deploy,mredar/ingest_deploy,ucldc/ingest_deploy,mredar/ingest_deploy
|
a216f91d638bcb9dad1ae2958e2efe033ee2ecbe
|
invoke.yaml
|
invoke.yaml
|
# =====================================================
# INVOKE CONFIGURATION:
# =====================================================
# -- ON WINDOWS:
# run:
# echo: true
# pty: false
# shell: C:\Windows\System32\cmd.exe
# =====================================================
# MAYBE: tasks: auto_dash_names: false
project:
name: behave
run:
echo: true
pty: true
behave_test:
scopes:
- features
- tools/test-features
- issue.features
args: features tools/test-features issue.features
|
# =====================================================
# INVOKE CONFIGURATION:
# =====================================================
# -- ON WINDOWS:
# run:
# echo: true
# pty: false
# shell: C:\Windows\System32\cmd.exe
# =====================================================
# MAYBE: tasks: auto_dash_names: false
project:
name: behave
run:
echo: true
pty: true
clean_all:
extra_directories:
- .pytest_cache
behave_test:
scopes:
- features
- tools/test-features
- issue.features
args: features tools/test-features issue.features
|
Add .pytest_cache as extra directory to clean up (created by newer versions of pytest).
|
clean-all: Add .pytest_cache as extra directory to clean up (created by newer versions of pytest).
|
YAML
|
bsd-2-clause
|
jenisys/behave,jenisys/behave
|
ae40f6e123ebd4cb3a2ad7020a427b4e9bd120c5
|
jitpack.yml
|
jitpack.yml
|
jdk: oraclejdk9
install:
- ./gradlew publishToMavenLocal -x test
|
install:
- wget https://github.com/sormuras/bach/raw/master/install-jdk.sh
- source ./install-jdk.sh -F 10 -L GPL
- ./gradlew --version
- ./gradlew publishToMavenLocal -x test
|
Use JDK 10 for JitPack compilation
|
Use JDK 10 for JitPack compilation
|
YAML
|
epl-1.0
|
junit-team/junit-lambda,sbrannen/junit-lambda
|
c7d6ba6d5dff879991b66aca51492abaf66d0ce6
|
announce/2021/mfsa2021-23.yml
|
announce/2021/mfsa2021-23.yml
|
## mfsa2021-FIXME.yml
announced: May 28, 2021
impact: moderate
fixed_in:
- Firefox for iOS 34
title: Security Vulnerabilities fixed in Firefox for iOS 34
advisories:
CVE-2021-29958:
title: File download shares private browsing mode cookies
impact: moderate
reporter: Muneaki Nishimura
description: |
When a download was initiated, the client did not check whether it was in normal or private browsing mode, which led to private mode cookies being shared in normal browsing mode.
bugs:
- url: 1670127
|
## mfsa2021-23.yml
announced: June 1, 2021
impact: moderate
fixed_in:
- Firefox for iOS 34
title: Security Vulnerabilities fixed in Firefox for iOS 34
advisories:
CVE-2021-29958:
title: File download shares private browsing mode cookies
impact: moderate
reporter: Muneaki Nishimura
description: |
When a download was initiated, the client did not check whether it was in normal or private browsing mode, which led to private mode cookies being shared in normal browsing mode.
bugs:
- url: 1670127
|
Fix date for iOS advisory
|
Fix date for iOS advisory
|
YAML
|
mpl-2.0
|
mozilla/foundation-security-advisories,mozilla/foundation-security-advisories
|
ec7ec671dbff22b56c54b98583fcea2d47ea0c8e
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
specs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.1'
- '3.0'
- '2.7'
include:
- ruby: '3.1'
coverage: '1'
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Update rubygems
run: |
gem update --system
- uses: actions/cache@v2
with:
path: vendor/bundle
key: bundle-use-ruby-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
bundle-use-ruby-${{ matrix.ruby }}-
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run specs
env:
SIMPLECOV: ${{ matrix.coverage }}
run: |
bundle exec rake spec
- name: Publish code coverage
if: ${{ matrix.coverage == '1' }}
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
specs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.1'
- '3.0'
- '2.7'
include:
- ruby: '3.1'
coverage: '1'
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Update rubygems
run: |
gem update --system
- uses: actions/cache@v2
with:
path: vendor/bundle
key: bundle-use-ruby-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
bundle-use-ruby-${{ matrix.ruby }}-
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run specs
env:
SIMPLECOV: ${{ matrix.coverage }}
run: |
bundle exec rake spec
- name: Publish code coverage
if: ${{ matrix.coverage == '1' }}
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: true
|
Add coverage command for codeclimate reporter
|
Add coverage command for codeclimate reporter
|
YAML
|
mit
|
opti/panda_doc,opti/panda_doc
|
0bb21708a816214eb8ddb61b78d9d607b70f9d27
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
vim_version:
- 'v8.2.0000'
- 'v8.1.0000'
- 'v8.0.0000'
- 'v7.4'
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Checkout vim-themis
uses: actions/checkout@master
with:
repository: thinca/vim-themis
path: vim-themis
- name: Setup Vim
uses: thinca/action-setup-vim@v1
with:
vim_version: ${{ matrix.vim_version }}
- name: echo Vim version
run: vim --version
- name: Test
env:
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
run: ./vim-themis/bin/themis --reporter spec
|
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
vim_version:
- 'v8.2.0000'
- 'v8.1.0000'
- 'v8.0.0000'
- 'v7.4'
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Checkout vim-themis
uses: actions/checkout@master
with:
repository: thinca/vim-themis
path: vim-themis
- name: Setup Vim
uses: thinca/action-setup-vim@v1
with:
vim_version: ${{ matrix.vim_version }}
- name: echo Vim version
run: vim --version
- name: Test
env:
THEMIS_VIM: ${{ steps.vim.outputs.executable }}
run: ./vim-themis/bin/themis --reporter spec
|
Set the CI execution branch to master.
|
Set the CI execution branch to master.
|
YAML
|
mit
|
ryanoasis/vim-devicons,ryanoasis/vim-webdevicons
|
97ecbf005f11446e732d2eb8aced9346dd287c28
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
---
"on":
# Trigger the workflow on pushes to these branches
push:
branches:
- master
- 34.x
jobs:
one:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Print working directory
run: pwd
- name: List files in working directory
run: ls -al
- name: Make target directory for sources
run: mkdir -p /opt/meza
- name: Copy code
run: sudo cp -r ${{ github.workspace }} /opt/
# - name: List files in /opt/meza
# run: ls -al /opt/meza
- name: Install prerequisites
run: sudo apt install -y git ansible
# - name: Clone Meza
# run: sudo git clone https://github.com/freephile/meza /opt/meza
- name: Run "getmeza with sudo -H to avoid cache warnings"
run: sudo -H bash /opt/meza/src/scripts/getmeza.sh
- name: Setup the monolith environment
run: sudo meza setup env monolith --fqdn="127.0.0.1" --db_pass=1234 --private_net_zone=public
- name: Print hosts file
run: cat /opt/conf-meza/secret/monolith/hosts
# Does the --no-firewall option exist?
- name: Deploy Meza
run: meza deploy monolith --no-firewall
|
---
"on":
# Trigger the workflow on pushes to these branches
push:
branches:
- master
- 34.x
jobs:
one:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Print working directory
run: pwd
- name: List files in working directory
run: ls -al
- name: Make target directory for sources
run: mkdir -p /opt/meza
- name: Copy code
run: sudo cp -r ${{ github.workspace }} /opt/
# - name: List files in /opt/meza
# run: ls -al /opt/meza
- name: Install prerequisites
run: sudo apt install -y git ansible
# - name: Clone Meza
# run: sudo git clone https://github.com/freephile/meza /opt/meza
- name: Run "getmeza with sudo -H to avoid cache warnings"
run: sudo -H bash /opt/meza/src/scripts/getmeza.sh
- name: Setup the monolith environment
run: sudo meza setup env monolith --fqdn="127.0.0.1" --db_pass=1234 --private_net_zone=public
# The --no-firewall option does not exist
- name: Deploy Meza
run: meza deploy monolith
- name: Print hosts file
run: cat /opt/conf-meza/secret/monolith/hosts
|
Print hosts file as a 'test'
|
Print hosts file as a 'test'
|
YAML
|
unknown
|
freephile/qb,freephile/meza,freephile/qb,freephile/meza,freephile/qb,freephile/meza,freephile/meza
|
a226bb4e194b17aeb87beeb311026aaa5dae11f4
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push]
jobs:
xcode:
name: Xcode ${{ matrix.xcode }}
runs-on: macOS-10.14
strategy:
matrix:
xcode: [10.1, 10.3, 11]
steps:
- uses: actions/checkout@v1
with:
submodules: true
- run: sudo xcode-select -s '/Applications/Xcode_${{ matrix.xcode }}.app'
- run: PLATFORM=macos ./script/travis-script-macos
- run: PLATFORM=macos_static ./script/travis-script-macos
- run: PLATFORM=ios ./script/travis-script-macos
- run: PLATFORM=tvos ./script/travis-script-macos
swiftpm_darwin:
name: SwiftPM, Darwin, Xcode ${{ matrix.xcode }}
runs-on: macOS-10.14
strategy:
matrix:
xcode: [10.1, 10.3, 11]
steps:
- uses: actions/checkout@v1
- run: sudo xcode-select -s '/Applications/Xcode_${{ matrix.xcode }}.app'
- run: PLATFORM=swiftpm ./script/travis-script-macos
|
name: CI
on:
push:
branches:
- master
tags:
- '*'
pull_request:
jobs:
xcode:
name: Xcode ${{ matrix.xcode }}
runs-on: macOS-10.14
strategy:
matrix:
xcode: [10.1, 10.3, 11]
steps:
- uses: actions/checkout@v1
with:
submodules: true
- run: sudo xcode-select -s '/Applications/Xcode_${{ matrix.xcode }}.app'
- run: PLATFORM=macos ./script/travis-script-macos
- run: PLATFORM=macos_static ./script/travis-script-macos
- run: PLATFORM=ios ./script/travis-script-macos
- run: PLATFORM=tvos ./script/travis-script-macos
swiftpm_darwin:
name: SwiftPM, Darwin, Xcode ${{ matrix.xcode }}
runs-on: macOS-10.14
strategy:
matrix:
xcode: [10.1, 10.3, 11]
steps:
- uses: actions/checkout@v1
- run: sudo xcode-select -s '/Applications/Xcode_${{ matrix.xcode }}.app'
- run: PLATFORM=swiftpm ./script/travis-script-macos
|
Add pull_request event to run tests for pull requests from forked repositories
|
[CI] Add pull_request event to run tests for pull requests from forked repositories
|
YAML
|
apache-2.0
|
phatblat/Quick,Quick/Quick,Quick/Quick,Quick/Quick,phatblat/Quick,Quick/Quick,phatblat/Quick,phatblat/Quick
|
601390275aa5af6f7819cfd80a495f8d72ef4d1f
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Continuous Integration
on:
push:
branches:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
pull_request: ~
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
coverage: none
tools: composer:v2, psalm
- name: Install dependencies
run: composer install --prefer-dist --no-progress --ansi
- name: Psalm
run: psalm --output-format=github --shepherd
|
name: Continuous Integration
on:
push:
branches:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
pull_request: ~
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
coverage: none
tools: composer:v2, psalm
- name: Install dependencies
run: composer update --prefer-dist --no-progress --ansi
- name: Psalm
run: psalm --output-format=github --shepherd
|
Use composer update instead of install in github actions
|
Use composer update instead of install in github actions
There's no lock file, so an update is find and advised by composer
installation anyways.
|
YAML
|
mit
|
Taluu/Behapi
|
13a5718d1814a3b84ccb8afaadfbe1df71cf109c
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: ci
on:
push:
branches:
- master
- php5.x-master
pull_request:
schedule:
- cron: '0 17 * * *'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '7.0'
- '7.1'
- '7.2'
- '7.3'
- '7.4'
- '8.0'
- '8.1'
fail-fast: false
name: PHP ${{ matrix.php }}
steps:
- name: Set up php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: bash tests/ci.sh
env:
CI_PHP_VERSION: ${{ matrix.php }}
|
name: ci
on:
push:
branches:
- master
- php5.x-master
pull_request:
schedule:
- cron: '0 17 * * *'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '7.0'
- '7.1'
- '7.2'
- '7.3'
- '7.4'
- '8.0'
future-release: [false]
include:
- php: '8.1'
future-release: true
fail-fast: false
name: PHP ${{ matrix.php }}
continue-on-error: ${{ matrix.future-release }}
steps:
- name: Set up php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: bash tests/ci.sh
env:
CI_PHP_VERSION: ${{ matrix.php }}
|
Allow future PHP releases to fail continuous integration tests
|
Allow future PHP releases to fail continuous integration tests
|
YAML
|
unlicense
|
php-curl-class/php-curl-class,zachborboa/php-curl-class,php-curl-class/php-curl-class,php-curl-class/php-curl-class,zachborboa/php-curl-class,zachborboa/php-curl-class
|
2c35c4b4c0e9c93454ad6df59ed93149bdf699be
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Rollbar-Agent CI
on:
push:
branches: [ master ]
tags: [ v* ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [2.7]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade --force-reinstall setuptools
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: python setup.py test
|
name: Rollbar-Agent CI
on:
push:
branches: [ master ]
tags: [ v* ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [2.7, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade --force-reinstall setuptools
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: python setup.py test
|
Add CI builds for Python 3.3-3.9
|
Add CI builds for Python 3.3-3.9
|
YAML
|
mit
|
rollbar/rollbar-agent,rollbar/rollbar-agent
|
59c918f04da580a87f14dd0d85c6418612ce41fe
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node: [12, 14]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install -g npm@7
- uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- run: npm ci
- run: npm test
|
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node: [12, 14]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install -g npm@7
- uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- run: npm ci
- run: npm test
|
Update actions/setup-node in CI workflow
|
Update actions/setup-node in CI workflow
|
YAML
|
mit
|
kensho/babel-preset-kensho,kensho/babel-preset-kensho
|
3cf3385f18e876aacec6e30e2795fc1b6d04503f
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test on Go ${{ matrix.go_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go_version: ['1.11', '1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
- name: Test
run: make test
env:
TRANSLOADIT_KEY: ${{ secrets.TRANSLOADIT_KEY }}
TRANSLOADIT_SECRET: ${{ secrets.TRANSLOADIT_SECRET }}
|
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test on Go ${{ matrix.go_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
go_version: ['1.11', '1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
- name: Test
run: make test
env:
TRANSLOADIT_KEY: ${{ secrets.TRANSLOADIT_KEY }}
TRANSLOADIT_SECRET: ${{ secrets.TRANSLOADIT_SECRET }}
|
Include Go 1.19 in tests
|
Include Go 1.19 in tests
|
YAML
|
mit
|
transloadit/go-sdk,transloadit/go-sdk
|
3647cc51964152abdb300cdcb2617373da72764c
|
config/locales/models/dossier/fr.yml
|
config/locales/models/dossier/fr.yml
|
fr:
activerecord:
models:
dossier: 'Dossier'
attributes:
dossier:
montant_projet: 'Le montant du projet'
montant_aide_demande: "Le montant d'aide demandée"
date_previsionnelle: "La date de début prévisionnelle"
state:
brouillon: "Brouillon"
en_construction: "En construction"
en_instruction: "En instruction"
accepte: "Accepté"
refuse: "Refusé"
sans_suite: "Sans suite"
autorisation_donnees: Acceptation des CGU
errors:
models:
dossier:
attributes:
mail_contact:
blank: 'doit être rempli'
invalid: 'est incorrect'
montant_projet:
blank: 'doit être rempli'
montant_aide_demande:
blank: 'doit être rempli'
date_previsionnelle:
blank: 'doit être remplie'
|
fr:
activerecord:
models:
dossier: 'Dossier'
attributes:
dossier:
montant_projet: 'Le montant du projet'
montant_aide_demande: "Le montant d'aide demandée"
date_previsionnelle: "La date de début prévisionnelle"
state:
brouillon: "Brouillon"
en_construction: "En construction"
en_instruction: "En instruction"
accepte: "Accepté"
refuse: "Refusé"
sans_suite: "Sans suite"
autorisation_donnees: Acceptation des CGU
|
Remove translations for obsolete attributes
|
Remove translations for obsolete attributes
|
YAML
|
agpl-3.0
|
sgmap/tps,sgmap/tps,sgmap/tps
|
de554bc1f1e6ebcdb4e695e1e780b16733074a5a
|
config/prisons/HDI-hatfield-open.yml
|
config/prisons/HDI-hatfield-open.yml
|
---
name: Hatfield Open
nomis_id: HDI
address:
- Thorne Road
- DN7 6El
email: [email protected]
enabled: true
estate: Hatfield Open
finder_slug: hatfield
phone: 01405 746611
slot_anomalies:
2014-12-24:
- 1400-1600
2014-12-31:
- 1400-1600
slots:
thu:
- 1400-1600
sat:
- 1400-1600
sun:
- 1400-1600
- 0930-1130
unbookable:
- 2014-12-25
- 2014-12-26
- 2015-01-01
|
---
name: Hatfield Open
nomis_id: HDI
address:
- Thorne Road
- DN7 6El
email: [email protected]
enabled: true
estate: Hatfield Open
finder_slug: hatfield
phone: 01405 746611
slot_anomalies:
2014-12-24:
- 1400-1600
2014-12-31:
- 1400-1600
2015-12-22:
- 1400-1600
slots:
thu:
- 1400-1600
sat:
- 1400-1600
sun:
- 1400-1600
- 0930-1130
unbookable:
- 2014-12-25
- 2014-12-26
- 2015-01-01
- 2015-12-24
- 2015-12-26
- 2015-12-31
|
Update Hatfield Christmas visit slots
|
Update Hatfield Christmas visit slots
|
YAML
|
mit
|
ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits
|
82aa4002035a248e63e54e207246399d9b09b4ff
|
config/set/phpunit/phpunit-yield-data-provider.yaml
|
config/set/phpunit/phpunit-yield-data-provider.yaml
|
services:
Rector\CodingStyle\Rector\ClassMethod\ReturnArrayClassMethodToYieldRector:
PHPUnit\Framework\TestCase:
- '#(provide|dataProvider)*#'
|
services:
Rector\CodingStyle\Rector\ClassMethod\ReturnArrayClassMethodToYieldRector:
PHPUnit\Framework\TestCase:
- 'provide*'
- 'dataProvider*'
|
Update rule with proper syntax of ReturnArrayClassMethodToYieldRector
|
Update rule with proper syntax of ReturnArrayClassMethodToYieldRector
|
YAML
|
mit
|
RectorPHP/Rector
|
546839b98c1204e04317f5dc63ca903f78531c21
|
.travis-phpspec-hhvm.yml
|
.travis-phpspec-hhvm.yml
|
suites:
calends:
namespace: Danhunsaker\Calends
psr4_prefix: Danhunsaker\Calends
src_path: %paths.config%/src
spec_path: %paths.config%
spec_prefix: spec
extensions:
- Coduo\PhpSpec\DataProvider\DataProviderExtension
|
suites:
calends:
namespace: Danhunsaker\Calends
psr4_prefix: Danhunsaker\Calends
src_path: %paths.config%/src
spec_path: %paths.config%
spec_prefix: spec
|
Remove missing/unused extension from PHPSpec config for HHVM
|
Remove missing/unused extension from PHPSpec config for HHVM
|
YAML
|
mit
|
danhunsaker/bcmath
|
1216a2f036be07f04b19725be670bbfd7a2fa649
|
packages/in/instant-zipper.yaml
|
packages/in/instant-zipper.yaml
|
homepage: ''
changelog-type: ''
hash: cb95a5fe7b234bcaf27c84904eb1f5ef1b0428cfdcdde7272ab98f8d1ae36931
test-bench-deps: {}
maintainer: [email protected], [email protected]
synopsis: Heterogenous Zipper in Instant Generics
changelog: ''
basic-deps:
instant-generics: -any
base: ! '>=4.0 && <5.0'
mtl: -any
all-versions:
- '0.0.0'
author: Bram Schuur, Ruud Koot
latest: '0.0.0'
description-type: haddock
description: ! 'This package contains a heterogenous Zipper and 2
examples of how to use it.'
license-name: GPL
|
homepage: ''
changelog-type: ''
hash: a0e15510d3e3eefaa18d20fbfce7a1840519e160e2a8a8b36c498a3664b9c037
test-bench-deps: {}
maintainer: [email protected], [email protected]
synopsis: Heterogenous Zipper in Instant Generics
changelog: ''
basic-deps:
instant-generics: -any
base: <4.3
mtl: -any
all-versions:
- '0.0.0'
author: Bram Schuur, Ruud Koot
latest: '0.0.0'
description-type: haddock
description: ! 'This package contains a heterogenous Zipper and 2
examples of how to use it.'
license-name: GPL
|
Update from Hackage at 2015-08-04T10:38:47+0000
|
Update from Hackage at 2015-08-04T10:38:47+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
ffefd395881b52fd636768212d9c7918ded5cf73
|
_config.yml
|
_config.yml
|
title: "alexwlchan"
emails:
personal: "[email protected]"
wellcome: "[email protected]"
author: "Alex Chan"
description: "Alex Chan's personal blog"
url: "https://alexwlchan.net"
source: "src"
destination: "_site"
social:
github: "alexwlchan"
twitter: "alexwlchan"
linode_referral: "ba2e6ce21e0c63952a7c74967ea0b96617bd44a3"
date_format: "%-d %B %Y"
permalink: "/:year/:month/:title/"
keep_files: [
# Managed by rsync outside the main Jekyll process
"files", "images", "slides",
# Created by a Jekyll plugin
"word-count.csv",
]
markdown: "kramdown"
kramdown:
auto_ids: true
smart_quotes: "lsquo,rsquo,ldquo,rdquo"
# Disabled so it doesn't interfere with MathJax.
math_engine: null
plugins:
- "jekyll-sitemap"
highlighter: "rouge"
liquid:
error_mode: "strict"
strict_filters: true
sass:
sass_dir: "_scss"
style: "compressed"
|
title: "alexwlchan"
emails:
personal: "[email protected]"
wellcome: "[email protected]"
author: "Alex Chan"
description: "Alex Chan's personal blog"
url: "https://alexwlchan.net"
source: "src"
destination: "_site"
social:
github: "alexwlchan"
twitter: "alexwlchan"
linode_referral: "ba2e6ce21e0c63952a7c74967ea0b96617bd44a3"
date_format: "%-d %B %Y"
permalink: "/:year/:month/:title/"
keep_files: [
# Managed by rsync outside the main Jekyll process
"files", "images", "slides",
]
markdown: "kramdown"
kramdown:
auto_ids: true
smart_quotes: "lsquo,rsquo,ldquo,rdquo"
# Disabled so it doesn't interfere with MathJax.
math_engine: null
plugins:
- "jekyll-sitemap"
highlighter: "rouge"
liquid:
error_mode: "strict"
strict_filters: true
sass:
sass_dir: "_scss"
style: "compressed"
|
Remove a reference to word-count.csv
|
Remove a reference to word-count.csv
|
YAML
|
mit
|
alexwlchan/alexwlchan.net,alexwlchan/alexwlchan.net,alexwlchan/alexwlchan.net,alexwlchan/alexwlchan.net,alexwlchan/alexwlchan.net
|
24c63112d77667f37f1e17b1d038c27447166c13
|
_config.yml
|
_config.yml
|
# Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: pretty
# Setup
title: 'First Joint <a href="http://www.gap-system.org/">GAP</a>-<a href="http://www.sagemath.org/">SageMath</a> Days'
#tagline: 'A GAP school'
description: 'Jan 18-22, 2016'
location: '<a href="http://www.st-andrews.ac.uk/">University of St Andrews</a>'
url: http://gapdays.de
baseurl: /gap-sage-days2016
exclude: [ "program.aux", "program.log", "program.out", "program.tex", "misc" ]
include: [ "program.pdf" ]
|
# Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
permalink: pretty
# Setup
title: 'First Joint <a href="http://www.gap-system.org/">GAP</a>-​<a href="http://www.sagemath.org/">SageMath</a> Days'
#tagline: 'A GAP school'
description: 'Jan 18-22, 2016'
location: '<a href="http://www.st-andrews.ac.uk/">University of St Andrews</a>'
url: http://gapdays.de
baseurl: /gap-sage-days2016
exclude: [ "program.aux", "program.log", "program.out", "program.tex", "misc" ]
include: [ "program.pdf" ]
|
Add a soft linebreak after dash in title
|
Add a soft linebreak after dash in title
|
YAML
|
mit
|
gapdays/gap-sage-days2016
|
87185b432554efbaafb2ae74f60f9fe093fb955a
|
exercises/palindrome-products/metadata.yml
|
exercises/palindrome-products/metadata.yml
|
---
blurb: "Write a program that can detect palindrome products in a given range."
source: "Problem 4 at Project Euler"
source_url: "http://projecteuler.net/problem=4"
|
---
blurb: "Detect palindrome products in a given range."
source: "Problem 4 at Project Euler"
source_url: "http://projecteuler.net/problem=4"
|
Remove "write a program" from palindrome-products exercise
|
Remove "write a program" from palindrome-products exercise
|
YAML
|
mit
|
rpottsoh/x-common,exercism/x-common,Vankog/problem-specifications,jmluy/x-common,petertseng/x-common,rpottsoh/x-common,jmluy/x-common,kgengler/x-common,jmluy/x-common,petertseng/x-common,exercism/x-common,Vankog/problem-specifications,ErikSchierboom/x-common,ErikSchierboom/x-common,kgengler/x-common
|
9fdbdde53ee90e92e2e2ab141b913969f11638c8
|
recipes/pycollo/meta.yaml
|
recipes/pycollo/meta.yaml
|
{% set name = "pycollo" %}
{% set version = "0.1.5" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pycollo-{{ version }}.tar.gz
sha256: db2159a37bb6b28116e166e95739e6d74c3c123b4406be2dbfe9177ba3ad3ac0
build:
number: 0
noarch: python
script:
- {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=3.7
run:
- casadi >=3.5.5
- matplotlib-base >=3.3.2
- numba >=0.51.2
- numpy >=1.19.1
- pyproprop >=0.4.10
- python >=3.7
- scipy >=1.5.2
- sympy >=1.6.2
test:
imports:
- pycollo
commands:
- pip check
requires:
- pip
about:
home: https://pypi.org/project/pycollo/
summary: General-purpose optimal control using direct collocation methods
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- brocksam
|
{% set name = "pycollo" %}
{% set version = "0.1.5" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pycollo-{{ version }}.tar.gz
sha256: db2159a37bb6b28116e166e95739e6d74c3c123b4406be2dbfe9177ba3ad3ac0
build:
number: 0
noarch: python
script_env:
- SETUPTOOLS_SCM_PRETEND_VERSION={{version}}
script:
- {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=3.7
- setuptools-scm >=40.8.0
run:
- casadi >=3.5.5
- matplotlib-base >=3.3.2
- numba >=0.51.2
- numpy >=1.19.1
- pyproprop >=0.4.10
- python >=3.7
- scipy >=1.5.2
- sympy >=1.6.2
test:
imports:
- pycollo
commands:
- pip check
requires:
- pip
about:
home: https://pypi.org/project/pycollo/
summary: General-purpose optimal control using direct collocation methods
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- brocksam
|
Add setuptools_scm as host requirement
|
Add setuptools_scm as host requirement
|
YAML
|
bsd-3-clause
|
ocefpaf/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,ReimarBauer/staged-recipes,ReimarBauer/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,goanpeca/staged-recipes,jochym/staged-recipes,mariusvniekerk/staged-recipes,mariusvniekerk/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,jochym/staged-recipes,stuertz/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes
|
842910929d590d2c706ac79def3a653c269f6f4b
|
metadata/de.hauke_stieler.geonotes.yml
|
metadata/de.hauke_stieler.geonotes.yml
|
Categories:
- Science & Education
- Navigation
License: GPL-3.0-or-later
AuthorName: Hauke Stieler
SourceCode: https://github.com/hauke96/geonotes
IssueTracker: https://github.com/hauke96/geonotes/issues
Changelog: https://github.com/hauke96/GeoNotes/releases
AutoName: GeoNotes
RepoType: git
Repo: https://github.com/hauke96/geonotes
Builds:
- versionName: 1.0.2
versionCode: 2
commit: v1.0.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.2
CurrentVersionCode: 2
|
Categories:
- Science & Education
- Navigation
License: GPL-3.0-or-later
AuthorName: Hauke Stieler
SourceCode: https://github.com/hauke96/geonotes
IssueTracker: https://github.com/hauke96/geonotes/issues
Changelog: https://github.com/hauke96/GeoNotes/releases
AutoName: GeoNotes
RepoType: git
Repo: https://github.com/hauke96/geonotes
Builds:
- versionName: 1.0.2
versionCode: 2
commit: v1.0.2
subdir: app
gradle:
- yes
- versionName: 1.0.4
versionCode: 1000004
commit: v1.0.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.4
CurrentVersionCode: 1000004
|
Update GeoNotes to 1.0.4 (1000004)
|
Update GeoNotes to 1.0.4 (1000004)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
3ab365fdd8e86fa68aa9fb4c6a6ac9ba6fc7a7b2
|
azure-pipelines.yml
|
azure-pipelines.yml
|
# Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python27:
python.version: '2.7'
Python35:
python.version: '3.5'
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
python -m pip install --upgrade pip
pip install -r requirements.txt
displayName: 'Install dependencies'
- script: |
pip install pytest pytest-azurepipelines
pytest
displayName: 'pytest'
|
# Python package
# Create and test a Python package on multiple Python versions.
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python35:
python.version: '3.5'
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
python -m pip install --upgrade pip
pip install -r requirements.txt
displayName: 'Install dependencies'
- script: |
pip install pytest pytest-azurepipelines
pytest
displayName: 'pytest'
|
Remove Python 2.7 from Azure Pipelines
|
Remove Python 2.7 from Azure Pipelines
|
YAML
|
mit
|
ekwoodrich/python-dvrip
|
e349c9221b0a265a6338191ff9f3cea7c786780e
|
azure-pipelines.yml
|
azure-pipelines.yml
|
trigger:
- master
- rel/*
pr:
- master
- rel/*
pool:
vmImage: vs2017-win2016
steps:
- task: DotNetCoreInstaller@0
displayName: Install Dot Net Core v2.2.1
inputs:
version: '2.2.103'
- task: BatchScript@1
inputs:
filename: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Enterprise\\Common7\\Tools\\VsDevCmd.bat"
arguments: -no_logo
modifyEnvironment: true
displayName: Setup Environment Variables
- script: build.cmd
displayName: Build
env:
SIGNCLIENT_SECRET: $(SignClientSecret)
SIGNCLIENT_USER: $(SignClientUser)
CODECOV_TOKEN: $(CODECOV_TOKEN)
ArtifactDirectory: $(System.DefaultWorkingDirectory)\Artifacts
- task: CopyFiles@2
inputs:
Contents: 'artifacts/packages/*.nupkg'
TargetFolder: '$(build.artifactstagingdirectory)\packages'
flattenFolders: true
- task: PublishBuildArtifacts@1
displayName: Publish Package Artifacts
inputs:
pathToPublish: '$(build.artifactstagingdirectory)\packages'
artifactType: container
artifactName: Packages
- task: CopyFiles@2
inputs:
Contents: 'artifacts/binaries/**/*'
TargetFolder: '$(build.artifactstagingdirectory)\binaries'
- task: PublishBuildArtifacts@1
displayName: Publish Binaries
inputs:
pathToPublish: '$(build.artifactstagingdirectory)\binaries'
artifactType: container
artifactName: Binaries
|
trigger:
- master
- rel/*
- preview/*
pr:
- master
- rel/*
- preview/*
resources:
repositories:
- repository: templates
type: github
name: ReactiveUI/ReactiveUI.Cake.Recipe
endpoint: reactiveui
jobs:
- template: Azure/azure-pipelines.yml@templates # Template reference
|
Update the azure scripts to use reactiveui.cake.recipe
|
housekeeping: Update the azure scripts to use reactiveui.cake.recipe
|
YAML
|
mit
|
paulcbetts/punchclock,paulcbetts/punchclock
|
cc201ec6dd62167e46807c4360a7a6cf8554f29d
|
recipes/edffile/meta.yaml
|
recipes/edffile/meta.yaml
|
{% set version = "5.0.0" %}
package:
name: edffile
version: {{ version }}
source:
path: src
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
- numpy
run:
- python
- numpy
test:
imports:
- EdfFile
about:
home: https://github.com/vasole/pymca/blob/master/PyMca5/PyMcaIO/EdfFile.py
license: MIT
summary: 'Reader for EDF files part of the PyMCA x-ray fluorescence toolkit'
extra:
recipe-maintainers:
- dgursoy
- decarlof
- ericdill
- licode
- ravescovi
- tacaswell
|
{% set version = "5.0.0" %}
package:
name: edffile
version: {{ version }}
source:
path: src
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
- numpy
run:
- python
- numpy
test:
imports:
- EdfFile
about:
# Long term goal is to have the src/ folder in this recipe as a stand-alone
# project on github.
home: https://github.com/vasole/pymca/blob/master/PyMca5/PyMcaIO/EdfFile.py
license: MIT
summary: 'Reader for EDF files part of the PyMCA x-ray fluorescence toolkit'
extra:
recipe-maintainers:
- dgursoy
- decarlof
- ericdill
- licode
- ravescovi
- tacaswell
|
Add note to edffile recipe about turning src/ into a github project
|
Add note to edffile recipe about turning src/ into a github project
|
YAML
|
bsd-3-clause
|
vamega/staged-recipes,dfroger/staged-recipes,blowekamp/staged-recipes,SylvainCorlay/staged-recipes,kwilcox/staged-recipes,isuruf/staged-recipes,mcs07/staged-recipes,guillochon/staged-recipes,grlee77/staged-recipes,rvalieris/staged-recipes,Cashalow/staged-recipes,grlee77/staged-recipes,pstjohn/staged-recipes,barkls/staged-recipes,basnijholt/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,data-exp-lab/staged-recipes,koverholt/staged-recipes,isuruf/staged-recipes,NOAA-ORR-ERD/staged-recipes,larray-project/staged-recipes,rolando-contrib/staged-recipes,rmcgibbo/staged-recipes,petrushy/staged-recipes,ocefpaf/staged-recipes,sodre/staged-recipes,dharhas/staged-recipes,birdsarah/staged-recipes,rmcgibbo/staged-recipes,johannesring/staged-recipes,valgur/staged-recipes,igortg/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,chrisburr/staged-recipes,johanneskoester/staged-recipes,larray-project/staged-recipes,mcernak/staged-recipes,hbredin/staged-recipes,atedstone/staged-recipes,mariusvniekerk/staged-recipes,sannykr/staged-recipes,SylvainCorlay/staged-recipes,mcernak/staged-recipes,Juanlu001/staged-recipes,OpenPIV/staged-recipes,pmlandwehr/staged-recipes,hajapy/staged-recipes,Juanlu001/staged-recipes,jcb91/staged-recipes,koverholt/staged-recipes,richardotis/staged-recipes,asmeurer/staged-recipes,scopatz/staged-recipes,synapticarbors/staged-recipes,dschreij/staged-recipes,pstjohn/staged-recipes,synapticarbors/staged-recipes,jochym/staged-recipes,mariusvniekerk/staged-recipes,johannesring/staged-recipes,rvalieris/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,stuertz/staged-recipes,jerowe/staged-recipes,chohner/staged-recipes,jcb91/staged-recipes,shadowwalkersb/staged-recipes,dfroger/staged-recipes,jjhelmus/staged-recipes,benvandyke/staged-recipes,bmabey/staged-recipes,Savvysherpa/staged-recipes,jjhelmus/staged-recipes,ceholden/staged-recipes,petrushy/staged-recipes,Savvysherpa/staged-recipes,chrisburr/staged-recipes,mcs07/staged-recipes,hbredin/staged-recipes,JohnGreeley/staged-recipes,stuertz/staged-recipes,valgur/staged-recipes,rolando-contrib/staged-recipes,conda-forge/staged-recipes,igortg/staged-recipes,hadim/staged-recipes,ceholden/staged-recipes,cpaulik/staged-recipes,ocefpaf/staged-recipes,jerowe/staged-recipes,jakirkham/staged-recipes,khallock/staged-recipes,glemaitre/staged-recipes,tylere/staged-recipes,cpaulik/staged-recipes,vamega/staged-recipes,Cashalow/staged-recipes,tylere/staged-recipes,asmeurer/staged-recipes,jakirkham/staged-recipes,gqmelo/staged-recipes,glemaitre/staged-recipes,gqmelo/staged-recipes,dharhas/staged-recipes,pmlandwehr/staged-recipes,blowekamp/staged-recipes,JohnGreeley/staged-recipes,richardotis/staged-recipes,bmabey/staged-recipes,nicoddemus/staged-recipes,shadowwalkersb/staged-recipes,caspervdw/staged-recipes,sannykr/staged-recipes,atedstone/staged-recipes,conda-forge/staged-recipes,sodre/staged-recipes,hajapy/staged-recipes,guillochon/staged-recipes,birdsarah/staged-recipes,sodre/staged-recipes,chohner/staged-recipes,dschreij/staged-recipes,planetarypy/staged-recipes,planetarypy/staged-recipes,NOAA-ORR-ERD/staged-recipes,barkls/staged-recipes,ReimarBauer/staged-recipes,patricksnape/staged-recipes,basnijholt/staged-recipes,benvandyke/staged-recipes,OpenPIV/staged-recipes,caspervdw/staged-recipes,scopatz/staged-recipes,data-exp-lab/staged-recipes,khallock/staged-recipes,goanpeca/staged-recipes,nicoddemus/staged-recipes
|
ffc85b1c873f6877b14b2b12394f3c9c44d66126
|
recipes/ncurses/meta.yaml
|
recipes/ncurses/meta.yaml
|
{% set version = "5.9" %}
package:
name: ncurses
version: {{ version }}
source:
fn: ncurses-{{ version }}.tar.gz
url: http://ftp.gnu.org/pub/gnu/ncurses/ncurses-{{ version }}.tar.gz
md5: 8cb9c412e5f2d96bc6f459aa8c6282a1
patches:
# http://lists.gnu.org/archive/html/bug-ncurses/2011-04/txtkWQqiQvcZe.txt
- fix.patch
build:
skip: true # [win]
number: 0
detect_binary_files_with_prefix: true
test:
files:
- run_test.sh # [osx]
- run_test.py # [osx]
commands:
- bash run_test.sh # [osx]
- python run_test.py # [osx]
about:
home: http://www.gnu.org/software/ncurses/
license: Free software (MIT-like License)
summary: Library for text-based user interfaces
extra:
recipe-maintainers:
- jakirkham
|
{% set version = "5.9" %}
package:
name: ncurses
version: {{ version }}
source:
fn: ncurses-{{ version }}.tar.gz
url: http://ftp.gnu.org/pub/gnu/ncurses/ncurses-{{ version }}.tar.gz
md5: 8cb9c412e5f2d96bc6f459aa8c6282a1
patches:
# http://lists.gnu.org/archive/html/bug-ncurses/2011-04/txtkWQqiQvcZe.txt
- fix.patch
build:
skip: true # [win]
number: 0
detect_binary_files_with_prefix: true
test:
files:
- run_test.sh # [osx]
- run_test.py # [osx]
commands:
- exit $(test -f ${PREFIX}/lib/libncurses.a)
- exit $(test -f ${PREFIX}/lib/libtinfo.a)
- exit $(test -f ${PREFIX}/lib/libform.a)
- exit $(test -f ${PREFIX}/lib/libmenu.a)
- exit $(test -f ${PREFIX}/lib/libpanel.a)
- bash run_test.sh # [osx]
- python run_test.py # [osx]
about:
home: http://www.gnu.org/software/ncurses/
license: Free software (MIT-like License)
summary: Library for text-based user interfaces
extra:
recipe-maintainers:
- jakirkham
|
Add more tests. [skip appveyor]
|
ncurses: Add more tests. [skip appveyor]
|
YAML
|
bsd-3-clause
|
hbredin/staged-recipes,asmeurer/staged-recipes,dschreij/staged-recipes,koverholt/staged-recipes,shadowwalkersb/staged-recipes,igortg/staged-recipes,petrushy/staged-recipes,rmcgibbo/staged-recipes,grlee77/staged-recipes,basnijholt/staged-recipes,barkls/staged-recipes,asmeurer/staged-recipes,vamega/staged-recipes,kwilcox/staged-recipes,data-exp-lab/staged-recipes,mariusvniekerk/staged-recipes,rmcgibbo/staged-recipes,goanpeca/staged-recipes,nicoddemus/staged-recipes,hadim/staged-recipes,jjhelmus/staged-recipes,birdsarah/staged-recipes,patricksnape/staged-recipes,ceholden/staged-recipes,atedstone/staged-recipes,jjhelmus/staged-recipes,jochym/staged-recipes,larray-project/staged-recipes,data-exp-lab/staged-recipes,grlee77/staged-recipes,dfroger/staged-recipes,synapticarbors/staged-recipes,jerowe/staged-recipes,vamega/staged-recipes,stuertz/staged-recipes,hbredin/staged-recipes,jakirkham/staged-recipes,dfroger/staged-recipes,hajapy/staged-recipes,glemaitre/staged-recipes,blowekamp/staged-recipes,richardotis/staged-recipes,dharhas/staged-recipes,scopatz/staged-recipes,pstjohn/staged-recipes,arokem/staged-recipes,sannykr/staged-recipes,planetarypy/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,atedstone/staged-recipes,mariusvniekerk/staged-recipes,ReimarBauer/staged-recipes,shadowwalkersb/staged-recipes,Savvysherpa/staged-recipes,bmabey/staged-recipes,Cashalow/staged-recipes,ericdill/staged-recipes,bmabey/staged-recipes,jakevdp/staged-recipes,dschreij/staged-recipes,isuruf/staged-recipes,jakevdp/staged-recipes,pmlandwehr/staged-recipes,planetarypy/staged-recipes,mcernak/staged-recipes,OpenPIV/staged-recipes,basnijholt/staged-recipes,johanneskoester/staged-recipes,igortg/staged-recipes,caspervdw/staged-recipes,mcernak/staged-recipes,pmlandwehr/staged-recipes,jcb91/staged-recipes,sodre/staged-recipes,arokem/staged-recipes,rvalieris/staged-recipes,sannykr/staged-recipes,cpaulik/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,Juanlu001/staged-recipes,sodre/staged-recipes,tylere/staged-recipes,sodre/staged-recipes,NOAA-ORR-ERD/staged-recipes,caspervdw/staged-recipes,ocefpaf/staged-recipes,chohner/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,NOAA-ORR-ERD/staged-recipes,khallock/staged-recipes,glemaitre/staged-recipes,valgur/staged-recipes,mcs07/staged-recipes,rolando-contrib/staged-recipes,scopatz/staged-recipes,rvalieris/staged-recipes,isuruf/staged-recipes,SylvainCorlay/staged-recipes,ericdill/staged-recipes,Juanlu001/staged-recipes,birdsarah/staged-recipes,gqmelo/staged-recipes,benvandyke/staged-recipes,ReimarBauer/staged-recipes,guillochon/staged-recipes,mcs07/staged-recipes,kwilcox/staged-recipes,synapticarbors/staged-recipes,JohnGreeley/staged-recipes,jcb91/staged-recipes,Cashalow/staged-recipes,petrushy/staged-recipes,pstjohn/staged-recipes,ceholden/staged-recipes,OpenPIV/staged-recipes,benvandyke/staged-recipes,tylere/staged-recipes,johannesring/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,nicoddemus/staged-recipes,blowekamp/staged-recipes,larray-project/staged-recipes,chohner/staged-recipes,jochym/staged-recipes,dharhas/staged-recipes,hajapy/staged-recipes,gqmelo/staged-recipes,cpaulik/staged-recipes,guillochon/staged-recipes,barkls/staged-recipes,JohnGreeley/staged-recipes,rolando-contrib/staged-recipes,jerowe/staged-recipes,chrisburr/staged-recipes,Savvysherpa/staged-recipes,richardotis/staged-recipes,johannesring/staged-recipes,koverholt/staged-recipes,khallock/staged-recipes,valgur/staged-recipes,chrisburr/staged-recipes
|
5f0ae797df99cc615c921039cd52465eddf051d4
|
recipes/vcf2maf/meta.yaml
|
recipes/vcf2maf/meta.yaml
|
build:
number: 0
skip: True # [osx] since variant-effect-predictor is not there yet
package:
name: vcf2maf
version: 1.6.12
source:
fn: v1.6.12.tar.gz
url: https://github.com/mskcc/vcf2maf/archive/v1.6.12.tar.gz
md5: ebdba06c46650b3f185d237f6819a209
requirements:
build:
- perl-threaded
- variant-effect-predictor
- samtools
run:
- perl-threaded
- variant-effect-predictor
- samtools
test:
commands:
- vcf2maf.pl --help
about:
home: https://github.com/mskcc/vcf2maf
license: Apache
summary: Convert a VCF into a MAF where each variant is annotated to only one of all possible gene isoforms
extra:
notes: |
This package installs only vcf2maf and does not integrate with the variant-effect-predictor (VEP). To
do so, please follow the instructions at https://github.com/mskcc/vcf2maf/blob/master/README.md.
|
build:
number: 0
skip: True # [osx] since variant-effect-predictor is not there yet
package:
name: vcf2maf
version: 1.6.12
source:
fn: v1.6.12.tar.gz
url: https://github.com/mskcc/vcf2maf/archive/v1.6.12.tar.gz
md5: ebdba06c46650b3f185d237f6819a209
requirements:
build:
- perl-threaded
- variant-effect-predictor
- samtools
- htslib
run:
- perl-threaded
- variant-effect-predictor
- samtools
- htslib
test:
commands:
- vcf2maf.pl --help
about:
home: https://github.com/mskcc/vcf2maf
license: Apache
summary: Convert a VCF into a MAF where each variant is annotated to only one of all possible gene isoforms
extra:
notes: |
This package installs only vcf2maf and does not integrate with the variant-effect-predictor (VEP). To
do so, please follow the instructions at https://github.com/mskcc/vcf2maf/blob/master/README.md.
|
Add tabix (htslib) as requirement for vcf2maf
|
Add tabix (htslib) as requirement for vcf2maf
|
YAML
|
mit
|
shenwei356/bioconda-recipes,blankenberg/bioconda-recipes,saketkc/bioconda-recipes,bow/bioconda-recipes,phac-nml/bioconda-recipes,zachcp/bioconda-recipes,keuv-grvl/bioconda-recipes,bow/bioconda-recipes,ivirshup/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,ivirshup/bioconda-recipes,xguse/bioconda-recipes,mcornwell1957/bioconda-recipes,lpantano/recipes,CGATOxford/bioconda-recipes,JenCabral/bioconda-recipes,gvlproject/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,jasper1918/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,keuv-grvl/bioconda-recipes,ivirshup/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,colinbrislawn/bioconda-recipes,dmaticzka/bioconda-recipes,roryk/recipes,daler/bioconda-recipes,mdehollander/bioconda-recipes,cokelaer/bioconda-recipes,mdehollander/bioconda-recipes,oena/bioconda-recipes,dmaticzka/bioconda-recipes,npavlovikj/bioconda-recipes,bebatut/bioconda-recipes,phac-nml/bioconda-recipes,mdehollander/bioconda-recipes,jfallmann/bioconda-recipes,guowei-he/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,pinguinkiste/bioconda-recipes,acaprez/recipes,keuv-grvl/bioconda-recipes,pinguinkiste/bioconda-recipes,xguse/bioconda-recipes,guowei-he/bioconda-recipes,bebatut/bioconda-recipes,oena/bioconda-recipes,JenCabral/bioconda-recipes,gvlproject/bioconda-recipes,rvalieris/bioconda-recipes,dmaticzka/bioconda-recipes,abims-sbr/bioconda-recipes,jfallmann/bioconda-recipes,hardingnj/bioconda-recipes,gregvonkuster/bioconda-recipes,lpantano/recipes,rvalieris/bioconda-recipes,CGATOxford/bioconda-recipes,bioconda/recipes,jfallmann/bioconda-recipes,martin-mann/bioconda-recipes,oena/bioconda-recipes,matthdsm/bioconda-recipes,gregvonkuster/bioconda-recipes,jasper1918/bioconda-recipes,JenCabral/bioconda-recipes,saketkc/bioconda-recipes,daler/bioconda-recipes,omicsnut/bioconda-recipes,rob-p/bioconda-recipes,daler/bioconda-recipes,xguse/bioconda-recipes,cokelaer/bioconda-recipes,matthdsm/bioconda-recipes,gvlproject/bioconda-recipes,gregvonkuster/bioconda-recipes,CGATOxford/bioconda-recipes,ostrokach/bioconda-recipes,peterjc/bioconda-recipes,rvalieris/bioconda-recipes,lpantano/recipes,pinguinkiste/bioconda-recipes,colinbrislawn/bioconda-recipes,cokelaer/bioconda-recipes,chapmanb/bioconda-recipes,rvalieris/bioconda-recipes,omicsnut/bioconda-recipes,guowei-he/bioconda-recipes,mcornwell1957/bioconda-recipes,peterjc/bioconda-recipes,Luobiny/bioconda-recipes,blankenberg/bioconda-recipes,Luobiny/bioconda-recipes,bioconda/recipes,keuv-grvl/bioconda-recipes,bioconda/bioconda-recipes,abims-sbr/bioconda-recipes,roryk/recipes,joachimwolff/bioconda-recipes,bebatut/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,martin-mann/bioconda-recipes,mdehollander/bioconda-recipes,acaprez/recipes,chapmanb/bioconda-recipes,dmaticzka/bioconda-recipes,Luobiny/bioconda-recipes,pinguinkiste/bioconda-recipes,acaprez/recipes,matthdsm/bioconda-recipes,CGATOxford/bioconda-recipes,ostrokach/bioconda-recipes,oena/bioconda-recipes,dmaticzka/bioconda-recipes,HassanAmr/bioconda-recipes,dkoppstein/recipes,pinguinkiste/bioconda-recipes,dkoppstein/recipes,saketkc/bioconda-recipes,gvlproject/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,joachimwolff/bioconda-recipes,HassanAmr/bioconda-recipes,blankenberg/bioconda-recipes,abims-sbr/bioconda-recipes,acaprez/recipes,bow/bioconda-recipes,dkoppstein/recipes,jasper1918/bioconda-recipes,jasper1918/bioconda-recipes,colinbrislawn/bioconda-recipes,xguse/bioconda-recipes,saketkc/bioconda-recipes,matthdsm/bioconda-recipes,bioconda/bioconda-recipes,martin-mann/bioconda-recipes,daler/bioconda-recipes,Luobiny/bioconda-recipes,rob-p/bioconda-recipes,keuv-grvl/bioconda-recipes,saketkc/bioconda-recipes,oena/bioconda-recipes,colinbrislawn/bioconda-recipes,joachimwolff/bioconda-recipes,hardingnj/bioconda-recipes,colinbrislawn/bioconda-recipes,pinguinkiste/bioconda-recipes,CGATOxford/bioconda-recipes,rvalieris/bioconda-recipes,rob-p/bioconda-recipes,mcornwell1957/bioconda-recipes,ostrokach/bioconda-recipes,npavlovikj/bioconda-recipes,npavlovikj/bioconda-recipes,hardingnj/bioconda-recipes,blankenberg/bioconda-recipes,guowei-he/bioconda-recipes,mdehollander/bioconda-recipes,bow/bioconda-recipes,zachcp/bioconda-recipes,daler/bioconda-recipes,zachcp/bioconda-recipes,bioconda/bioconda-recipes,JenCabral/bioconda-recipes,gvlproject/bioconda-recipes,zachcp/bioconda-recipes,chapmanb/bioconda-recipes,bow/bioconda-recipes,rvalieris/bioconda-recipes,ivirshup/bioconda-recipes,mdehollander/bioconda-recipes,HassanAmr/bioconda-recipes,peterjc/bioconda-recipes,mcornwell1957/bioconda-recipes,daler/bioconda-recipes,hardingnj/bioconda-recipes,matthdsm/bioconda-recipes,peterjc/bioconda-recipes,peterjc/bioconda-recipes,colinbrislawn/bioconda-recipes,joachimwolff/bioconda-recipes,roryk/recipes,shenwei356/bioconda-recipes,abims-sbr/bioconda-recipes,omicsnut/bioconda-recipes,shenwei356/bioconda-recipes,bebatut/bioconda-recipes,joachimwolff/bioconda-recipes,jasper1918/bioconda-recipes,lpantano/recipes,HassanAmr/bioconda-recipes,cokelaer/bioconda-recipes,peterjc/bioconda-recipes,saketkc/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,ostrokach/bioconda-recipes,omicsnut/bioconda-recipes,bioconda/recipes,hardingnj/bioconda-recipes,omicsnut/bioconda-recipes,joachimwolff/bioconda-recipes,npavlovikj/bioconda-recipes,jfallmann/bioconda-recipes,abims-sbr/bioconda-recipes,guowei-he/bioconda-recipes,shenwei356/bioconda-recipes,chapmanb/bioconda-recipes,HassanAmr/bioconda-recipes,martin-mann/bioconda-recipes,ostrokach/bioconda-recipes,martin-mann/bioconda-recipes,mcornwell1957/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,matthdsm/bioconda-recipes,abims-sbr/bioconda-recipes,xguse/bioconda-recipes,HassanAmr/bioconda-recipes,gvlproject/bioconda-recipes,bow/bioconda-recipes,phac-nml/bioconda-recipes,chapmanb/bioconda-recipes,rob-p/bioconda-recipes,JenCabral/bioconda-recipes,dmaticzka/bioconda-recipes,ostrokach/bioconda-recipes,phac-nml/bioconda-recipes,CGATOxford/bioconda-recipes,ivirshup/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,bioconda/bioconda-recipes,keuv-grvl/bioconda-recipes,gregvonkuster/bioconda-recipes,ivirshup/bioconda-recipes,JenCabral/bioconda-recipes,phac-nml/bioconda-recipes
|
e221efc5c57aa35ac7d14107d92dba4014366ec2
|
metadata/org.studip.unofficial_app.yml
|
metadata/org.studip.unofficial_app.yml
|
Categories:
- Science & Education
License: GPL-3.0-only
AuthorName: Tarek Sander
SourceCode: https://github.com/tareksander/Stud.IP-App
IssueTracker: https://github.com/tareksander/Stud.IP-App/issues
AutoName: Stud.IP
RepoType: git
Repo: https://github.com/tareksander/Stud.IP-App
Builds:
- versionName: 0.3.1
versionCode: 7
commit: v0.3.1
subdir: app
gradle:
- yes
- versionName: 0.4.0
versionCode: 8
commit: v0.4.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.4.0
CurrentVersionCode: 8
|
Categories:
- Science & Education
License: GPL-3.0-only
AuthorName: Tarek Sander
SourceCode: https://github.com/tareksander/Stud.IP-App
IssueTracker: https://github.com/tareksander/Stud.IP-App/issues
AutoName: Stud.IP
RepoType: git
Repo: https://github.com/tareksander/Stud.IP-App
Builds:
- versionName: 0.3.1
versionCode: 7
commit: v0.3.1
subdir: app
gradle:
- yes
- versionName: 0.4.0
versionCode: 8
commit: v0.4.0
subdir: app
gradle:
- yes
- versionName: 0.5.0
versionCode: 14
commit: 50a60662e3aee48236d85c28be67856190cfb61e
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.5.0
CurrentVersionCode: 14
|
Update Stud.IP to 0.5.0 (14)
|
Update Stud.IP to 0.5.0 (14)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
213b29def3d610396dc3279896ac92e6fd997d71
|
templates/2.4.0/release-vars.yml
|
templates/2.4.0/release-vars.yml
|
solace_load_version: soltr_9.0.1.7
bosh_stemcell: "ubuntu-xenial"
bosh_stemcell_version: "97.32"
solace_service_broker_jar: solace-service-broker-0.0.1223.jar
cf_mysql_version: "36.18.0"
|
solace_load_version: soltr_9.1.0.77
bosh_stemcell: "ubuntu-xenial"
bosh_stemcell_version: "97.32"
solace_service_broker_jar: solace-service-broker-0.0.1223.jar
cf_mysql_version: "36.18.0"
|
Update to match Solace PubSub+ Message Broker release
|
Update to match Solace PubSub+ Message Broker release
|
YAML
|
apache-2.0
|
SolaceDev/solace-messaging-cf-dev,SolaceDev/solace-messaging-cf-dev
|
f31a8dfe5f54157dcf2af0bd0a08511e76a43cb1
|
Configuration/Settings.Object.yaml
|
Configuration/Settings.Object.yaml
|
#
# Object configuration for the Flow Framework
#
Neos:
Flow:
object:
# If enabled, the Object Manager will - additionally to the class files found
# in the "Classes" directory - also register class files found in the directory
# "Tests/Functional/". Enabling this feature obviously only makes sense in a
# testing context.
registerFunctionalTestClasses: FALSE
# Explicitly include classes to object management (Reflection and Configuration building).
# Sequence of package keys with an array of regular expressions.
# The package key must match the key found in PackageStates.php regarding case.
#
# Each regular expression will be tested against the list of fully qualified
# class names in the package and classes will be included if matching.
#
# For Flow packages (type = "neos-*") this setting is not required as they're
# reflected by default. You can however exclude specific (or all) classes from Flow packages
# by specifying corresponding regular expressions that don't match classes to exclude.
#
# Note: The previous setting "excludeClasses" has been deprecated with Flow 3.0
includeClasses: []
|
#
# Object configuration for the Flow Framework
#
Neos:
Flow:
object:
# If enabled, the Object Manager will - additionally to the class files found
# in the "Classes" directory - also register class files found in the directory
# "Tests/Functional/". Enabling this feature obviously only makes sense in a
# testing context.
registerFunctionalTestClasses: FALSE
# Explicitly include classes to object management (Reflection and Configuration building).
# Sequence of package keys with an array of regular expressions.
# The package key must match the key found in PackageStates.php regarding case.
#
# Each regular expression will be tested against the list of fully qualified
# class names in the package and classes will be included if matching.
#
# For Flow packages (type = "neos-*") this setting is not required as they're
# reflected by default. You can however exclude specific (or all) classes from Flow packages
# by specifying corresponding regular expressions that don't match classes to exclude.
#
includeClasses: []
|
Remove Settings note about removed setting
|
Remove Settings note about removed setting
|
YAML
|
mit
|
neos/flow,neos/flow,neos/flow,neos/flow
|
0389dc65fac4ccfe0dc698ec2368fd2cca2a116b
|
packages/de/dependent-monoidal-map.yaml
|
packages/de/dependent-monoidal-map.yaml
|
homepage: ''
changelog-type: markdown
hash: b8dc6070c9dd98834970922d93617588adc32ea9b79b8cb4dd6919ae45bcc02a
test-bench-deps: {}
maintainer: [email protected]
synopsis: Data.Dependent.Map variant that appends conflicting entries when merging
maps instead of discarding one side of the conflict.
changelog: ! '# Revision history for dependent-monoidal-map
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
dependent-sum: -any
constraints-extras: -any
base: ! '>=4.9 && <4.11'
dependent-map: -any
constraints: -any
dependent-sum-aeson-orphans: -any
aeson: -any
all-versions:
- 0.1.0.0
author: Obsidian Systems LLC
latest: 0.1.0.0
description-type: haddock
description: ''
license-name: BSD-3-Clause
|
homepage: ''
changelog-type: markdown
hash: 62e6d7bb4937b58b6b9c2096e35cf9ff8aa24ba1e401d1dd7c97f866935d0786
test-bench-deps: {}
maintainer: [email protected]
synopsis: Dependent map that uses semigroup mappend
changelog: |
# Revision history for dependent-monoidal-map
basic-deps:
dependent-sum: ! '>=0.6.2 && <0.7'
constraints-extras: ! '>=0.3.0 && <0.4'
base: ! '>=4.9 && <4.13'
dependent-map: ! '>=0.3 && <0.4'
constraints: ! '>=0.10.1 && <0.11'
dependent-sum-aeson-orphans: ! '>=0.2.1 && <0.3'
aeson: ! '>=1.4.4 && <1.5'
all-versions:
- 0.1.0.0
- 0.1.1.0
author: Obsidian Systems LLC
latest: 0.1.1.0
description-type: haddock
description: Data.Dependent.Map variant that appends conflicting entries when merging
maps instead of discarding one side of the conflict.
license-name: BSD-3-Clause
|
Update from Hackage at 2019-09-04T15:17:59Z
|
Update from Hackage at 2019-09-04T15:17:59Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
84cd10aa51440ff7d6d8231304df1cf2eb85558e
|
tests/unblock-prompt/.buildkite/pipeline.yml
|
tests/unblock-prompt/.buildkite/pipeline.yml
|
steps:
- block: "Continue with input"
prompt: "Fill out the form below!"
fields:
- text: "What version is this? :parrot:"
key: "version"
default: "This is the default value"
hint: "This is a hint :ruby:"
- select: "Choose on of these"
key: "deploy-target"
options:
- Staging
- QA1
- QA2
- Production
- select: "Would you like a :taco: after this deploy?"
hint: "Less than 6 options will show a radio, more than 6 will show a select box"
key: "taco"
default: "Yes"
options:
- "Yes"
- "No"
- ":llama:"
- select: "What team should be notified after the deployment?"
key: "notify-team"
hint: "Another great hint here"
options:
- All
- None
- Billing
- Ops
- Sales
- Directors
- Engineering
- Support
- QA
- label: ":console:"
command: ".buildkite/results.sh"
- block: "Continue without input"
- label: ":console:"
command: >
echo "Sadness..."
|
steps:
- block: "Continue with input"
prompt: "Fill out the form below!"
fields:
- text: "What version is this? :parrot:"
key: "version"
default: "This is the default value"
hint: "This is a hint :ruby:"
- select: "Choose on of these"
key: "deploy-target"
options:
- Staging
- QA1
- QA2
- Production
- select: "Would you like a :taco: after this deploy?"
hint: "Less than 6 options will show a radio, more than 6 will show a select box"
key: "taco"
default: "Yes"
options:
- "Yes"
- "No"
- ":llama:"
- select: "What team should be notified after the deployment?"
key: "notify-team"
hint: "Another great hint here"
options:
- All
- None
- Billing
- Ops
- Sales
- Directors
- Engineering
- Support
- QA
- select: "What happens with exactly 6 options?"
key: "best-thing"
options:
- What
- A
- Great
- List
- Of
- Options
- label: ":console:"
command: ".buildkite/results.sh"
- block: "Continue without input"
- label: ":console:"
command: >
echo "Sadness..."
|
Add a new test field
|
Add a new test field
|
YAML
|
mit
|
buildkite/agent-tests,buildkite/agent-tests
|
938f571fc0bb4241e44a752df872c10a5d90eb0c
|
roles/bmd/tasks/main.yaml
|
roles/bmd/tasks/main.yaml
|
---
- name: Copy over Blackmagic Desktop Video Windows tools
win_copy:
dest: c:\Temp\Blackmagic_Desktop_Video_Windows_10.8.4.zip
src: distros/bmd/Blackmagic_Desktop_Video_Windows_10.8.4.zip
- name: Unzip BMD tools
win_unzip:
src: c:\Temp\Blackmagic_Desktop_Video_Windows_10.8.4.zip
dest: c:\Temp\bmd_tools
creates: 'c:\\Temp\\bmd_tools\\Desktop Video Installer v10.8.4.msi'
- name: Install Blackmagic MSI
win_package:
path: 'c:\\Temp\\bmd_tools\\Desktop Video Installer v10.8.4.msi'
product_id: '{6A663D66-4AAA-45AF-B7C1-7EB7BAF6FAE3}'
state: present
become: true
register: result
- name: Reboot after BMD install
win_reboot:
when: result.changed
|
---
- name: Copy over Blackmagic Desktop Video Windows tools
win_copy:
dest: c:\Temp\Blackmagic_Desktop_Video_Windows_10.8.4.zip
src: distros/bmd/Blackmagic_Desktop_Video_Windows_10.8.4.zip
- name: Unzip BMD tools
win_unzip:
src: c:\Temp\Blackmagic_Desktop_Video_Windows_10.8.4.zip
dest: c:\Temp\bmd_tools
creates: 'c:\\Temp\\bmd_tools\\Desktop Video Installer v10.8.4.msi'
- name: Install Blackmagic MSI
win_package:
path: 'c:\\Temp\\bmd_tools\\Desktop Video Installer v10.8.4.msi'
product_id: '{6A663D66-4AAA-45AF-B7C1-7EB7BAF6FAE3}'
state: present
become: true
register: result
- name: Reboot after BMD install
win_reboot:
when: result.changed
|
Reboot only if BMD tools are changed - fix.
|
Reboot only if BMD tools are changed - fix.
|
YAML
|
apache-2.0
|
Streampunk/automaton
|
a033be0fd16d67d74e484a49a282ddd739d37632
|
roles/ruby/tasks/main.yml
|
roles/ruby/tasks/main.yml
|
---
- name: Clone rbenv
git: >
repo=git://github.com/sstephenson/rbenv.git
dest=~/.rbenv
tags: update
- name: Clone ruby-build
git: >
repo=git://github.com/sstephenson/ruby-build.git
dest=~/.rbenv/plugins/ruby-build
tags: update
- name: Clone rbenv-ctags
git: >
repo=git://github.com/tpope/rbenv-ctags.git
dest=~/.rbenv/plugins/rbenv-ctags
tags: update
- name: Clone rbenv-readline
git: >
repo=git://github.com/tpope/rbenv-readline.git
dest=~/.rbenv/plugins/rbenv-readline
tags: update
- name: Clone rbenv-default-gems
git: >
repo=git://github.com/sstephenson/rbenv-default-gems.git
dest=~/.rbenv/plugins/rbenv-default-gems
tags: update
- name: Install Rubies
shell: 'rbenv install --skip-existing {{ item }}'
with_items: dotfiles.ruby.versions
changed_when: no
- name: Set default Ruby version
shell: 'rbenv global {{ dotfiles.ruby.default_version }}'
- name: Link dotfiles
file: src={{ item }} dest=~/.{{ item | basename }} state=link
with_fileglob:
- ./*
- name: Link default gems
template: src=default-gems dest=~/.rbenv/default-gems
|
---
- name: Clone rbenv
git: >
repo=git://github.com/sstephenson/rbenv.git
dest=~/.rbenv
tags: update
- name: Clone rbenv plugins
git: >
repo=git://github.com/{{ item }}.git
dest=~/.rbenv/plugins/{{ item | basename }}
with_items:
- sstephenson/rbenv-default-gems
- tpope/rbenv-ctags
- tpope/rbenv-readline
tags: update
- name: Install Rubies
shell: 'rbenv install --skip-existing {{ item }}'
with_items: dotfiles.ruby.versions
changed_when: no
- name: Set default Ruby version
shell: 'rbenv global {{ dotfiles.ruby.default_version }}'
- name: Link dotfiles
file: src={{ item }} dest=~/.{{ item | basename }} state=link
with_fileglob:
- ./*
- name: Link default gems
template: src=default-gems dest=~/.rbenv/default-gems
|
Install rbenv plugins using with_items
|
Install rbenv plugins using with_items
|
YAML
|
mit
|
jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles
|
7e8165e07fae35ce65c737e1d3602330a4a87d67
|
rpm/harbour-sailsoma.yaml
|
rpm/harbour-sailsoma.yaml
|
Name: harbour-sailsoma
Summary: SailSoma
Version: 0.3.2
Release: 1
Group: Qt/Qt
License: 'BSD'
Sources:
- '%{name}-%{version}.tar.bz2'
Description: |-
SailSoma is a very simple client for the popular Soma.fm radio, a free streaming radio with more than 20 channels available.
Configure: none
Builder: qtc5
PkgConfigBR:
- qdeclarative5-boostable
- Qt5Core
- Qt5Qml
- Qt5Quick
Requires:
- sailfishsilica-qt5
Files:
- /usr/share/icons/hicolor/86x86/apps
- /usr/share/applications
- /usr/bin
PkgBR: []
|
Name: harbour-sailsoma
Summary: SailSoma
Version: 0.3.2
Release: 1
Group: Qt/Qt
License: 'BSD'
URL: https://github.com/andreagrandi/sailsoma
Sources:
- '%{name}-%{version}.tar.bz2'
Description: |-
SailSoma is a very simple client for the popular Soma.fm radio, a free streaming radio with more than 20 channels available.
Configure: none
Builder: qtc5
PkgConfigBR:
- qdeclarative5-boostable
- Qt5Core
- Qt5Qml
- Qt5Quick
Requires:
- sailfishsilica-qt5
Files:
- /usr/share/icons/hicolor/86x86/apps
- /usr/share/applications
- /usr/bin
PkgBR: []
|
Add url with source code in .yaml
|
Add url with source code in .yaml
|
YAML
|
bsd-2-clause
|
andreagrandi/sailsoma
|
0390fea470ae568074169581fe8fef2f1ba03ee5
|
packages/po/postgresql-copy-escape.yaml
|
packages/po/postgresql-copy-escape.yaml
|
homepage: https://github.com/joeyadams/hs-postgresql-copy-escape
changelog-type: ''
hash: 26ede3c4d91ab4576209928c46ddf988bd362875df0634ec1db0416d62b6dd02
test-bench-deps: {}
maintainer: [email protected]
synopsis: Format data to feed to a PostgreSQL COPY FROM statement
changelog: ''
basic-deps:
bytestring: -any
base: ==4.*
all-versions:
- '0.1'
author: Joey Adams
latest: '0.1'
description-type: haddock
description: ! 'In PostgreSQL, the @COPY@ statement [1] provides a fast way to perform
bulk
insertion and retrieval. To use @COPY ... FROM@ for bulk insertion, the
data must first be converted to a special CSV-like format.
This package provides basic support for converting data to the format
needed by @COPY ... FROM@. However, it does not provide the inverse
operation (namely, reading data produced by @COPY ... TO@), nor does it
support formatting customizations (what delimiter to use, how to represent
NULL, etc.).
\[1\]: <http://www.postgresql.org/docs/current/static/sql-copy.html>'
license-name: BSD-3-Clause
|
homepage: https://github.com/joeyadams/hs-postgresql-copy-escape
changelog-type: ''
hash: 03a288bd316f0cd07611e8783b9e93c423e9f3bd8a52f45af5a009743c6d96df
test-bench-deps: {}
maintainer: [email protected]
synopsis: Format data to feed to a PostgreSQL COPY FROM statement
changelog: ''
basic-deps:
bytestring: -any
base: ==4.*
all-versions:
- '0.1'
- 0.1.0.1
author: Joey Adams
latest: 0.1.0.1
description-type: haddock
description: |-
In PostgreSQL, the @COPY@ statement [1] provides a fast way to perform bulk
insertion and retrieval. To use @COPY ... FROM@ for bulk insertion, the
data must first be converted to a special CSV-like format.
This package provides basic support for converting data to the format
needed by @COPY ... FROM@. However, it does not provide the inverse
operation (namely, reading data produced by @COPY ... TO@), nor does it
support formatting customizations (what delimiter to use, how to represent
NULL, etc.).
\[1\]: <http://www.postgresql.org/docs/current/static/sql-copy.html>
license-name: BSD-3-Clause
|
Update from Hackage at 2019-11-16T23:27:44Z
|
Update from Hackage at 2019-11-16T23:27:44Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
518ddb0c37030d759c12e1862e4bdbc420d7bc15
|
data/transition-sites/nactso_syf.yml
|
data/transition-sites/nactso_syf.yml
|
---
site: nactso_syf
whitehall_slug: national-counter-terrorism-security-office
host: www.secureyourfertiliser.gov.uk
tna_timestamp: 20090805162030
homepage: https://www.gov.uk/government/organisations/national-counter-terrorism-security-office
|
---
site: nactso_syf
whitehall_slug: national-counter-terrorism-security-office
host: www.secureyourfertiliser.gov.uk
tna_timestamp: 20090805162030
homepage: https://www.gov.uk/government/organisations/national-counter-terrorism-security-office
global: =301 https://www.gov.uk/government/publications/secure-your-fertiliser/secure-your-fertiliser
|
Make NACTSO SecureYourFertiliser a global redirect
|
Make NACTSO SecureYourFertiliser a global redirect
|
YAML
|
mit
|
alphagov/transition-config,alphagov/transition-config
|
a8311a9543f31297fdd4760b366176ba1f757f10
|
roles/macos/tasks/common-packages.yml
|
roles/macos/tasks/common-packages.yml
|
---
- name: brew tap casks
homebrew_tap:
name: "{{ item }}"
state: present
loop: "{{ macos.brew.taps | flatten(levels=1) }}"
- name: brew update
homebrew: update_homebrew=yes
- name: brew upgrade
homebrew: update_homebrew=yes upgrade_all=yes
- name: brew install common casks
homebrew_cask: name={{ macos.brew.casks }} state=installed
- name: brew install common packages
homebrew: name={{ macos.brew.packages }} state=installed
- name: brew install common casks
homebrew_cask: name={{ item }} state=installed
loop: "{{ macos.brew.casks | flatten(levels=1) }}"
|
---
- name: brew tap casks
homebrew_tap:
name: "{{ item }}"
state: present
loop: "{{ macos.brew.taps | flatten(levels=1) }}"
- name: brew update
homebrew: update_homebrew=yes
- name: brew upgrade
homebrew: update_homebrew=yes upgrade_all=yes
- name: brew install common casks
homebrew_cask: name={{ macos.brew.casks }} state=installed
- name: brew install common packages
homebrew: name={{ macos.brew.packages }} state=installed
- name: brew install personal packages
when: personal_machine
homebrew: name={{ item }} state=installed
loop:
- alot
- neomutt
- notmuch
- offlineimap
- w3m
- name: brew install personal casks
when: personal_machine
homebrew_cask: name={{ item }} state=installed
loop:
- protonmail-bridge
|
Add packages for personal mail setup.
|
Add packages for personal mail setup.
|
YAML
|
mit
|
alloy-d/alloy-d.nyc
|
925a345dd2e2202b362c02ab5e381039cd6c5cb6
|
ansible/roles/gcp_packages/tasks/main.yml
|
ansible/roles/gcp_packages/tasks/main.yml
|
---
- name: install packages
yum:
name: "{{ item }}"
state: installed
with_items:
- python-gcloud
|
---
- name: install packages
yum:
name: "{{ item }}"
state: installed
with_items:
- python-gcloud
- gcloud
|
Install the gcloud package which has gcloud cli
|
Install the gcloud package which has gcloud cli
|
YAML
|
apache-2.0
|
themurph/openshift-tools,openshift/openshift-tools,ivanhorvath/openshift-tools,blrm/openshift-tools,blrm/openshift-tools,ivanhorvath/openshift-tools,drewandersonnz/openshift-tools,joelsmith/openshift-tools,andrewklau/openshift-tools,blrm/openshift-tools,themurph/openshift-tools,andrewklau/openshift-tools,joelddiaz/openshift-tools,jupierce/openshift-tools,ivanhorvath/openshift-tools,joelddiaz/openshift-tools,rhdedgar/openshift-tools,jupierce/openshift-tools,blrm/openshift-tools,blrm/openshift-tools,drewandersonnz/openshift-tools,themurph/openshift-tools,twiest/openshift-tools,tiwillia/openshift-tools,ivanhorvath/openshift-tools,drewandersonnz/openshift-tools,jupierce/openshift-tools,ivanhorvath/openshift-tools,rhdedgar/openshift-tools,openshift/openshift-tools,jupierce/openshift-tools,drewandersonnz/openshift-tools,joelddiaz/openshift-tools,twiest/openshift-tools,twiest/openshift-tools,andrewklau/openshift-tools,openshift/openshift-tools,drewandersonnz/openshift-tools,openshift/openshift-tools,andrewklau/openshift-tools,andrewklau/openshift-tools,twiest/openshift-tools,joelsmith/openshift-tools,twiest/openshift-tools,blrm/openshift-tools,tiwillia/openshift-tools,tiwillia/openshift-tools,twiest/openshift-tools,joelddiaz/openshift-tools,themurph/openshift-tools,rhdedgar/openshift-tools,joelsmith/openshift-tools,tiwillia/openshift-tools,openshift/openshift-tools,ivanhorvath/openshift-tools,rhdedgar/openshift-tools,jupierce/openshift-tools,openshift/openshift-tools,joelddiaz/openshift-tools,joelsmith/openshift-tools,themurph/openshift-tools,drewandersonnz/openshift-tools,tiwillia/openshift-tools,rhdedgar/openshift-tools,joelddiaz/openshift-tools
|
7452e16c536829c0563a6bd146e4dc058f855954
|
pipeline-templates/step/nuget-build.yml
|
pipeline-templates/step/nuget-build.yml
|
steps:
- task: PowerShell@2
displayName: 'Set NuGet Package Version'
inputs:
targetType: inline
script: |
if ("$(GitVersion.PreReleaseLabel)" -ne "") { $NuGetPackageVersion = "$(GitVersion.MajorMinorPatch)-prerelease" } else { $NuGetPackageVersion = "$(GitVersion.MajorMinorPatch)" }
Write-Host "NuGetPackageVersion: $NuGetPackageVersion"
Write-Host "##vso[task.setvariable variable=NuGetPackageVersion]$NuGetPackageVersion"
- task: DotNetCoreCLI@2
displayName: 'dotnet pack'
inputs:
command: pack
packagesToPack: |
src/SFA.DAS.EmployerUsers.Api.Client/SFA.DAS.EmployerUsers.Api.Client.csproj;
src/SFA.DAS.EmployerUsers.Api.Types/SFA.DAS.EmployerUsers.Api.Types.csproj;
src/SFA.DAS.EmployerUsers.WebClientComponents/SFA.DAS.EmployerUsers.WebClientComponents.nuspec
versioningScheme: byEnvVar
versionEnvVar: NuGetPackageVersion
packDirectory: $(build.artifactstagingdirectory)/NuGetPackages
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: NuGetPackages'
inputs:
ArtifactName: NuGetPackages
pathtoPublish: '$(build.artifactstagingdirectory)/NuGetPackages'
|
steps:
- task: PowerShell@2
displayName: 'Set NuGet Package Version'
inputs:
targetType: inline
script: |
if ("$(GitVersion.PreReleaseLabel)" -ne "") { $NuGetPackageVersion = "$(GitVersion.MajorMinorPatch)-prerelease" } else { $NuGetPackageVersion = "$(GitVersion.MajorMinorPatch)" }
Write-Host "NuGetPackageVersion: $NuGetPackageVersion"
Write-Host "##vso[task.setvariable variable=NuGetPackageVersion]$NuGetPackageVersion"
- task: DotNetCoreCLI@2
displayName: 'dotnet pack'
inputs:
command: pack
packagesToPack: |
src/SFA.DAS.EmployerUsers.Api.Client/SFA.DAS.EmployerUsers.Api.Client.csproj;
src/SFA.DAS.EmployerUsers.Api.Types/SFA.DAS.EmployerUsers.Api.Types.csproj;
versioningScheme: byEnvVar
versionEnvVar: NuGetPackageVersion
packDirectory: $(build.artifactstagingdirectory)/NuGetPackages
- task: NuGetCommand@2
inputs:
command: pack
packagesToPack: src/SFA.DAS.EmployerUsers.WebClientComponents/SFA.DAS.EmployerUsers.WebClientComponents.csproj
versioningScheme: byEnvVar
versionEnvVar: NuGetPackageVersion
packDestination: $(build.artifactstagingdirectory)/NuGetPackages
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: NuGetPackages'
inputs:
ArtifactName: NuGetPackages
pathtoPublish: '$(build.artifactstagingdirectory)/NuGetPackages'
|
Split WebClientComponents out to separate task
|
Split WebClientComponents out to separate task
|
YAML
|
mit
|
SkillsFundingAgency/das-employerusers,SkillsFundingAgency/das-employerusers,SkillsFundingAgency/das-employerusers
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.