commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
47e8d834befb375c16ebaa1de74e74a45b441bdc | .travis.yml | .travis.yml | sudo: false
os:
- linux
compiler:
- gcc
language:
- c
services:
- docker
before_install:
- docker pull ebassi/emeusci
before_script:
- echo FROM ebassi/emeusci > Dockerfile
- echo ADD . /root >> Dockerfile
- docker build -t emeusci:withgit .
script:
- docker run withgit /bin/sh -c "cd /root && ... | Add a TravisCI build file | Add a TravisCI build file
Let's put Emeus under continuous integration.
| YAML | lgpl-2.1 | ebassi/emeus,ebassi/emeus,ebassi/emeus | |
bbc0a1a78e4b88738243e6eb4e5a871cf63fb167 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5.0b3"
matrix:
allow_failures:
- python: "3.5.0b3"
sudo: false
cache: pip
script:
- make build
- make test
- make lint
notifications:
email: false
irc:
channels:
- "chat.freenode.net#pietroalbini"
template:
- "Build %{result} for %{repository_slug} on br... | language: python
python:
- "3.4"
- "3.5"
sudo: false
cache: pip
script:
- make build
- make test
- make lint
notifications:
email: false
irc:
channels:
- "chat.freenode.net#pietroalbini"
template:
- "Build %{result} for %{repository_slug} on branch %{branch} (%{commit})."
- "More details: %{b... | Test on the official release of Python 3.5 | Test on the official release of Python 3.5
| YAML | mit | thesharp/botogram,pietroalbini/botogram,pietroalbini/botogram,thesharp/botogram |
15dd388c20bf5ea754b11e7bb464a79c1227f351 | roles/crawler/tasks/install-systemd-unit.yml | roles/crawler/tasks/install-systemd-unit.yml | ---
- name: Install the crawler systemd unit.
become: yes
copy:
src: "crawler@.service"
dest: "/etc/systemd/system/crawler@.service"
mode: "0644"
| Add missing task to install crawler systemd unit | Add missing task to install crawler systemd unit
| YAML | agpl-3.0 | freedomofpress/fingerprint-securedrop,freedomofpress/fingerprint-securedrop,freedomofpress/fingerprint-securedrop,freedomofpress/FingerprintSecureDrop,freedomofpress/FingerprintSecureDrop | |
0967bab12efa9689bc1ad6df785f43f88d85d251 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
script:
- phpunit
| Add configuration for Travis CI | Add configuration for Travis CI
| YAML | mit | dancras/Doubles | |
b9284d415aa6b1033c4397ecf0119a79e34fc496 | packages/or/Ordinary.yaml | packages/or/Ordinary.yaml | homepage: https://github.com/MarisaKirisame/Ordinary#readme
changelog-type: markdown
hash: 6c829c6a44fc93b09a4ffd59aafc12c53ef224b46dabcd10dac909a90a4edfda
test-bench-deps:
Ordinary: -any
base: ! '>=4.7 && <5'
threepenny-gui: ==0.8.2.0
safe: ==0.3.15
maintainer: lolisa@marisa.moe
synopsis: Short description of ... | Update from Hackage at 2018-01-03T11:59:31Z | Update from Hackage at 2018-01-03T11:59:31Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
3ba59b4846436ee7ef572df600aa74b7fedc4094 | packages/po/postgresql-simple-interpolate.yaml | packages/po/postgresql-simple-interpolate.yaml | homepage: https://github.com/3noch/postgresql-simple-interpolate
changelog-type: ''
hash: 33deb8eb397d24d77883f53ceb7123df2124d28d0e340767e9315e96771235b5
test-bench-deps: {}
maintainer: eacameron@gmail.com
synopsis: Interpolated SQL queries via quasiquotation
changelog: ''
basic-deps:
base: ! '>=4.5 && <5'
parsec:... | Update from Hackage at 2019-08-19T05:06:57Z | Update from Hackage at 2019-08-19T05:06:57Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
73c0e36c861b1550508d58d74fa3dadb178971a6 | docker-compose.yml | docker-compose.yml | ruby22:
build: 2.2-1.8/.
command: ls -la /usr/local/bin
ruby22slim:
build: 2.2-1.8/slim/.
command: ls -la /usr/local/bin
ruby22onbuild:
build: 2.2-1.8/onbuild/.
command: ls -la /usr/local/bin
| Add Docker Compose test configuration | Add Docker Compose test configuration
| YAML | mit | Turistforeningen/docker-ruby-iojs,Turistforeningen/docker-ruby-iojs | |
e06ef36ea48eb268293da9a1a49c10c338e276eb | .github/workflows/CI-windows-addons.yml | .github/workflows/CI-windows-addons.yml | name: CI for Windows add-ons
on:
pull_request:
push:
branches:
- master
jobs:
tests:
runs-on: windows-2022
name: windows-2022
steps:
- uses: actions/checkout@v2
- name: Install Python 3.8 x64
run: |
$pythonVersion = "3.8"
$pythonArch = "64"
Invoke-Expre... | Add GitHub Actions workflow for testing "install-python" add-on | ci: Add GitHub Actions workflow for testing "install-python" add-on
| YAML | apache-2.0 | scikit-build/scikit-ci-addons,scikit-build/scikit-ci-addons | |
2354f78653f7cc613dbaba57112cddc0fc7e7767 | .github/workflows/python-package.yml | .github/workflows/python-package.yml | name: Python package
on: [push, pull_request]
jobs:
test-job:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
... | Add GitHub Actions workflow for running tests | Add GitHub Actions workflow for running tests
| YAML | mit | NatLibFi/Skosify,NatLibFi/Skosify | |
50c213001dcce638284132ec4affdcde1a611216 | .github/workflows/fossa-license-scan.yml | .github/workflows/fossa-license-scan.yml | # More information on this workflow can be found here: https://stackoverflow.com/c/intercom/questions/1270
name: FOSSA License Scan
on:
push:
branches:
- master
jobs:
fossa:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Attempt build
... | Add FOSSA workflow to enable license scanning | Add FOSSA workflow to enable license scanning | YAML | apache-2.0 | intercom/ember-computed-template-string-parser | |
1831736545074ac8cc16460112a068e916ce8991 | packages/ex/exceptiot.yaml | packages/ex/exceptiot.yaml | homepage: https://github.com/parsonsmatt/exceptiot#readme
changelog-type: markdown
hash: a4879fbd165c0d6d4c73d05895a7c7c9d94fa873d766ae92cc5deee2c84b0aa8
test-bench-deps:
exceptions: -any
unliftio: -any
base: '>=4.13 && <5'
exceptiot: -any
hspec: -any
unliftio-core: -any
mtl: -any
maintainer: parsonsmatt@... | Update from Hackage at 2022-11-22T23:33:16Z | Update from Hackage at 2022-11-22T23:33:16Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
50dc715cc5b001f8d2097d58d5b3f6f6d7e428b6 | packages/li/linkcheck.yaml | packages/li/linkcheck.yaml | homepage: https://github.com/NorfairKing/linkcheck#readme
changelog-type: markdown
hash: 4b74a193ee39f1b39f2c51ab4e95025af736679182bb6a78c7bf79916779946a
test-bench-deps:
base: '>=4.7 && <5'
linkcheck: -any
maintainer: syd@cs-syd.eu
synopsis: Check for broken links in CI
changelog: |+
# Changelog
## [0.1.0.0] ... | Update from Hackage at 2022-05-09T11:42:57Z | Update from Hackage at 2022-05-09T11:42:57Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
29f4586644cf8648b3d3e948714c22d1f40d94d3 | packages/st/stack-all.yaml | packages/st/stack-all.yaml | homepage: https://github.com/juhp/stack-all
changelog-type: markdown
hash: 54ddd712d60e698074978cdd5400a4ea953d8ba499ccb081c29c5a76e30945ca
test-bench-deps: {}
maintainer: Jens Petersen <juhpetersen@gmail.com>
synopsis: CLI tool for building across Stackage major versions
changelog: |
# Revision history for stack-all... | Update from Hackage at 2020-11-13T17:45:39Z | Update from Hackage at 2020-11-13T17:45:39Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
6815f917077a3494be04420e3906dde1d5fe68fd | releasenotes/notes/remove-congress-images-0f6a327ae67e2137.yaml | releasenotes/notes/remove-congress-images-0f6a327ae67e2137.yaml | ---
deprecations:
- |
The ``congress`` project is no longer maintained. This has been
`retired since Victoria`__ and has not been used by other OpenStack
services since.
__ http://lists.openstack.org/pipermail/openstack-discuss/2020-April/014292.html
| Add releasenote for remove congress images | Victoria: Add releasenote for remove congress images
The congress project is no longer maintained. This has been
retired since Victoria[1] and has not been used by other OpenStack
services since.
[1]: http://lists.openstack.org/pipermail/openstack-discuss/2020-April/014292.html
Depends-On: I21c9ab9820f78cf76adf11c5f... | YAML | apache-2.0 | stackforge/kolla,stackforge/kolla,openstack/kolla,stackforge/kolla,openstack/kolla | |
97cb8824c612d43a01774a29199451aab1621e3a | packages/va/valid.yaml | packages/va/valid.yaml | homepage: ''
changelog-type: ''
hash: 6959d62c70c4a6c97c3776d6a293b785ee55f3ed47f8862d5093a622b22fc644
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Type isomorphic to `Either` with `Applicative` instance which combines errors
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
- 0.1.0.0
aut... | Update from Hackage at 2019-03-21T19:30:24Z | Update from Hackage at 2019-03-21T19:30:24Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
c433b1eff8e24060f3abcfaec9fa8064eb4d999d | recipes/fatiando/meta.yaml | recipes/fatiando/meta.yaml | # Note: there are many handy hints in comments in this example -- remove them when you've finalized your recipe
# Jinja variables help maintain the recipe as you'll update the version only here.
{% set name = "fatiando" %}
{% set version = "0.4" %}
{% set sha256 = "7709a4f7e40fd94bce8f0825d1d33094d271052374707bf2595a2... | Add recipe for Fatiando a Terra | Add recipe for Fatiando a Terra
Trying to get this to build. Have no experience with conda packages so I
expect something will break.
| YAML | bsd-3-clause | dharhas/staged-recipes,hadim/staged-recipes,rmcgibbo/staged-recipes,chrisburr/staged-recipes,glemaitre/staged-recipes,Savvysherpa/staged-recipes,ceholden/staged-recipes,koverholt/staged-recipes,hajapy/staged-recipes,stuertz/staged-recipes,larray-project/staged-recipes,goanpeca/staged-recipes,hbredin/staged-recipes,Reim... | |
a733b87da4ac9de053d35a7a9ebdc69891dcd160 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
# Avoid duplicate builds on PRs.
branches:
- main
pull_request:
permissions:
contents: read
jobs:
integration-test:
runs-on: ubuntu-22.04
strategy:
matrix:
stack: ["heroku-18", "heroku-20", "heroku-22"]
env:
STACK: ${{ matrix.stack }}
HER... | Use GitHub Actions for CI | Use GitHub Actions for CI
GUS-W-11832719
| YAML | mit | heroku/heroku-buildpack-php,heroku/heroku-buildpack-php,heroku/heroku-buildpack-php,heroku/heroku-buildpack-php | |
beb810092af58c763a5ce134f105680a35f361d8 | hieradata/nodes/dev/dev-nat-01.yaml | hieradata/nodes/dev/dev-nat-01.yaml | ---
network::interfaces_hash:
'vtnet1':
description: 'Management Interface'
addresses: [ "%{hiera('netcfg_mgmt_netpart')}.26/%{hiera('netcfg_mgmt_netmask')}", ]
'vtnet2':
description: 'Transport Interface'
addresses: [ "%{hiera('netcfg_trp_netpart')}.26/%{hiera('netcfg_trp_netmask')}", ]
'tap0... | Add node definition for nat node in dev | Add node definition for nat node in dev
| YAML | apache-2.0 | tanzr/himlar,mikaeld66/himlar,tanzr/himlar,mikaeld66/himlar,raykrist/himlar,eckhart/himlar,mikaeld66/himlar,eckhart/himlar,TorLdre/himlar,norcams/himlar,norcams/himlar,raykrist/himlar,norcams/himlar,eckhart/himlar,TorLdre/himlar,raykrist/himlar,tanzr/himlar,raykrist/himlar,tanzr/himlar,norcams/himlar,tanzr/himlar,eckha... | |
fad00d62d5d7da7de6b1364f6c144e96509dfb0d | packages/wa/wai-middleware-static-embedded.yaml | packages/wa/wai-middleware-static-embedded.yaml | homepage: https://github.com/adamse/network-wai-static-embedded#readme
changelog-type: ''
hash: db0b8938663e91e631f8ce79571d14522db7af03f58245fffba769995bb90fb5
test-bench-deps: {}
maintainer: adam@sandbergericsson.se
synopsis: Serve embedded static files as a Wai middleware
changelog: ''
basic-deps:
bytestring: -any... | Update from Hackage at 2017-04-27T21:20:17Z | Update from Hackage at 2017-04-27T21:20:17Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
76ddceb7d234571552ae9bc609cd534e47144294 | stack-ghcjs.yaml | stack-ghcjs.yaml | resolver: lts-6.6
packages:
- '.'
- location:
git: https://github.com/geraldus/ghcjs-perch.git
commit: 1db6e0ae5fa2ec7640991550a0662337263afeef
extra-dep: true
- '.'
- location:
git: https://github.com/agocorona/transient.git
commit: d9ee775d84b4d9aa7c4df3fa441450b8640a0d63
extra-dep: true
- locatio... | Add Stack configuration for GHCJS build | Add Stack configuration for GHCJS build
| YAML | mit | agocorona/ghcjs-hplay,geraldus/ghcjs-hplay | |
d26a85705e8f9b34ca60d898aabe9c0f7a3f34dc | .github/workflows/main.yml | .github/workflows/main.yml | name: Run CI
on: [push, pull_request]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
dependencies: ['normal', 'authoritative']
steps:
- uses: actions/checkout@v2
- name: Install dependencies
if: matrix.de... | Add github workflow to execute quality tools | Add github workflow to execute quality tools
Signed-off-by: Jefersson Nathan <153c4746339763f957e90675c08ce8587deedfe7@gmail.com>
| YAML | mit | malukenho/docheader | |
a1f8c7350630249fd71ae724f846f31145491858 | packages/ha/hashes.yaml | packages/ha/hashes.yaml | homepage: https://github.com/larskuhtz/hs-hashes
changelog-type: markdown
hash: 3a4a208f009b4a7b317cac97acdccedb7cb9e15bc2a946e9ca89b292e1a5f503
test-bench-deps:
bytestring: '>=0.10'
base: '>=4.11 && <5'
criterion: '>=1.5'
memory: '>=0.14'
hashes: -any
QuickCheck: '>=2.13'
maintainer: lakuhtz@gmail.com
syno... | Update from Hackage at 2021-09-30T05:06:09Z | Update from Hackage at 2021-09-30T05:06:09Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
2332cfc4d77b484f279de70750c27140de318fd9 | packages/lp/LParse.yaml | packages/lp/LParse.yaml | homepage: https://github.com/MarcusVoelker/LParse#readme
changelog-type: ''
hash: cb3fa866d5e59c65f957c69d2aae8e6913b53d77a9bf8d3f61953ca7e73ac1a5
test-bench-deps:
base: -any
maintainer: marcus.voelker@rwth-aachen.de
synopsis: A continuation-based parser library
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-v... | Update from Hackage at 2017-11-08T11:34:06Z | Update from Hackage at 2017-11-08T11:34:06Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
a934564d2391dd5d738220bba678ffa8825a4c96 | packages/st/stagen.yaml | packages/st/stagen.yaml | homepage: ''
changelog-type: ''
hash: c728447961ef6ebcdeeed3f55955bac44550343e5a324fab12f754acd98053f1
test-bench-deps: {}
maintainer: Joe Vargas
synopsis: Static site generator
changelog: ''
basic-deps:
markdown: -any
lucid: -any
bytestring: -any
filemanip: -any
base: ! '>=4.7 && <5'
text: -any
parsec: -... | Update from Hackage at 2017-10-20T06:27:02Z | Update from Hackage at 2017-10-20T06:27:02Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
f041b44f57d22a9f47cd1f519e11bd2c41e85d5f | packages/ta/tangle.yaml | packages/ta/tangle.yaml | homepage: ''
changelog-type: markdown
hash: bbe74b5640adf321f9e487d2d1397a9593a1a0b9ee75793049ce3c9a4ad77734
test-bench-deps: {}
maintainer: fumiexcel@gmail.com
synopsis: HKD record builder
changelog: |
# Revision history for tangle
## 0 -- 2020-02-09
* First version. Released on an unsuspecting world.
basic-de... | Update from Hackage at 2020-02-09T04:38:21Z | Update from Hackage at 2020-02-09T04:38:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
ffe61bd182355f22d1110c394e5281c2ed64de37 | packages/bi/bitwise-enum.yaml | packages/bi/bitwise-enum.yaml | homepage: https://github.com/jnbooth/bitwise-enum#readme
changelog-type: ''
hash: e583293995fe375441a6496248038d3192f42f48549d9b2aa32d4fd323744367
test-bench-deps:
test-framework: ! '>=0.8.2.0'
base: -any
test-framework-quickcheck2: ! '>=0.3.0.5'
gauge: ! '>=0.2.5'
wide-word: ! '>=0.1.0.9'
deepseq: ! '>=1.1... | Update from Hackage at 2020-01-01T23:37:32Z | Update from Hackage at 2020-01-01T23:37:32Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
1b135325d082bf1988d71e12c31e4ed45255cf78 | .github/workflows/php.yml | .github/workflows/php.yml | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
# Add a test script ... | Add basic GitHub Actions config | Add basic GitHub Actions config | YAML | mit | openva/richmondsunlight.com,openva/richmondsunlight.com,openva/richmondsunlight.com,openva/richmondsunlight.com,openva/richmondsunlight.com | |
5edde14c5ae67e9bf02506d6ece6f1c79bccf910 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run tests
run: ./test.sh
| Add GitHub Action to run tests on push | Add GitHub Action to run tests on push | YAML | mit | Quantisan/docker-clojure | |
c9b94069007eaeda3d4668b1d1af765c7b9e9d90 | .github/workflows/rust.yml | .github/workflows/rust.yml | name: Rust CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: build
run: cargo build -v
| Add simplistic Github Actions CI file | Add simplistic Github Actions CI file
| YAML | mit | PistonDevelopers/image,PistonDevelopers/image | |
3e90e88effac45198169d476e0293a59ab6e3833 | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo... | Add GitHub Action for cargo check | Add GitHub Action for cargo check | YAML | mit | jelovirt/hetu | |
07bef247cf4dfff428466379fd8f59da17f4ccfd | .github/workflows/test.yml | .github/workflows/test.yml | name: CI
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup OCaml
uses: avsm/setup-ocaml@v1
- name: Install Opam packages
run: opam pin add -n .; opam install eff --deps-only
- name: Format
... | Test and format on pull request | Test and format on pull request
| YAML | bsd-2-clause | matijapretnar/eff,matijapretnar/eff,matijapretnar/eff,matijapretnar/eff,matijapretnar/eff | |
ec0ae721ac41512cd9aaed1f42bdafadd47052d5 | packages/nu/numeric-logarithms.yaml | packages/nu/numeric-logarithms.yaml | homepage: https://github.com/google/hs-numeric-logarithms#readme
changelog-type: markdown
hash: b751c4da8b697bea8796b78467f4d21f3df2f1f0f19a50d1c79229fd7e1be179
test-bench-deps:
test-framework: -any
numeric-logarithms: -any
base: '>=4.9 && <4.16'
test-framework-quickcheck2: -any
integer-gmp: '>=0.5 && <1.1'
... | Update from Hackage at 2021-09-03T20:50:36Z | Update from Hackage at 2021-09-03T20:50:36Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
c22cf22e451b1cc6dad51f7256e5ffa35a975bd0 | .github/workflows/main.yml | .github/workflows/main.yml | name: Make
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
defaults:
run:
shell: bash
jobs:
run-rspec:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Purge containers
run: 'docker kill $(docker ps -q) ||... | Add Gihub Action to run make build_all | Add Gihub Action to run make build_all
| YAML | mit | phusion/passenger-docker,phusion/passenger-docker | |
15fa199e4f8ce67a72f2501ef3008c1a6b9808ac | .github/workflows/main.yml | .github/workflows/main.yml |
name: Build and Deploy to GH Pages
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.1.0
- name: Run tests
run: npm run test
- name: Build
... | Add GH Action to deploy to GH Pages | Add GH Action to deploy to GH Pages | YAML | mit | lazerwalker/twison,lazerwalker/twison | |
6bea5c2642fbfc83f046cd7a9542b1cb3a543391 | appveyor.yml | appveyor.yml | version: 1.9.10000.{build}
os: Visual Studio 2015
init:
- ps: git config --global core.autocrlf true
- ps: Update-AppveyorBuild -Version "1.9.1$(Get-Date -format MMdd).$env:appveyor_build_number"
install:
- set PATH=C:\Program Files (x86)\MSBuild\12.0\Bin;%PATH%
build_script:
- ps: ./buildCC "1.9.1$(Get-Date -format MM... | version: 1.9.10000.{build}
os: Visual Studio 2015
init:
- ps: git config --global core.autocrlf true
- ps: Update-AppveyorBuild -Version "1.9.1$(Get-Date -format MMdd).$env:appveyor_build_number"
install:
- set PATH=C:\Program Files (x86)\MSBuild\12.0\Bin;%PATH%
build_script:
- ps: ./buildCC "1.9.1$(Get-Date -format MM... | Enable automated execution of UnitTests tests in AppVeyor | Enable automated execution of UnitTests tests in AppVeyor
| YAML | mit | SergeyTeplyakov/CodeContracts,Microsoft/CodeContracts,huoxudong125/CodeContracts,danachap/CodeContracts,hubuk/CodeContracts,Microsoft/CodeContracts,hubuk/CodeContracts,ndykman/CodeContracts,huoxudong125/CodeContracts,danielcweber/CodeContracts,Microsoft/CodeContracts,danielcweber/CodeContracts,ndykman/CodeContracts,ndy... |
81f48ff65c390bbaaa8602a8a4eec2a740a65a7b | .github/workflows/open-merged-pr-to-future-9.11.0.yml | .github/workflows/open-merged-pr-to-future-9.11.0.yml | name: Open Merged PR to release/9.11.0 Branch
on:
pull_request:
types: [closed]
branches:
- develop
jobs:
open-merged-pr-to-ten-branch:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.merged }}
steps:
- uses: actions/checkout@v2.3.4
- uses: peterjgrai... | Add workflow to auto-open PRs to v9.11 branch | Add workflow to auto-open PRs to v9.11 branch
| YAML | mit | bdukes/Dnn.Platform,nvisionative/Dnn.Platform,valadas/Dnn.Platform,mitchelsellers/Dnn.Platform,mitchelsellers/Dnn.Platform,bdukes/Dnn.Platform,nvisionative/Dnn.Platform,valadas/Dnn.Platform,mitchelsellers/Dnn.Platform,nvisionative/Dnn.Platform,valadas/Dnn.Platform,dnnsoftware/Dnn.Platform,valadas/Dnn.Platform,mitchelse... | |
9f2c233d2558b55a91a2c65d7230787ef3b32b33 | packages/ex/extensible-sp.yaml | packages/ex/extensible-sp.yaml | homepage: https://github.com/githubuser/extensible-sp#readme
changelog-type: ''
hash: 861ac425e1e8657023af19c163e21fc4296111ca3d86d721cb9842fd4c0bb3a5
test-bench-deps: {}
maintainer: jadaska@gmail.com
synopsis: light-weight, extensible sums and products over types and kinds
changelog: ''
basic-deps:
base: ! '>=4.7 &&... | Update from Hackage at 2017-04-22T21:44:51Z | Update from Hackage at 2017-04-22T21:44:51Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
e57131cae28798717689ca9b1b93048dd7befd87 | packages/gr/greenclip.yaml | packages/gr/greenclip.yaml | homepage: https://github.com/erebe/greenclip#readme
changelog-type: ''
hash: a8079fa3675119ce09aad13bd4e1c7c6fac7c7fe9d7a7b5c88d5ab712803cb58
test-bench-deps: {}
maintainer: romain.gerard@erebe.eu
synopsis: Simple clipboard manager to be integrated with rofi
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
text: -an... | Update from Hackage at 2017-09-06T19:03:19Z | Update from Hackage at 2017-09-06T19:03:19Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
03bc679e3d14fe1d5958d45d4a4b13deed854983 | packages/ht/http-mock.yaml | packages/ht/http-mock.yaml | homepage: https://github.com/gojup/http-mock#readme
changelog-type: markdown
hash: c4c821e59bb16f3199cc81fadc0fa61dd3f4d538cb49a93d1d2ae565b3dd6dbf
test-bench-deps:
base: ! '>=4.7 && <5'
http-mock: -any
maintainer: f.rincon@protonmail.com
synopsis: HTTP mocking and expectations library for Haskell
changelog: |
# ... | Update from Hackage at 2019-09-22T15:05:14Z | Update from Hackage at 2019-09-22T15:05:14Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
852c1d66769322b583d1ecf811a8ae6f6eac851b | packages/sk/skip-list.yaml | packages/sk/skip-list.yaml | homepage: https://github.com/gmalecha/skip-list#readme
changelog-type: markdown
hash: 93ed523a02f602622c57b3741820d877c7b49094aa200d9ed666dec02d545be7
test-bench-deps:
base: -any
criterion: -any
skip-list: -any
tasty-hunit: -any
tasty: -any
maintainer: gmalecha@gmail.com
synopsis: An implementation of pure sk... | Update from Hackage at 2017-07-22T20:53:54Z | Update from Hackage at 2017-07-22T20:53:54Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
09c4327ae212019fcee98f7d8b921aa412f8858b | roles/vpn_names/tasks/main.yml | roles/vpn_names/tasks/main.yml | # vim: set ft=ansible
---
- name: generate hosts entries
lineinfile:
dest: /etc/hosts
regexp: "{{ item.name | replace('.', '\\.') }}"
line: "{{ item.net | ipaddr('1') | ipaddr('address') }} {{ item.name }}"
with_items: vpn.static_clients
| Add a role to deploy /etc/hosts for vpn names | Add a role to deploy /etc/hosts for vpn names
Signed-off-by: Jan Losinski <577c4104c61edf9f052c616c0c23e67bef4a9955@wh2.tu-dresden.de>
| YAML | bsd-3-clause | janLo/ansible-playground,janLo/ansible-playground,janLo/ansible-playground | |
f4fa70765c10c7f8e0dfba86d1789770d7d85f7b | roles/common/tasks/enable_sudo_wheel.yml | roles/common/tasks/enable_sudo_wheel.yml | # Centralized Local User Management
# https://github.com/dehesselle/clum
#
- name: enable sudo privileges for wheel members
lineinfile:
path: /etc/sudoers
regexp: "^#?[\\s\\t]*%wheel[\\s\\t]*ALL=\\(ALL\\)[\\s\\t]*ALL"
line: "%wheel ALL=(ALL) ALL"
become: true
| Add task to enable sudo for wheel members | Add task to enable sudo for wheel members
| YAML | mit | dehesselle/clum | |
f2c836ff1de06f02570d5ef4662638d601e458c3 | .github/workflows/tests.yml | .github/workflows/tests.yml | name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: 2.7
env:
TOXENV: py
- python-version: 3.4
env:
TOXENV: py
- python-version: 3.5
... | Add Tests GitHub Actions workflow | ci: Add Tests GitHub Actions workflow
| YAML | bsd-3-clause | scrapy/scrapyd-client | |
e228a40fe7b54f0693577c31a887afb50a0f8b88 | recipes/accimage/meta.yaml | recipes/accimage/meta.yaml | {% set name = "accimage" %}
{% set version = "0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
git_url: https://github.com/pytorch/accimage.git
git_rev: '1e81f95'
build:
skip: true # [win]
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
requirements:
build:
... | {% set name = "accimage" %}
{% set version = "0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
git_url: https://github.com/pytorch/accimage.git
git_rev: '1e81f95'
build:
skip: true # [win]
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
requirements:
build:
... | Remove test for non-existant package | Remove test for non-existant package
| YAML | bsd-3-clause | synapticarbors/staged-recipes,jjhelmus/staged-recipes,basnijholt/staged-recipes,jochym/staged-recipes,chrisburr/staged-recipes,jakirkham/staged-recipes,asmeurer/staged-recipes,kwilcox/staged-recipes,jjhelmus/staged-recipes,patricksnape/staged-recipes,basnijholt/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-re... |
65cb3b5187409ff525154838eb13f70c5aa8d811 | packages/he/heist-extra.yaml | packages/he/heist-extra.yaml | homepage: ''
changelog-type: ''
hash: 43d9a856dddbeecdb49998debfdb189447acfb722e80baeb522353fdef00a738
test-bench-deps: {}
maintainer: srid@srid.ca
synopsis: Extra heist functionality
changelog: ''
basic-deps:
heist-emanote: '>=1.2.1'
base: '>=4.13.0.0 && <=4.18.0.0'
map-syntax: -any
filepath: -any
data-defau... | Update from Hackage at 2022-09-24T18:25:21Z | Update from Hackage at 2022-09-24T18:25:21Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
944bddbd6c4cadfb72ca4e68565c2623fa4441b8 | packages/lo/long-double.yaml | packages/lo/long-double.yaml | homepage: https://code.mathr.co.uk/long-double
changelog-type: markdown
hash: 5247afe5bf29eea3095387b6a20921ed55f20326404a0b39bf57bdb549888060
test-bench-deps: {}
maintainer: claude@mathr.co.uk
synopsis: FFI bindings for C long double
changelog: ! '# Revision history for long-double
## 0.1 -- 2018-03-09
* Firs... | Update from Hackage at 2018-03-09T02:06:24Z | Update from Hackage at 2018-03-09T02:06:24Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
be6bf65ef42e44693b5964f3af30f70bcae7b5dd | packages/se/servant-auth-swagger.yaml | packages/se/servant-auth-swagger.yaml | homepage: http://github.com/plow-technologies/servant-auth#readme
changelog-type: ''
hash: e438561e4a1adfe066e2fc6b8d443ceee4b943c8dddd534e8403ecc1f52d3b04
test-bench-deps:
base: ! '>=4.7 && <4.10'
hspec: ! '>2 && <3'
text: -any
servant-auth-swagger: -any
doctest: ! '>=0.9 && <0.12'
servant-swagger: -any
... | Update from Hackage at 2017-03-15T02:00:34Z | Update from Hackage at 2017-03-15T02:00:34Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
741a0985d7a9183bd4e7868a74476a8fced27f7f | circle.yml | circle.yml | version: 2
jobs:
build:
working_directory: /home/circleci/dockerized-rails-example
docker:
- image: ruby:2.4.1
environment:
DATABASE_URL: postgres://postgres:@localhost
- image: postgres:9.6
steps:
- run:
name: Install System Dependencies
command: ap... | Add CircleCI 2.0 setting for non docker-compose | Add CircleCI 2.0 setting for non docker-compose
| YAML | mit | changeworld/dockerized-rails-example,changeworld/dockerized-rails-example,changeworld/dockerized-rails-example | |
085e5153feeea3a220811257ea960d2c21bc8b40 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [pull_request, push]
jobs:
###################################################
# Main Builds
###################################################
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
rust: [stable, beta, nightly]
os: [ubuntu-lat... | Move to doing CI using GitHub Actions | Move to doing CI using GitHub Actions
Travis CI is now limiting open source projects
to only so much build time. Moving to GitHub
Actions allows us to not have such constrained
build resource limits.
| YAML | mit | mattnenterprise/rust-hash-ring | |
64f5bfe66c7e71cd665a2f1985356c47b3131434 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm install
- run: npm test
env:
CI: true
| Configure GitHub Action for CI | Configure GitHub Action for CI
| YAML | apache-2.0 | kemitchell/validate-npm-package-license.js | |
ff51b2821f0ab0e23272d60a93a4f10762dfa605 | .github/workflows/ci.yml | .github/workflows/ci.yml | name: CI
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
env:
IMAGE_NAME: chatbot
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Extract version from ref
id: extract-version
r... | Build Docker Image and deploy to Docker Hub on version release | Build Docker Image and deploy to Docker Hub on version release
| YAML | isc | Shotbow/ChatBot | |
cf9361f89f86df5d6c376b3b6fc466ed53629de6 | app/config/config_test.yml | app/config/config_test.yml | imports:
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
profiler:
collect: false
web_profiler:
toolbar: false
intercept_redirects: false
services:
database:
class: SpoonDatabase
arguments:
- %dat... | Make sure test configuration will be loaded. | Make sure test configuration will be loaded.
We assume you have the same DB credentials as in normal mode, but
suffixed with _test.
| YAML | mit | Thijzer/forkcms,forkcms/forkcms,sumocoders/forkcms,vytenizs/forkcms,Thijzer/forkcms,nosnickid/forkcms,mathiashelin/forkcms,mathiashelin/forkcms,sumocoders/forkcms,jeroendesloovere/forkcms,sumocoders/forkcms,Thijzer/forkcms,bartdc/forkcms,forkcms/forkcms,mathiashelin/forkcms,forkcms/forkcms,dmoerman/forkcms,tommyvdv/for... | |
358ca20e9f82ff5eaed95ae5cfdb1a0952fe7781 | circle.yml | circle.yml | dependencies:
pre:
- source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
- wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
- sudo apt-get update
- sudo apt-get install rethinkdb==1.... | Install rethinkdb from apt source | Install rethinkdb from apt source
| YAML | apache-2.0 | nkreipke/rethinkdb-net,bbqchickenrobot/rethinkdb-net,LukeForder/rethinkdb-net,kangkot/rethinkdb-net,bbqchickenrobot/rethinkdb-net,kangkot/rethinkdb-net,Ernesto99/rethinkdb-net,nkreipke/rethinkdb-net,Ernesto99/rethinkdb-net,LukeForder/rethinkdb-net | |
c26c417d7ab324c91161ac64918fe5240a44cc43 | bareon_dynamic_allocator/tests/fixtures/three_disks_ceph_example.yaml | bareon_dynamic_allocator/tests/fixtures/three_disks_ceph_example.yaml | name: Three disks ceph example
dynamic_schema:
- id: os
type: vg
contains:
- id: swap
- id: root
- id: root
type: lv
size: 30
- id: swap
type: lv
size: |
yaql=$.ram * 2
- id: logs
type: vg
contains:
- id: log
- id: log
type: lv
min_size: 10... | Add three disk test case with ceph | Add three disk test case with ceph
| YAML | apache-2.0 | rustyrobot/bareon-allocator,rustyrobot/bareon-dynamic-allocator,rustyrobot/bareon-dynamic-allocator,rustyrobot/bareon-allocator | |
aa5523a35cd86796d9884802b3f3125bcc8d3ee8 | releasenotes/notes/customized-openwrt-24312101a9c5746b.yaml | releasenotes/notes/customized-openwrt-24312101a9c5746b.yaml | ---
features:
- |
Add dnsmasq and qos support for OpenWRT VNFM mgmt driver.
fixes:
- |
Customized OpenWRT image fixs the OpenWRT-based VNFs that keep re-spawning
because Tacker cannot ping to these VNFs.
| Add reno note for OpenWRT mgmt driver and customized OpenWRT image | Add reno note for OpenWRT mgmt driver and customized OpenWRT image
Related patch sets:
https://review.openstack.org/#/c/543413
https://review.openstack.org/#/c/540310
Change-Id: I03bbed7f5614cf696475b3818497d2b1de86a3f3
| YAML | apache-2.0 | openstack/tacker,stackforge/tacker,openstack/tacker,openstack/tacker,stackforge/tacker | |
7fc71fcbe147c0393ff5afe5f5a5f36e7add4267 | ci/tasks/build-linux-go-latest.yml | ci/tasks/build-linux-go-latest.yml | ---
platform: linux
image_resource:
type: docker-image
source:
repository: bosh/agent
tag: latest
inputs:
- name: bosh-agent
path: gopath/src/github.com/cloudfoundry/bosh-agent
- name: version-semver
outputs:
- name: compiled-linux-amd64-go-latest
params:
GOARCH: amd64
GOOS: linux
run:
path: ... | Add task file to compile agent with latest golang | Add task file to compile agent with latest golang
[#159861609](https://www.pivotaltracker.com/story/show/159861609)
Co-authored-by: Difan Zhao <d4b657a67385123ddb690ebdb0d79b9c6cd38927@pivotal.io>
| YAML | apache-2.0 | mattcui/bosh-agent,gu-bin/bosh-agent,cloudfoundry/bosh-agent,gu-bin/bosh-agent,mattcui/bosh-agent,cloudfoundry/bosh-agent,gu-bin/bosh-agent,mattcui/bosh-agent | |
c323b17463c51946510c94a748e49f1ab84c2eb7 | wercker.yml | wercker.yml | box: wercker/golang
services:
- wercker/mongodb
build:
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace
# Gets the dependencies
- script:
name: go get
code: |
cd $WERCKER_SOURCE_DIR
go v... | box: wercker/golang
services:
- wercker/mongodb
- wercker/redis
build:
steps:
# Sets the go workspace and places you package
# at the right place in the workspace tree
- setup-go-workspace
# Gets the dependencies
- script:
name: go get
code: |
cd $WERCKER_SOURC... | Add missing service dependency for Wercker | Add missing service dependency for Wercker
| YAML | apache-2.0 | looplab/eventhorizon,actourex/eventhorizon |
9add8b2706d152526777f6f1cae45ef3a4ff3897 | packages/ba/base62.yaml | packages/ba/base62.yaml | homepage: https://github.com/andrewthad/base62
changelog-type: markdown
hash: 89f3533efff4054c8f697f491c05b6b6c28f8d7c18c7acbbf2ee7a87a2ae33b8
test-bench-deps:
base: ! '>=4.12.0.0 && <5'
doctest: ! '>=0.10'
wide-word: -any
byteslice: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
primitive: -... | Update from Hackage at 2019-09-27T15:04:12Z | Update from Hackage at 2019-09-27T15:04:12Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
f34afe696f7ce75ce86c598042fa186180a5bfa6 | packages/ch/church.yaml | packages/ch/church.yaml | homepage: https://github.com/exordium/church#readme
changelog-type: ''
hash: 7be113dce410dc080a70703c004ba3ad32c59ced6cb5bad38e91fe0fc4fb4357
test-bench-deps: {}
maintainer: daig@sodality.cc
synopsis: Automatically convert Generic instances to and from church representations
changelog: ''
basic-deps:
base: ^>=4.12.0.... | Update from Hackage at 2018-11-14T09:34:09Z | Update from Hackage at 2018-11-14T09:34:09Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
575aaf47b1f19182879102282952464e5786c14e | packages/la/lackey.yaml | packages/la/lackey.yaml | homepage: ''
changelog-type: markdown
hash: d0d61463639caed9423166bd66e9174ca2598012770a9922341d2a09f8566ba5
test-bench-deps:
base: -any
tasty-hspec: ! '>=1.1 && <1.2'
servant: -any
tasty: ! '>=0.10 && <0.11'
lackey: -any
maintainer: Taylor Fausak
synopsis: A library for generating Ruby consumers of Servant A... | Update from Hackage at 2015-09-09T12:38:06+0000 | Update from Hackage at 2015-09-09T12:38:06+0000
| YAML | mit | commercialhaskell/all-cabal-metadata | |
945e3ae6d96cdffbbb72ca4a078760d2dbba69d4 | packages/pa/patrol.yaml | packages/pa/patrol.yaml | homepage: ''
changelog-type: markdown
hash: 87946e89da1d51efc9f46cd70c9a90f2d3ad3de395d022d8a41840fd54a433b9
test-bench-deps: {}
maintainer: Taylor Fausak
synopsis: Sentry SDK
changelog: |
# Change log
Patrol uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The change log is available through [th... | Update from Hackage at 2021-02-16T18:23:45Z | Update from Hackage at 2021-02-16T18:23:45Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
14e22849609e072185bb5ace0fc3345d081cd111 | hiera.yaml | hiera.yaml | ---
## If you edit this file, you need to make sure that the webserver is restarted.
:backends:
- yaml
- eyaml
- module_data
:yaml:
:datadir: /etc/puppet/data
:eyaml:
:datadir: /etc/puppet/data
:gpg_gnupghome: /root/.gnupg
:gpg_always_trust: true
# The ASF specific variables below are ... | ---
## If you edit this file, you need to make sure that the webserver is restarted.
:backends:
- yaml
- eyaml
- module_data
:yaml:
:datadir: /etc/puppet/data
:eyaml:
:datadir: /etc/puppet/data
:gpg_gnupghome: /var/lib/puppet/.gnupg
:gpgpghome: /var/lib/puppet/.gnupg
:gpg_always_tru... | Fix path to gnupg in ~puppet/.gnupg | Fix path to gnupg in ~puppet/.gnupg
| YAML | apache-2.0 | sebbASF/infrastructure-puppet,bdube/infrastructure-puppet,stumped2/infrastructure-puppet,chtyim/infrastructure-puppet,bdube/infrastructure-puppet,chtyim/infrastructure-puppet,sebbASF/infrastructure-puppet,sebbASF/infrastructure-puppet,stumped2/infrastructure-puppet,chtyim/infrastructure-puppet,stumped2/infrastructure-p... |
abf6f6baa9deafecf621e78e255d5cf14f9cbb54 | meta/main.yml | meta/main.yml | # Ansible galaxy requirements file
#
# Role to setup a 2.4 ELK/EFK stack on a server (CentOS/RHEL only)
- src: https://github.com/sadsfae/ansible-elk
name: ansible-elk
version: 2.4
| Add Ansible Galaxy support for 2.4 branch. | Add Ansible Galaxy support for 2.4 branch.
Related-to: https://github.com/sadsfae/ansible-elk/issues/20
| YAML | apache-2.0 | sadsfae/ansible-elk-2.4 | |
c21816f6b8e6162b3947046cdd977ac80ae17885 | localore/.prospector.yaml | localore/.prospector.yaml | strictness: veryhigh
pylint:
disable:
- C0103
- R0903
- W0105
- W0232
pep8:
disable:
- E261
- E265
- E266
# - W602
# - W603
# enable:
# - W601
# options:
# max-line-length: 79
# TODO install prospector[with_vulture]
vulture:
run: false
| Add Prospector (static analysis tool) profile. | Add Prospector (static analysis tool) profile.
| YAML | mpl-2.0 | ghostwords/localore,ghostwords/localore,ghostwords/localore | |
ef37ec7a686f5f61325a7e6f155f8face20d2c71 | packages/hg/hgraph.yaml | packages/hg/hgraph.yaml | homepage: ''
changelog-type: markdown
hash: e138003342065a38e6d0d1e13c90c062108dd2cedf2967149c3e82132c4a5a1c
test-bench-deps:
base: '>=4.11 && <5'
clock: '>=0.7'
HUnit: '>=1.6'
containers: '>=0.5.9'
hgraph: -any
transformers: '>=0.5'
random: -any
maintainer: marcelogmillani@gmail.com
synopsis: Tools for w... | Update from Hackage at 2021-08-27T20:19:49Z | Update from Hackage at 2021-08-27T20:19:49Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
557d21a90c6c6ca01bc6795101560676c1b32a9e | appveyor.yml | appveyor.yml | environment:
matrix:
- CMAKE_GENERATOR: "Visual Studio 9 2008"
- CMAKE_GENERATOR: "Visual Studio 9 2008 Win64"
- CMAKE_GENERATOR: "Visual Studio 10 2010"
- CMAKE_GENERATOR: "Visual Studio 10 2010 Win64"
- CMAKE_GENERATOR: "Visual St... | Add initial tryout for AppVeyor CI system | ci: Add initial tryout for AppVeyor CI system
| YAML | unknown | saprykin/plibsys,saprykin/plib,saprykin/plibsys,saprykin/plibsys,saprykin/plib | |
7ce754afda2b8bc6aa6fee43b96ad081cdd99bf2 | appveyor.yml | appveyor.yml | environment:
HOME: $(HOMEDRIVE)$(HOMEPATH)
GOPATH: $(HOME)\go
PATH: $(PATH);$(GOPATH)\bin;$(HOME)\rebar;$(HOME)\gradle\bin
install:
- bundle install
build_script:
- rake build
# Prerequisites for running tests.
before_test:
- rake install
- bash --login -c "ci/install_godep.sh"
- bash --login -c "ci/... | Add an AppVeyor CI configuration file | Add an AppVeyor CI configuration file
For now this only builds and runs unit tests. Running feature tests
requires more fixes and will be added later.
Closes #174.
| YAML | mit | sschuberth/LicenseFinder,bdshroyer/LicenseFinder,joemoore/LicenseFinder,tinfoil/LicenseFinder,bdshroyer/LicenseFinder,bdshroyer/LicenseFinder,pivotal/LicenseFinder,bspeck/LicenseFinder,pivotal/LicenseFinder,sschuberth/LicenseFinder,joemoore/LicenseFinder,tinfoil/LicenseFinder,pivotal/LicenseFinder,pivotal/LicenseFinder... | |
ac9bfd9752ed06fe7b3d6531c506f5d439fc4288 | appveyor.yml | appveyor.yml | version: '{build}'
branches:
only:
- master
- /pull\/.+\/merge/
image: Visual Studio 2017
environment:
MYGET_API_KEY:
secure: 78qy8e6pKfJlQV7RAG5tJOWegzXpjASkUs3aFdVBoPYA5gi6+mWdjbuAmNa5OQPe
nuget:
disable_publish_on_pr: true
assembly_info:
patch: false
configuration:
- Release
before_buil... | version: '{build}'
branches:
only:
- master
- /pull\/.+\/merge/
image: Visual Studio 2017
environment:
MYGET_API_KEY:
secure: 78qy8e6pKfJlQV7RAG5tJOWegzXpjASkUs3aFdVBoPYA5gi6+mWdjbuAmNa5OQPe
assembly_info:
patch: false
configuration:
- Release
before_build:
- cmd: nuget sources update -Name... | Allow pull request builds in AppVeyor | Allow pull request builds in AppVeyor
| YAML | mit | Baune8D/expressioncache,baunegaard/expressioncache,Baune8D/expressioncache |
d2717a07810fdb969c1ad08e8f82cfc6bb2ed173 | data/plugin_advisories.yml | data/plugin_advisories.yml | ---
# plugin_id: # specified to Redmine::Plugin.register argument
# cve_id:
# attr_name: value
:redmine_git_hosting:
CVE-2013-4663:
name: Redmine Git Hosting Plugin
url: https://www.sec-1.com/blog/2013/redmine-git-hosting-plugin-remote-command-execution
title: Remote Command Execution
cvss_v2: 7... | Add Redmine plugin advisories database. CVE-2013-4663 was not fixed. But after 1.0.0 was affected anymore. * 0.6.3: git_http_controller.rb was renamed to smart_http_controller.rb. * 1.0.0: smart_http_controller.rb was replaced with Gitlab Grack. Vulnerability removed at 16a1cba accidentally. | Add Redmine plugin advisories database.
CVE-2013-4663 was not fixed. But after 1.0.0 was affected anymore.
* 0.6.3: git_http_controller.rb was renamed to smart_http_controller.rb.
* 1.0.0: smart_http_controller.rb was replaced with Gitlab Grack. Vulnerability removed at 16a1cba accidentally.
| YAML | mit | sho-h/redmine_audit,sho-h/redmine_audit,sho-h/redmine_audit | |
1fdc2ac6a31384358a79d59f447aa754d2274eaf | packages/di/distance.yaml | packages/di/distance.yaml | homepage: https://github.com/agrafix/distance#readme
changelog-type: ''
hash: 2080b8ecf16b8e4cec7bfcdca8fa40805f7f139dbcd09762a317b16ceeaedbbd
test-bench-deps: {}
maintainer: mail@athiemann.net
synopsis: Useful distance datatype and functions
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
- '0.1.0.0'
a... | Update from Hackage at 2017-01-07T11:55:45Z | Update from Hackage at 2017-01-07T11:55:45Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
b5311be37c611907f5904e48df11ac81c7a6ee5d | config/locales/pt-BR.yml | config/locales/pt-BR.yml | # Brazilian Portuguese strings go here for Rails i18n
pt-BR:
project_module_redmine_recurring_tasks: Tarefas Recorrentes do Redmine
plugin_description: Plugin para criar tarefas agendadas a partir do tamplate.
schedule: Cronograma
template: Template
month: Mês
week_day: Dia da semana
month_day: Dia do mê... | Add Translation Into Brazilian Portuguese | Add Translation Into Brazilian Portuguese | YAML | mit | centosadmin/redmine_recurring_tasks,centosadmin/redmine_recurring_tasks,centosadmin/redmine_recurring_tasks | |
e89b0fef8509cea185cbb2165309ec285052f885 | .github/workflows/delivery.yml | .github/workflows/delivery.yml | name: delivery
on: [push, pull_request]
jobs:
delivery:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@master
- name: Run Chef Delivery
uses: actionshub/chef-delivery@master
env:
CHEF_LICENSE: accept-no-persist | Add testing with Github Actions | Add testing with Github Actions
Just the delivery local mode bit for now.
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/homebrew,opscode-cookbooks/homebrew,Brantone/homebrew | |
adc643fcef39c2e711124a14cbe10e4fb761ea4e | .github/workflows/kamailio.yml | .github/workflows/kamailio.yml | # This is a basic workflow to help you get started with Actions
name: Alice->Kamailio->Bob
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run ... | Add Kamailio to the party. | Add Kamailio to the party.
| YAML | bsd-2-clause | sippy/voiptests,sippy/voiptests | |
3c7940877a1595bfbf9b9ddd2e57091bc7dc86cb | packages/mu/mu-avro.yaml | packages/mu/mu-avro.yaml | homepage: https://higherkindness.io/mu-haskell/
changelog-type: ''
hash: f1da48b2e0b4a557b34a5bd7ceb7d6532e5514594b58d1e04801b8bdb3f391cc
test-bench-deps: {}
maintainer: alejandro.serrano@47deg.com
synopsis: Avro serialization support for Mu microservices
changelog: ''
basic-deps:
mu-schema: -any
bytestring: -any
... | Update from Hackage at 2020-01-13T10:06:50Z | Update from Hackage at 2020-01-13T10:06:50Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
081aed1eab2ff31c09ef3525ceeb1c5f84378939 | rules/st2_docs_v20.yaml | rules/st2_docs_v20.yaml | ---
name: "st2_docs_v20"
pack: "st2cd"
description: "Build st2 docs for StackStorm v2.0"
enabled: true
trigger:
type: "githubwebhook.github_event"
criteria:
trigger.body.ref:
pattern: "refs/heads/v2.0"
type: "equals"
trigger.body.repository.full_na... | Add a rule for v2.0 st2docs | Add a rule for v2.0 st2docs
| YAML | apache-2.0 | StackStorm/st2cd,StackStorm/st2cd | |
c47c6b20775da449885dcb50994dc8782dcb6f8c | dart-stream/pubspec.yaml | dart-stream/pubspec.yaml | name: DartStreamBenchmark
description: A benchmark for Stream, a lightweight Dart web server
dependencies:
args: 0.6.21+3
crypto: 0.6.21+3
mongo_dart: 0.1.27
postgresql: 0.2.8
stream: 0.8.3+3
yaml: 0.6.21+3
| name: DartStreamBenchmark
description: A benchmark for Stream, a lightweight Dart web server
dependencies:
args: 0.8.1
crypto: 0.8.1
mongo_dart: 0.1.30
postgresql: 0.2.8
stream: 0.8.4
yaml: 0.8.1
| Update dependencies to fix mongo_dart. | Update dependencies to fix mongo_dart.
| YAML | bsd-3-clause | Jesterovskiy/FrameworkBenchmarks,steveklabnik/FrameworkBenchmarks,zloster/FrameworkBenchmarks,RockinRoel/FrameworkBenchmarks,ashawnbandy-te-tfb/FrameworkBenchmarks,zdanek/FrameworkBenchmarks,zane-techempower/FrameworkBenchmarks,jebbstewart/FrameworkBenchmarks,denkab/FrameworkBenchmarks,youprofit/FrameworkBenchmarks,zhu... |
116087b5ce8fc74b3e1e534d7fed2209a96b1fd0 | .github/workflows/build.yml | .github/workflows/build.yml | name: Build
on:
push:
branches:
- master
tags:
- v*
pull_request:
jobs:
authbox-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [2.7, 3.6, 3.7]
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/... | Enable github actions for continuous testing | Enable github actions for continuous testing
| YAML | apache-2.0 | google/makerspace-auth,thatch/makerspace-auth,thatch/makerspace-auth,google/makerspace-auth | |
709214d15f1e22d11bb4878e9d7eb4c5cf3e9acf | .github/workflows/maven.yml | .github/workflows/maven.yml | name: Java CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test on JDK ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-j... | Add github actions build to replace travis | Add github actions build to replace travis | YAML | apache-2.0 | nla/tinycdxserver,nla/outbackcdx,nla/outbackcdx,nla/tinycdxserver,nla/outbackcdx,nla/tinycdxserver,nla/outbackcdx,nla/tinycdxserver | |
9c9e41163d55e02129460b49790d674fc443496c | recipes/sithom/meta.yaml | recipes/sithom/meta.yaml | {% set name = "sithom" %}
{% set version = "0.0.2" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: e256e0afa95184a548e346405248ab5abc948b35f490f239591787389b07d09c
build:
number: 0
... | Add sithom - general utilities package. | Add sithom - general utilities package.
Package has integrated unit tests. | YAML | bsd-3-clause | conda-forge/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes | |
defc01042fa450dbe4d1da2d4b675fd8fedc2fe8 | releasenotes/notes/bp-barbican-secret-deletion-support-40cffa5ffa33447e.yaml | releasenotes/notes/bp-barbican-secret-deletion-support-40cffa5ffa33447e.yaml | ---
features:
- |
To support the Block Storage service (Cinder) upload-volume-to-image action
when the volume is an encrypted volume type, when such an image is deleted,
Glance will now contact the OpenStack Key Management service (Barbican) and
request it to delete the associated encryption key. Two ... | Add release notes for secret key deletion | Add release notes for secret key deletion
Change-Id: Ie7961ed0fab4af0208a9add0bf06a08cc12d0b4d
Implements: blueprint barbican-secret-deletion-support
| YAML | apache-2.0 | openstack/glance,openstack/glance,openstack/glance | |
8c791358cd8cacaaad41d58a715d791b498bc418 | packages/pa/partial-semigroup.yaml | packages/pa/partial-semigroup.yaml | homepage: https://github.com/chris-martin/partial-semigroup#readme
changelog-type: ''
hash: 568fc88366c12d665cae65086a675c7b72e3c776aa39c39a080113654bb405dc
test-bench-deps:
base: ==4.9.*
hedgehog: ! '>=0.5 && <0.6'
doctest: ! '>=0.11 && <0.14'
partial-semigroup-test: -any
partial-semigroup: -any
maintainer: ... | Update from Hackage at 2017-10-16T08:08:15Z | Update from Hackage at 2017-10-16T08:08:15Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
2c7650ec562ab8655a31e3b558d152be9d1a771d | .github/workflows/publish-release.yml | .github/workflows/publish-release.yml | name: Publish Tags on PyPi when GitHub creates a release
on:
push:
tags:
- 'v**'
jobs:
publish:
runs-on: ubuntu-latest
fail-fast: false
python-version: 3.9
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
... | Add auto publish to pypi when pushing a new tag. | Add auto publish to pypi when pushing a new tag.
| YAML | isc | requests/requests-oauthlib | |
fc0b04e28b764718b9ea7724f43c1aed6b2d45b4 | packages/sc/scuttlebutt-types.yaml | packages/sc/scuttlebutt-types.yaml | homepage: ''
changelog-type: text
hash: bc40be43417ed39a8e90d5044a8b8e370bf36571b68f813334eb04eb2326fb9c
test-bench-deps:
bytestring: -any
base: -any
scuttlebutt-types: -any
hspec: -any
aeson: -any
maintainer: Joey Hess <id@joeyh.name>
synopsis: generic types for Secure Scuttlebutt
changelog: ! "scuttlebutt-t... | Update from Hackage at 2017-10-05T18:17:37Z | Update from Hackage at 2017-10-05T18:17:37Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
224235d40f30f3f854ecca98905d210d3be20b58 | packages/ty/typed-spreadsheet.yaml | packages/ty/typed-spreadsheet.yaml | homepage: ''
changelog-type: ''
hash: b0e039500ea3629120c9511fe493725252e6c185d108c38c0ab9c4f8d11bccda
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Typed and composable spreadsheets
changelog: ''
basic-deps:
typed-spreadsheet: -any
stm: <2.5
base: ==4.*
text: <1.3
gtk3: ! '>=0.14.0 && <0.15'... | Update from Hackage at 2015-11-11T05:16:45+0000 | Update from Hackage at 2015-11-11T05:16:45+0000
| YAML | mit | commercialhaskell/all-cabal-metadata | |
c681024e19dbad447a0a454b0cf2a2d2fc95936f | packages/po/polysemy-methodology-composite.yaml | packages/po/polysemy-methodology-composite.yaml | homepage: ''
changelog-type: markdown
hash: 3bc59550574ae74ad715a425dba8180bfd9c4356b5e70df57382236c6df1bb3a
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Functions for using polysemy-methodology with composite.
changelog: |
# Changelog for polysemy-composite
## v0.1.1.0
* Add `runInputCase... | Update from Hackage at 2020-11-13T16:45:09Z | Update from Hackage at 2020-11-13T16:45:09Z
| YAML | mit | commercialhaskell/all-cabal-metadata | |
5413459706f46095de187664f2875dbc4d4ca3b4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.6
- 2.3.2
branches:
only:
- "master"
env:
global:
-
RUBY_GC_MALLOC_LIMIT=4000000
RUBY_GC_MALLOC_LIMIT_MAX=16000000
RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR=1.1
RUBY_GC_OLDMALLOC_LIMIT=16000000
RUBY_GC_OLDMALLOC_LIMIT_MAX=16000000
before_install: gem inst... | language: ruby
rvm:
- 2.2.6
- 2.3.2
branches:
only:
- "master"
env:
global:
-
RUBY_GC_MALLOC_LIMIT=4000000
RUBY_GC_MALLOC_LIMIT_MAX=16000000
RUBY_GC_MALLOC_LIMIT_GROWTH_FACTOR=1.1
RUBY_GC_OLDMALLOC_LIMIT=16000000
RUBY_GC_OLDMALLOC_LIMIT_MAX=16000000
before_install: gem inst... | Add Ruby 2.4 rc 1 | Add Ruby 2.4 rc 1
| YAML | mit | nanoc/nanoc,RubenVerborgh/nanoc |
624f4629467ae4a3bf468ad31efba122a1d003ca | .travis.yml | .travis.yml | language: python
python: 3.5
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
- TOXENV=pypy3
- TOXENV=pep8
install:
- pip install tox
script:
- tox -e $TOXENV
| Set up configuration for Travis CI. | Set up configuration for Travis CI.
| YAML | bsd-3-clause | faassen/importscan | |
ffc6bc6f9fd86c91fbda7dcfdbd98a6f644a00ef | .travis.yml | .travis.yml | language: python
python:
- '2.7'
virtualenv:
system_site_packages: true
before_install:
- sudo add-apt-repository ppa:pylab/stable -y
- sudo apt-get update -q
- sudo apt-get install -qq libopenblas-dev liblapack-dev gfortran # install these first
- sudo apt-get install -qq python-numpy python-scipy
script: ... | Add test rig for Travis | Add test rig for Travis
| YAML | mit | mattloper/chumpy | |
310582fd2d3f3e25d28b2436fd26bd6ad7e4b26e | .travis.yml | .travis.yml | # http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
language: python
python:
# - "2.5"
- "2.6"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt
install:
- pip install -r .travis.requirements.txt --use-mirrors
- pip install p... | # http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
sudo: false
language: python
python:
# - "2.5"
- "2.6"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt
install:
- pip install -r .travis.requirements.txt
- pip install pep8==1.4.6
# ... | Revert "Be nice and use mirrors" | Revert "Be nice and use mirrors"
This reverts commit 64bb87b164025a73069d8d5d5b3d738bf4eb3beb.
| YAML | mit | gg7/diamond,Slach/Diamond,ramjothikumar/Diamond,skbkontur/Diamond,Ormod/Diamond,dcsquared13/Diamond,Netuitive/Diamond,TAKEALOT/Diamond,Ormod/Diamond,bmhatfield/Diamond,Clever/Diamond,skbkontur/Diamond,zoidbergwill/Diamond,tuenti/Diamond,russss/Diamond,szibis/Diamond,mzupan/Diamond,stuartbfox/Diamond,tuenti/Diamond,gg7/... |
80f5a83364927a17bcf925260ba3e8bad706d2fb | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
env:
- DATABASE_ADAPTER=sqlite3
- DATABASE_ADAPTER=postgresql
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
gemfile:
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
| language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
env:
- DATABASE_ADAPTER=sqlite3
- DATABASE_ADAPTER=postgresql
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
gemfile:
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
matrix:
allow_failures:
- gemfile: gemfiles/5.0.gemfile
| Allow failure of Rails 5.0 builds during v4.0 development | Allow failure of Rails 5.0 builds during v4.0 development
| YAML | mit | thoughtbot/shoulda-matchers,biow0lf/shoulda-matchers,reacuna/shoulda-matchers,guialbuk/shoulda-matchers,thoughtbot/shoulda-matchers,thoughtbot/shoulda-matchers,biow0lf/shoulda-matchers,thoughtbot/shoulda-matchers,biow0lf/shoulda-matchers,reacuna/shoulda-matchers,biow0lf/shoulda-matchers,guialbuk/shoulda-matchers,reacun... |
482d78436724b92a6cab25bc81ab316e546c65b8 | .travis.yml | .travis.yml | language: java
install: mvn install
deploy:
edge: true
provider: cloudfoundry
username: terentich@bk.ru
password: secure: "test"
api: https://api.run.pivotal.io
organization: terentich-org
space: development | Create the TravisCI configuration file. | Create the TravisCI configuration file.
| YAML | apache-2.0 | Terentich/spring-boot-hello,Terentich/spring-boot-hello,Terentich/spring-boot-hello,Terentich/spring-boot-hello | |
681c95ed304644bbf75a838b3cca84e86ffaab4b | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.3"
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
# uncomment this line if your project needs to run something other than `rake`:
# # script: bundle exec rspec spec
| Add Travis CI to github project | Add Travis CI to github project
| YAML | mit | PikachuEXE/activerecord-like,ReneB/activerecord-like | |
425d9989233f98852619317ee2f74b93823d24f5 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.4
- 0.6
before_script:
- ln -s ../ node_modules/cli-color
notifications:
email:
- medikoo+cli-color@medikoo.com
| language: node_js
node_js:
- 0.6
before_script:
- ln -s ../ node_modules/cli-color
notifications:
email:
- medikoo+cli-color@medikoo.com
| Test only v0.6 branch of Node | Test only v0.6 branch of Node
| YAML | isc | medikoo/cli-color,ralphtheninja/cli-color |
5259561ee124e99e259a25d9de0b7cee5469ef4d | .travis.yml | .travis.yml | language: cpp
# enabling multi platform build (under travis beta)
# requires emailing support@travis-ci.com for this to be enabled for our repo
# http://docs.travis-ci.com/user/multi-os/
matrix:
include:
- os: osx
env: PLATFORM=osx
compiler: clang
- os: osx
env: PLATFO... | language: cpp
# enabling multi platform build (under travis beta)
# requires emailing support@travis-ci.com for this to be enabled for our repo
# http://docs.travis-ci.com/user/multi-os/
matrix:
include:
- os: osx
env: PLATFORM=osx
compiler: clang
- os: osx
env: PLATFO... | Use clang instead of gcc on linux (for C++11) | Use clang instead of gcc on linux (for C++11)
| YAML | mit | xvilan/tangram-es,cleeus/tangram-es,quitejonny/tangram-es,cleeus/tangram-es,cleeus/tangram-es,hjanetzek/tangram-es,tangrams/tangram-es,xvilan/tangram-es,quitejonny/tangram-es,quitejonny/tangram-es,cleeus/tangram-es,hjanetzek/tangram-es,quitejonny/tangram-es,tangrams/tangram-es,quitejonny/tangram-es,cleeus/tangram-es,ta... |
1bfb622caf05d522c27d26cde9bf5ac3b3783275 | metadata/com.jarsilio.android.autoautorotate.yml | metadata/com.jarsilio.android.autoautorotate.yml | Categories:
- System
License: GPL-3.0-only
SourceCode: https://gitlab.com/juanitobananas/auto-auto-rotate
IssueTracker: https://gitlab.com/juanitobananas/auto-auto-rotate/issues
AutoName: Auto Auto-Rotate
RepoType: git
Repo: https://gitlab.com/juanitobananas/auto-auto-rotate
Builds:
- versionName: '0.2'
vers... | Add Auto Auto-Rotate v0.2 (2) | Add Auto Auto-Rotate v0.2 (2)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata | |
fc4bfdf3a60de3411b255f3d4921ba0e3e77a381 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
- "touch README"
- "pip install . --use-mirrors"
- "pip install -r test-requirements.txt --use-mirrors"
script: nosetests test
notifications:
email: false
| Add support for Travis CI | Add support for Travis CI
| YAML | bsd-2-clause | mwilliamson/funk | |
2b3404629624e3c76c2e67a45d6aa02b92dc133a | model1.yml | model1.yml | scene:
- meta:
- version: 1
- hero:
- name: Kapyr
- hp: 100
- equipment:
- weapon:
- type: sword
- inventory:
- item:
- name: bread
- item:
- name: dagger
- item:
- name: map
- item:
- name: gem bag
- content:
... | Add a model for testing | Add a model for testing
| YAML | mit | sublazy/yaml2gsl | |
25d51119db71f8939cbc3881a0add9d31b6c164f | .travis.yml | .travis.yml | ---
language: python
python: "2.7"
before_install:
- sudo apt-get update --assume-yes -qq
- sudo apt-get install --assume-yes -qq python-apt python-pycurl
install:
- sudo pip install ansible
script:
- ansible --version
- ansible-playbook --inventory-file tests/hosts --syntax-check tests/playbook.yml
- ansib... | Allow github to perform integration testing | Allow github to perform integration testing
| YAML | apache-2.0 | silpion/ansible-silpion | |
7e131c85364a2b8f3e9365e6c88ffb65447bdd65 | hiera/data/env/staging.yaml | hiera/data/env/staging.yaml | rjil::db::bind_address: "%{ipaddress_eth2}"
keystone::admin_bind_host: "%{ipaddress_eth2}"
keystone::public_bind_host: "%{ipaddress_eth2}"
glance::bind_host: "%{ipaddress_eth2}"
#glance::registry::bind_host: "%{ipaddress_eth0}"
rjil::jiocloud::etcd::addr: "%{ipaddress_eth2}:4001"
rjil::jiocloud::etcd::peer_addr: "%{... | rjil::db::bind_address: "%{ipaddress_eth2}"
keystone::admin_bind_host: "%{ipaddress_eth2}"
keystone::public_bind_host: "%{ipaddress_eth2}"
glance::bind_host: "%{ipaddress_eth2}"
#glance::registry::bind_host: "%{ipaddress_eth0}"
rjil::jiocloud::etcd::addr: "%{ipaddress_eth2}:4001"
rjil::jiocloud::etcd::peer_addr: "%{... | Make mkfs.xfs work by growing the loopback device | Make mkfs.xfs work by growing the loopback device
| YAML | apache-2.0 | rohit-k/puppet-rjil,anshprat/puppet-rjil,bafna/try-dss,swamireddy/puppet-rjil,rakeshmi/puppet-rjil,saneax/puppet-rjil,ajayaa/puppet-rjil,bafna/puppet-rjil,roopali8/puppet-rjil,rohit-k/puppet-rjil,sajuptpm/puppet-rjil-1,jiocloudDSS/puppet-dss,rahul1aggarwal/puppet-rjil,hkumarmk/puppet-rjil,sorenh/puppet-rjil,bafna/puppe... |
f49b7d26d53390b1402c3f020b98135e80f82c8b | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
install: travis_retry composer install --no-interaction --prefer-dist
script: vendor/bin/phpunit --verbose
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
install: travis_retry composer install --no-interaction --prefer-dist
script: vendor/bin/phpunit --verbose
| Test on php 7.1 too | Test on php 7.1 too | YAML | mit | laravel/socialite,lucasmichot/socialite |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.