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 |
|---|---|---|---|---|---|---|---|---|---|
41f0d381760c6dbc0cf0d8d606e634026b3c691b | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: cypress/base:8
environment:
## this enables colors in the output
TERM: xterm
working_directory: ~/app
steps:
- checkout
- restore_cache:
keys:
- v1-deps-{{ .Branch }}-{{ checksum "package.json" }}... | version: 2
jobs:
javascript:
docker:
- image: circleci/node:lts
working_directory: ~/eslint-plugin-import-groups
steps:
- yarn lint
- yarn build:analyze
- persist_to_workspace:
root: .
paths: .
test_cypress:
docker:
- image: cypress/base:8
e... | Move all test runs to the circleci worflows | [WIP] Move all test runs to the circleci worflows
| YAML | mit | mbrookes/material-ui,callemall/material-ui,dmtrKovalenko/material-ui-pickers,rscnt/material-ui,mbrookes/material-ui,mui-org/material-ui,mui-org/material-ui,oliviertassinari/material-ui,rscnt/material-ui,mbrookes/material-ui,rscnt/material-ui,callemall/material-ui,callemall/material-ui,oliviertassinari/material-ui,dmtrK... |
7243be6c4a7d6eb9fd5eb296f5b53c5fc3aac42e | .circleci/config.yml | .circleci/config.yml | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
general:
branches:
ignore:
- gh-pages
workflows:
version: 2
test_build:
jobs:
- build
- test
jobs:
build:
docker:
- image: circleci/nod... | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
general:
branches:
ignore:
- gh-pages
workflows:
version: 2
test_build:
jobs:
- build
- test
jobs:
build:
docker:
- image: circleci/nod... | Use /tmp/swift_test for bouncestorage image | Use /tmp/swift_test for bouncestorage image
| YAML | mit | Tezirg/os2 |
a01e52a4df0cf87033b904dcbdb9d65413d5f957 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build-publish:
machine:
image: ubuntu-1604:201903-01
steps:
- checkout
- run:
name: Build, test, tag, publish docker image on Dockerhub
command: ./build_test_publish.sh
deploy-to-beta:
docker:
- image: cyberdojo/gcloud-kubectl-helm
steps:... | version: 2
jobs:
build-publish:
machine:
image: ubuntu-1604:201903-01
steps:
- checkout
- run:
name: Build, test, tag, publish docker image on Dockerhub
command: |
pwd
ls -al
./build_test_publish.sh
deploy-to-beta:
docker:
... | Add debug commands for CI run | Add debug commands for CI run
| YAML | bsd-2-clause | cyber-dojo/web,cyber-dojo/web,cyber-dojo/web,cyber-dojo/web |
7e9a916396949ffd23ce1d083b8765857c701709 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
py26:
macos:
# macOS 10.12, last version with Python 2.6
xcode: 9.0.1
steps:
- checkout
- run: /usr/bin/python2.6 run.py deps
- run: /usr/bin/python2.6 run.py ci
pypy:
macos:
# macOS 10.14.4
xcode: 10.3.0
steps:
- checkout
- rest... | version: 2
jobs:
py26:
macos:
# macOS 10.12, last version with Python 2.6
xcode: 9.0.1
steps:
- checkout
- run: /usr/bin/python2.6 run.py deps
- run: /usr/bin/python2.6 run.py ci
pypy:
macos:
# macOS 10.14.4
xcode: 10.3.0
steps:
- checkout
- rest... | Fix CircleCI caching YAML formatting | Fix CircleCI caching YAML formatting
| YAML | mit | wbond/oscrypto |
4f0e6f5670941d1595cce88f860e152bf3d8a05c | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
python_build_and_test:
docker:
- image: circleci/python:3.6
environment:
AWS_ACCESS_KEY_ID: placeholder
AWS_SECRET_ACCESS_KEY: placeholder
AWS_DEFAULT_REGION: us-east-1
- image: cnadiminti/dynamodb-local
steps:
- checkout
- run: ma... | version: 2
jobs:
python_build_and_test:
docker:
- image: circleci/python:3.6
environment:
AWS_ACCESS_KEY_ID: placeholder
AWS_SECRET_ACCESS_KEY: placeholder
AWS_DEFAULT_REGION: us-east-1
- image: cnadiminti/dynamodb-local
steps:
- checkout
- run: ma... | Add nodesetup dependency to javascript testing | Add nodesetup dependency to javascript testing
| YAML | agpl-3.0 | NoteGio/openrelay,NoteGio/openrelay,NoteGio/openrelay,NoteGio/openrelay |
efb1b853575b4dc95cfe584e8182419964ff7faa | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk
working_directory: ~/repo
steps:
- checkout
- add_ssh_keys:
fingerprints:
- "69:c9:8f:8d:69:8a:f3:20:ef:65:14:59:6a:0c:c5:f1"
- run:
name: Build war file
command: mvn clean... | version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk
working_directory: ~/repo
steps:
- checkout
- add_ssh_keys:
fingerprints:
- "de:20:51:fb:e5:c6:eb:62:56:9a:f0:f3:43:01:09:94"
- run:
name: Build war file
command: mvn clean... | Replace SSH key in CircleCI | Replace SSH key in CircleCI
| YAML | mit | Vovas11/courses,Vovas11/courses,Vovas11/courses |
e06c1084421c55e89d334dacf0127d634fc94d3d | roles/ceph-agent/meta/main.yml | roles/ceph-agent/meta/main.yml | ---
galaxy_info:
author: Alfredo Deza
description: Installs Ceph Storage Agent
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
categories:
- system
dependencies: []
| ---
galaxy_info:
author: Alfredo Deza
description: Installs Ceph Storage Agent
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
- name: opensuse
versions:
- 42.3
categories:
- system
depen... | Add support for the openSUSE Leap distributions | ceph-agent: Add support for the openSUSE Leap distributions
Add support for the openSUSE Leap distributions.
Signed-off-by: Markos Chandras <33d8b43ece1558bd62b361ce5e954c5d9a97a7a2@suse.de>
| YAML | apache-2.0 | travmi/ceph-ansible,font/ceph-ansible,ceph/ceph-ansible,ceph/ceph-ansible,fgal/ceph-ansible,font/ceph-ansible,travmi/ceph-ansible,fgal/ceph-ansible |
6a5c85e60df6c62d8d36fcd7270bfdabdf4464f7 | roles/common/defaults/main.yml | roles/common/defaults/main.yml | common:
java_version: 8u162
java_home: "/usr/java/jdk1.8.0_162"
java_download: "http://download.oracle.com/otn-pub/java/jdk/8u162-b12/0da788060d494f5095bf8624735fa2f1/jdk-8u162-linux-x64.rpm"
java_jce_download: "http://download.oracle.com/otn-pub/java/jce/8/jce_policy-8.zip"
| common:
java_version: 8u172
java_home: "/usr/java/jdk1.8.0_172"
java_download: "http://download.oracle.com/otn-pub/java/jdk/8u172-b11/a58eab1ec242421181065cdc37240b08/jdk-8u172-linux-x64.rpm"
java_jce_download: "http://download.oracle.com/otn-pub/java/jce/8/jce_policy-8.zip"
| Update to Java SDK 1.8.0_172 | Update to Java SDK 1.8.0_172
| YAML | apache-2.0 | lresende/spark-cluster-install |
97202951b8c0174e71a8cc41fe0cb95312894389 | roles/workshop/tasks/main.yaml | roles/workshop/tasks/main.yaml | - name: Create the workshop folder
file:
path: "{{ BASE }}/workshop"
state: directory
mode: 0755
- name: Clone all workshop git repos from github
become: true
become_user: stack
git:
repo: "https://github.com/{{ item }}"
dest: "{{ BASE }}/workshop/{{ item | basename }}"
with_items:
- af... | - name: Create the workshop folder
file:
path: "{{ BASE }}/workshop"
state: directory
mode: 0755
- name: Clone all workshop git repos from github
become: true
become_user: stack
git:
repo: "https://github.com/{{ item }}"
dest: "{{ BASE }}/workshop/{{ item | basename }}"
with_items:
- af... | Add a file to identify a clean image | Add a file to identify a clean image
| YAML | apache-2.0 | afrittoli/cross_service_tempest_plugins,afrittoli/cross_service_tempest_plugins |
60a03820834a3f5780385da9c493816f7a7b5a98 | packages/al/alex-prelude.yaml | packages/al/alex-prelude.yaml | homepage: https://www.asayers.com/
changelog-type: markdown
hash: 7b97416069022bed4b53decb8a22443ccf8c12e3bb9fbe9d4245b0876aeb6a32
test-bench-deps: {}
maintainer: alex.sayers@protonmail.com
synopsis: Collection of useful functions for writing console applications
changelog: ! '# Revision history for alex-prelude
##... | homepage: https://www.asayers.com/
changelog-type: markdown
hash: a78f26c51336455795214241a540088cf39dd67b0041f5e570e508a43bdd2b7d
test-bench-deps: {}
maintainer: alex.sayers@protonmail.com
synopsis: Collection of useful functions for writing console applications
changelog: ! '# Revision history for alex-prelude
##... | Update from Hackage at 2017-09-12T18:09:51Z | Update from Hackage at 2017-09-12T18:09:51Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
b30ef17bddb3845d3e3d2729e52a7a7a72ecbaa0 | _data/navigation.yml | _data/navigation.yml | # Site navigation links
#- title: Home
# url: /
- title: About me
url: /about/
- title: Projects and Portfolio
url: /projects/
- title: Blog
url: /blog/
- title: Github
url: http://github.com/LCHansson
| # Site navigation links
#- title: Home
# url: /
- title: About me
url: /about/
- title: Projects and Portfolio
url: /projects/
- title: Blog
url: /blog/
- title: Find me on Github
url: http://github.com/LCHansson
| Expand Github navbar link text | Expand Github navbar link text
| YAML | mit | LCHansson/LCHansson.github.io,LCHansson/LCHansson.github.io,LCHansson/LCHansson.github.io,LCHansson/LCHansson.github.io,LCHansson/LCHansson.github.io |
969076d3ceabb38a113089fb2632a5c55e2f4087 | default.config.yml | default.config.yml | ---
downloads: ~/.ansible-downloads/
homebrew_install_script: "{{ downloads }}/homebrew_install"
homebrew_install_path: /usr/local/bin
homebrew_packages:
- autoconf
- gcc
- gettext
- git
- go
- grep
- htop
- jq
- mysql
- node
- nvm
- python3
- readline
- wget
homebrew_cask_appdir: /Applications
homebrew_cask_apps:
-... | ---
downloads: ~/.ansible-downloads/
homebrew_install_script: "{{ downloads }}/homebrew_install"
homebrew_install_path: /usr/local/bin
homebrew_packages:
- autoconf
- gcc
- gettext
- git
- go
- grep
- htop
- jq
- mysql
- node
- nvm
- python3
- readline
- wget
homebrew_cask_appdir: /Applications
homebrew_cask_apps:
-... | Add more homebrew cask apps | Add more homebrew cask apps
| YAML | mit | brileb73/dotfiles |
c268638de9c99172bcb298f35d2ee3d76d6c3260 | defaults/main.yaml | defaults/main.yaml | ---
# vim: set ft=ansible:
ntp_timezone: Europe/Moscow
ntp_servers:
- 0.ru.pool.ntp.org
- 1.ru.pool.ntp.org
- 2.ru.pool.ntp.org
- 3.ru.pool.ntp.org
ntp_fallback_servers:
- 0.pool.ntp.org
- 1.pool.ntp.org
- 2.pool.ntp.org
- 3.pool.ntp.org
dotfiles_link: git@github.com:9seconds/dotfiles.git
pyenv_pythons:
- 2.6.9
-... | ---
# vim: set ft=ansible:
ntp_timezone: Europe/Moscow
ntp_servers:
- 0.ru.pool.ntp.org
- 1.ru.pool.ntp.org
- 2.ru.pool.ntp.org
- 3.ru.pool.ntp.org
ntp_fallback_servers:
- 0.pool.ntp.org
- 1.pool.ntp.org
- 2.pool.ntp.org
- 3.pool.ntp.org
dotfiles_link: git@github.com:9seconds/dotfiles.git
pyenv_pythons:
- 2.6.9
-... | Update base python3 to 3.6.2 | Update base python3 to 3.6.2
| YAML | mit | 9seconds/ansible-devbox |
b31fd189e6225a6ea83cd949c999ec6c0b8c2309 | _data/navigation.yml | _data/navigation.yml | # Site navigation links
- title: Research
url: /research/
- title: Projects
url: /projects/
- title: CV
url: /cv/
- title: About
url: /about/
excerpt: Learn more about Jason
image:
| # Site navigation links
- title: Research
url: /research/
- title: Projects
url: /projects/
- title: CV
url: /cv/
- title: About
url: /about/
excerpt:
image:
| Remove about part in bar | Remove about part in bar
| YAML | mit | jasonpchang/jasonpchang.github.io,jasonpchang/jasonpchang.github.io,jasonpchang/jasonpchang.github.io |
3ce7fc324560c33dcd9728bcc98f08dcc8c4d7c3 | _data/navigation.yml | _data/navigation.yml | - title: home
url: /
- title: about
url: /me
- title: contact
url: mailto:rodney@tattdcodemonkey.com
- title: github
url: https://github.com/tattdcodemonkey
- title: twitter
url: https://twitter.com/tattdcodemonkey
| - title: home
url: /
- title: about
url: /me
- title: contact
url: mailto:website@rodneynorris.com
- title: github
url: https://github.com/tattdcodemonkey
- title: twitter
url: https://twitter.com/tattdcodemonkey
| Change email to generic forwarded address | Change email to generic forwarded address
| YAML | mit | TattdCodeMonkey/TattdCodeMonkey.github.io,TattdCodeMonkey/TattdCodeMonkey.github.io |
6a53a3bae810da016f6097d37cb4fa10dacf0cb3 | docker/docker-compose.yml | docker/docker-compose.yml | version: '2'
services:
wrapper:
build:
context: ..
dockerfile: docker/Dockerfile
image: mapotempo/optimizer-api:latest
volumes:
- ./production.rb:/srv/app/config/environments/production.rb
ports:
- 80:80
links:
- redis-cache
resque-small:
build:
context: ... | version: '2'
services:
wrapper:
build:
context: ..
dockerfile: docker/Dockerfile
image: mapotempo/optimizer-api:latest
ports:
- "80:80"
volumes:
- ./production.rb:/srv/app/config/environments/production.rb
links:
- redis-cache
resque-small:
build:
context... | Move ports configuration before volumes, fix quoting. | Move ports configuration before volumes, fix quoting.
| YAML | agpl-3.0 | Mapotempo/optimizer-api,Mapotempo/optimizer-api,Mapotempo/optimizer-api,Mapotempo/optimizer-api |
86f47d1c00dc8dc375d8a2cb94e6d16846adbbc9 | doghouse/appengine/handlers.yaml | doghouse/appengine/handlers.yaml | handlers:
- url: /secret/*
secure: always
script: auto
- url: /static
static_dir: static
- url: /.*
script: auto
- url: /_ah/warmup
script: auto
login: admin
| handlers:
- url: /secret/*
secure: always
script: auto
- url: /static
static_dir: static
- url: /.*
script: auto
- url: /_ah/warmup
script: auto
| Remove loginc from /_ah/warmup as go112 doesn't support it | Remove loginc from /_ah/warmup as go112 doesn't support it
| YAML | mit | haya14busa/reviewdog,haya14busa/reviewdog,haya14busa/reviewdog |
54cc1468a3d8f84ec710914c4aaf793a64cda0ac | projects/jsoncpp/project.yaml | projects/jsoncpp/project.yaml | homepage: "https://github.com/open-source-parsers/jsoncpp/"
primary_contact: "cdunn2001@gmail.com"
sanitizers:
- address
- undefined
- memory
| homepage: "https://github.com/open-source-parsers/jsoncpp/"
primary_contact: "cdunn2001@gmail.com"
auto_ccs:
- "jophba@chromium.org"
sanitizers:
- address
- undefined
- memory
| Add Jordan Bayles to jsoncpp autoccs | Add Jordan Bayles to jsoncpp autoccs | YAML | apache-2.0 | googlefonts/oss-fuzz,skia-dev/oss-fuzz,robertswiecki/oss-fuzz,skia-dev/oss-fuzz,skia-dev/oss-fuzz,googlefonts/oss-fuzz,google/oss-fuzz,robertswiecki/oss-fuzz,google/oss-fuzz,robertswiecki/oss-fuzz,google/oss-fuzz,google/oss-fuzz,robertswiecki/oss-fuzz,googlefonts/oss-fuzz,skia-dev/oss-fuzz,googlefonts/oss-fuzz,robertsw... |
f399068fd8c7f2f490d2f92b34724fdbb5362616 | packages/gl/glue.yaml | packages/gl/glue.yaml | homepage: ''
changelog-type: ''
hash: 3f2de25af4162153abf63957724395182cea035615b2be0361b98439d52c83c9
test-bench-deps:
ekg-core: -any
base: ==4.*
time: -any
unordered-containers: -any
hspec: -any
text: -any
monad-control: -any
async: -any
lifted-base: -any
quickcheck-instances: -any
hashable: -an... | homepage: ''
changelog-type: ''
hash: 9fc58ca0c5694973fd61aa9681e9c1c554869d997da02061119c22e8db70d0a9
test-bench-deps:
ekg-core: -any
base: ==4.*
time: -any
unordered-containers: -any
hspec: -any
text: -any
monad-control: -any
async: -any
lifted-base: -any
quickcheck-instances: -any
hashable: -an... | Update from Hackage at 2015-06-26T15:40:47+0000 | Update from Hackage at 2015-06-26T15:40:47+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
5212b1f55db619f3e551b71c73ec4b042926a45b | packages/ha/hahp.yaml | packages/ha/hahp.yaml | homepage: ''
changelog-type: ''
hash: 4217a8e6390bdfa08a9df2ce474efb167f1e5da0a8524e2a37148e231b9b1f2c
test-bench-deps: {}
maintainer: yves+hackage@dubronetwork.fr, jean-pierre+git@prunetwork.fr
synopsis: Analytic Hierarchy Process
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: -any
hahp: -any
containers... | homepage: ''
changelog-type: ''
hash: 7a2535335fe13118250ca9658245958e74d685099005771f2922beb49067cf11
test-bench-deps: {}
maintainer: yves+hackage@dubronetwork.fr, jean-pierre+git@prunetwork.fr
synopsis: Analytic Hierarchy Process
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: -any
hahp: -any
containers... | Update from Hackage at 2016-02-23T00:21:03+0000 | Update from Hackage at 2016-02-23T00:21:03+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
84bdac1fdcf83f31a501a27f1f3897fcb0d4ae6c | docker-compose.yml | docker-compose.yml | version: '2'
services:
db:
image: postgres
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
expose:
- 5432/tcp
opennms:
image: indigo/docker-opennms
depends_on:
- db
links:
- db:database
environment:
- POSTGRES_HOST=database
- P... | version: '2'
services:
database:
image: postgres
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
expose:
- 5432/tcp
opennms:
image: indigo/docker-opennms
depends_on:
- db
links:
- db:database
environment:
- POSTGRES_HOST=database
... | Set postgres host, port and opennms database name to allow usage of user defined networks | Set postgres host, port and opennms database name to allow usage of user defined networks
| YAML | mit | AxelMu/opennms,opennms-forge/docker-opennms |
e1775dfa465a0b0f376a5f4a659e958e66e1c4a5 | docker-compose.yml | docker-compose.yml | version: "2"
services:
app:
build:
context: .
dockerfile: Dockerfile-dev
volumes:
- .:/app
- build_cache:/build
tmpfs:
# Mount the ember-cli tmp directory as a tmpfs partition for better
# performance.
- /app/src/api-umbrella/admin-ui/tmp:rw,size=128m,mode=1777
... | version: "2.1"
services:
app:
build:
context: .
dockerfile: Dockerfile-dev
volumes:
- .:/app
- build_cache:/build
tmpfs:
# Mount the ember-cli tmp directory as a tmpfs partition for better
# performance.
- /app/src/api-umbrella/admin-ui/tmp:rw,size=128m,mode=1777
... | Enable IPv6 support in local docker container for development testing. | Enable IPv6 support in local docker container for development testing.
| YAML | mit | NREL/api-umbrella,NREL/api-umbrella,NREL/api-umbrella,NREL/api-umbrella |
21b23053770f36cb6973cb97873fee86a68be54e | docker-compose.yml | docker-compose.yml | version: '2'
services:
website:
build:
context: .
dockerfile: Website-Dockerfile
expose:
- "80"
- "443"
ports:
- "1883:1883"
volumes:
- /etc/letsencrypt/live/www.lambdaspace.gr:/etc/letsencrypt/live/www.lambdaspace.gr:ro
- /etc/letsencrypt/archive/www.lambda... | version: '2'
services:
website:
build:
context: .
dockerfile: Website-Dockerfile
expose:
- "80"
- "443"
volumes:
- /etc/letsencrypt/live/www.lambdaspace.gr:/etc/letsencrypt/live/www.lambdaspace.gr:ro
- /etc/letsencrypt/archive/www.lambdaspace.gr:/etc/letsencrypt/archi... | Add mqtt broker, always restart containers | Add mqtt broker, always restart containers
| YAML | mit | techministry/website-dockerfile |
b6eee3bf6b44525d1f1639eea191f5894d00afb1 | docker-compose.yml | docker-compose.yml | tests:
build: .
tty: true
stdin_open: true
command: ./tests.sh
tests-with-report:
extends:
service: tests
command: sh -c './tests.sh && ./vendor/bin/test-reporter'
| tests:
build: .
tty: true
stdin_open: true
command: ./tests.sh
tests-with-report:
extends:
service: tests
volumes:
- ./.git:/code/.git
command: sh -c './tests.sh && ./vendor/bin/test-reporter'
| Use .git repository as volume to enable git log for Codeclimate | Use .git repository as volume to enable git log for Codeclimate
| YAML | mit | keboola/gmail-extractor |
1e8e734c4efb9c289b1d759374b5d1dd33f188b0 | docker-compose.yml | docker-compose.yml | version: "3"
services:
web:
build: .
volumes:
- .:/app
container_name: marli
ports:
- "3000:3000"
env_file:
- test.env
environment:
CI:
CODECLIMATE_REPO_TOKEN:
COVERALLS_REPO_TOKEN:
depends_on:
- setup_dbs
test:
build: .
volumes:
-... | version: "3"
services:
web:
build: .
volumes:
- .:/app
- .:/marli
container_name: marli
ports:
- "3000:3000"
env_file:
- test.env
environment:
CI:
CODECLIMATE_REPO_TOKEN:
COVERALLS_REPO_TOKEN:
depends_on:
- setup_dbs
test:
build: .
... | Add another volume for circle | Add another volume for circle
| YAML | mit | NYULibraries/marli,NYULibraries/marli,NYULibraries/marli,NYULibraries/marli |
e7ced0fac70ff5a373dabe1e761e67eebe39b254 | docker-compose.yml | docker-compose.yml | blog:
image: starefossen/github-pages
ports:
- "4000"
working_dir: /usr/src/app
volumes:
- .:/usr/src/app
command: jekyll serve --watch --force_polling -H 0.0.0.0 -P 4000
environment:
- VIRTUAL_HOST=blog.starefossen.privat
- VIRTUAL_PORT=4000
aspell:
image: s... | blog:
image: starefossen/github-pages
ports:
- "4000"
working_dir: /usr/src/app
volumes:
- .:/usr/src/app
command: jekyll serve --watch --force_polling -H 0.0.0.0 -P 4000
environment:
- VIRTUAL_HOST=blog.starefossen.privat
- VIRTUAL_PORT=4000
| Remove aspell from Docker Compose configuration | Remove aspell from Docker Compose configuration
| YAML | mit | Starefossen/starefossen.github.com,Starefossen/starefossen.github.com |
8563b72b44a457db4b3c5ef68ce5e8d077592031 | docker-compose.yml | docker-compose.yml | ---
mysql:
image: mysql
environment:
MYSQL_PASSWORD: password_here
MYSQL_USER: username_here
MYSQL_DATABASE: database_name_here
wordpress:
build: .
links:
- mysql
| ---
mysql:
image: mysql
environment:
MYSQL_PASSWORD: password_here
MYSQL_USER: username_here
MYSQL_DATABASE: database_name_here
MYSQL_ROOT_PASSWORD: root
wordpress:
build: .
ports:
- "8000:80"
links:
- mysql
| Add port forwarding and mysql root password | Add port forwarding and mysql root password
| YAML | mit | iankronquist/beeswax,iankronquist/senior-project-experiment,iankronquist/beeswax,iankronquist/senior-project-experiment,iankronquist/beeswax,iankronquist/senior-project-experiment,iankronquist/senior-project-experiment,iankronquist/beeswax |
98c36604dcedc9cd74a1370622e33bd45bf05595 | metadata/fr.corenting.convertisseureurofranc.yml | metadata/fr.corenting.convertisseureurofranc.yml | Categories:
- Money
License: MIT
AuthorName: corenting
AuthorEmail: corenting@gmail.com
SourceCode: https://github.com/corenting/InflationCalculator
IssueTracker: https://github.com/corenting/InflationCalculator/issues
Changelog: https://github.com/corenting/InflationCalculator/releases
AutoName: Inflation Calculato... | Categories:
- Money
License: MIT
AuthorName: corenting
AuthorEmail: corenting@gmail.com
SourceCode: https://github.com/corenting/InflationCalculator
IssueTracker: https://github.com/corenting/InflationCalculator/issues
Changelog: https://github.com/corenting/InflationCalculator/releases
AutoName: Inflation Calculato... | Update Inflation Calculator to 2.9 (18) | Update Inflation Calculator to 2.9 (18)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
8317b2d682075d14a582116528402d64fe9e580e | nubis/puppet/files/nubis_users/hiera/Amazon.yaml | nubis/puppet/files/nubis_users/hiera/Amazon.yaml | ---
nubis_users::managed::user:
ec2-user:
ensure: present
managehome: true
shell: /bin/bash
nubis_users::managed::managehome: false
nubis_users::managed::shell: '/sbin/nologin'
| ---
nubis_users::managed::user:
ec2-user:
ensure: present
managehome: true
shell: /bin/bash
nfsnobody:
ensure: present
nubis_users::managed::managehome: false
nubis_users::managed::shell: '/sbin/nologin'
| Make sure nfsnobody user exist | Make sure nfsnobody user exist
| YAML | mpl-2.0 | tinnightcap/nubis-base,gozer/nubis-base,gozer/nubis-base,limed/nubis-base,gozer/nubis-base,limed/nubis-base,tinnightcap/nubis-base,limed/nubis-base,Nubisproject/nubis-base,Nubisproject/nubis-base,tinnightcap/nubis-base |
c971007919a8d090d7e817721b460dc11f0846e3 | .github/workflows/code_size.yml | .github/workflows/code_size.yml | name: Check code size
on:
push:
pull_request:
paths:
- '.github/workflows/*.yml'
- 'tools/**'
- 'py/**'
- 'extmod/**'
- 'lib/**'
- 'ports/bare-arm/**'
- 'ports/minimal/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name:... | name: Check code size
on:
push:
pull_request:
paths:
- '.github/workflows/*.yml'
- 'tools/**'
- 'py/**'
- 'extmod/**'
- 'lib/**'
- 'ports/bare-arm/**'
- 'ports/minimal/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name:... | Update package list before install packages. | .github/workflows: Update package list before install packages.
Change-Id: Ie4f9e803a0aefc15430841347cadf8c16f9cfaaf
Signed-off-by: Paul Sokolovsky <9dc5061f178bb11813e14f1ed02ba27eaf21fa5d@users.sourceforge.net>
| YAML | mit | pfalcon/micropython,pfalcon/micropython,pfalcon/micropython,pfalcon/micropython,pfalcon/micropython |
8baf8830d6348c280c3a86a7d2f6d53c5f509c88 | roles/ceph-rbd-mirror/tasks/start_rbd_mirror.yml | roles/ceph-rbd-mirror/tasks/start_rbd_mirror.yml | ---
- name: start and add that the rbd mirror service to the init sequence (ubuntu)
command: initctl emit ceph-rbd-mirror cluster={{ cluster }} id={{ ansible_hostname }}
changed_when: false
failed_when: false
when: ansible_distribution == "Ubuntu"
# NOTE (leseb): somehow the service ansible module is messing t... | ---
- name: start and add that the rbd mirror service to the init sequence (upstart)
command: initctl emit ceph-rbd-mirror cluster={{ cluster }} id={{ ansible_hostname }}
changed_when: false
failed_when: false
when: not use_systemd
# NOTE (leseb): somehow the service ansible module is messing things up
# as a ... | Use the use_systemd fact when starting rbd | Use the use_systemd fact when starting rbd
Signed-off-by: Andrew Schoen <1bb641dc23c3a93cce4eee683bcf4b2bea7903a3@redhat.com>
| YAML | apache-2.0 | bengland2/ceph-ansible,ceph/ceph-ansible,jfcoz/ceph-ansible,mcsage/ceph-ansible,WingkaiHo/ceph-ansible,bengland2/ceph-ansible,WingkaiHo/ceph-ansible,fgal/ceph-ansible,verdurin/ceph-ansible-1,albertomurillo/ceph-ansible,travmi/ceph-ansible,jtaleric/ceph-ansible,travmi/ceph-ansible,guits/ceph-ansible,guits/ceph-ansible,f... |
6c8f7e418d5509be54709d1f5ed870218c021e2f | build/oggm/meta.yaml | build/oggm/meta.yaml | package:
name: oggm
version: "0.0.1.201603091132"
source:
url: https://github.com/OGGM/oggm/tarball/8ff8646d4dd47a796540e2b912383251a4c57ee3
fn: oggm-8ff8646d4dd47a796540e2b912383251a4c57ee3.tar.gz
build:
number: 0
requirements:
build:
- python
- setuptools
- matplotlib
- numpy
- scip... | package:
name: oggm
version: "0.0.1.201603091154"
source:
url: https://github.com/OGGM/oggm/tarball/8ff8646d4dd47a796540e2b912383251a4c57ee3
fn: oggm-8ff8646d4dd47a796540e2b912383251a4c57ee3.tar.gz
build:
number: 0
requirements:
build:
- python
- setuptools
- matplotlib
- numpy
- scip... | Add krb5 dep in an attempt to fix missing gdal library | Add krb5 dep in an attempt to fix missing gdal library
| YAML | mit | OGGM/OGGM-Anaconda |
5011db4b8363c9bd0a4ff2fc5030067990d1fd06 | .buildkite/pipeline.bk-test.yml | .buildkite/pipeline.bk-test.yml | env:
GLOBAL_ENV: llamas
ENV_ORDER: global
steps:
- label: "hello world"
command: echo hello world
- label: "test env"
env:
- LOCAL_ENV=alpacas
- ENV_ORDER=local
command: |
[[ "\${GLOBAL_ENV?}" == "llamas" ]]
[[ "\${LOCAL_ENV?}" == "alpacas" ]]
[[ "\${ENV_ORDER?}" == "... | Add a bk test pipeline | Add a bk test pipeline
| YAML | mit | buildkite/agent,buildkite/agent,buildkite/agent | |
e71f63a0c823d0f379fc767b7a1390c25c5c56b4 | .github/workflows/nosetests.yml | .github/workflows/nosetests.yml | name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python-version}}
uses:... | name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python-version}}
uses: acti... | Remove tests for python 3.7 | chg: Remove tests for python 3.7
| YAML | bsd-3-clause | viper-framework/har2tree,viper-framework/har2tree,viper-framework/har2tree |
02e245b5ebe6394a718fc400afd4d0c995a7067f | .github/workflows/unittests.yml | .github/workflows/unittests.yml | name: unittest
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
experimental:
- false
os: [ubuntu-20.04]
php: [7.3, 7.4]
steps:
- uses: actions/checkout@v2
... | name: unittest
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
php: [7.3, 7.4]
steps:
- uses: actions/checkout@v2
- name: Setup PHP
... | Drop experimental key from workflow | Drop experimental key from workflow
| YAML | lgpl-2.1 | usox/PHPTAL,usox/PHPTAL,usox/PHPTAL |
6554bd987eca201a60d9fb630154ac5307f1bfeb | requirements.yml | requirements.yml | ---
- src: jnv.unattended-upgrades
version: v1.0.1
- src: zzet.rbenv
version: 1.2.2
- src: laggyluke.nodejs
| ---
- src: jnv.unattended-upgrades
version: v1.0.1
- src: zzet.rbenv
version: 1.2.2
| Revert "Adds `laggyluke.nodejs` foreseeing merge." | Revert "Adds `laggyluke.nodejs` foreseeing merge."
This reverts commit dffd74e9db4238fef81491d426f391ce8af4e853.
| YAML | mit | smashingboxes/taperole,smashingboxes/taperole |
a3c1d8c04f6841cb5aeb70999dc9eb8d8b349547 | src/main/resources/plugin.yml | src/main/resources/plugin.yml | name: NyaaCore
main: cat.nyaa.nyaacore.NyaaCoreLoader
description: "Code infrastructure for all NyaaCat plugins."
version: ${version}
softdepend: [ Essentials ]
authors: [ RecursiveG,Librazy,cyilin ]
website: "https://github.com/NyaaCat/NyaaCore"
api-version: 1.18
libraries:
- 'org.cadixdev:lorenz:0.5.8'
- 'com.udo... | name: NyaaCore
main: cat.nyaa.nyaacore.NyaaCoreLoader
description: "Code infrastructure for all NyaaCat plugins."
version: ${version}
softdepend: [ Essentials ]
authors: [ RecursiveG,Librazy,cyilin ]
website: "https://github.com/NyaaCat/NyaaCore"
api-version: 1.18
libraries:
- 'org.cadixdev:lorenz:0.5.8'
| Revert "fix: load EvalEx at runtime for compatibility" | Revert "fix: load EvalEx at runtime for compatibility"
This reverts commit ebc0dad68248c1eb3639196165c8129e0c6a1d59.
| YAML | mit | NyaaCat/NyaaCore |
6cd5cc6f3d7689749af7775f1c11776ad2533459 | Taskfile.yml | Taskfile.yml | # https://taskfile.org
version: '2'
tasks:
build:
cmds:
- go build -v -tags sqlite -o ./testfixtures{{exeExt}} ./cmd/testfixtures
test-cli:
cmds:
- ./testfixtures -d sqlite -c testdb.sqlite3 -D testdata/fixtures
test:pg:
desc: Test PostgreSQL
cmds:
- task: test-db
var... | # https://taskfile.org
version: '2'
tasks:
build:
cmds:
- go build -v -tags sqlite -o ./testfixtures{{exeExt}} ./cmd/testfixtures
test-cli:
cmds:
- ./testfixtures -d sqlite -c testdb.sqlite3 -D testdata/fixtures
test:pg:
desc: Test PostgreSQL
cmds:
- task: test-db
var... | Correct task name to align with all other tasks | Correct task name to align with all other tasks | YAML | mit | go-testfixtures/testfixtures,go-testfixtures/testfixtures |
b29ee267318fb0bb3a661dbcc74145ad414d42c4 | .circleci/config.yml | .circleci/config.yml | version: 2.1
jobs:
build-on-gcc:
machine:
image: ubuntu-2004:202101-01
resource_class: arm.medium
steps:
- checkout
- run: uname -a
- run: sudo apt update
- run: sudo apt install -y g++ cmake language-pack-ja ninja-build libpcre2-8-0 libpcre2-dev systemd-sysv
- run: sh... | version: 2.1
jobs:
build-on-gcc:
machine:
image: ubuntu-2004:202101-01
resource_class: arm.medium
steps:
- checkout
- run: uname -a
- run: sudo apt update
- run: sudo apt install -y g++ cmake language-pack-ja ninja-build libpcre2-8-0 libpcre2-dev systemd-sysv
- run: sh... | Revert "test aarch64 asan" due to huge running time in CircleCI | Revert "test aarch64 asan" due to huge running time in CircleCI
This reverts commit 8cc07a2d46af93a33e3d37cbcdc6020de45553d0.
| YAML | apache-2.0 | sekiguchi-nagisa/ydsh,sekiguchi-nagisa/ydsh,sekiguchi-nagisa/ydsh |
9c359881d1439ade11fef053d90fe959fc852f1b | Resources/config/path_types.yml | Resources/config/path_types.yml | idci_step:
path_types:
abstract:
parent: ~
abstract: true
description: ~
extra_form_options:
# type: {extra_form_type: "text", options: {required: false}}
next_options: {extra_form_type: "textarea", options... | idci_step:
path_types:
abstract:
parent: ~
abstract: true
description: ~
extra_form_options:
# type: {extra_form_type: "text", options: {required: false}}
next_options: {extra_form_type: "textarea", options... | Add a help message for the default_destination option | Add a help message for the default_destination option
| YAML | mit | IDCI-Consulting/StepBundle,IDCI-Consulting/StepBundle,IDCI-Consulting/StepBundle |
0cd985c45691488933ab9640d49ceca631c597ad | .circleci/config.yml | .circleci/config.yml | version: 2
references:
cache_key: &cache_key
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}
jobs:
build:
docker:
- image: circleci/android:api-28-alpha
environment:
JVM_OPTS: "-Xmx1024m"
GRADLE_OPTS... | version: 2
references:
cache_key: &cache_key
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}
jobs:
build:
docker:
- image: circleci/android:api-28-alpha
environment:
JAVA_TOOL_OPTIONS: "-Xmx1024m"
GR... | Use JAVA_TOOL_OPTIONS instead of JVM_OPTS for CI | Use JAVA_TOOL_OPTIONS instead of JVM_OPTS for CI
| YAML | apache-2.0 | android/sunflower |
19e770f23db0f34fda3bac4d1be244dcdb5a5faa | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
node: circleci/node@4.1
jobs:
build-and-test:
docker:
- image: cimg/node:lts
steps:
- checkout
- node/install-packages
- run:
name: Run tests
command: npm run test:cli
workflows:
main:
jobs:
- build-and-test
| version: 2.1
orbs:
node: circleci/node@4.1
jobs:
build-and-test:
docker:
- image: cimg/node:lts
steps:
- checkout
- node/install-packages
- run:
name: Run tests (qunit)
command: npm run test:cli
- run:
name: Run tests (mocha)
command: n... | Add step to run mocha tests | [circleci] Add step to run mocha tests
| YAML | mit | smori1983/javascript-smodules,smori1983/javascript-smodules |
a94daba279518ae1c36f539148908644787723fc | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
yarn: artsy/yarn@3.0.0
codecov: codecov/codecov@1.0.5
workflows:
build_and_verify:
jobs:
- yarn/workflow-queue
- yarn/update-cache:
requires:
- yarn/workflow-queue
- yarn/relay:
requires:
- yarn/workflow-queue
- yarn/lint... | version: 2.1
orbs:
yarn: artsy/yarn@3.0.0
codecov: codecov/codecov@1.0.5
auto: artsy/auto@dev:94201cf9cd41b8b0d7441b5095ea044d
workflows:
build_and_verify:
jobs:
- yarn/workflow-queue
- yarn/update-cache:
requires:
- yarn/workflow-queue
- yarn/relay:
requi... | Add canary deployment to reaction PRs | Add canary deployment to reaction PRs
| YAML | mit | artsy/reaction,artsy/reaction,artsy/reaction-force,artsy/reaction,artsy/reaction-force |
674da870cf49ff1fd846f6066d489500424d4a84 | .circleci/config.yml | .circleci/config.yml | version: 2.1
orbs:
zulip: ponylang/zulip@1.0.0
jobs:
vs-ponyc-release:
docker:
- image: ponylang/ponyc:release
steps:
- run: apt-get update
- run: apt-get install -y curl
- checkout
- run: make test integration
- zulip/status:
fail_only: true
vs-ponyc-maste... | version: 2.1
orbs:
zulip: ponylang/zulip@1.0.0
jobs:
vs-ponyc-release:
docker:
- image: ponylang/ponyc:release
steps:
- checkout
- run: make test integration
- zulip/status:
fail_only: true
vs-ponyc-master:
docker:
- image: ponylang/ponyc:latest
steps:
... | Remove unneeded curl install for CI jobs | Remove unneeded curl install for CI jobs
No longer needed now that the ponyc-ci:release image has been
updated to include curl.
Closes #115
| YAML | bsd-2-clause | ponylang/pony-stable |
2de9fbda88a443c99a340d7c2d26d041a030d220 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/buildpack-deps:disco
working_directory: ~/EasyFXML
steps:
- setup_remote_docker
- checkout
- run:
name: Docker build
command: 'docker build -t easyfxml/test... | version: 2
jobs:
build:
docker:
- image: circleci/buildpack-deps:disco
working_directory: ~/EasyFXML
steps:
- setup_remote_docker
- checkout
- run:
name: Docker build
command: 'docker build -t easyfxml/test... | Test mapping whole user dir to sync all cached/saved elems | Test mapping whole user dir to sync all cached/saved elems
| YAML | apache-2.0 | Tristan971/EasyFXML,Tristan971/EasyFXML |
6a03a644f68246a020941945a8e1fc4e3a887a7c | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
test:
docker:
- image: circleci/golang:1.11
working_directory: /go/src/github.com/phrase/phraseapp-client
steps:
- checkout
- run: make all
release:
docker:
- image: circleci/golang:1.11
steps:
- checkout
- setup_remote_docker
- run: ./... | version: 2
jobs:
test:
docker:
- image: circleci/golang:1.11
working_directory: /go/src/github.com/phrase/phraseapp-client
steps:
- checkout
- run: make all
release:
docker:
- image: circleci/golang:1.11
steps:
- checkout
- setup_remote_docker
- run: ./... | Disable auto releasing until X Server issue on CircleCI is fixed | Disable auto releasing until X Server issue on CircleCI is fixed
| YAML | mit | phrase/phraseapp-client,phrase/phraseapp-client |
405c117615e0a25a9856d6f3d3e45eac38834fc3 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: mozmedia/cubeb-rust:fc27
environment:
TZ: "/usr/share/zoneinfo/Australia/Brisbane"
steps:
- checkout
- restore_cache:
key: project-cache
- run:
name: Check formatting
command: |
rustfmt --versi... | version: 2
jobs:
build:
docker:
- image: mozmedia/cubeb-rust:fc27
environment:
TZ: "/usr/share/zoneinfo/Australia/Brisbane"
steps:
- checkout
- restore_cache:
key: project-cache
- run:
name: Check formatting
command: |
cargo +nightly ... | Use nightly version of cargo-fmt and rustfmt | CircleCI: Use nightly version of cargo-fmt and rustfmt
| YAML | isc | djg/cubeb-rs |
ddc55e12256cff75bd9eb4f47001328020c74789 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
machine: true
steps:
- checkout
- run:
name: "Prepare"
command: scripts/prepare_build_environment.sh
- run:
name: "Build"
command: scripts/compile_kernel.sh
- store_artifacts:
path: output
- deploy:
... | version: 2
jobs:
build:
docker:
- image: buildpack-deps:trusty-scm
steps:
- checkout
- run:
name: "Prepare"
command: scripts/prepare_build_environment.sh
- run:
name: "Build"
command: scripts/compile_kernel.sh
- store_artifacts:
... | Switch CircleCI to use Docker instead of a VM | Switch CircleCI to use Docker instead of a VM
| YAML | mit | hypriot/rpi-kernel |
318f22c9b00d140a04a9c981f21293de1b81b139 | ruby/.travis.yml | ruby/.travis.yml | sudo: false
language: ruby
rvm:
- "2.5.1"
- "2.4.4"
- "2.3.7"
- "2.2.10"
- "jruby-9.1.17.0"
script: make default
matrix:
allow_failures:
- rvm: jruby-9.1.17.0
jobs:
include:
- stage: deploy
ruby: 2.5.1
deploy:
skip_cleanup: true
provider: rubygems
api_key:
secure: EFoxx/tPgZ2pZqlR5eDE... | sudo: false
language: ruby
rvm:
- "2.5.3"
- "2.4.5"
- "2.3.8"
- "jruby-9.2.0.0"
script: make default
matrix:
allow_failures:
- rvm: jruby-9.2.0.0
jobs:
include:
- stage: deploy
ruby: "2.5.3"
deploy:
skip_cleanup: true
provider: rubygems
api_key:
secure: EFoxx/tPgZ2pZqlR5eDEXYQ4f0Lw/2Ahk... | Update rubies (2.2.10 is now EOL) | Update rubies (2.2.10 is now EOL)
| YAML | mit | cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin,cucumber/gherkin |
d5412179a7891359caf7e5f7f42b210587712c47 | conf/environment.yml | conf/environment.yml | name: cfu-common
channels:
- defaults
- litex-hub
dependencies:
- litex-hub::gcc-riscv32-elf-newlib
- litex-hub::dfu-util
- litex-hub::flterm
- litex-hub::openocd
- litex-hub::verilator
- litex-hub::nextpnr-nexus
- litex-hub::nextpnr-ecp5
- litex-hub::nextpnr-ice40
- litex-hub::iceprog
- litex-h... | name: cfu-common
channels:
- defaults
- litex-hub
dependencies:
- litex-hub::gcc-riscv32-elf-newlib
- litex-hub::dfu-util
- litex-hub::flterm
- litex-hub::openocd
- litex-hub::verilator
- litex-hub::nextpnr-nexus
- litex-hub::nextpnr-ecp5
- litex-hub::nextpnr-ice40
- litex-hub::iceprog
- litex-h... | Add SymbiFlow Yosys plugins even for non-Xilinx env. | Add SymbiFlow Yosys plugins even for non-Xilinx env.
(required for some Lattice Nexus optimization)
Signed-off-by: Tim Callahan <ea16a3c075a6a229c9a452aa4faba7441b41c040@google.com>
| YAML | apache-2.0 | google/CFU-Playground,google/CFU-Playground,google/CFU-Playground,google/CFU-Playground |
5b121244fbfd35f4106d0930e477e04b6d9975e4 | packages/ru/run-st.yaml | packages/ru/run-st.yaml | homepage: https://github.com/andrewthad/run-st
changelog-type: markdown
hash: ce73f783972aebfdfbf7b577f9cb7877f4f975bc31e9d5aa873fda809e8c8a16
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: runST without boxing penalty
changelog: |
# Revision history for run-st
## 0.1.0.0 -- 2019-06-21
* Fi... | homepage: https://github.com/andrewthad/run-st
changelog-type: markdown
hash: a43245bb23984089016772481bf52bfe63eaff0c5040303f69c9b15e80872fdc
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: runST without boxing penalty
changelog: |
# Revision history for run-st
## 0.1.1.0 -- 2020-01-16
* Ad... | Update from Hackage at 2020-01-16T16:54:25Z | Update from Hackage at 2020-01-16T16:54:25Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
5243510e33a3eab690c30f81c23cb39febf76269 | appveyor.yml | appveyor.yml | version: "{build}"
build: false
environment:
matrix:
- PYTHON: "C:/Python27"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
- "%PYTHON%/python.exe C:/get-pi... | version: "{build}"
build: false
environment:
matrix:
- PYTHON: "C:/Python27"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- "%PYTHON%/python.exe C:/get-pip.py"
- "%PYTHO... | FIX : Appveyor: update download url of windows get-pip | FIX : Appveyor: update download url of windows get-pip
| YAML | mit | CleanCut/green,CleanCut/green |
95bfa4ff384f7196bfa06db4358602a2a78d4199 | appveyor.yml | appveyor.yml | install:
- choco install gitversion.portable -pre -y
assembly_info:
patch: false
init:
before_build:
- ps: gitversion /l console /output buildserver /updateAssemblyInfo .\build\Version.cs
- ps: Update-AppveyorBuild -Version "$env:GitVersion_NuGetVersion"
- ps: nuget restore
build:
project: LogJam.sln
... | install:
- choco install gitversion.portable -pre -y
assembly_info:
patch: false
init:
before_build:
- ps: gitversion /l console /output buildserver /updateAssemblyInfo .\build\Version.cs
- ps: Update-AppveyorBuild -Version "$env:GitVersion_NuGetVersion"
- ps: nuget restore
build:
# project: LogJam.sln
... | Remove explicit project to see if that helps with nuget pack not running. | Remove explicit project to see if that helps with nuget pack not running.
| YAML | apache-2.0 | logjam2/logjam,logjam2/logjam |
e0c06cf6dcba806bb9146c321fb56270f233fa92 | appveyor.yml | appveyor.yml | image:
- Visual Studio 2017
- Visual Studio 2019
before_build:
- nuget restore
before_test:
- nuget install xunit.runner.console -version 2.4.1
test_script:
- xunit.runner.console.2.4.1\tools\net46\xunit.console.exe src\WpfMath.Tests\bin\Debug\net461\WpfMath.Tests.dll
| image:
- Visual Studio 2019
before_build:
- nuget restore
before_test:
- nuget install xunit.runner.console -version 2.4.1
test_script:
- xunit.runner.console.2.4.1\tools\xunit.console.exe src\WpfMath.Tests\bin\Debug\net461\WpfMath.Tests.dll
- xunit.runner.console.2.4.1\tools\xunit.console.exe src... | Drop support for Visual Studio 2017, add .NET Core 3.0 tests | Drop support for Visual Studio 2017, add .NET Core 3.0 tests
| YAML | mit | ForNeVeR/wpf-math |
a457879d93f8520813d6d536060f97e8dc2fb9ac | appveyor.yml | appveyor.yml | configuration: Release
before_build:
- appveyor-retry dotnet restore -v Minimal
build_script:
- dotnet build "src\SimpleMvcSitemap" -c %CONFIGURATION% --no-dependencies
test_script:
- dotnet test "src\SimpleMvcSitemap.Tests" -c %CONFIGURATION%
#-target:xunit.console.clr4.exe "-targetargs:""src\SimpleMvcS... | configuration: Release
before_build:
- appveyor-retry dotnet restore -v Minimal
build_script:
- dotnet build "src\SimpleMvcSitemap" -c %CONFIGURATION% --no-dependencies
test_script:
- dotnet test "src\SimpleMvcSitemap.Tests" -c %CONFIGURATION%
- nuget install OpenCover -Version 4.6.519 -OutputDirectory to... | Create coverage report and push to coveralls | Create coverage report and push to coveralls
| YAML | mit | uhaciogullari/SimpleMvcSitemap |
a778c25c1b205d3ce0851c363a515a631a2619b2 | appveyor.yml | appveyor.yml | # AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows
# File shamelessly inspired by Astropy
version: 0.13.dev0-{build}
branches:
only:
- master
- 0.3.x
- 0.4.x
- 0.5.x
- 0.6.x
- 0.7.x
- 0.8.x
- 0.9.x
- 0.10.x
- 0.11.x
- 0.12.x
environ... | # AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows
# File shamelessly inspired by Astropy
version: 0.13.dev0-{build}
branches:
only:
- master
- 0.3.x
- 0.4.x
- 0.5.x
- 0.6.x
- 0.7.x
- 0.8.x
- 0.9.x
- 0.10.x
- 0.11.x
- 0.12.x
environ... | Remove check step from AppVeyor | Remove check step from AppVeyor
[skip ci]
| YAML | mit | poliastro/poliastro,Juanlu001/poliastro,Juanlu001/poliastro,Juanlu001/poliastro |
efec0659a281ce1be2128494d1f437ba0e86f308 | appveyor.yml | appveyor.yml | branches:
only:
- master
skip_tags: true
build_script:
- "gradlew.bat :Toast-Core:install_frc_toolchain"
- "gradlew.bat clean build" | branches:
only:
- master
skip_tags: true
build_script:
- "git submodule update --init --recursive"
- "gradlew.bat :Toast-Core:install_frc_toolchain"
- "gradlew.bat clean build" | Set Appveyor to clone git submodules so WPILib can also be built | Set Appveyor to clone git submodules so WPILib can also be built
| YAML | mit | JacisNonsense/ToastCPP,JacisNonsense/ToastCPP,JacisNonsense/ToastCPP,JacisNonsense/ToastCPP |
66a60142730fd64767ac3f382e9a5299f1b2c764 | appveyor.yml | appveyor.yml | init:
- git config --global core.autocrlf true
install:
- cmd: .paket\paket.bootstrapper.exe
before_build:
- cmd: .paket\paket.exe install
build_script:
- cmd: packages\build\GitVersion.CommandLine\tools\GitVersion.exe /l console /updateassemblyinfo /exec "packages\build\FAKE\tools\FAKE.exe" /execArg... | environment:
access_token:
secure: tK9azIJKQNkcoFHSVVGi1/89y67K8vR3iqX2w8EYjqf7peLj4cLPTcL3ypeUI18G
init:
- git config --global core.autocrlf true
install:
- cmd: .paket\paket.bootstrapper.exe
before_build:
- cmd: .paket\paket.exe install
build_script:
- cmd: packages\build\GitVersion.Co... | Add git tag on build success | Add git tag on build success
| YAML | mit | eggapauli/TypeProviders.CSharp |
6488cde801da43d5bb3c5fbdfdf91187bc3abac0 | appveyor.yml | appveyor.yml | image: Visual Studio 2017
branches:
only:
- master
- develop
- /release\/.+/
install:
- cinst gitversion.portable -y
- ps: dotnet tool install --global dotnet-setversion
before_build:
- nuget restore
- ps: $env:VERSION=$(gitversion /showvariable NuGetVersionV2)
build_script:
- ps: dotnet restore
- p... | image: Visual Studio 2019
branches:
only:
- master
- develop
- /release\/.+/
install:
- cinst gitversion.portable -y
- ps: dotnet tool install --global dotnet-setversion
before_build:
- nuget restore
- ps: $env:VERSION=$(gitversion /showvariable NuGetVersionV2)
build_script:
- ps: dotnet restore
- p... | Update VM image used by AppVeyor build | Update VM image used by AppVeyor build
| YAML | mit | TAGC/dotnet-setversion |
5a8f37bdfd57c6f5db7c095885d29d81807bb814 | appveyor.yml | appveyor.yml | version: "{build}"
os: Windows Server 2012 R2
test: off
deploy: off
build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- "script/cibuild"
| environment:
nodejs_version: "0.10"
install:
- ps: Install-Product node $env:nodejs_version
test_script:
- "script/cibuild"
build: off
| Copy AppVeyor configuration from atom/keyboard-layout | Copy AppVeyor configuration from atom/keyboard-layout
| YAML | mit | xream/atom,deoxilix/atom,devmario/atom,chengky/atom,synaptek/atom,harshdattani/atom,matthewclendening/atom,ironbox360/atom,efatsi/atom,bsmr-x-script/atom,fscherwi/atom,ppamorim/atom,devmario/atom,amine7536/atom,yangchenghu/atom,toqz/atom,tjkr/atom,burodepeper/atom,kc8wxm/atom,Neron-X5/atom,gontadu/atom,mdumrauf/atom,Sh... |
6c059467fa2399c1ce82c1e2829e14bb1a3c200c | appveyor.yml | appveyor.yml | image: Visual Studio 2019
build_script:
- ps: .\build.ps1 --target=Appveyor --configuration=Release
# disable built-in tests.
test: off
artifacts:
- path: package\*.nupkg
- path: package\*.msi
- path: package\*.zip
environment:
MYGET_API_KEY:
secure: wtAvJDVl2tfwiVcyLExFHLvZVfUWiQRHsfdHBFCNEATeCHo1Nd8JP642P... | image: Visual Studio 2019
build_script:
- ps: .\build.ps1 --target=Appveyor --configuration=Release
# disable built-in tests.
test: off
artifacts:
- path: package\*.nupkg
- path: package\*.msi
- path: package\*.zip
environment:
MYGET_API_KEY:
secure: wtAvJDVl2tfwiVcyLExFHLvZVfUWiQRHsfdHBFCNEATeCHo1Nd8JP642P... | Fix AppVeyor secore value for GitHub access token | Fix AppVeyor secore value for GitHub access token
| YAML | mit | nunit/nunit-console,nunit/nunit-console,nunit/nunit-console |
5f168676daa1acaf5f80c0641a6c7f1e88b7c177 | appveyor.yml | appveyor.yml | build_script: "\"%VS120COMNTOOLS%VsDevCmd.bat\" && build.cmd"
test: off # disable automatic test discovery, xUnit already runs as part of build.cmd | build_script:
- '"%VS120COMNTOOLS%VsDevCmd.bat"'
- build.cmd
test: off # disable automatic test discovery, xUnit already runs as part of build.cmd | Fix AppVeyor build script to correctly return error code | Fix AppVeyor build script to correctly return error code
The script chained the execution of VsDevCmd.bat (aka the "Developer
Command Prompt") with build.cmd which seems to confuse AppVeyor
into not recognizing a non-zero exit code (i.e. when a test fails)
and incorrectly marking the build as green.
Invoking VsDevCmd... | YAML | mit | tstringer/corefx,seanshpark/corefx,contoso-dnf-a/corefx,SGuyGe/corefx,the-dwyer/corefx,cartermp/corefx,690486439/corefx,ptoonen/corefx,manu-silicon/corefx,mokchhya/corefx,ravimeda/corefx,manu-silicon/corefx,alexandrnikitin/corefx,PatrickMcDonald/corefx,richlander/corefx,Frank125/corefx,parjong/corefx,anjumrizwi/corefx,... |
3b5a56592075d6dd806297c72503e1bc61a67321 | appveyor.yml | appveyor.yml | # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.11
- nodejs_version: 0.12
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:node... | # appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.11
- nodejs_version: 0.12
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:node... | Make use of 2.12.1 due to a bug in NPM in Appveyor | Make use of 2.12.1 due to a bug in NPM in Appveyor
| YAML | apache-2.0 | resin-io/resin-sdk,nghiant2710/resin-sdk |
4bbe8da7aedb722aa3195458b3c9a53d00c21cfc | appveyor.yml | appveyor.yml | version: BUILD{build}
image: Visual Studio 2017
shallow_clone: true
configuration:
- Debug
- Release
before_build:
- nuget restore
build:
project: QuasarRAT.sln
parallel: true
verbosity: minimal
artifacts:
- path: Bin
name: binaries | version: BUILD{build}
image: Visual Studio 2019
shallow_clone: true
configuration:
- Debug
- Release
before_build:
- nuget restore
build:
project: QuasarRAT.sln
parallel: true
verbosity: minimal
artifacts:
- path: Bin
name: binaries | Update AppVeyor image to Visual Studio 2019 | Update AppVeyor image to Visual Studio 2019
| YAML | mit | quasar/QuasarRAT,quasar/QuasarRAT |
a9b2b18843900c0fe3fa0e1930de336239ffb399 | _data/navigation.yml | _data/navigation.yml | # Site navigation links
- title: About
url: /about/
- title: Policies
url: /policies/
- title: Expertise
url: /expertise/
- title: Resources
url: /resources/
- title: Training
url: /training/
- title: Blog
url: /blog/
- title: Search
url: /search/
- title: GitHub
url: https://github.com/sheffi... | # Site navigation links
- title: About
url: /about/
- title: Policies
url: /policies/
- title: Expertise
url: /expertise/
- title: Resources
url: /resources/
- title: Training
url: /training/
- title: News
url: /blog/
- title: Search
url: /search/
- title: GitHub
url: https://github.com/sheffi... | Change Blog heading to News | Change Blog heading to News
| YAML | mit | sheffield-bioinformatics-core/sheffield-bioinformatics-core.github.io,sheffield-bioinformatics-core/sheffield-bioinformatics-core.github.io,sheffield-bioinformatics-core/sheffield-bioinformatics-core.github.io,sheffield-bioinformatics-core/sheffield-bioinformatics-core.github.io |
33d93e4b430910045d0b3bbb081064bf8a379e4e | .github/workflows/ci.yml | .github/workflows/ci.yml | name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10"]
node-version: [16]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Python ${{ matrix.python-version }}
... | name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10"]
node-version: [18]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Python ${{ matrix.python-version }}
... | Update Node version to 18 | GHA: Update Node version to 18
| YAML | mit | davedoesdev/python-jwt,davedoesdev/python-jwt,davedoesdev/python-jwt |
4284a8fe1c806fece6f1ca4067027acf6fa63429 | .github/workflows/pr-check.yml | .github/workflows/pr-check.yml | name: pr check
on:
pull_request:
branches:
- master
jobs:
pr-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install packages
run: npm install
- name: check formatting issues
run: npm run compile
- name: check for lint issues
... | name: pr check
on:
pull_request:
branches:
- develop
jobs:
pr-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install packages
run: npm install
- name: check formatting issues
run: npm run compile
- name: check for lint issues
... | Move pr check to develop | Move pr check to develop
| YAML | mit | MyEtherWallet/ethereum-lists |
0f5084813687ee6a0df9b5cf03b85639a9020aaa | packages/au/automotive-cse.yaml | packages/au/automotive-cse.yaml | homepage: ''
changelog-type: ''
hash: 2b86e1ce199caec364776d7d23ec9ee3cce7aa81d5e5b26e47460f06fa8cb00b
test-bench-deps:
bytestring: -any
base: <5
automotive-cse: -any
cryptonite: -any
quickcheck-simple: -any
maintainer: ex8k.hibino@gmail.com
synopsis: Automotive CSE emulation
changelog: ''
basic-deps:
cerea... | homepage: ''
changelog-type: ''
hash: f2504a753b87a8eb14ad04ab84a61b3c953568f734f1badc7fc9424aa55207bf
test-bench-deps:
bytestring: -any
base: <5
automotive-cse: -any
cryptonite: -any
quickcheck-simple: -any
maintainer: ex8k.hibino@gmail.com
synopsis: Automotive CSE emulation
changelog: ''
basic-deps:
cerea... | Update from Hackage at 2016-04-12T02:41:04+0000 | Update from Hackage at 2016-04-12T02:41:04+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
83eb79573a6d1dbaee8d757ce1ad0a2642275416 | packages/mi/miss-porcelain.yaml | packages/mi/miss-porcelain.yaml | homepage: https://oss.xkcd.com/
changelog-type: markdown
hash: ae100d806d8a72b6a63e3062d8999a194543fb7b4602b1335e54eaf0f5f7c345
test-bench-deps: {}
maintainer: oss@xkcd.com
synopsis: Useability extras built on top of miss.
changelog: |
# Revision history for miss-porcelain
## 0 -- 2018-12-28
* First version.
ba... | homepage: https://oss.xkcd.com/
changelog-type: markdown
hash: 147bfb55736d52c19c2d98bbae4288f556d2a87777712203c7f9f5b22985c886
test-bench-deps: {}
maintainer: oss@xkcd.com
synopsis: Useability extras built on top of miss.
changelog: |
# Revision history for miss-porcelain
## 0 -- 2018-12-28
* First version.
ba... | Update from Hackage at 2020-01-21T17:04:48Z | Update from Hackage at 2020-01-21T17:04:48Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
737d14794e1c6128c3cfe91064713f438d294e4a | packages/th/th-data-compat.yaml | packages/th/th-data-compat.yaml | homepage: ''
changelog-type: ''
hash: 54770837e06da42eadeeef1b16a667c9105679703831acd1d6527f2dd1a47ad0
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Compatibility for data definition template of TH
changelog: ''
basic-deps:
base: <5
template-haskell: ! '>=2.12'
all-versions:
- '0.0.1.0'
- '0.0.2.0... | homepage: ''
changelog-type: ''
hash: 691c04639efbde3d6e24596cf2bcda8990ac612e96ecea70da1572bbcb025e7b
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Compatibility for data definition template of TH
changelog: ''
basic-deps:
base: <5
template-haskell: ==2.11.*
all-versions:
- '0.0.1.0'
- '0.0.2.0'
... | Update from Hackage at 2018-04-16T08:44:09Z | Update from Hackage at 2018-04-16T08:44:09Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
186e1b1aa15c06868baa9ba0e723701f1cd69fe1 | pubspec.yaml | pubspec.yaml | name: expected_output
version: 1.2.1-dev
description: Easily write and test multiline input and expected output
author: Dart Team <misc@dartlang.org>
homepage: https://pub.dartlang.org/packages/expected_output
environment:
sdk: '>=1.19.0 <2.0.0-dev.infinity'
dependencies:
path: "^1.4.1"
test: "^0.12.20"
| name: expected_output
version: 1.2.1-dev
description: Easily write and test multiline input and expected output
author: Dart Team <misc@dartlang.org>
homepage: https://pub.dartlang.org/packages/expected_output
environment:
sdk: '>=1.19.0 <2.0.0'
dependencies:
path: "^1.4.1"
test: "^0.12.20"
| Remove -dev.infinity in SDK upper constraint | Remove -dev.infinity in SDK upper constraint | YAML | bsd-3-clause | dart-archive/expected_output |
2600e1cad69df37797513b19705df368b27457b1 | pubspec.yaml | pubspec.yaml | name: xml
version: 5.4.0
description: A lightweight library for parsing, traversing, querying, transforming and building XML documents.
homepage: https://github.com/renggli/dart-xml
environment:
sdk: '>=2.16.0 <3.0.0'
dependencies:
collection: ^1.15.0
meta: ^1.7.0
petitparser:
git: https://github.com/peti... | name: xml
version: 5.4.0
description: A lightweight library for parsing, traversing, querying, transforming and building XML documents.
homepage: https://github.com/renggli/dart-xml
publish_to: none
environment:
sdk: '>=2.16.0 <3.0.0'
dependencies:
collection: ^1.15.0
meta: ^1.7.0
petitparser:
git: https:... | Disable publishing so that analyzer remains happy. | Disable publishing so that analyzer remains happy.
| YAML | mit | renggli/dart-xml |
3f722c3e2a9c8d4e317abbe42a203e7bb27f68f9 | pubspec.yaml | pubspec.yaml | name: mailer2
version: 0.8.12+2
description: >
A temporary fork of Kai Sellgren's Mailer (https://github.com/kaisellgren/mailer)
for aggressive support of replyTo and sender
author: Kai Sellgren <kaisellgren@gmail.com>
homepage: http://github.com/kaisellgren/mailer
environment:
sdk: '>=0.8.10+6 <2.0.0'
d... | name: mailer2
version: 0.8.12+2
description: >
A temporary fork of Kai Sellgren's Mailer (https://github.com/kaisellgren/mailer)
for aggressive support of replyTo and sender
author: Kai Sellgren <kaisellgren@gmail.com>
homepage: http://github.com/kaisellgren/mailer
environment:
sdk: '>=0.8.10+6 <2.0.0'
d... | Upgrade to the test lib | Upgrade to the test lib
| YAML | mit | tomyeh/mailer |
a5f9ffdf874341562756479494c9b9df767477aa | pubspec.yaml | pubspec.yaml | name: webdriver
version: 0.7.5
author: Dart Team <misc@dartlang.org>
description: Provides WebDriver bindings for Dart. These use the WebDriver JSON interface, and as such, require the use of the WebDriver remote server.
homepage: https://github.com/dart-lang/webdriver
environment:
sdk: '>=0.6.21+3'
dependencies:
c... | name: webdriver
version: 0.7.6
author: Dart Team <misc@dartlang.org>
description: Provides WebDriver bindings for Dart. These use the WebDriver JSON interface, and as such, require the use of the WebDriver remote server.
homepage: https://github.com/dart-lang/webdriver
environment:
sdk: '>=0.7.1'
dependencies:
cryp... | Increment the version and dependencies for next release. | Increment the version and dependencies for next release.
| YAML | apache-2.0 | staats-google/webdriver.dart,bwu-dart-contributing/webdriver.dart,DrMarcII/webdriver.dart,staats-google/webdriver.dart,bwu-dart-contributing/webdriver.dart,DrMarcII/webdriver.dart,bwu-dart-contributing/webdriver.dart,DrMarcII/webdriver.dart,google/webdriver.dart,google/webdriver.dart,bwu-dart-contributing/webdriver.dar... |
d565d046274371377af5558d1a8427afc2ade651 | roles/liquidsoap/tasks/main.yml | roles/liquidsoap/tasks/main.yml | ---
- name: config directory
file: path=/etc/liquidsoap state=directory
- name: configuration file
template: src=radio.liq.j2 dest=/etc/liquidsoap/radio.liq
notify: restart
- name: 'swiss-army knife for multimedia streaming'
tags: [ 'radio', 'stream' ]
docker: image='ddub/liquidsoap' name='liquidsoap'
... | ---
- name: config directory
file: path=/etc/liquidsoap state=directory
- name: configuration file
template: src=radio.liq.j2 dest=/etc/liquidsoap/radio.liq
notify: restart
- name: writable recording directory
file: path=/music/recs state=directory mode=777
- name: check recording directory is writable - if thi... | Check that the liquidsoap docker will be able to write to the recordings directory | Check that the liquidsoap docker will be able to write to the recordings directory
| YAML | mit | intbass/radio,intbass/radio |
f44a32ae5f106d8ba8751efe000b5bd180278ba2 | data/transition-sites/hca.yml | data/transition-sites/hca.yml | ---
site: hca
whitehall_slug: homes-and-communities-agency
title: Homes and Communities Agency
redirection_date: 1st July 2014
homepage: https://www.gov.uk/government/organisations/homes-and-communities-agency
tna_timestamp: 20140327123736
host: www.homesandcommunities.co.uk
furl: www.gov.uk/hca
aliases:
- homesandcomm... | ---
site: hca
whitehall_slug: homes-and-communities-agency
title: Homes and Communities Agency
redirection_date: 1st July 2014
homepage: https://www.gov.uk/government/organisations/homes-and-communities-agency
tna_timestamp: 20140327123736
host: www.homesandcommunities.co.uk
furl: www.gov.uk/hca
aliases:
- homesandcomm... | Add relevant query strings determined from arcl | Add relevant query strings determined from arcl
| YAML | mit | alphagov/transition-config,alphagov/transition-config |
33aea6cb99f185c016d7e9ce389bf96c56727196 | recipes/dec2/meta.yaml | recipes/dec2/meta.yaml | {% set version = "0.2.0" %}
package:
name: dec2
version: "{{ version }}"
source:
fn: dec2-{{ version }}.tar.gz
url: https://pypi.io/packages/source/d/dec2/dec2-{{ version }}.tar.gz
md5: 1e32ab51d2f159095c828a81fa430e9e
build:
number: 0
script: python setup.py install --single-version-externally-managed... | {% set version = "0.2.1" %}
package:
name: dec2
version: "{{ version }}"
source:
fn: dec2-{{ version }}.tar.gz
url: https://pypi.io/packages/source/d/dec2/dec2-{{ version }}.tar.gz
md5: 6ce7d6eb13105f7f7697f2ce80250018
build:
number: 0
script: python setup.py install --single-version-externally-managed... | Update to 0.2.1., update depedencies | Update to 0.2.1., update depedencies
| YAML | bsd-3-clause | jerowe/staged-recipes,ReimarBauer/staged-recipes,rvalieris/staged-recipes,hadim/staged-recipes,glemaitre/staged-recipes,johannesring/staged-recipes,kwilcox/staged-recipes,bmabey/staged-recipes,bmabey/staged-recipes,dfroger/staged-recipes,tylere/staged-recipes,birdsarah/staged-recipes,goanpeca/staged-recipes,mcernak/sta... |
df37141a0e8e7897d367afe7561917ddb071fba8 | tasks/install.yml | tasks/install.yml | ---
# tasks file for ansible-role-nhc
#
#
- name: Check if fgci-release7 is installed
package: pkg=fgci-release7 state=installed
register: reg_nhc_fgci7_installed
check_mode: no
ignore_errors: True
- name: Install FGCI repo
package: pkg=http://idris.fgi.csc.fi/fgci7/x86_64/fgci/rpms/fgci-release7-1-1.... | ---
# tasks file for ansible-role-nhc
#
#
- name: Check if fgci-release7 is installed
package: pkg=fgci-release7 state=installed
register: reg_nhc_fgci7_installed
check_mode: no
ignore_errors: True
- name: Install FGCI repo
package: pkg=http://idris.fgi.csc.fi/fgci7/x86_64/fgci/rpms/fgci-release7-1-1.... | Change |failed to 'is failed' | Change |failed to 'is failed'
| YAML | mit | CSC-IT-Center-for-Science/ansible-role-nhc |
3855b127144c391431349d751cec131fa835ffa7 | packages/js/json-rpc-generic.yaml | packages/js/json-rpc-generic.yaml | homepage: http://github.com/khibino/haskell-json-rpc-generic
changelog-type: ''
hash: 291dda542e204c14cdb9c929c6bf2ade16a52412a596eb1c47c13b7d5f55b313
test-bench-deps:
base: <5
text: -any
quickcheck-simple: -any
json-rpc-generic: -any
QuickCheck: -any
aeson: -any
maintainer: ex8k.hibino@gmail.com
synopsis: ... | homepage: http://github.com/khibino/haskell-json-rpc-generic
changelog-type: ''
hash: a537b87e18dd877ec68cb10610139681df7e8bb5fdbdfabbe22a805fd27a92da
test-bench-deps:
base: <5
text: -any
quickcheck-simple: -any
json-rpc-generic: -any
QuickCheck: -any
aeson: -any
maintainer: ex8k.hibino@gmail.com
synopsis: ... | Update from Hackage at 2016-07-23T05:55:11+0000 | Update from Hackage at 2016-07-23T05:55:11+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
63ea30492328ccb7a31890e5c51572a60f18f192 | stack.yaml | stack.yaml | resolver: lts-13.11
packages:
- '.'
extra-deps:
- csv-table-0.1.0.1
- dotgen-0.4.2
- fgl-visualize-0.1.0.1
- intern-0.9.2
- located-base-0.1.1.1
- text-format-0.3.2
- tasty-rerun-1.1.14
flags:
liquidhaskell:
devel: true
extra-package-dbs: []
ghc-options:
hscolour: -w
| resolver: lts-13.10
packages:
- '.'
extra-deps:
- csv-table-0.1.0.1
- dotgen-0.4.2
- fgl-visualize-0.1.0.1
- intern-0.9.2
- located-base-0.1.1.1
- text-format-0.3.2
- tasty-rerun-1.1.14
flags:
liquidhaskell:
devel: true
extra-package-dbs: []
ghc-options:
hscolour: -w
| Use GHC-8.6.3, as 8.6.4 is still not present for windows32 platform in Stackage. | Use GHC-8.6.3, as 8.6.4 is still not present for windows32 platform in Stackage.
| YAML | bsd-3-clause | ucsd-progsys/liquidhaskell,ucsd-progsys/liquidhaskell,ucsd-progsys/liquidhaskell,ucsd-progsys/liquidhaskell,ucsd-progsys/liquidhaskell,ucsd-progsys/liquidhaskell |
2c876658ee87caaa39749a16840a2302117951c3 | packages/va/validity-time.yaml | packages/va/validity-time.yaml | homepage: https://github.com/NorfairKing/validity#readme
changelog-type: ''
hash: f84344cea1a46982a7d5f6163bfe27556aa8a6a5dbd45e4907bf29c195e44daf
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: Validity instances for time
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: -any
validity: ! '>=0.5'
all-... | homepage: https://github.com/NorfairKing/validity#readme
changelog-type: ''
hash: e4e236f57185d2366cf5db877bd475c7c03192893b100e1e0a439de3992efb93
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: Validity instances for time
changelog: ''
basic-deps:
base: '>=4.7 && <5'
time: -any
validity: '>=0.5'
all-vers... | Update from Hackage at 2020-07-18T11:55:05Z | Update from Hackage at 2020-07-18T11:55:05Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
61f63de0453c9efeabb01e67be2e777dfa58e820 | nanshe_workflow.recipe/meta.yaml | nanshe_workflow.recipe/meta.yaml | {% set data = load_setup_py_data() %}
package:
name: nanshe_workflow
version: {{ data.get("version") }}
source:
git_url: ..
build:
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- psutil
... | {% set data = load_setup_py_data() %}
package:
name: nanshe_workflow
version: {{ data.get("version") }}
source:
git_url: ..
build:
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- psutil
... | Drop pims from the requirements | Drop pims from the requirements
We still pull in `pims` implicitly as part of `dask-imread`. However as
we are no longer using `pims` directly in the workflow, there is no need
to have an explicit dependency on it.
| YAML | apache-2.0 | DudLab/nanshe_workflow,nanshe-org/nanshe_workflow |
e4e8cf556db1522661c3f6962b7e0ac391ffecd2 | electron-builder.yml | electron-builder.yml | {
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"mas": {
"publish": null
},
"linux": {
"category": "Network;IRCClient",
"target": [
"deb",
"AppImage"
]
},
"dmg": {
"icon": null
},
"appId": "com.irccloud.de... | {
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
]
},
"mas": {
"publish": null
},
"linux": {
"category": "Network;IRCClient",
"target": [
"deb",
"AppImage"
]
},
"dmg": {
"icon": null
},
"appId": "com.irccloud.de... | Exclude various files from asar | Exclude various files from asar
| YAML | apache-2.0 | irccloud/irccloud-desktop |
9844c961282c0dc846932ce3bd13c6ec7eb8aa4f | packages/ye/yesod-recaptcha2.yaml | packages/ye/yesod-recaptcha2.yaml | homepage: https://github.com/ncaq/yesod-recaptcha2#readme
changelog-type: ''
hash: 19a3d4f01df56e4e5c0ed213f794ec6515bebad43d12aba46a6c6e75c9df04b8
test-bench-deps: {}
maintainer: ncaq@ncaq.net
synopsis: yesod recaptcha2
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
classy-prelude-yesod: -any
http-conduit: -any... | homepage: https://github.com/ncaq/yesod-recaptcha2#readme
changelog-type: ''
hash: 906ba2463593ab5bd1048173a24cf1d88abf3ee5192b359a3e6763a12e673a30
test-bench-deps: {}
maintainer: ncaq@ncaq.net
synopsis: yesod recaptcha2
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
text: -any
classy-prelude-yesod: -any
http-... | Update from Hackage at 2017-11-04T10:48:38Z | Update from Hackage at 2017-11-04T10:48:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a23b49751e696777ab69bec86e1fed4aaa650d0d | metadata/com.cosmos.candle.yml | metadata/com.cosmos.candle.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Money
License: GPL-3.0-only
AuthorName: CosmosApps
AuthorEmail: cosmos.dev@protonmail.com
SourceCode: https://gitlab.com/cosmosapps/candle
IssueTracker: https://gitlab.com/cosmosapps/candle/issues
Changelog: https://gitlab.com/cosmosapps/candle/-/blob/master/CHA... | AntiFeatures:
- NonFreeNet
Categories:
- Internet
- Money
License: GPL-3.0-only
AuthorName: CosmosApps
AuthorEmail: cosmos.dev@protonmail.com
SourceCode: https://gitlab.com/cosmosapps/candle
IssueTracker: https://gitlab.com/cosmosapps/candle/issues
Changelog: https://gitlab.com/cosmosapps/candle/-/blob/master/CHA... | Update Candle to 0.1.5 (6) | Update Candle to 0.1.5 (6)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
67e002d6fabe6df901bd9f5e34c9035d9e6493e1 | devtools/conda-recipe/meta.yaml | devtools/conda-recipe/meta.yaml | package:
name: perses-dev
version: !!str 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- openmm >=7.0
- numpy
- scipy
- openmoltools-dev
- alchemy >=1.1.3
- numexpr
run:
- python
- openmm >=7.0
... | package:
name: perses-dev
version: !!str 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- openmm-dev
- numpy
- scipy
- openmoltools-dev
- alchemy >=1.1.3
- numexpr
run:
- python
- openmm-dev
- nu... | Update package requirements to use openmm-dev | Update package requirements to use openmm-dev
| YAML | mit | choderalab/perses,choderalab/perses |
1f087a588259990071ede763867756b50663af14 | .travis.yml | .travis.yml | language: csharp
solution: RailPhase.sln
install:
- nuget restore RailPhase.sln
script:
- xbuild /p:Configuration=Release /p:TargetFrameworkVersion="v4.5" /p:ToolsVersion="4.0" RailPhase.sln
- cd ./RailPhase.Tests/bin/Release/
- mono ./packages/NUnit.ConsoleRunner.3.6.1/tools/nunit2-console.exe ./RailPhase.Test... | language: csharp
solution: RailPhase.sln
install:
- nuget restore RailPhase.sln
script:
- xbuild /p:Configuration=Release /p:TargetFrameworkVersion="v4.5" /p:ToolsVersion="4.0" RailPhase.sln
- cd ./RailPhase.Tests/bin/Release/
- mono ./packages/NUnit.ConsoleRunner.3.6.1/tools/nunit3-console.exe ./RailPhase.Test... | Fix executable name of Nunit3 runner in Travis script (again) | Fix executable name of Nunit3 runner in Travis script (again)
| YAML | mit | LukasBoersma/RailPhase,RailPhase/RailPhase,LukasBoersma/RailPhase,LukasBoersma/Web2Sharp,RailPhase/RailPhase,LukasBoersma/Web2Sharp |
810fc0ed2b74304126f3c09f80ba70910e72873a | .travis.yml | .travis.yml | language: node_js
before_install: npm install npm -g
node_js:
- "6"
- "4"
| language: node_js
before_install: npm install npm -g
node_js:
- "8"
- "6"
- "4"
| Add node 8 to CI. | Add node 8 to CI.
| YAML | isc | timoxley/tojson-loader |
60661e5cbcba4aea817f7fa1625287dbb7a1aeb4 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- ./Install-OpenCV/get_latest_version_download_file.sh
before_script:
- mkdir bin
script: make skin-detect
| language: cpp
compiler:
- gcc
- clang
before_install:
- chmod +x Install-OpenCV/Ubuntu/opencv_latest.sh
- ./Install-OpenCV/Ubuntu/opencv_latest.sh
before_script:
- mkdir bin
script: make skin-detect
| Set execute flag before trying to execute | Set execute flag before trying to execute
| YAML | mit | JamieMagee/skin-detect |
8b928db2adf06b3ff6c1c9aafaa1032e563bda80 | .travis.yml | .travis.yml | language: cpp
script:
- git submodule update --init --recursive
- export CXX="clang++ -isystem /usr/include/x86_64-linux-gnu/c++/4.8/ -isystem /usr/include/x86_64-linux-gnu"
- export NINJA="./bin/ninja/ninja"
- cd bin/ninja && ./bootstrap.py && ./configure.py && cd -
- $NINJA
- ./build/meka
compiler:
- cl... | language: cpp
script:
- git submodule update --init --recursive
- export CXX="clang++ -isystem /usr/include/x86_64-linux-gnu/c++/4.8/ -isystem /usr/include/x86_64-linux-gnu"
- export NINJA="./bin/ninja/ninja"
- cd bin/ninja && ./bootstrap.py && ./configure.py && cd -
- $NINJA
- ./build/meka
compiler:
- cl... | Update Travis-CI with bleeding-edge compilers. | Update Travis-CI with bleeding-edge compilers.
| YAML | unlicense | automeka/automeka,automeka/automeka |
41c765b85d70fcfa8f96c415924beb4bd55a2709 | source/admin/config.yml | source/admin/config.yml | backend:
name: 'github'
repo: 'unboxed/unboxed.co'
branch: 'netlify-cms'
media_folder: 'source/assets/images/uploads'
public_folder: '/assets/images/uploads'
collections:
- name: 'blog'
label: 'Blog'
folder: '/source/blog'
create: true
slug: '{{year}}-{{month}}-{{day}}-{{slug}}'
fields:
... | backend:
name: 'github'
repo: 'unboxed/unboxed.co'
branch: 'netlify-cms'
media_folder: 'source/assets/images/uploads'
public_folder: '/assets/images/uploads'
collections:
- name: 'blog'
label: 'Blog'
folder: '/source/blog'
label_singular: 'blog post'
create: true
slug: '{{year}}-{{month}}-... | Add blog post fields to collection | Add blog post fields to collection
| YAML | mit | unboxed/ubxd_web_refresh,unboxed/unboxed.co,unboxed/ubxd_web_refresh,unboxed/unboxed.co,unboxed/ubxd_web_refresh,unboxed/unboxed.co |
e39247039432ed8999ad955fc727976b18a38730 | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.5
- 2.11.7
| language: scala
scala:
- 2.10.6
- 2.11.7
| Bump Scala version on Travis | Bump Scala version on Travis
| YAML | apache-2.0 | mdedetrich/sbt,Duhemm/util,xuwei-k/xsbt,sbt/sbt,mdedetrich/sbt,mdedetrich/sbt,xuwei-k/xsbt,sbt/sbt,xuwei-k/xsbt,mdedetrich/sbt,mdedetrich/sbt,mdedetrich/sbt,sbt/sbt,mdedetrich/sbt,sbt/sbt,xuwei-k/xsbt,sbt/sbt,sbt/sbt,sbt/sbt,xuwei-k/xsbt |
7cd22835b7f01430b0848a97a1d067d0fe20b96e | .travis.yml | .travis.yml | env:
- COVERAGE=true
language: ruby
rvm:
- 2.1.5
services: mongodb
notifications:
email:
- didier@nocoffee.fr
branches:
except:
- gh-pages | env:
- COVERAGE=true
language: ruby
rvm:
- 2.1.5
- 2.2.0
services: mongodb
notifications:
email:
- didier@nocoffee.fr
branches:
except:
- gh-pages | Test Ruby `2.0.0` on Travis CI. | [➠] Test Ruby `2.0.0` on Travis CI.
| YAML | mit | locomotivecms/custom_fields |
603e378237f0cd627d10330b6a5ffaadae01bf97 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
script:
- 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then grunt ci; else grunt ci-pull; fi'
env:
global:
- secure: Kt+5IJDJRVwr28xRnmR5YDsJceXDcDR21/JUBfk6DYFixPbIq7LCPnZUmiSZQs8akU95ucXwB5hsirUAdEhXdYKilec6go70lticVlZBLy8IdJ+Di1uPwMOeMHvalC2P0woIRJSMzP8u5E+e+5ASggTjsXID7/p1... | language: node_js
node_js:
- '0.10'
sudo: false
script:
- 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then grunt ci; else grunt ci-pull; fi'
env:
global:
- secure: Kt+5IJDJRVwr28xRnmR5YDsJceXDcDR21/JUBfk6DYFixPbIq7LCPnZUmiSZQs8akU95ucXwB5hsirUAdEhXdYKilec6go70lticVlZBLy8IdJ+Di1uPwMOeMHvalC2P0woIRJSMzP8u5E+e+5AS... | Revert "test if sudo:false is why saucelabs fails" | Revert "test if sudo:false is why saucelabs fails"
This reverts commit 05b138a1a4bcb2ed7c820bdd92556973ac365a24.
| YAML | apache-2.0 | kkdey/dc.js,vladimirbuskin/dc.js,gazal-k/dc.js,TheDataShed/dc.js,gazal-k/dc.js,vladimirbuskin/dc.js,aaronhoffman/dc.js,ruhley/dc.js,plingrat/dc.js,m4s0/dc.js,dc-js/dc.js,aaronhoffman/dc.js,remyyounes/dc.js,mtraynham/dc.js,maackle/dc.js,Sweetymeow/dc.js,dgerber/dc.js,remyyounes/dc.js,dc-js/dc.js,aaronhoffman/dc.js,liang... |
1e0d8232daa625c2b5e30d1250dbcf43052cfc8d | .travis.yml | .travis.yml | language: python
python:
- '3.6'
- '3.7'
env:
- HASS=0.98.2 GCTTS=0.4.0
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install yamllint
- pip3 install homeassistant==$HASS
- pip3 install google-cloud-texttospeech==$GCTTS
script:
- yamllint .
- hass -c . --script check_config
| language: python
python:
- '3.6'
- '3.7'
env:
- GCTTS=0.4.0 HASS=0.98.2
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install yamllint
- pip3 install google-cloud-texttospeech==$GCTTS
- pip3 install homeassistant==$HASS
script:
- yamllint .
- hass -c . --script check_config
| Reorder install commands in Travis CI configuration | Reorder install commands in Travis CI configuration
| YAML | mit | davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config |
89949f423bc0c704eb77a20a57f5249e65a9d283 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
before_install:
- 'gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems)'
- 'gem update bundler --conservative'
env:
- CI=true
rvm:
- 2.2.2
- 2.3
- 2.4
- 2.5
- jruby-9
- rbx-... | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
before_install:
- 'gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems)'
- 'gem update bundler --conservative'
env:
- CI=true
rvm:
- 2.2.2
- 2.3
- 2.4
- 2.5
- 2.6
- jruby-9
... | Add 2.6 to Travis RVM matrix. | Add 2.6 to Travis RVM matrix.
| YAML | unlicense | ruby-rdf/rdf-aggregate-repo |
4ac30e762d10314676b03203a917b85c7a056e25 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
install: make deps
script:
- source /opt/qt53/bin/qt53-env.sh && make clean && make test && make
branches:
only:
- master
notifications:
recipients:
- tanel.lebedev@gmail.com
email:
on_success: change
on_failure: always
before_install:
- sudo apt-add-r... | language: cpp
compiler:
- gcc
- clang
install: make deps
script:
- source /opt/qt53/bin/qt53-env.sh && make clean && make test && make
branches:
only:
- master
notifications:
recipients:
- tanel.lebedev@gmail.com
email:
on_success: change
on_failure: always
before_install:
- sudo apt-add-r... | Install xorg-dev and libxss-dev in TRavis | Install xorg-dev and libxss-dev in TRavis
| YAML | bsd-3-clause | codeman38/toggldesktop,codeman38/toggldesktop,codeman38/toggldesktop,codeman38/toggldesktop,codeman38/toggldesktop,codeman38/toggldesktop |
7b8314dc4349a4649e66147502af09acdce9e235 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "2.6"
- "3.3"
env:
- DJANGO=django==1.4.9
- DJANGO=django==1.5.5
- DJANGO=https://github.com/django/django/archive/stable/1.6.x.zip
install:
- pip install $DJANGO --use-mirrors
- pip install -r test_requirements.txt
- pip install -e .
script: "python orderable/tests/... | language: python
python:
- "2.7"
- "2.6"
- "3.3"
env:
- DJANGO=django==1.4.9
- DJANGO=django==1.5.5
- DJANGO=https://github.com/django/django/archive/stable/1.6.x.zip
install:
- psql -c 'CREATE DATABASE orderable' -U postgres;
- pip install $DJANGO --use-mirrors
- pip install -r test_requirements.txt
... | Create database for tests, and turn off notifications. | Create database for tests, and turn off notifications.
| YAML | bsd-2-clause | incuna/django-orderable,incuna/django-orderable |
810a98e9fae6cc96f91e443c8b7293948eb679ac | .travis.yml | .travis.yml | language: go
dist: trusty
go:
- 1.7
- 1.8
- tip
script: go test -v -test.run='BCD|Parse' -bench.run=. ./...
addons:
apt:
packages:
libusb-1.0-0-dev
| language: go
dist: trusty
go:
- 1.7
- 1.8
- tip
script: go test -v -test.run='BCD|Parse' ./...
addons:
apt:
packages:
libusb-1.0-0-dev
| Revert "Run benchmarks for tests as well." | Revert "Run benchmarks for tests as well."
This reverts commit 7c55d36758ffd8d1deef471b06c11f22c027cdbc.
| YAML | apache-2.0 | kylelemons/gousb,google/gousb,bernhardgoedel/gousb,kylelemons/gousb,google/gousb,google/gousb,bernhardgoedel/gousb,bernhardgoedel/gousb,kylelemons/gousb |
c39f87dae228abf39ec6e0afd3f67577deb0cb47 | roles/system/tasks/nic_down.yml | roles/system/tasks/nic_down.yml | - name: ifdown the nic
shell: >
ifdown {{ nic }};
sleep {{ nic_delay_timeout }};
ifup {{ nic }};
become: true
| - name: ifdown the nic
shell: >
ifdown {{ nic }};
sleep {{ nic_down_timeout }};
ifup {{ nic }};
become: true
| Fix the bug in nic down | Fix the bug in nic down
| YAML | apache-2.0 | unitedstack/gremlin,unitedstack/gremlin |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.