commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
478b89861afef0c15738aec600268a9d61ae2fb1
blog_env.yml
blog_env.yml
name: blog channels: - conda-forge dependencies: - beautifulsoup4 - flake8 - feedparser - ipython - ipywidgets - jupyter - lxml - markdown - mkdocs - nbdime - pelican - python=3.6 - requests
name: blog channels: - conda-forge dependencies: - beautifulsoup4 - flake8 - feedparser - ipython - ipywidgets - jupyter - lxml - markdown - mkdocs - nbdime - pelican - python=3.5 - requests
Revert "update to py36 in blog env yml"
Revert "update to py36 in blog env yml" This reverts commit d86e765242f124d5caeb407e6372cb2d7147b197.
YAML
mit
dennissergeev/dotfiles
4cbe32142a6b5170fe97bba4ecc13cf959813f76
.codeclimate.yml
.codeclimate.yml
engines: eslint: enabled: true fixme: enabled: true ratings: paths: - "**.js" exclude_paths: - "**.min.js" - karma*.conf.js - test/**/* - .*
engines: eslint: enabled: true fixme: enabled: true ratings: paths: - "**.js" exclude_paths: - "**.min.js" - karma*.conf.js - prism/**/* - test/**/* - .*
Remove prism.js files from Code Climate checks
Remove prism.js files from Code Climate checks
YAML
mit
vlazar/awesomplete,LeaVerou/awesomplete,LeaVerou/awesomplete,bchcheng/awesomplete,bsvobodny/awesomplete,bsvobodny/awesomplete,bchcheng/awesomplete,vlazar/awesomplete,eggpi/awesomplete,eggpi/awesomplete
96d19ff19fc7c3b82107971bb4751c3f11f46d42
.codeclimate.yml
.codeclimate.yml
--- engines: duplication: enabled: true config: languages: - ruby fixme: enabled: true rubocop: enabled: true ratings: paths: - "**.rb" exclude_paths: - test/
version: "2" plugins: rubocop: enabled: true exclude_patterns: - "**/spec/"
Update to v2 of the Code Climate config
Update to v2 of the Code Climate config
YAML
mit
waferbaby/dimples
a487277099a2267b1b5981bfab4d39fa2f6e7d40
.codeclimate.yml
.codeclimate.yml
exclude_paths: - "/vendor/*" engines: phpcodesniffer: enabled: true config: file_extensions: "php" standard: "PSR1, PSR2" ratings: paths: - "**.php"
exclude_paths: - "/vendor/*" engines: phpcodesniffer: enabled: true config: file_extensions: "php" standard: "PSR1,PSR2" ratings: paths: - "**.php"
Fix standards inside of yml file
Fix standards inside of yml file
YAML
mit
codeclimate/codeclimate-phpcodesniffer,codeclimate/codeclimate-phpcodesniffer
d1e02ef2ae414cbf151fb32172173f08c8a3d388
recipes/borb/meta.yaml
recipes/borb/meta.yaml
{% set name = "borb" %} {% set version = "2.0.8.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/borb-{{ version }}.tar.gz sha256: e49e01142cf66b2e6c1502920dace35ae56fc688d70f01fdfc6b4e51ffb19f66 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python >=3.6 run: - fonttools >=4.22.1 - pillow - python >=3.6 - python-barcode >=0.13.1 - qrcode - requests test: imports: - borb - borb.datastructure about: home: https://github.com/jorisschellekens/borb summary: A library for reading, creating and manipulating PDF files in python. license: AGPL-3.0-or-later license_file: LICENSE.md extra: recipe-maintainers: - thewchan
{% set name = "borb" %} {% set version = "2.0.8.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/borb-{{ version }}.tar.gz sha256: e49e01142cf66b2e6c1502920dace35ae56fc688d70f01fdfc6b4e51ffb19f66 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python >=3.6 run: - fonttools >=4.22.1 - pillow - python >=3.6 - python-barcode - qrcode >=6.1 - requests test: imports: - borb - borb.datastructure about: home: https://github.com/jorisschellekens/borb summary: A library for reading, creating and manipulating PDF files in python. license: AGPL-3.0-or-later license_file: LICENSE.md extra: recipe-maintainers: - thewchan
Remove python-barcode version and add qrcode
Remove python-barcode version and add qrcode
YAML
bsd-3-clause
jakirkham/staged-recipes,conda-forge/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes
c960f3bcca50a094adc9cc208fabc813c2b80e8d
.goreleaser.yaml
.goreleaser.yaml
# This is an example .goreleaser.yml file with some sensible defaults. # Make sure to check the documentation at https://goreleaser.com before: hooks: # You may remove this if you don't use go modules. - go mod tidy - bash check_tag.sh {{.Version}} builds: - env: - CGO_ENABLED=0 ldflags: - -X main.appVersion={{.Version}} targets: - linux_amd64 - linux_arm64 - linux_arm_7 - windows_amd64 - darwin_amd64 - freebsd_amd64 - openbsd_amd64 archives: - replacements: darwin: Darwin linux: Linux windows: Windows amd64: x86_64 freebsd: FreeBSD openbsd: OpenBSD format_overrides: - goos: windows format: zip
# This is an example .goreleaser.yml file with some sensible defaults. # Make sure to check the documentation at https://goreleaser.com before: hooks: # You may remove this if you don't use go modules. - go mod tidy - bash check_tag.sh {{.Version}} builds: - env: - CGO_ENABLED=0 ldflags: - -X main.appVersion={{.Version}} targets: - linux_amd64 - linux_arm64 - linux_arm_6 - linux_arm_7 - windows_amd64 - darwin_amd64 - freebsd_amd64 - openbsd_amd64 archives: - replacements: darwin: Darwin linux: Linux windows: Windows amd64: x86_64 freebsd: FreeBSD openbsd: OpenBSD format_overrides: - goos: windows format: zip
Add ARM v6 to builds
Add ARM v6 to builds
YAML
apache-2.0
porjo/youtubeuploader,porjo/youtubeuploader
250714b769a5554d2f9065f29ce78030dc30517f
.scrutinizer.yml
.scrutinizer.yml
filter: excluded_paths: - 'tests/*' - 'examples/*' tools: php_sim: min_mass: 30 checks: php: duplication: false coding_style: php: spaces: around_operators: concatenation: true other: after_type_cast: false build: tests: override: - command: 'vendor/bin/phpunit --coverage-clover=log/coverage.xml' coverage: file: 'log/coverage.xml' format: 'clover' environment: mysql: false postgresql: false mongodb: false elasticsearch: false redis: false memcached: false neo4j: false rabbitmq: false
filter: excluded_paths: - 'tests/*' - 'tests-integration/*' - 'examples/*' tools: php_sim: min_mass: 30 checks: php: duplication: false coding_style: php: spaces: around_operators: concatenation: true other: after_type_cast: false build: tests: override: - command: 'vendor/bin/phpunit --coverage-clover=log/coverage.xml' coverage: file: 'log/coverage.xml' format: 'clover' environment: mysql: false postgresql: false mongodb: false elasticsearch: false redis: false memcached: false neo4j: false rabbitmq: false
Exclude integration test code from code analysis
Exclude integration test code from code analysis
YAML
mit
fathomminds/php-rest-models
13e4714fed155f834fb064944277871606bd48a8
.stylelintrc.yml
.stylelintrc.yml
extends: stylelint-config-standard rules: indentation: 2 declaration-block-single-line-max-declarations: 2 max-empty-lines: 2 selector-max-empty-lines: 2 declaration-empty-line-before: - never - ignore: - after-declaration block-opening-brace-space-before: null rule-empty-line-before: null selector-list-comma-newline-after: null selector-type-no-unknown: - true - ignoreTypes: - menuseparator - dropmarker
extends: stylelint-config-standard rules: indentation: 2 declaration-block-single-line-max-declarations: 2 max-empty-lines: 2 selector-max-empty-lines: 2 declaration-empty-line-before: - never - ignore: - after-declaration block-opening-brace-space-before: null rule-empty-line-before: null selector-list-comma-newline-after: null selector-type-no-unknown: - true - ignoreTypes: - menuseparator - toolbarseparator - dropmarker
Add XUL selector to white list
Add XUL selector to white list
YAML
unlicense
curipha/userstyles
588bff57bf92a69bce54f99a7f00f6e6f292b83f
metadata/com.asdoi.timetable.yml
metadata/com.asdoi.timetable.yml
Categories: - Science & Education License: GPL-3.0-or-later AuthorName: Felix Hollederer AuthorEmail: [email protected] WebSite: https://asdoi.gitlab.io/timetable.html SourceCode: https://github.com/asdoi/TimeTable IssueTracker: https://github.com/asdoi/TimeTable/issues Changelog: https://github.com/asdoi/TimeTable/releases AutoName: Timetable RepoType: git Repo: https://github.com/asdoi/TimeTable.git Builds: - versionName: '1.0' versionCode: 10 commit: v1.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.0' CurrentVersionCode: 10
Categories: - Science & Education License: GPL-3.0-or-later AuthorName: Felix Hollederer AuthorEmail: [email protected] WebSite: https://asdoi.gitlab.io/timetable.html SourceCode: https://github.com/asdoi/TimeTable IssueTracker: https://github.com/asdoi/TimeTable/issues Changelog: https://github.com/asdoi/TimeTable/releases AutoName: TimeTable RepoType: git Repo: https://github.com/asdoi/TimeTable.git Builds: - versionName: '1.0' versionCode: 10 commit: v1.0 subdir: app gradle: - yes - versionName: '1.1' versionCode: 11 commit: v1.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.1' CurrentVersionCode: 11
Update TimeTable to 1.1 (11)
Update TimeTable to 1.1 (11)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
b3d9e3342e13fb66faa24565acad89bbb812ae4a
metadata/fr.ralala.hexviewer.yml
metadata/fr.ralala.hexviewer.yml
Categories: - Development - Writing License: GPL-3.0-only SourceCode: https://github.com/Keidan/HexViewer/ IssueTracker: https://github.com/Keidan/HexViewer/issues/ Changelog: https://github.com/Keidan/HexViewer/releases/ AutoName: HexViewer RepoType: git Repo: https://github.com/Keidan/HexViewer Builds: - versionName: '1.5' versionCode: 6 commit: v1.5 subdir: app gradle: - yes - versionName: '1.6' versionCode: 8 commit: v1.6 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.6' CurrentVersionCode: 8
Categories: - Development - Writing License: GPL-3.0-only SourceCode: https://github.com/Keidan/HexViewer/ IssueTracker: https://github.com/Keidan/HexViewer/issues/ Changelog: https://github.com/Keidan/HexViewer/releases/ AutoName: HexViewer RepoType: git Repo: https://github.com/Keidan/HexViewer Builds: - versionName: '1.5' versionCode: 6 commit: v1.5 subdir: app gradle: - yes - versionName: '1.6' versionCode: 8 commit: v1.6 subdir: app gradle: - yes - versionName: 1.7.1 versionCode: 9 commit: v1.7.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.7.1 CurrentVersionCode: 9
Update HexViewer to 1.7.1 (9)
Update HexViewer to 1.7.1 (9)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
baf8e517a6514b5f666dadcb1cf83d57a6d04696
tmuxinator/engines_honda.yml
tmuxinator/engines_honda.yml
name: engines_honda root: ~/Projects/engines_honda # Optional tmux socket # socket_name: foo # Runs before everything. Use it to start daemons etc. # pre: sudo /etc/rc.d/mysqld start # Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions. # pre_window: rbenv shell 2.0.0-p247 # Pass command line options to tmux. Useful for specifying a different tmux.conf. # tmux_options: -f ~/.tmux.mac.conf # Change the command to call tmux. This can be used by derivatives/wrappers like byobu. # tmux_command: byobu # Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used. # startup_window: logs windows: - editor: layout: main-vertical panes: - vim - be rails c - guard: layout: main-vertical panes: - be guard - misc: layout: main-horizontal panes: - caffeinate -u -t 547584758 - ls . - ls .
name: engines_honda root: ~/Projects/engines_honda # Optional tmux socket # socket_name: foo # Runs before everything. Use it to start daemons etc. # pre: sudo /etc/rc.d/mysqld start # Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions. # pre_window: rbenv shell 2.0.0-p247 # Pass command line options to tmux. Useful for specifying a different tmux.conf. # tmux_options: -f ~/.tmux.mac.conf # Change the command to call tmux. This can be used by derivatives/wrappers like byobu. # tmux_command: byobu # Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used. # startup_window: logs windows: - editor: layout: 6705,238x58,0,0{180x58,0,0,0,57x58,181,0,3} panes: - vim - be rails c - guard: layout: main-vertical panes: - be guard - misc: layout: 1a14,238x58,0,0[238x2,0,0,2,238x55,0,3{118x55,0,3,4,119x55,119,3,5}] panes: - caffeinate -u -t 547584758 - ls . - ls .
Change layout in tmuxinator config
Change layout in tmuxinator config
YAML
mit
ne1ro/dotfiles,ne1ro/dotfiles
c577a74f572923aaa82f69174b9ba34b89f75261
configs/boogaloo.yml
configs/boogaloo.yml
# vim: set sw=2 ts=2 softtabstop=2 expandtab: runner: Boogaloo runner_config: mode: "exec" # Use Boogaloo's exec mode # This is the tool_path inside the container tool_path: "/home/boogaloo/.cabal/bin/boogaloo" docker: image: "delcypher/boogaloo-docker" volume: "/vol/" #max_memory: 4096 max_time: 5 additional_args: - "--format=Plain" - "--per-path=1" - "--loop-max=-1" - "--out=-1" # Unbounded number of executions entry_point: "main"
# vim: set sw=2 ts=2 softtabstop=2 expandtab: runner: Boogaloo runner_config: mode: "test" # This is the tool_path inside the container tool_path: "/home/boogaloo/.cabal/bin/boogaloo" docker: image: "delcypher/boogaloo-docker" volume: "/vol/" max_memory: 4096 max_time: 5 additional_args: - "--format=Plain" - "--loop-max=-1" - "--out=1" # Look for at most one fault - "--concretize=False" # Do not concretize, otherwise we can easily miss bugs entry_point: "main"
Change Boogaloo config file so that it is instructed to stop once it finds a bug. Also re-enable the memory limit as that is supported under Docker.
Change Boogaloo config file so that it is instructed to stop once it finds a bug. Also re-enable the memory limit as that is supported under Docker.
YAML
bsd-3-clause
symbooglix/boogie-runner,symbooglix/boogie-runner
c0be3d5bd3b9ed22a8ee10d1d3441fd3996b5c20
zuul.d/layout.yaml
zuul.d/layout.yaml
- project: templates: - tripleo-buildimage-jobs - openstack-python3-yoga-jobs - release-notes-jobs-python3
- project: templates: - tripleo-buildimage-jobs - openstack-python3-zed-jobs - release-notes-jobs-python3
Use python job template for Zed
Use python job template for Zed the current master should be compatible with the Zed release of the other projects. Related-Bug: #1974244 Signed-off-by: Chandan Kumar (raukadah) <[email protected]> Change-Id: I7f32d58b596489fd37aee18b04e01035e1ebe77b
YAML
apache-2.0
openstack/tripleo-puppet-elements,openstack/tripleo-puppet-elements
a57cca3adc807dab2ff206d731a379215fb180f6
.github/workflows/deploy-production.yml
.github/workflows/deploy-production.yml
name: Deploy Production Build on: push: tags: - '*' env: SW_DISABLED: true COVERAGE: false SENTRY_ORG: ilios jobs: test: name: Run Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: node-version: 12 - run: npm ci - run: npm test deploy: name: Deploy and Create Sentry Release needs: test runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Use Node.js 12 uses: actions/setup-node@v1 with: node-version: 12 - name: install dependencies run: npm ci - name: Ember CLI Deploy run: npm run deploy:production - name: Install Sentry CLI run: npm install -g @sentry/cli - name: Create a Sentry.io release run: | # Create new Sentry release export SENTRY_RELEASE=$(sentry-cli releases propose-version) sentry-cli releases new -p frontend $SENTRY_RELEASE sentry-cli releases set-commits --auto $SENTRY_RELEASE sentry-cli releases files $SENTRY_RELEASE upload-sourcemaps tmp/deploy-dist/ sentry-cli releases finalize $SENTRY_RELEASE
name: Deploy Production Build on: push: tags: - '*' env: SW_DISABLED: true COVERAGE: false SENTRY_ORG: ilios jobs: test: name: Run Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: node-version: 12 - run: npm ci - run: npm test deploy: name: Deploy and Create Sentry Release needs: test runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Use Node.js 12 uses: actions/setup-node@v1 with: node-version: 12 - name: install dependencies run: npm ci - name: Ember CLI Deploy run: npm run deploy:production - name: Install Sentry CLI run: npm install -g @sentry/cli - name: Create a Sentry.io release run: | # Create new Sentry release export SENTRY_RELEASE=$(sentry-cli releases propose-version) sentry-cli releases new -p frontend $SENTRY_RELEASE sentry-cli releases set-commits --auto $SENTRY_RELEASE sentry-cli releases files $SENTRY_RELEASE upload-sourcemaps tmp/deploy-dist/ sentry-cli releases finalize $SENTRY_RELEASE env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
Add sentry token for action
Add sentry token for action Without this nothing really happens.
YAML
mit
dartajax/frontend,dartajax/frontend,jrjohnson/frontend,ilios/frontend,jrjohnson/frontend,ilios/frontend
e21ee1387b28f925d19bb32a3a7555bfa8f654ad
.github/workflows/update-gh-pages.yml
.github/workflows/update-gh-pages.yml
name: Update Documentation on: push: branches: - develop jobs: build-and-deploy: runs-on: ubuntu-latest steps: - name: Checkout 🛎️ uses: actions/[email protected] - name: Set up Python uses: actions/setup-python@v2 - name: Install dependencies 🔧 run: | python -m pip install --upgrade pip pip install --quiet pdoc3 tensorflow torch jax jaxlib plotly nbformat ipython notebook pip install . - name: Build API with pdoc3 run: pdoc --html --output-dir docs --force phi - name: Build static HTML for Jupyter Notebooks run: jupyter nbconvert --to html --execute --allow-errors docs/*.ipynb - name: Deploy 🚀 uses: JamesIves/[email protected] # See https://github.com/marketplace/actions/deploy-to-github-pages with: branch: gh-pages # The branch the action should deploy to. folder: docs # The folder the action should deploy.
name: Update Documentation on: push: branches: - develop jobs: build-and-deploy: runs-on: ubuntu-latest steps: - name: Checkout 🛎️ uses: actions/[email protected] - name: Set up Python uses: actions/setup-python@v2 - name: Install dependencies 🔧 run: | python -m pip install --upgrade pip pip install --quiet pdoc3 tensorflow torch jax jaxlib plotly nbformat ipython notebook ipywidgets pip install . pip list - name: Build API with pdoc3 run: pdoc --html --output-dir docs --force phi - name: Build static HTML for Jupyter Notebooks run: jupyter nbconvert --to html --execute --allow-errors docs/*.ipynb - name: Deploy 🚀 uses: JamesIves/[email protected] # See https://github.com/marketplace/actions/deploy-to-github-pages with: branch: gh-pages # The branch the action should deploy to. folder: docs # The folder the action should deploy.
Install ipywidgets before jupyter notebook conversion
[docs] Install ipywidgets before jupyter notebook conversion
YAML
mit
tum-pbs/PhiFlow,tum-pbs/PhiFlow
3b7fac3ffb9a673078cf5e2176de6d9c209721e2
.github/FUNDING.yml
.github/FUNDING.yml
# These are supported funding model platforms github: bbatsov patreon: bbatsov open_collective: rubocop tidelift: "rubygems/rubocop" custom: https://www.paypal.me/bbatsov
# These are supported funding model platforms github: [bbatsov, koic] patreon: bbatsov open_collective: rubocop tidelift: "rubygems/rubocop" custom: https://www.paypal.me/bbatsov
Enable my GitHub sponsor profile
Enable my GitHub sponsor profile I was approved by GitHub Sponsors. This PR will add my GitHub account back to the list below. https://github.com/rubocop-hq/rubocop/commit/dee203c
YAML
mit
maxjacobson/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,tdeo/rubocop,bbatsov/rubocop,jmks/rubocop,tdeo/rubocop,tdeo/rubocop,jmks/rubocop,deivid-rodriguez/rubocop,maxjacobson/rubocop,jmks/rubocop,bbatsov/rubocop,deivid-rodriguez/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,deivid-rodriguez/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,rrosenblum/rubocop
2ae707697220e5e7377d165064ffc48bcf673580
.circleci/config.yaml
.circleci/config.yaml
# Javascript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2 jobs: build: docker: # specify the version you desire here - image: circleci/node:7.10 working_directory: ~/insula steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: npm install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} # run tests! - run: npm run test
# Javascript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2 jobs: build: docker: # specify the version you desire here - image: circleci/node:6.11 working_directory: ~/insula steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: npm install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} # run tests! - run: npm run test
Change to node v6 to try and resolve node_modules issue
Change to node v6 to try and resolve node_modules issue
YAML
mit
chandlerprall/insula
227923c87bed734c259bb8d59c2b8c87cf3ede8f
recipes/databroker/dev/meta.yaml
recipes/databroker/dev/meta.yaml
package: name: databroker version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: https://github.com/NSLS-II/databroker git_rev: master build: # Note that this will override the default build string with the Python # and NumPy versions string: {{ environ.get('GIT_BUILD_STR', '') }}_py{{ py }} number: 0 requirements: build: - python run: - python - pandas - pims - metadatastore >=0.2.0 - filestore >=0.2.0 - channelarchiver - six - tzlocal test: requires: - nslsii_dev_configuration imports: - databroker - databroker.testing - databroker.examples - databroker.examples.sample_data - databroker.utils about: home: https://github.com/NSLS-II/databroker license: BSD
package: name: databroker version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: https://github.com/NSLS-II/databroker git_rev: master build: # Note that this will override the default build string with the Python # and NumPy versions string: {{ environ.get('GIT_BUILD_STR', '') }}_py{{ py }} number: 0 requirements: build: - python run: - python - pandas - pims - metadatastore >=v0.2.0 - filestore >=v0.2.0 - channelarchiver - six - tzlocal test: requires: - nslsii_dev_configuration imports: - databroker - databroker.testing - databroker.examples - databroker.examples.sample_data - databroker.utils about: home: https://github.com/NSLS-II/databroker license: BSD
Update dev recipe to include 'v'
MNT: Update dev recipe to include 'v'
YAML
bsd-3-clause
tacaswell/conda-prescriptions,ericdill/conda-prescriptions,ericdill/conda-prescriptions,danielballan/conda-prescriptions,danielballan/conda-prescriptions,tacaswell/conda-prescriptions,ericdill/conda-prescriptions,tacaswell/conda-prescriptions
ed68d35a5a89abc812f9a9ff9f4336628226a052
recipes/databroker/dev/meta.yaml
recipes/databroker/dev/meta.yaml
package: name: databroker version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: https://github.com/NSLS-II/databroker git_rev: master build: number: 0 requirements: build: - python run: - python - pandas - pims - metadatastore >=0.2.0 - filestore >=0.2.0 - channelarchiver - six - tzlocal test: requires: - nslsii_dev_configuration imports: - databroker - databroker.testing - databroker.examples - databroker.examples.sample_data - databroker.utils about: home: https://github.com/NSLS-II/databroker license: BSD
package: name: databroker version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: https://github.com/NSLS-II/databroker git_rev: master build: # Note that this will override the default build string with the Python # and NumPy versions string: {{ environ.get('GIT_BUILD_STR', '') }}_py{{ py }} number: 0 requirements: build: - python run: - python - pandas - pims - metadatastore >=0.2.0 - filestore >=0.2.0 - channelarchiver - six - tzlocal test: requires: - nslsii_dev_configuration imports: - databroker - databroker.testing - databroker.examples - databroker.examples.sample_data - databroker.utils about: home: https://github.com/NSLS-II/databroker license: BSD
Use fully described build string for dev build
MNT: Use fully described build string for dev build
YAML
bsd-3-clause
ericdill/conda-prescriptions,ericdill/conda-prescriptions,danielballan/conda-prescriptions,danielballan/conda-prescriptions,tacaswell/conda-prescriptions,ericdill/conda-prescriptions,tacaswell/conda-prescriptions,tacaswell/conda-prescriptions
394d34e938852474f23b1975ffda27d3379a2776
docs/antora.yml
docs/antora.yml
name: rubocop title: RuboCop # We always provide version without patch here (e.g. 1.1), # as patch versions should not appear in the docs. version: '1.18' nav: - modules/ROOT/nav.adoc
name: rubocop title: RuboCop # We always provide version without patch here (e.g. 1.1), # as patch versions should not appear in the docs. version: 'master' nav: - modules/ROOT/nav.adoc
Switch back the docs version
Switch back the docs version
YAML
mit
bbatsov/rubocop,maxjacobson/rubocop,rrosenblum/rubocop,rrosenblum/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,maxjacobson/rubocop,bbatsov/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,maxjacobson/rubocop
be3e3538aece819d13b386411a5686a2ca2d9491
packages/dt/dtw.yaml
packages/dt/dtw.yaml
homepage: '' changelog-type: '' hash: e217a5fa6c7b18c83f9488d1cda363ffedee2a05a884d7117f205aca8b68836a test-bench-deps: test-framework: -any base: -any vector-space: -any test-framework-quickcheck2: -any containers: -any thyme: -any MemoTrie: -any QuickCheck: <2.8 vector: -any maintainer: [email protected] synopsis: (Fast) Dynamic Time Warping changelog: '' basic-deps: base: ! '>=4.6 && <4.9' vector-space: ! '>=0.10 && <0.11' containers: ! '>=0.5 && <0.6' MemoTrie: ! '>=0.6 && <0.7' vector: ! '>=0.10 && <0.11' all-versions: - '0.9.2.0' - '1.0.0.0' author: Florian Hofmann latest: '1.0.0.0' description-type: haddock description: ! 'This package implements dynamic time warping as described here <http://en.wikipedia.org/w/index.php?title=Dynamic_time_warping>' license-name: MIT
homepage: '' changelog-type: '' hash: 279f35ffdafb455e80194c5040e312f925e2b1e8f8c896c1b49b8fc6efc854a2 test-bench-deps: test-framework: -any base: -any vector-space: -any test-framework-quickcheck2: -any containers: -any thyme: -any QuickCheck: <2.8 vector: -any maintainer: [email protected] synopsis: (Fast) Dynamic Time Warping changelog: '' basic-deps: base: ! '>=4.6 && <4.9' vector-space: ! '>=0.10 && <0.11' containers: ! '>=0.5 && <0.6' vector: ! '>=0.10 && <0.12' all-versions: - '0.9.2.0' - '1.0.0.0' - '1.0.1.0' author: Florian Hofmann latest: '1.0.1.0' description-type: haddock description: ! 'This package implements dynamic time warping as described here <http://en.wikipedia.org/w/index.php?title=Dynamic_time_warping>' license-name: MIT
Update from Hackage at 2015-07-21T09:19:26+0000
Update from Hackage at 2015-07-21T09:19:26+0000
YAML
mit
commercialhaskell/all-cabal-metadata
458f7d89fb84d155a12ffbf1f2fed9ae62e80ce5
dsaas-services/f8-tenant.yaml
dsaas-services/f8-tenant.yaml
services: - hash: f0270e2239b22514408c303edaa723fbb1e8e720 name: f8tenant path: /OpenShiftTemplate.yml url: https://github.com/fabric8io/fabric8-init-tenant/
services: - hash: 959f0faa98751ce484b95e6b55fb2d543df3e22d name: f8tenant path: /OpenShiftTemplate.yml url: https://github.com/fabric8io/fabric8-init-tenant/
Update to tenant service with v 1.0.96
Update to tenant service with v 1.0.96
YAML
apache-2.0
openshiftio/saas,openshiftio/saas
cb0207dfe285d033888dfbbe96caceeb59990fa2
dsaas-services/f8-tenant.yaml
dsaas-services/f8-tenant.yaml
services: - hash: bed58608f6c13082f5de5ce05cd826d5db51439e name: f8tenant path: /OpenShiftTemplate.yml url: https://github.com/fabric8io/fabric8-init-tenant/
services: - hash: 4dc6bfd5b5e8a69dcca9552a06d1ba9d491da9b9 name: f8tenant path: /OpenShiftTemplate.yml url: https://github.com/fabric8io/fabric8-init-tenant/
Update tenant - Move jenkins service to teams
Update tenant - Move jenkins service to teams
YAML
apache-2.0
openshiftio/saas,openshiftio/saas
73b14579d3c732b79da5cba69d52abb8359eb349
tasks/detect-and-upload/task.yml
tasks/detect-and-upload/task.yml
--- platform: linux image_resource: type: docker-image source: repository: cfbuildpacks/ci inputs: - name: pivotal-buildpack optional: true - name: pivotal-buildpack-cached optional: true - name: buildpacks-ci - name: buildpack caches: - path: buildpack/vendor outputs: - name: buildpack-artifacts run: path: bash args: - -cl - | set -e pushd buildpacks-ci tasks/detect-and-upload/run.rb popd params: RUBYGEM_MIRROR: CF_STACK: BUILDPACK_NAME: GIT_REPO_ORG:
--- platform: linux image_resource: type: docker-image source: repository: cfbuildpacks/ci inputs: - name: pivotal-buildpack optional: true - name: pivotal-buildpack-cached optional: true - name: buildpacks-ci - name: buildpack outputs: - name: buildpack-artifacts run: path: bash args: - -cl - | set -e pushd buildpacks-ci tasks/detect-and-upload/run.rb popd params: RUBYGEM_MIRROR: CF_STACK: BUILDPACK_NAME: GIT_REPO_ORG:
Remove use of vendor cache directory so that Go vendor is not clobbered
Remove use of vendor cache directory so that Go vendor is not clobbered
YAML
apache-2.0
cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci
ebfca73d218dd81b23fceb035b2e6969bfaca0e2
manifest.yml
manifest.yml
--- language: staticfile default_versions: - name: nginx version: 1.11.13 exclude_files: - ".git/" - ".gitignore" - ".gitmodules" - ".rspec" - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip - pkg/ - ".envrc" - cf.Gemfile - cf.Gemfile.lock - scripts/ - src/ dependencies: - name: nginx version: 1.11.13 uri: https://buildpacks.cloudfoundry.org/dependencies/nginx/nginx-1.11.13-linux-x64-0ae5f6fb.tgz md5: 0ae5f6fbae17cffb087fea4b9518b4f7 cf_stacks: - cflinuxfs2 pre_package: scripts/build.sh
--- language: staticfile default_versions: - name: nginx version: 1.13.1 exclude_files: - ".git/" - ".gitignore" - ".gitmodules" - ".rspec" - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip - pkg/ - ".envrc" - cf.Gemfile - cf.Gemfile.lock - scripts/ - src/ dependencies: - name: nginx version: 1.13.1 uri: https://buildpacks.cloudfoundry.org/dependencies/nginx/nginx-1.13.1-linux-x64-6178c85f.tgz md5: 6178c85f0cff4e1e7540890f5d927f0f cf_stacks: - cflinuxfs2 pre_package: scripts/build.sh
Add nginx 1.13.1, remove nginx 1.11.13
Add nginx 1.13.1, remove nginx 1.11.13 source url: http://nginx.org/download/nginx-1.13.1.tar.gz source gpg-signature: -----BEGIN PGP SIGNATURE----- iQEzBAABCAAdFiEEsPQlM3P49vUQ1CF4UgqZk6HAUvgFAlktiHEACgkQUgqZk6HA UvijEwf/dLZI1xH33pRuakkS9gG7u2g2FPC9sA3BP1wrBQA45ZzBUA19aQ+2lpCw N5ifRVuxYb9yNstNhO1f+dt5bMlfh8R7z50KFvtXzjlibOaLqOH3MJcaUfE5ZBP9 LXaLrQjl40ADd5WIqzs+ecN5dNjPs7Apb02klqHT2XpikiF+z4x+ylzQfedXwjYf vCYfVg9UevriMq682tbCPGrNNry07AS46dDzsaP6yxS6kss6Jix2epb2YBSvKQfE XHOks6W2d/RAIAsLf2Km/aal+Ww/Uj7HoVI5JifkXV7ZLqlN+FT2/zllEFLxvD0+ OrcvaEednn4ppoGeHLi4YPItppGNaw== =okoc -----END PGP SIGNATURE----- [#146295321]
YAML
apache-2.0
cloudfoundry/staticfile-buildpack,cloudfoundry/staticfile-buildpack,cloudfoundry/staticfile-buildpack,cloudfoundry/staticfile-buildpack
83fd78920fe94322455c5c0d700c6a4fbdec1ae5
.circleci/web-values.yaml
.circleci/web-values.yaml
fullnameOverride: "web" replicaCount: 3 service: port: 3000 containers: - name: web image: cyberdojo/web resources: limits: memory: 128Mi requests: memory: 128Mi #livenessProbe: # path: /alive? # port: 3000 #readinessProbe: # path: /ready? # port: 3000 envFromSecret: {} nodeSelector: {} affinity: {} tolerations: []
fullnameOverride: "web" replicaCount: 3 service: port: 3000 containers: - name: web image: cyberdojo/web resources: limits: memory: 128Mi requests: memory: 128Mi livenessProbe: path: /alive? port: 3000 #readinessProbe: # path: /ready? # port: 3000 envFromSecret: {} nodeSelector: {} affinity: {} tolerations: []
Add liveness probe to k8s yaml file
Add liveness probe to k8s yaml file
YAML
bsd-2-clause
cyber-dojo/web,cyber-dojo/web,cyber-dojo/web,cyber-dojo/web
77da90c7409e14a1308cf4f60895d99332e9228c
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: CI on: push: branches: - master pull_request: jobs: build-lowest-version: name: Build lowest version runs-on: ubuntu-latest steps: - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: '7.4' coverage: none extensions: mbstring, intl tools: composer:v2 - name: Setup Problem Matchers for PHPUnit run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Checkout code uses: actions/checkout@v2 - name: Download dependencies run: composer update --no-interaction --prefer-stable --prefer-lowest --prefer-dist - name: Run tests run: composer test build: name: Build runs-on: ubuntu-latest strategy: max-parallel: 10 matrix: php: ['7.4', '8.0', '8.1'] steps: - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: none extensions: mbstring, intl tools: composer:v2 - name: Setup Problem Matchers for PHPUnit run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Checkout code uses: actions/checkout@v2 - name: Download dependencies run: composer update --no-interaction --prefer-dist - name: Run tests run: composer test
name: CI on: push: branches: - master pull_request: jobs: build-lowest-version: name: Build lowest version runs-on: ubuntu-latest steps: - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: '7.4' coverage: none extensions: mbstring, intl tools: composer:v2 - name: Setup Problem Matchers for PHPUnit run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Checkout code uses: actions/checkout@v2 - name: Download dependencies run: composer update --no-interaction --prefer-stable --prefer-lowest --prefer-dist - name: Run tests run: composer test build: name: Build runs-on: ubuntu-latest strategy: max-parallel: 10 matrix: php: ['7.4', '8.0'] steps: - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: none extensions: mbstring, intl tools: composer:v2 - name: Setup Problem Matchers for PHPUnit run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Checkout code uses: actions/checkout@v2 - name: Download dependencies run: composer update --no-interaction --prefer-dist - name: Run tests run: composer test
Drop PHP 8.1 (nightly) test target for now
Drop PHP 8.1 (nightly) test target for now PHPSpec doesn't support it Signed-off-by: Mark Sagi-Kazar <[email protected]>
YAML
mit
bernardphp/bernard
924bc1c9974c092dbf9390b2a33bf2f892a6d80c
appveyor.yml
appveyor.yml
version: 7.1.0.{build} pull_requests: do_not_increment_build_number: true skip_tags: true skip_branch_with_pr: true image: Visual Studio 2017 configuration: Release install: - cmd: >- git submodule update --init --recursive git lfs pull build: project: Core\DolphinVM\DolphinVM.sln verbosity: minimal test_script: - cmd: BootAndTestDPRO artifacts: - path: dpro.* name: DPro - path: RegressionTests.xml name: DPro notifications: - provider: Email to: - [email protected] on_build_success: false on_build_failure: true on_build_status_changed: false
version: 7.1.1.{build} pull_requests: do_not_increment_build_number: true skip_tags: true skip_branch_with_pr: true image: Visual Studio 2017 configuration: Release install: - cmd: >- git submodule update --init --recursive git lfs pull build: project: Core\DolphinVM\DolphinVM.sln verbosity: minimal test_script: - cmd: BootAndTestDPRO artifacts: - path: dpro.* name: DPro - path: RegressionTests.xml name: DPro notifications: - provider: Email to: - [email protected] on_build_success: false on_build_failure: true on_build_status_changed: false
Advance build version in yaml
Advance build version in yaml
YAML
mit
jgfoster/Dolphin,blairmcg/Dolphin,shoshanatech/Dolphin,jgfoster/Dolphin,dolphinsmalltalk/Dolphin,shoshanatech/Dolphin,blairmcg/Dolphin,objectarts/Dolphin,dolphinsmalltalk/Dolphin,jgfoster/Dolphin,blairmcg/Dolphin,shoshanatech/Dolphin,shoshanatech/Dolphin,jgfoster/Dolphin,dolphinsmalltalk/Dolphin,dolphinsmalltalk/Dolphin,objectarts/Dolphin,blairmcg/Dolphin
847cb429f11c591f4b476c161de7a632ba473415
appveyor.yml
appveyor.yml
version: "master-{build}" os: Windows Server 2012 R2 platform: - x64 environment: matrix: # 21-x64 is failing right now #- ruby_version: "21-x64" - ruby_version: "21" clone_folder: c:\projects\chef clone_depth: 1 skip_tags: true branches: only: - master install: - systeminfo - winrm quickconfig -q - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - echo %PATH% - ruby --version - gem update --system || gem update --system || gem update --system - gem install bundler --quiet --no-ri --no-rdoc || gem install bundler --quiet --no-ri --no-rdoc || gem install bundler --quiet --no-ri --no-rdoc - update_rubygems - gem --version - bundler --version - SET BUNDLE_IGNORE_CONFIG=true - SET BUNDLE_FROZEN=1 - SET BUNDLE_WITHOUT=docgen:maintenance:omnibus_package:integration:aix:bsd:linux:mac_os_x:solaris build_script: - bundle install || bundle install || bundle install test_script: - SET SPEC_OPTS=--format progress - bundle exec rake spec
version: "master-{build}" os: Windows Server 2012 R2 platform: - x64 environment: matrix: # 21-x64 is failing right now #- ruby_version: "21-x64" - ruby_version: "21" clone_folder: c:\projects\chef clone_depth: 1 skip_tags: true branches: only: - master install: - systeminfo - winrm quickconfig -q - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - echo %PATH% - ruby --version - gem update --system || gem update --system || gem update --system - gem install bundler --quiet --no-ri --no-rdoc || gem install bundler --quiet --no-ri --no-rdoc || gem install bundler --quiet --no-ri --no-rdoc - update_rubygems - gem --version - bundler --version - SET BUNDLE_IGNORE_CONFIG=true - SET BUNDLE_FROZEN=1 - SET BUNDLE_WITHOUT=development:guard:maintenance:tools:integration:changelog:compat_testing:docgen:travis:style:omnibus_package:aix:bsd:linux:mac_os_x:solaris build_script: - bundle install || bundle install || bundle install test_script: - SET SPEC_OPTS=--format progress - bundle exec rake spec
Install even less stuff before tests on Windows
Install even less stuff before tests on Windows
YAML
apache-2.0
Ppjet6/chef,jonlives/chef,Kast0rTr0y/chef,evan2645/chef,mal/chef,jonlives/chef,youngjl1/chef,mattray/chef,docwhat/chef,tas50/chef-1,jonlives/chef,Kast0rTr0y/chef,jkerry/chef,brettcave/chef,juliandunn/chef,jonlives/chef,Kast0rTr0y/chef,ChaosCloud/chef,strangelittlemonkey/chef,jkerry/chef,brettcave/chef,docwhat/chef,tomdoherty/chef,Ppjet6/chef,juliandunn/chef,mal/chef,criteo-forks/chef,sekrett/chef,b002368/chef-repo,nathwill/chef,b002368/chef-repo,gene1wood/chef,MsysTechnologiesllc/chef,ChaosCloud/chef,strangelittlemonkey/chef,oclaussen/chef,onlyhavecans/chef,sanditiffin/chef,mal/chef,tomdoherty/chef,gene1wood/chef,youngjl1/chef,mwrock/chef,mikedodge04/chef,brettcave/chef,someara/chef,ChaosCloud/chef,someara/chef,evan2645/chef,chef/chef,docwhat/chef,sekrett/chef,webframp/chef,jkerry/chef,MsysTechnologiesllc/chef,someara/chef,criteo-forks/chef,juliandunn/chef,chef/chef,Kast0rTr0y/chef,martinisoft/chef,nvwls/chef,Ppjet6/chef,ranjib/chef,jkerry/chef,jaymzh/chef,mikedodge04/chef,mattray/chef,mwrock/chef,webframp/chef,b002368/chef-repo,nathwill/chef,robmul/chef,b002368/chef-repo,Tensibai/chef,nvwls/chef,ranjib/chef,robmul/chef,criteo-forks/chef,sekrett/chef,jonlives/chef,tas50/chef-1,tbunnyman/chef,strangelittlemonkey/chef,Ppjet6/chef,martinisoft/chef,youngjl1/chef,mikedodge04/chef,nvwls/chef,mwrock/chef,juliandunn/chef,criteo-forks/chef,nvwls/chef,mattray/chef,someara/chef,higanworks/chef,robmul/chef,Tensibai/chef,martinisoft/chef,strangelittlemonkey/chef,docwhat/chef,b002368/chef-repo,brettcave/chef,jonlives/chef,mal/chef,jaymzh/chef,mikedodge04/chef,gene1wood/chef,nathwill/chef,ranjib/chef,ChaosCloud/chef,someara/chef,nathwill/chef,MsysTechnologiesllc/chef,sekrett/chef,ranjib/chef,evan2645/chef,mattray/chef,brettcave/chef,oclaussen/chef,ChaosCloud/chef,onlyhavecans/chef,tomdoherty/chef,onlyhavecans/chef,youngjl1/chef,youngjl1/chef,strangelittlemonkey/chef,jkerry/chef,robmul/chef,chef/chef,sanditiffin/chef,docwhat/chef,webframp/chef,mal/chef,tbunnyman/chef,evan2645/chef,tas50/chef-1,mikedodge04/chef,Tensibai/chef,martinisoft/chef,strangelittlemonkey/chef,jaymzh/chef,MsysTechnologiesllc/chef,higanworks/chef,youngjl1/chef,webframp/chef,mikedodge04/chef,mattray/chef,ranjib/chef,mal/chef,chef/chef,sanditiffin/chef,webframp/chef,oclaussen/chef,nathwill/chef,Kast0rTr0y/chef,onlyhavecans/chef,tbunnyman/chef,robmul/chef,higanworks/chef,sanditiffin/chef,sekrett/chef,oclaussen/chef,nathwill/chef,tomdoherty/chef,tbunnyman/chef,webframp/chef,Tensibai/chef,criteo-forks/chef,Ppjet6/chef,oclaussen/chef,martinisoft/chef,Tensibai/chef,sekrett/chef,tas50/chef-1,sanditiffin/chef,evan2645/chef,gene1wood/chef,docwhat/chef,tbunnyman/chef,sanditiffin/chef,ranjib/chef,jaymzh/chef,oclaussen/chef,onlyhavecans/chef,Kast0rTr0y/chef,evan2645/chef,onlyhavecans/chef,ChaosCloud/chef,robmul/chef,higanworks/chef,b002368/chef-repo,tbunnyman/chef,jkerry/chef,nvwls/chef,juliandunn/chef,someara/chef,criteo-forks/chef,mwrock/chef,nvwls/chef,higanworks/chef,Ppjet6/chef,brettcave/chef,tomdoherty/chef
7c6ce3b92249cea26d853ac0b40dfc9bf0f0002b
appveyor.yml
appveyor.yml
image: Visual Studio 2015 cache: - '%HOMEDRIVE%%HOMEPATH%\.node-gyp' - '%APPDATA%\npm-cache' environment: nodejs_version: "7.4.0" NODE_PRE_GYP_GITHUB_TOKEN: secure: izXdqKc3Q97YCK/iHmkf5704WRhBwZXVBn2G+MX/NgyxVJPfwTkZxc8WMET/QZOh platform: - x86 - x64 build: off install: - ps: Install-Product node $env:nodejs_version $env:platform - npm config set msvs_version 2015 - npm install --build-from-source=@atom/watcher test_script: - npm run ci:appveyor - ps: | if (($env:APPVEYOR_REPO_TAG -eq 'true') -and ($env:PLATFORM -eq 'x64') -and $env:NODE_PRE_GYP_GITHUB_TOKEN) { npm run publish } shallow_clone: true clone_depth: 5 skip_branch_with_pr: true
image: Visual Studio 2015 cache: - '%HOMEDRIVE%%HOMEPATH%\.node-gyp' - '%APPDATA%\npm-cache' environment: nodejs_version: "8" NODE_PRE_GYP_GITHUB_TOKEN: secure: izXdqKc3Q97YCK/iHmkf5704WRhBwZXVBn2G+MX/NgyxVJPfwTkZxc8WMET/QZOh platform: - x86 - x64 build: off install: - ps: Install-Product node $env:nodejs_version $env:platform - npm config set msvs_version 2015 - npm install --build-from-source=@atom/watcher test_script: - npm run ci:appveyor - ps: | if (($env:APPVEYOR_REPO_TAG -eq 'true') -and ($env:PLATFORM -eq 'x64') -and $env:NODE_PRE_GYP_GITHUB_TOKEN) { npm run publish } shallow_clone: true clone_depth: 5 skip_branch_with_pr: true
Use Node.js 8 in AppVeyor
Use Node.js 8 in AppVeyor
YAML
mit
atom/watcher,atom/watcher,atom/watcher,atom/watcher,atom/watcher
9a91ea75c6d63b25713fba3b06a034ce4f0fea44
etc/kayobe/seed-vm.yml
etc/kayobe/seed-vm.yml
--- ############################################################################### # Seed node VM configuration. # Name of the seed VM. #seed_vm_name: # Memory in MB. #seed_vm_memory_mb: # Number of vCPUs. #seed_vm_vcpus: # List of volumes. #seed_vm_volumes: # Name of the storage pool for the seed VM volumes. seed_vm_pool: "alaska" # Capacity of the seed VM root volume. #seed_vm_root_capacity: # Format of the seed VM root volume. #seed_vm_root_format: # Base image for the seed VM root volume. seed_vm_root_image: "https://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud.qcow2" ############################################################################### # Dummy variable to allow Ansible to accept this file. workaround_ansible_issue_8743: yes
--- ############################################################################### # Seed node VM configuration. # Name of the seed VM. #seed_vm_name: # Memory in MB. #seed_vm_memory_mb: # Number of vCPUs. #seed_vm_vcpus: # List of volumes. #seed_vm_volumes: # Name of the storage pool for the seed VM volumes. seed_vm_pool: "alaska" # Capacity of the seed VM root volume. #seed_vm_root_capacity: # Format of the seed VM root volume. #seed_vm_root_format: # Base image for the seed VM root volume. #seed_vm_root_image: ############################################################################### # Dummy variable to allow Ansible to accept this file. workaround_ansible_issue_8743: yes
Use default value for seed_vm_root_image
Use default value for seed_vm_root_image
YAML
apache-2.0
SKA-ScienceDataProcessor/alaska-kayobe-config
df2fd14e49413741ead2b2d69f22fe0650da8b34
meta/main.yml
meta/main.yml
--- galaxy_info: author: kosssi description: Install and Configure ssh authorized key license: license MIT min_ansible_version: 1.4 platforms: - name: Ubuntu versions: - all - name: Debian versions: - all categories: - system
--- galaxy_info: author: kosssi description: Install and Configure ssh authorized key license: license MIT min_ansible_version: 1.4 platforms: - name: Ubuntu versions: - all - name: Debian versions: - all categories: - system dependencies: []
Add dependencies key in metadata
Add dependencies key in metadata
YAML
mit
kosssi/ansible-role-ssh
6f4bfb469b814c1fa0d892fd0a08523858acb391
recipes/rb-inotify/meta.yaml
recipes/rb-inotify/meta.yaml
{% set name = "rb-inotify" %} {% set version = "0.10.0" %} {% set github_org = "guard" %} package: name: {{ name|lower }} version: {{ version }} source: - url: https://rubygems.org/downloads/{{ name }}-{{ version }}.gem sha256: 4481d9ce69159774be31215d10917684413ad3416b2018bdd8dc9b976a8747bb build: number: 0 script: gem install --ignore-dependencies {{ name }}-{{ version }}.gem skip: True # [win] requirements: host: - ruby {{ ruby }} run: - ruby - rb-ffi >=1.0,<2 test: commands: - ruby -r {{ name }} -e 'exit 0' about: home: https://github.com/{{ github_org }}/{{ name }} license: MIT license_family: MIT license_file: LICENSE.md summary: A Ruby wrapper for Linux inotify, using FFI doc_url: https://www.rubydoc.info/gems/{{ name }} dev_url: https://github.com/{{ github_org }}/{{ name }} extra: recipe-maintainers: - sodre
{% set name = "rb-inotify" %} {% set version = "0.10.0" %} {% set github_org = "guard" %} package: name: {{ name|lower }} version: {{ version }} source: - url: https://rubygems.org/downloads/{{ name }}-{{ version }}.gem sha256: 4481d9ce69159774be31215d10917684413ad3416b2018bdd8dc9b976a8747bb build: number: 0 script: gem install --ignore-dependencies {{ name }}-{{ version }}.gem skip: True # [win] requirements: host: - ruby {{ ruby }} run: - ruby - rb-ffi >=1.0,<2 test: commands: - ruby -r {{ name }} -e 'exit 0' # [linux] about: home: https://github.com/{{ github_org }}/{{ name }} license: MIT license_family: MIT license_file: LICENSE.md summary: A Ruby wrapper for Linux inotify, using FFI doc_url: https://www.rubydoc.info/gems/{{ name }} dev_url: https://github.com/{{ github_org }}/{{ name }} extra: recipe-maintainers: - sodre
Disable rb-inotify tests on osx
Disable rb-inotify tests on osx
YAML
bsd-3-clause
stuertz/staged-recipes,mariusvniekerk/staged-recipes,birdsarah/staged-recipes,patricksnape/staged-recipes,goanpeca/staged-recipes,scopatz/staged-recipes,chrisburr/staged-recipes,jochym/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,Juanlu001/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,dschreij/staged-recipes,goanpeca/staged-recipes,patricksnape/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,isuruf/staged-recipes,petrushy/staged-recipes,igortg/staged-recipes,synapticarbors/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,Juanlu001/staged-recipes,petrushy/staged-recipes,chrisburr/staged-recipes,hadim/staged-recipes,SylvainCorlay/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,mcs07/staged-recipes,ReimarBauer/staged-recipes,johanneskoester/staged-recipes,isuruf/staged-recipes,synapticarbors/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,birdsarah/staged-recipes,mcs07/staged-recipes,igortg/staged-recipes,asmeurer/staged-recipes,SylvainCorlay/staged-recipes,asmeurer/staged-recipes
bafcca946e4b82c3be9d9f9634bfc2beed515782
.appveyor.yml
.appveyor.yml
version: 1.0.{build} image: Visual Studio 2017 shallow_clone: true configuration: Release platform: x64 install: - cmd: scripts\bin\windows\genie.exe vs2017 build: parallel: true verbosity: minimal project: build/projects/vs2017/slang.sln test_script: - cmd: build\win64_vs2017\bin\unittestsRelease.exe
version: 1.0.{build} image: Visual Studio 2017 shallow_clone: true configuration: Release platform: x64 install: - cmd: mkdir build - cmd: cd build - cmd: cmake -G"Visual Studio 15 2017 Win64" .. build: parallel: true verbosity: minimal project: build/slang.sln test_script: - cmd: build\tests\unittests\Release\unittests.exe
Enable CMake build in AppVeyor
Enable CMake build in AppVeyor
YAML
mit
MikePopoloski/slang,MikePopoloski/slang
66cff5aecc77eaaccdf004ca16b12f987c7e38c2
.appveyor.yml
.appveyor.yml
version: 2.4.{build} branches: except: - coverity_scan configuration: Release environment: PROJECT_BASE: "C:/projects/morebin" PATH: "C:\Libraries\boost_1_60_0;%PATH%" platform: x64 before_build: - ps: cd "${env:APPVEYOR_BUILD_FOLDER}" - cmd: dir - cmd: md build - cmd: cd build - cmd: cmake --version - cmd: cmake -G"Visual Studio 12 Win64" -C"../appveyor.cmake" -H.. -B. build: project: C:\projects\morebin\build\morebin.sln parallel: true verbosity: normal
version: 2.4.{build} branches: except: - coverity_scan configuration: Release environment: PROJECT_BASE: "C:/projects/morebin" PATH: "C:\Libraries\boost_1_60_0;%PATH%" os: Visual Studio 2015 platform: x64 before_build: - ps: cd "${env:APPVEYOR_BUILD_FOLDER}" - cmd: dir - cmd: md build - cmd: cd build - cmd: cmake --version - cmd: cmake -G"Visual Studio 14 2015 Win64" -C"../appveyor.cmake" -H.. -B. build: project: C:\projects\morebin\build\morebin.sln parallel: true verbosity: normal
Move to Visual Studio 14 2015
Move to Visual Studio 14 2015
YAML
mit
peterfpeterson/morebin,peterfpeterson/morebin,peterfpeterson/morebin
3e649660fa3140b00cd46408a2bc09499c3bc1b4
.appveyor.yml
.appveyor.yml
image: - Visual Studio 2017 clone_depth: 10 configuration: Release platform: AnyCPU install: - appveyor DownloadFile 'https://ci.appveyor.com/api/projects/markfinal/buildamation/artifacts/bam.zip?branch=master^&job=Image%3A%20Visual%20Studio%202017' -FileName bam.zip - dir - 7z x bam.zip -oc:\BuildAMation on_finish: - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
image: - Visual Studio 2017 clone_depth: 10 configuration: Release platform: AnyCPU install: - appveyor DownloadFile 'https://ci.appveyor.com/api/projects/markfinal/buildamation/artifacts/bam.zip?branch=master&job=Image%3A%20Visual%20Studio%202017' -FileName bam.zip - dir - 7z x bam.zip -oc:\BuildAMation #on_finish: # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
Remove RDP code, and remove odd escaping of & in the URL
[CI] Remove RDP code, and remove odd escaping of & in the URL
YAML
bsd-3-clause
markfinal/bam-imageformats,markfinal/bam-imageformats,markfinal/bam-imageformats
924506cc3784d9d04ece02176c237c11a8def2f4
.appveyor.yml
.appveyor.yml
version: 1.0.0-{build} image: - Visual Studio 2019 - Ubuntu1804 - macos environment: matrix: - PYTHON: "C:\\Python38" PYTHON_VERSION: "3.8.1" PYTHON_ARCH: "32" - PYTHON: "C:\\Python38-x64" PYTHON_VERSION: "3.8.1" PYTHON_ARCH: "64" cache: - '%LOCALAPPDATA%\pip\Cache' services: - postgresql12 build: off install: - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;C:\\Program Files\\PostgreSQL\\12\\bin\\;%PATH%" - pip install --upgrade --requirement requirements.txt - createdb harmonbot - createuser harmonbot --no-password test_script: - cd Discord && python Harmonbot.py - cd ../Telegram && python Telegram_Harmonbot.py
version: 1.0.0-{build} image: - Visual Studio 2019 - Ubuntu1804 - macos environment: matrix: - PYTHON: "C:\\Python38" PYTHON_VERSION: "3.8.1" PYTHON_ARCH: "32" - PYTHON: "C:\\Python38-x64" PYTHON_VERSION: "3.8.1" PYTHON_ARCH: "64" cache: - '%LOCALAPPDATA%\pip\Cache' services: - postgresql12 build_script: - createdb harmonbot - createuser harmonbot --no-password install: - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;C:\\Program Files\\PostgreSQL\\12\\bin\\;%PATH%" - pip install --upgrade --requirement requirements.txt test_script: - cd Discord && python Harmonbot.py - cd ../Telegram && python Telegram_Harmonbot.py
Move PostgreSQL setup to build script
[AppVeyor] Move PostgreSQL setup to build script
YAML
mit
Harmon758/Harmonbot,Harmon758/Harmonbot
76ee6ed8faec069383f4f598f4d2a3b1eb0579d5
appveyor.yml
appveyor.yml
# 2017-09-14 clone_depth: 1 version: '{branch}-{build}' configuration: Debug cache: - C:\ProgramData\chocolatey\bin -> appveyor.yml - C:\ProgramData\chocolatey\lib -> appveyor.yml - inspectcode -> appveyor.yml - packages -> **\packages.config install: - cmd: git submodule update --init --recursive - cmd: choco install resharper-clt -y - cmd: choco install nvika -y - cmd: appveyor DownloadFile https://github.com/peppy/CodeFileSanity/releases/download/v0.2.2/CodeFileSanity.exe before_build: - cmd: CodeFileSanity.exe - cmd: nuget restore build: project: osu.sln parallel: true verbosity: minimal after_build: - cmd: inspectcode /o="inspectcodereport.xml" /caches-home="inspectcode" osu.sln - cmd: NVika parsereport "inspectcodereport.xml" --treatwarningsaserrors
# 2017-09-14 clone_depth: 1 version: '{branch}-{build}' configuration: Debug cache: - C:\ProgramData\chocolatey\bin -> appveyor.yml - C:\ProgramData\chocolatey\lib -> appveyor.yml - inspectcode -> appveyor.yml - packages -> **\packages.config install: - cmd: git submodule update --init --recursive - cmd: choco install resharper-clt -y - cmd: choco install nvika -y - cmd: appveyor DownloadFile https://github.com/peppy/CodeFileSanity/releases/download/v0.2.3/CodeFileSanity.exe before_build: - cmd: CodeFileSanity.exe - cmd: nuget restore build: project: osu.sln parallel: true verbosity: minimal after_build: - cmd: inspectcode /o="inspectcodereport.xml" /caches-home="inspectcode" osu.sln - cmd: NVika parsereport "inspectcodereport.xml" --treatwarningsaserrors
Update CodeFileSanity to ignore migrations folder
Update CodeFileSanity to ignore migrations folder
YAML
mit
smoogipoo/osu,peppy/osu,naoey/osu,ppy/osu,UselessToucan/osu,ZLima12/osu,smoogipoo/osu,ppy/osu,peppy/osu,johnneijzen/osu,ZLima12/osu,smoogipoo/osu,EVAST9919/osu,ppy/osu,UselessToucan/osu,naoey/osu,NeoAdonis/osu,peppy/osu,2yangk23/osu,DrabWeb/osu,EVAST9919/osu,peppy/osu-new,Nabile-Rahmani/osu,naoey/osu,NeoAdonis/osu,DrabWeb/osu,2yangk23/osu,Frontear/osuKyzer,johnneijzen/osu,NeoAdonis/osu,DrabWeb/osu,smoogipooo/osu,Drezi126/osu,UselessToucan/osu
c558a0d96200e7ce5335dc4a048a54ed5499bdbd
appveyor.yml
appveyor.yml
# http://www.appveyor.com/docs/appveyor-yml # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf true # Test against these versions of Node.js. environment: matrix: - nodejs_version: "0.12" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node 0.STABLE.latest - ps: Install-Product node $env:nodejs_version # Install PhantomJS - cinst PhantomJS -y # Typical npm stuff. - md C:\nc - npm install -g npm@^2 # hide python so node-gyp won't try to build native extentions - rename C:\Python27 Python27hidden # Workaround https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows - set PATH=%APPDATA%\npm;%PATH% - npm config set cache C:\nc - npm version - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - npm version - ps: npm run-script test-all # Don't actually build. build: off # Set build version format here instead of in the admin panel. version: "{build}"
# http://www.appveyor.com/docs/appveyor-yml # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf true # Test against these versions of Node.js. environment: matrix: - nodejs_version: "0.12" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node 0.STABLE.latest - ps: Install-Product node $env:nodejs_version # Install PhantomJS - cinst PhantomJS -y # Typical npm stuff. - md C:\nc - npm install -g npm@^2 # hide python so node-gyp won't try to build native extentions - rename C:\Python27 Python27hidden # Workaround https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows - set PATH=%APPDATA%\npm;%PATH% - npm config set cache C:\nc - npm version - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - npm version - ps: npm run test-all # Don't actually build. build: off # Set build version format here instead of in the admin panel. version: "{build}"
Use `run` instead of `run-script`
Use `run` instead of `run-script` Simpler and less clutter.
YAML
mit
dosco/ember-cli,acorncom/ember-cli,trabus/ember-cli,maxcal/ember-cli,BrianSipple/ember-cli,taras/ember-cli,szines/ember-cli,airportyh/ember-cli,rtablada/ember-cli,williamsbdev/ember-cli,kellyselden/ember-cli,Turbo87/ember-cli,nruth/ember-cli,yaymukund/ember-cli,martndemus/ember-cli,raytiley/ember-cli,cibernox/ember-cli,olegdovger/ember-cli,makepanic/ember-cli,johnotander/ember-cli,DanielOchoa/ember-cli,josemarluedke/ember-cli,calderas/ember-cli,BrianSipple/ember-cli,gfvcastro/ember-cli,lancedikson/ember-cli,HeroicEric/ember-cli,blimmer/ember-cli,alexdiliberto/ember-cli,szines/ember-cli,twokul/ember-cli,josemarluedke/ember-cli,rot26/ember-cli,kamalaknn/ember-cli,elwayman02/ember-cli,pzuraq/ember-cli,patocallaghan/ember-cli,jayphelps/ember-cli,seanpdoyle/ember-cli,gmurphey/ember-cli,jrjohnson/ember-cli,xcambar/ember-cli,eoinkelly/ember-cli,trabus/ember-cli,johnotander/ember-cli,blimmer/ember-cli,williamsbdev/ember-cli,mohlek/ember-cli,mike-north/ember-cli,beatle/ember-cli,akatov/ember-cli,gfvcastro/ember-cli,eliotsykes/ember-cli,EricSchank/ember-cli,blimmer/ember-cli,raytiley/ember-cli,josemarluedke/ember-cli,romulomachado/ember-cli,coderly/ember-cli,calderas/ember-cli,szines/ember-cli,selvagsz/ember-cli,kriswill/ember-cli,DanielOchoa/ember-cli,trentmwillis/ember-cli,princeofdarkness76/ember-cli,samselikoff/ember-cli,jcope2013/ember-cli,jgwhite/ember-cli,yaymukund/ember-cli,patocallaghan/ember-cli,pzuraq/ember-cli,airportyh/ember-cli,jgwhite/ember-cli,nruth/ember-cli,jasonmit/ember-cli,kamalaknn/ember-cli,lancedikson/ember-cli,eoinkelly/ember-cli,joaohornburg/ember-cli,trentmwillis/ember-cli,jcope2013/ember-cli,ianstarz/ember-cli,kriswill/ember-cli,thoov/ember-cli,joliss/ember-cli,nathanhammond/ember-cli,Restuta/ember-cli,xtian/ember-cli,calderas/ember-cli,selvagsz/ember-cli,blimmer/ember-cli,olegdovger/ember-cli,sivakumar-kailasam/ember-cli,johanneswuerbach/ember-cli,Restuta/ember-cli,noslouch/ember-cli,eliotsykes/ember-cli,asakusuma/ember-cli,code0100fun/ember-cli,patocallaghan/ember-cli,xiujunma/ember-cli,jayphelps/ember-cli,quaertym/ember-cli,pzuraq/ember-cli,seawatts/ember-cli,princeofdarkness76/ember-cli,taras/ember-cli,greyhwndz/ember-cli,jonathanKingston/ember-cli,ro0gr/ember-cli,alefteris/ember-cli,yaymukund/ember-cli,pzuraq/ember-cli,dosco/ember-cli,ServiceTo/ember-cli,jayphelps/ember-cli,code0100fun/ember-cli,comlaterra/ember-cli,tobymarsden/ember-cli,pixelhandler/ember-cli,kellyselden/ember-cli,rot26/ember-cli,mike-north/ember-cli,beatle/ember-cli,noslouch/ember-cli,scalus/ember-cli,samselikoff/ember-cli,abuiles/ember-cli,runspired/ember-cli,ianstarz/ember-cli,williamsbdev/ember-cli,johanneswuerbach/ember-cli,code0100fun/ember-cli,abuiles/ember-cli,martypenner/ember-cli,lazybensch/ember-cli,coderly/ember-cli,eoinkelly/ember-cli,samselikoff/ember-cli,tsing80/ember-cli,rodyhaddad/ember-cli,michael-k/ember-cli,beatle/ember-cli,romulomachado/ember-cli,gmurphey/ember-cli,tobymarsden/ember-cli,fpauser/ember-cli,dukex/ember-cli,tobymarsden/ember-cli,csantero/ember-cli,akatov/ember-cli,givanse/ember-cli,ServiceTo/ember-cli,rodyhaddad/ember-cli,Turbo87/ember-cli,EricSchank/ember-cli,michael-k/ember-cli,joostdevries/ember-cli,typeoneerror/ember-cli,kanongil/ember-cli,comlaterra/ember-cli,johnotander/ember-cli,rtablada/ember-cli,pangratz/ember-cli,marcioj/ember-cli,BrianSipple/ember-cli,xtian/ember-cli,Turbo87/ember-cli,ianstarz/ember-cli,eccegordo/ember-cli,williamsbdev/ember-cli,EricSchank/ember-cli,runspired/ember-cli,eccegordo/ember-cli,tsing80/ember-cli,gfvcastro/ember-cli,balinterdi/ember-cli,martypenner/ember-cli,csantero/ember-cli,givanse/ember-cli,gmurphey/ember-cli,jonathanKingston/ember-cli,sivakumar-kailasam/ember-cli,tsing80/ember-cli,maxcal/ember-cli,acorncom/ember-cli,ro0gr/ember-cli,balinterdi/ember-cli,dukex/ember-cli,martndemus/ember-cli,jcope2013/ember-cli,makepanic/ember-cli,quaertym/ember-cli,princeofdarkness76/ember-cli,taras/ember-cli,mike-north/ember-cli,xcambar/ember-cli,nruth/ember-cli,trentmwillis/ember-cli,joostdevries/ember-cli,dukex/ember-cli,comlaterra/ember-cli,pixelhandler/ember-cli,lazybensch/ember-cli,joliss/ember-cli,josemarluedke/ember-cli,HeroicEric/ember-cli,scalus/ember-cli,marcioj/ember-cli,alefteris/ember-cli,eccegordo/ember-cli,johnotander/ember-cli,ballPointPenguin/ember-cli,ianstarz/ember-cli,seanpdoyle/ember-cli,rot26/ember-cli,kellyselden/ember-cli,trentmwillis/ember-cli,raytiley/ember-cli,csantero/ember-cli,coderly/ember-cli,ef4/ember-cli,noslouch/ember-cli,gmurphey/ember-cli,kamalaknn/ember-cli,buschtoens/ember-cli,scalus/ember-cli,eliotsykes/ember-cli,pangratz/ember-cli,rtablada/ember-cli,michael-k/ember-cli,ef4/ember-cli,DanielOchoa/ember-cli,comlaterra/ember-cli,eoinkelly/ember-cli,Restuta/ember-cli,princeofdarkness76/ember-cli,selvagsz/ember-cli,trabus/ember-cli,nruth/ember-cli,eliotsykes/ember-cli,rodyhaddad/ember-cli,mixonic/ember-cli,rot26/ember-cli,Restuta/ember-cli,kamalaknn/ember-cli,Turbo87/ember-cli,rtablada/ember-cli,rodyhaddad/ember-cli,pangratz/ember-cli,thoov/ember-cli,romulomachado/ember-cli,jcope2013/ember-cli,ballPointPenguin/ember-cli,nathanhammond/ember-cli,raycohen/ember-cli,xtian/ember-cli,maxcal/ember-cli,thoov/ember-cli,lancedikson/ember-cli,thoov/ember-cli,kanongil/ember-cli,code0100fun/ember-cli,greyhwndz/ember-cli,samselikoff/ember-cli,ServiceTo/ember-cli,ef4/ember-cli,seawatts/ember-cli,patocallaghan/ember-cli,alexdiliberto/ember-cli,michael-k/ember-cli,pixelhandler/ember-cli,coderly/ember-cli,seanpdoyle/ember-cli,ballPointPenguin/ember-cli,xiujunma/ember-cli,mixonic/ember-cli,jonathanKingston/ember-cli,lazybensch/ember-cli,alefteris/ember-cli,xiujunma/ember-cli,acorncom/ember-cli,acorncom/ember-cli,szines/ember-cli,xiujunma/ember-cli,nathanhammond/ember-cli,tobymarsden/ember-cli,jasonmit/ember-cli,pangratz/ember-cli,taras/ember-cli,seanpdoyle/ember-cli,cibernox/ember-cli,jrjohnson/ember-cli,dosco/ember-cli,jgwhite/ember-cli,HeroicEric/ember-cli,joostdevries/ember-cli,mschinis/ember-cli,mschinis/ember-cli,trabus/ember-cli,givanse/ember-cli,joaohornburg/ember-cli,twokul/ember-cli,makepanic/ember-cli,joaohornburg/ember-cli,ro0gr/ember-cli,HeroicEric/ember-cli,airportyh/ember-cli,raycohen/ember-cli,twokul/ember-cli,nathanhammond/ember-cli,fpauser/ember-cli,kriswill/ember-cli,gfvcastro/ember-cli,martndemus/ember-cli,akatov/ember-cli,typeoneerror/ember-cli,joostdevries/ember-cli,asakusuma/ember-cli,selvagsz/ember-cli,mschinis/ember-cli,dukex/ember-cli,runspired/ember-cli,marcioj/ember-cli,kategengler/ember-cli,xtian/ember-cli,jasonmit/ember-cli,lancedikson/ember-cli,quaertym/ember-cli,johanneswuerbach/ember-cli,airportyh/ember-cli,abuiles/ember-cli,olegdovger/ember-cli,cibernox/ember-cli,mohlek/ember-cli,akatov/ember-cli,abuiles/ember-cli,ServiceTo/ember-cli,BrianSipple/ember-cli,kategengler/ember-cli,joaohornburg/ember-cli,typeoneerror/ember-cli,jgwhite/ember-cli,marcioj/ember-cli,pixelhandler/ember-cli,dosco/ember-cli,mixonic/ember-cli,greyhwndz/ember-cli,kellyselden/ember-cli,martypenner/ember-cli,calderas/ember-cli,eccegordo/ember-cli,greyhwndz/ember-cli,lazybensch/ember-cli,ef4/ember-cli,fpauser/ember-cli,joliss/ember-cli,csantero/ember-cli,jonathanKingston/ember-cli,buschtoens/ember-cli,beatle/ember-cli,romulomachado/ember-cli,DanielOchoa/ember-cli,tsing80/ember-cli,ro0gr/ember-cli,elwayman02/ember-cli,alexdiliberto/ember-cli,sivakumar-kailasam/ember-cli,joliss/ember-cli,noslouch/ember-cli,jasonmit/ember-cli,jayphelps/ember-cli,raytiley/ember-cli,sivakumar-kailasam/ember-cli,maxcal/ember-cli,xcambar/ember-cli,ember-cli/ember-cli,mschinis/ember-cli,makepanic/ember-cli,cibernox/ember-cli,xcambar/ember-cli,kanongil/ember-cli,mixonic/ember-cli,runspired/ember-cli,givanse/ember-cli,twokul/ember-cli,kriswill/ember-cli,scalus/ember-cli,olegdovger/ember-cli,yaymukund/ember-cli,ballPointPenguin/ember-cli,quaertym/ember-cli,mohlek/ember-cli,typeoneerror/ember-cli,johanneswuerbach/ember-cli,alefteris/ember-cli,mike-north/ember-cli,mohlek/ember-cli,martndemus/ember-cli,ember-cli/ember-cli,martypenner/ember-cli,kanongil/ember-cli,EricSchank/ember-cli,alexdiliberto/ember-cli,seawatts/ember-cli,seawatts/ember-cli,fpauser/ember-cli,ember-cli/ember-cli
099e4eb6c00ea985ea5276a7dfa0095e49ef89b0
azure-pipelines.yml
azure-pipelines.yml
trigger: - master jobs: - job: Linux pool: vmImage: 'ubuntu-18.04' steps: - script: sudo apt-get update --fix-missing - script: sudo apt-get install -y libgl1-mesa-dev libgles2-mesa-dev libopenal-dev libasound2-dev libxxf86vm-dev libxi-dev libxcursor-dev libxrandr-dev libxss-dev - script: | cd samples make -j2 displayName: 'make' - job: Windows pool: vmImage: 'vs2017-win2016' steps: - task: MSBuild@1 inputs: solution: samples/samples.vcxproj configuration: Release - job: macOS pool: vmImage: 'macOS-10.15' steps: - script: | cd samples make -j2 displayName: 'make'
trigger: - master jobs: - job: Linux pool: vmImage: 'ubuntu-18.04' steps: - script: sudo apt-get update --fix-missing - script: sudo apt-get install -y libgl1-mesa-dev libgles2-mesa-dev libopenal-dev libasound2-dev libxxf86vm-dev libxi-dev libxcursor-dev libxrandr-dev libxss-dev - script: | cd samples make -j2 displayName: 'make' - job: Windows pool: vmImage: 'windows-2019' steps: - task: MSBuild@1 inputs: solution: samples/samples.vcxproj configuration: Release - job: macOS pool: vmImage: 'macOS-10.15' steps: - script: | cd samples make -j2 displayName: 'make'
Use windows-2019 vmImage on Azure since vs2017-win2016 is deprecated and will be removed soon
Use windows-2019 vmImage on Azure since vs2017-win2016 is deprecated and will be removed soon
YAML
unlicense
elnormous/ouzel,elnormous/ouzel,elnormous/ouzel
31f6e883ec7dd9a3be5bc4097d30ddec2d6a451a
appveyor.yml
appveyor.yml
init: - git config --global core.autocrlf input install: - git submodule update --init --recursive before_build: - cmd: msiexec.exe /i "lib\Pex\pex.academic.x86.msi" /quiet /norestart build_script: - cmd: BuildScripts\YC.SEL.SDK.bat test: off version: 0.0.1.{build} artifacts: - path: bin name: bin
init: - git config --global core.autocrlf input install: - git submodule update --init --recursive before_build: - cmd: msiexec.exe /i "lib\Pex\pex.academic.x86.msi" /quiet /norestart build_script: - cmd: .\BuildScripts\YC.SEL.SDK.bat test: off version: 0.0.1.{build} artifacts: - path: bin name: bin
Fix path to build script.
Fix path to build script.
YAML
apache-2.0
fedorovr/YaccConstructor,Albiglittle/YaccConstructor,YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor,Albiglittle/YaccConstructor,nbIxMaN/YaccConstructor,Albiglittle/YaccConstructor,nbIxMaN/YaccConstructor,fedorovr/YaccConstructor,nbIxMaN/YaccConstructor,fedorovr/YaccConstructor
e4db2486ba834dbc81c366fb0a74a1e6904bf301
appveyor.yml
appveyor.yml
environment: nodejs_version: "6" COZY_URL: secure: uO9y1OhE9RrwDoYV5ewQPWITVjiTLzLO+dxhyOxpzoU= COZY_PASSPHRASE: secure: YQQimbK6g91kgTePrPHKl92Pu3O1Hjqsm+HjUUTmZEM= install: - cmd: appveyor-retry powershell Install-Product node $env:nodejs_version - cmd: appveyor-retry yarn - cmd: appveyor-retry yarn bootstrap:remote build: off test_script: - yarn test-unit on_failure: - node --version - npm --version - yarn --version
environment: nodejs_version: "6" COZY_URL: secure: uO9y1OhE9RrwDoYV5ewQPWITVjiTLzLO+dxhyOxpzoU= COZY_PASSPHRASE: secure: tgJZSLSOHKLhxr+7TFh8F1NG9A5GAj5ndmu07IaAB7w= install: - cmd: appveyor-retry powershell Install-Product node $env:nodejs_version - cmd: appveyor-retry yarn - cmd: appveyor-retry yarn bootstrap:remote build: off test_script: - yarn test-unit on_failure: - node --version - npm --version - yarn --version
Set passphrase of recreated instance in AppVeyor
Set passphrase of recreated instance in AppVeyor
YAML
agpl-3.0
nono/cozy-desktop,cozy-labs/cozy-desktop,cozy-labs/cozy-desktop,nono/cozy-desktop,cozy-labs/cozy-desktop,cozy-labs/cozy-desktop,nono/cozy-desktop,nono/cozy-desktop
bbc9fe829fe9c7c91be9e6644d358f300f34930b
appveyor.yml
appveyor.yml
branches: only: - development/v1.1 - release/v1.1 - master image: Visual Studio 2017 cache: - '%USERPROFILE%\.nuget\packages' build_script: - ps: .\build-ci.ps1 test_script: - ps: .\test-ci.ps1 artifacts: - path: src\artifacts\packages\*.nupkg deploy: provider: NuGet on: branch: master api_key: secure: ljl/r7XeQm+KBzR7pm1OOW4+YcDUsYiWlr9jWFztMh/8/orG4V9ylTi+P1jGME7g skip_symbols: false artifact: /.*\.nupkg$/
branches: only: - development/v1.1 - release/v1.1 - master image: Visual Studio 2017 cache: - '%USERPROFILE%\.nuget\packages' build_script: - ps: .\build-ci.ps1 test_script: - ps: .\test-ci.ps1 artifacts: - path: src\artifacts\packages\*.nupkg deploy: # Project feed - provider: NuGet server: https://ci.appveyor.com/nuget/httplease api_key: secure: JSudMjYtLSEPLJcy7s3AaKfHpy2PljVoFQ/GLydKb7s= skip_symbols: false artifact: /.*\.nupkg$/ # MyGet feed - on: branch: /(development|release|feature|master)(\/)?.*/ provider: NuGet server: https://www.myget.org/F/httplease/api/v3/index.json api_key: secure: FIA0E1YzvgpRKQTPH+ky8bh2wYBcyHiO/XINMQl8KoXpqpGLTX95bslkR1mspq/I skip_symbols: false artifact: /.*\.nupkg$/ # Public feed - on: # Master branch, release branch, or tag-named branch (AppVeyor quirk when using annotated tags). branch: /(master|release\/.*|v\d{1,3}\.\d{1,3}\.\d{1,3}.*)/ appveyor_repo_tag: true # Only if tagged provider: NuGet api_key: secure: ljl/r7XeQm+KBzR7pm1OOW4+YcDUsYiWlr9jWFztMh/8/orG4V9ylTi+P1jGME7g skip_symbols: false artifact: /.*\.nupkg$/
Set up package publishing to private, MyGet, and NuGet feeds.
Set up package publishing to private, MyGet, and NuGet feeds.
YAML
mit
tintoy/HTTPlease,tintoy/HTTPlease
7c320409fc86cc2bc4978eddac232a6e8439330a
appveyor.yml
appveyor.yml
skip_branch_with_pr: true environment: GOPATH: $(HOMEDRIVE)$(HOMEPATH)\go MSYSTEM: MINGW64 clone_folder: $(GOPATH)\src\github.com\git-lfs\git-lfs install: - rd C:\Go /s /q - cinst golang --version 1.8.0 -y - cinst InnoSetup -y - refreshenv build_script: - bash --login -c 'GOARCH=386 script/bootstrap' - mv bin\git-lfs.exe git-lfs-x86.exe - bash --login -c 'GOARCH=amd64 script/bootstrap' - mv bin\git-lfs.exe git-lfs-x64.exe after_build: - iscc script\windows-installer\inno-setup-git-lfs-installer.iss test_script: - bash --login script/cibuild artifacts: - path: git-lfs-x86.exe - path: git-lfs-x64.exe - path: git-lfs-windows-*.exe
skip_branch_with_pr: true environment: GOPATH: $(HOMEDRIVE)$(HOMEPATH)\go MSYSTEM: MINGW64 clone_folder: $(GOPATH)\src\github.com\git-lfs\git-lfs install: - rd C:\Go /s /q - cinst golang --version 1.8.0 -y - cinst InnoSetup -y - refreshenv - ps: | echo "Go directories in machine PATH environment:" [environment]::GetEnvironmentVariable("PATH","Machine").split(";") | Select-String -Pattern "\\go\\" echo "Go directories in user PATH environment:" [environment]::GetEnvironmentVariable("PATH","User").split(";") | Select-String -Pattern "\\go\\" echo "Go directories in process PATH environment:" [environment]::GetEnvironmentVariable("PATH","Process").split(";") | Select-String -Pattern "\\go\\" echo "Go version information:" go version build_script: - bash --login -c 'GOARCH=386 script/bootstrap' - mv bin\git-lfs.exe git-lfs-x86.exe - bash --login -c 'GOARCH=amd64 script/bootstrap' - mv bin\git-lfs.exe git-lfs-x64.exe after_build: - iscc script\windows-installer\inno-setup-git-lfs-installer.iss test_script: - bash --login script/cibuild artifacts: - path: git-lfs-x86.exe - path: git-lfs-x64.exe - path: git-lfs-windows-*.exe
Add some verbose information the Go directory in PATH
AppVeyor: Add some verbose information the Go directory in PATH Since we were having issues with this in the past, see e.g. [1], add some verbose information to ease debugging in the future. [1] https://github.com/appveyor/ci/issues/1342
YAML
mit
aleb/git-lfs,andyneff/git-lfs,bozaro/git-lfs,github/git-lfs,aleb/git-lfs,andyneff/git-lfs,github/git-lfs,Jericho25/-git-lfs_miilkyway,github/git-lfs,andyneff/git-lfs,Jericho25/-git-lfs_miilkyway,dakotahawkins/git-lfs,Jericho25/-git-lfs_miilkyway,dakotahawkins/git-lfs,bozaro/git-lfs,aleb/git-lfs,dakotahawkins/git-lfs,bozaro/git-lfs
c8b9ce35d527bd7e48bd7e8a0b50496704cf13d4
appveyor.yml
appveyor.yml
environment: matrix: - ruby_version: "21" - ruby_version: "22" install: - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - ruby --version - ruby -e 'p([:engine, RUBY_ENGINE, :platform, RUBY_PLATFORM])' - gem --version - gem install bundler --no-document - bundler --version - bundle install --retry=3 test_script: - bundle exec rake build: off
environment: matrix: - ruby_version: "21" - ruby_version: "22" install: - SET PATH=C:\Ruby%ruby_version%\bin;%PATH% - ruby --version - ruby -e 'p([:engine, RUBY_ENGINE, :platform, RUBY_PLATFORM])' - gem --version - gem install bundler:1.17.3 --no-document - bundler --version - bundle install --retry=3 test_script: - bundle exec rake build: off
Use Bundler 1.17.3 for Rubies
AppVeyor: Use Bundler 1.17.3 for Rubies
YAML
bsd-3-clause
redis/hiredis-rb,redis/hiredis-rb
11527f10c4ab5b3b4742366414795e5ea43931f6
appveyor.yml
appveyor.yml
# Exported from Kompositum > Settings > Export YAML version: 1.0.0.{build} branches: only: - appveyor_support os: - Windows Server 2012 R2 - Visual Studio 2015 - Visual Studio 2013 environment: BUILD_TYPE: Release ARCH: Win64 matrix: - GENERATOR: Visual Studio 14 2015 %ARCH% - GENERATOR: Visual Studio 12 2013 %ARCH% build_script: - cmd: >- cd %APPVEYOR_BUILD_FOLDER% cmake -H. -Bbuild -G"%GENERATOR%" cmake --build build --config %BUILD_TYPE%
# Exported from Kompositum > Settings > Export YAML version: 1.0.0.{build} branches: only: - appveyor_support os: - Windows Server 2012 R2 environment: BUILD_TYPE: Release ARCH: Win64 matrix: - GENERATOR: Visual Studio 14 2015 %ARCH% - GENERATOR: Visual Studio 12 2013 %ARCH% build_script: - cmd: >- cd %APPVEYOR_BUILD_FOLDER% cmake -H. -Bbuild -G"%GENERATOR%" cmake --build build --config %BUILD_TYPE%
Remove Visual Studio in section os:. Makes no sense with CMake
Remove Visual Studio in section os:. Makes no sense with CMake
YAML
mit
Geraet/Kompositum,rehans/Kompositum
8d8b7c8ce31aaa7a5112e0e735cb704ddc961bc4
appveyor.yml
appveyor.yml
version: 1.0.{build} branches: only: - master before_build: - ps: nuget restore PhotoLife\PhotoLife.sln build: project: PhotoLife\PhotoLife.sln verbosity: minimal after_test: - PhotoLife\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"PhotoLife\packages\NUnit.ConsoleRunner.3.6.0\tools\nunit3-console.exe" -targetargs:"/domain:single PhotoLife\PhotoLife.Data.Tests\bin\Debug\PhotoLife.Data.Tests.dll PhotoLife\PhotoLife.Web.Tests\bin\Debug\PhotoLife.Web.Tests.dll" -output:coverage.xml - PhotoLife\packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover coverage.xml
version: 1.0.{build} branches: only: - master before_build: - ps: nuget restore PhotoLife\PhotoLife.sln build: project: PhotoLife\PhotoLife.sln verbosity: minimal after_test: - PhotoLife\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -filter:"+[*]*" -target:"PhotoLife\packages\NUnit.ConsoleRunner.3.6.1\tools\nunit3-console.exe" -targetargs:"/domain:single PhotoLife\PhotoLife.Data.Tests\bin\Debug\PhotoLife.Data.Tests.dll PhotoLife\PhotoLife.Web.Tests\bin\Debug\PhotoLife.Web.Tests.dll" -output:coverage.xml - PhotoLife\packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover coverage.xml
Update NUnitConsoleRunner from 3.6.0 to 3.6.1.
Update NUnitConsoleRunner from 3.6.0 to 3.6.1.
YAML
mit
Branimir123/PhotoLife,Branimir123/PhotoLife,Branimir123/PhotoLife
92df6e525f01ec6fe52c2645591c89d607e642eb
appveyor.yml
appveyor.yml
# Basic appveyor configuration : CodeCakeBuilder does the job. version: build{build} branches: only: - master - develop environment: NUGET_API_KEY: secure: Cx0q/gQZQpP3eDf6H9lzIDpYYki+sGCpruxgDcFUJRoYdpH7l5aDh7afloH3uNLD MYGET_PREVIEW_API_KEY: secure: CfEqNYjhrGX9DyalZ4jcadzJ/x8q25GulMCbZQDRRs+XetfHn2AEP79OJXE1wSJ8 MYGET_CI_API_KEY: secure: z3ZFnSM3FPCaJYkLhqjZmFTCw1Wf1hmRznQ0/UfxY/5haxctmymvFhh+PTz+/eHw init: - git config --global core.autocrlf true install: - ps: CodeCakeBuilder\Bootstrap.ps1 build_script: - CodeCakeBuilder\bin\Release\CodeCakeBuilder.exe -nointeraction test: off
# Basic appveyor configuration : CodeCakeBuilder does the job. version: build{build} branches: only: - master - develop environment: NUGET_API_KEY: secure: Cx0q/gQZQpP3eDf6H9lzIDpYYki+sGCpruxgDcFUJRoYdpH7l5aDh7afloH3uNLD MYGET_PREVIEW_API_KEY: secure: CfEqNYjhrGX9DyalZ4jcadzJ/x8q25GulMCbZQDRRs+XetfHn2AEP79OJXE1wSJ8 MYGET_CI_API_KEY: secure: z3ZFnSM3FPCaJYkLhqjZmFTCw1Wf1hmRznQ0/UfxY/5haxctmymvFhh+PTz+/eHw init: - git config --global core.autocrlf true install: - ps: CodeCakeBuilder\Bootstrap.ps1 -Verbose build_script: - CodeCakeBuilder\bin\Release\CodeCakeBuilder.exe -nointeraction test: off
Add -Verbose to Bootstrap.ps1 call
Appveyor.yml: Add -Verbose to Bootstrap.ps1 call
YAML
mit
Invenietis/CK-Text
71362caf41aa856754180fb5f55f48d04696fa4d
appveyor.yml
appveyor.yml
version: "{branch}-ci-{build}" image: Visual Studio 2013 branches: only: - master - appveyor environment: matrix: - build: msvc platform: x86 - build: msvc platform: x64 - build: clang platform: x86 - build: clang platform: x64 before_build: - cmd: git submodule update --init - cmd: if "%build%"=="msvc" call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM% - cmd: set PATH=%PATH%;C:\Perl;C:\Program Files\LLVM\bin;C:\msys64\usr\bin - cmd: if "%build%"=="gcc" set PATH=%CYGWIN_ROOT%;%CYGWIN_ROOT%\bin;%PATH% build_script: - cmd: cd C:\projects\putty-aes-ni\Putty - cmd: perl ./mkfiles.pl - cmd: cd windows - cmd: if "%build%"=="msvc" nmake -f Makefile.vc - cmd: if "%build%"=="clang" bash -lc "cd /cygdrive/c/projects/putty-aes-ni/Putty/windows; make -f Makefile.clangcl" - cmd: if not "%build%"=="msvc" bash -lc "cd /cygdrive/c/projects/putty-aes-ni/Putty/windows; make -f Makefile.mgw" test_script: - cmd: cd C:\projects\putty-aes-ni\Putty\windows - cmd: dir *.exe
version: "{branch}-ci-{build}" image: Visual Studio 2013 branches: only: - master - appveyor environment: matrix: - build: msvc platform: x86 - build: msvc platform: x64 - build: clang platform: x86 - build: clang platform: x64 before_build: - cmd: git submodule update --init - cmd: if "%build%"=="msvc" call "%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM% - cmd: set PATH=%PATH%;C:\Perl;C:\Program Files\LLVM\bin;C:\msys64\usr\bin - cmd: if "%build%"=="gcc" set PATH=%CYGWIN_ROOT%;%CYGWIN_ROOT%\bin;%PATH% build_script: - cmd: cd C:\projects\putty-aes-ni\Putty - cmd: perl ./mkfiles.pl - cmd: cd windows - cmd: if "%build%"=="msvc" nmake -f Makefile.vc - cmd: if "%build%"=="clang" bash -lc "cd /c/projects/putty-aes-ni/Putty/windows; make -f Makefile.clangcl" - cmd: if "%build%"=="gcc" bash -lc "cd /c/projects/putty-aes-ni/Putty/windows; make -f Makefile.mgw" test_script: - cmd: cd C:\projects\putty-aes-ni\Putty\windows - cmd: dir *.exe
Fix path to the working directory
Fix path to the working directory
YAML
mit
pavelkryukov/putty-aes-ni,pavelkryukov/putty-aes-ni
35b8ed74b75a6be0186ca29b54454c9be4981dfa
_config/versionedfiles.yml
_config/versionedfiles.yml
--- Name: versionedfiles --- File: #can be used to disable the VersionedFiles replace menu tab in the CMS (useful when Upload: replaceFiles = true) disableReplaceTab: false
--- Name: versionedfiles --- File: #can be used to disable the VersionedFiles replace menu tab in the CMS (useful when Upload: replaceFiles = true) disableReplaceTab: false Filesystem: sync_blacklisted_patterns: - "/^_versions$/i"
Exclude versions folders from syncing.
Exclude versions folders from syncing.
YAML
bsd-3-clause
silverstripe-australia/silverstripe-versionedfiles
e22e15afda977484bfe0167960ba14400f8e1a64
roles/adduser/tasks/main.yml
roles/adduser/tasks/main.yml
--- - name: User | Create User Group group: name: "{{user.group|default(user.name)}}" system: "{{user.system|default(omit)}}" - name: User | Create User user: comment: "{{user.comment|default(omit)}}" createhome: "{{user.create_home|default(omit)}}" group: "{{user.group|default(user.name)}}" home: "{{user.home|default(omit)}}" shell: "{{user.shell|default(omit)}}" name: "{{user.name}}" system: "{{user.system|default(omit)}}"
--- - name: User | Create User Group group: name: "{{user.group|default(user.name)}}" system: "{{user.system|default(omit)}}" - name: User | Create User user: comment: "{{user.comment|default(omit)}}" createhome: "{{user.createhome|default(omit)}}" group: "{{user.group|default(user.name)}}" home: "{{user.home|default(omit)}}" shell: "{{user.shell|default(omit)}}" name: "{{user.name}}" system: "{{user.system|default(omit)}}"
Fix createhome directory for adduser role
Fix createhome directory for adduser role A typo in the adduser role prevents the createhome variable to be taken into account. Fix #3164
YAML
apache-2.0
kubernetes-sigs/kubespray,insequent/kargo,kubespray/kargo,kubernetes-incubator/kargo,kubernetes-incubator/kargo,kubernetes-sigs/kubespray,kubespray/kargo,kubernetes-sigs/kubespray,Atoms/kubespray,Atoms/kubespray,kubernetes-incubator/kubespray,Atoms/kubespray,kubernetes-incubator/kubespray,kubernetes-sigs/kubespray,insequent/kargo,Atoms/kubespray
27d9302565ff6fe70ba19a41e2e739fe21d0500a
roles/dnsmasq/tasks/main.yml
roles/dnsmasq/tasks/main.yml
--- - name: install dnsmasq and bind-utils sudo: yes yum: name: "{{ item }}" state: latest with_items: - dnsmasq - bind-utils tags: - package - dnsmasq - name: configure consul lookups sudo: yes copy: content: 'server=/consul/127.0.0.1#8600' dest: /etc/dnsmasq.d/10-consul notify: - restart dnsmasq tags: - dnsmasq - name: set localhost as nameserver sudo: yes lineinfile: dest: /etc/resolv.conf line: "nameserver 127.0.0.1" insertbefore: "^nameserver" tags: - dnsmasq
--- - name: install dnsmasq and bind-utils sudo: yes yum: name: "{{ item }}" state: latest with_items: - dnsmasq - bind-utils tags: - dnsmasq - name: configure dnsmasq for consul sudo: yes template: src: 10-consul dest: /etc/NetworkManager/dnsmasq.d/10-consul tags: - dnsmasq # Before we reboot the system, resolve IPs via consul - name: configure dnsmasq symlink sudo: yes file: src: /etc/NetworkManager/dnsmasq.d/10-consul dest: /etc/dnsmasq.d/10-consul state: link notify: - restart dnsmasq tags: - dnsmasq - name: configure base dnsmasq sudo: yes template: src: 90-base dest: /etc/NetworkManager/dnsmasq.d/90-base tags: - dnsmasq - name: configure networkmanager for dnsmasq sudo: yes lineinfile: dest: /etc/NetworkManager/NetworkManager.conf line: "dns=dnsmasq" insertbefore: "^plugins" notify: - disable dnsmasq tags: - dnsmasq - name: set localhost as nameserver sudo: yes lineinfile: dest: /etc/resolv.conf line: "nameserver 127.0.0.1" insertafter: "^search" tags: - dnsmasq
Update dnsmasq config to be launched from NetworkManager
Update dnsmasq config to be launched from NetworkManager
YAML
apache-2.0
kenjones-cisco/microservices-infrastructure,CiscoCloud/microservices-infrastructure,z00223295/microservices-infrastructure,noelbk/microservices-infrastructure,z00223295/microservices-infrastructure,arminc/microservices-infrastructure,revpoint/microservices-infrastructure,ddONGzaru/microservices-infrastructure,heww/microservices-infrastructure,kenjones-cisco/microservices-infrastructure,ilboud/microservices-infrastructure,ddONGzaru/microservices-infrastructure,TeaBough/microservices-infrastructure,benschumacher/microservices-infrastructure,remmelt/microservices-infrastructure,z00223295/microservices-infrastructure,eirslett/microservices-infrastructure,mantl/mantl,sehqlr/mantl,futuro/microservices-infrastructure,ludovicc/microservices-infrastructure,ludovicc/microservices-infrastructure,chrislovecnm/microservices-infrastructure,ilboud/microservices-infrastructure,abn/microservices-infrastructure,Parkayun/microservices-infrastructure,TeaBough/microservices-infrastructure,sehqlr/mantl,revpoint/microservices-infrastructure,gtcno/microservices-infrastructure,huodon/microservices-infrastructure,SillyMoo/microservices-infrastructure,phnmnl/mantl,stevendborrelli/mi-security,benschumacher/microservices-infrastructure,ianscrivener/microservices-infrastructure,datascienceinc/mantl,abn/microservices-infrastructure,ContainerSolutions/microservices-infrastructure,groknix/microservices-infrastructure,huodon/microservices-infrastructure,cmgc/microservices-infrastructure,ianscrivener/microservices-infrastructure,mehulsbhatt/microservices-infrastructure,linearregression/microservices-infrastructure,bitium/mantl,CiscoCloud/mantl,eirslett/microservices-infrastructure,chrislovecnm/microservices-infrastructure,KaGeN101/mantl,pinterb/microservices-infrastructure,chrislovecnm/microservices-infrastructure,ianscrivener/microservices-infrastructure,SillyMoo/microservices-infrastructure,heww/microservices-infrastructure,revpoint/microservices-infrastructure,linearregression/microservices-infrastructure,chrislovecnm/microservices-infrastructure,ianscrivener/microservices-infrastructure,liangyali/microservices-infrastructure,liangyali/microservices-infrastructure,kindlyops/microservices-infrastructure,linearregression/microservices-infrastructure,ContainerSolutions/microservices-infrastructure,eirslett/microservices-infrastructure,ilboud/microservices-infrastructure,cmgc/microservices-infrastructure,mehulsbhatt/microservices-infrastructure,huodon/microservices-infrastructure,benschumacher/microservices-infrastructure,sudhirpandey/microservices-infrastructure,remmelt/microservices-infrastructure,arminc/microservices-infrastructure,bitium/mantl,Parkayun/microservices-infrastructure,phnmnl/mantl,huodon/microservices-infrastructure,chrislovecnm/microservices-infrastructure,arminc/microservices-infrastructure,pinterb/microservices-infrastructure,CiscoCloud/mantl,futuro/microservices-infrastructure,noelbk/microservices-infrastructure,datascienceinc/mantl,KaGeN101/mantl,stevendborrelli/mi-security,gtcno/microservices-infrastructure,huodon/microservices-infrastructure,kindlyops/microservices-infrastructure,benschumacher/microservices-infrastructure,cmgc/microservices-infrastructure,sudhirpandey/microservices-infrastructure,mantl/mantl,CiscoCloud/microservices-infrastructure,pinterb/microservices-infrastructure,abn/microservices-infrastructure,benschumacher/microservices-infrastructure,ianscrivener/microservices-infrastructure,mehulsbhatt/microservices-infrastructure
21c1b8ebfaa2542205de70d2f6e793bc6fe66e38
powerdns.yml
powerdns.yml
- type: replace path: /instance_groups/name=bosh/properties/postgres/additional_databases?/- value: powerdns - type: replace path: /instance_groups/name=bosh/jobs/- value: name: powerdns release: bosh properties: dns: address: 127.0.0.1 db: database: powerdns host: 127.0.0.1 user: postgres password: ((postgres_password)) recursor: ((dns_recursor_ip)) - type: replace path: /networks/name=default/subnets/0/dns value: - ((dns_recursor_ip))
- type: replace path: /instance_groups/name=bosh/properties/postgres/additional_databases?/- value: powerdns - type: replace path: /instance_groups/name=bosh/jobs/- value: name: powerdns release: bosh - type: replace path: /instance_groups/name=bosh/properties/dns? value: address: 127.0.0.1 db: database: powerdns host: 127.0.0.1 user: postgres password: ((postgres_password)) recursor: ((dns_recursor_ip)) - type: replace path: /networks/name=default/subnets/0/dns value: - ((dns_recursor_ip))
Update PowerDNS to trigger bosh migrations
Update PowerDNS to trigger bosh migrations BOSH will only trigger the migrations if PowerDNS properties are at the top level: https://github.com/cloudfoundry/bosh/blob/master/src/bosh-director/bin/bosh-director-migrate#L43-L47
YAML
apache-2.0
jaimegag/kubo-deployment,jaimegag/kubo-deployment,pivotal-cf-experimental/kubo-deployment,pivotal-cf-experimental/kubo-deployment
a070ba386b6ce9a4f27ec9e8e432088b9aea185b
app/config/config_test.yml
app/config/config_test.yml
imports: - { resource: config_dev.yml } parameters: site.multilanguage: true framework: test: ~ session: storage_id: session.storage.mock_file profiler: collect: false router: resource: "%kernel.project_dir%/app/config/routing_install.yml" web_profiler: toolbar: false intercept_redirects: false doctrine: dbal: connections: default: dbname: "%database.name%_test" services: database: class: SpoonDatabase public: true arguments: - "%database.driver%" - "%database.host%" - "%database.user%" - "%database.password%" - "%database.name%_test" - "%database.port%" calls: - [ setDebug, [ "%kernel.debug%" ]]
imports: - { resource: config_dev.yml } parameters: site.multilanguage: true framework: test: ~ session: storage_id: session.storage.mock_file profiler: collect: false router: resource: "%kernel.project_dir%/app/config/routing_install.yml" web_profiler: toolbar: false intercept_redirects: false doctrine: dbal: connections: default: dbname: "%database.name%_test" services: database: class: SpoonDatabase public: true arguments: - "%database.driver%" - "%database.host%" - "%database.user%" - "%database.password%" - "%database.name%_test" - "%database.port%" calls: - [ setDebug, [ "%kernel.debug%" ]] monolog: handlers: main: type: 'null'
Use null logger and replace main logger in test mode
Use null logger and replace main logger in test mode
YAML
mit
bartdc/forkcms,sumocoders/forkcms,justcarakas/forkcms,Katrienvh/forkcms,jonasdekeukelaere/forkcms,riadvice/forkcms,justcarakas/forkcms,jacob-v-dam/forkcms,justcarakas/forkcms,jonasdekeukelaere/forkcms,carakas/forkcms,carakas/forkcms,bartdc/forkcms,riadvice/forkcms,Katrienvh/forkcms,carakas/forkcms,forkcms/forkcms,sumocoders/forkcms,sumocoders/forkcms,carakas/forkcms,jonasdekeukelaere/forkcms,riadvice/forkcms,carakas/forkcms,riadvice/forkcms,jeroendesloovere/forkcms,jonasdekeukelaere/forkcms,sumocoders/forkcms,Katrienvh/forkcms,Katrienvh/forkcms,jeroendesloovere/forkcms,jacob-v-dam/forkcms,sumocoders/forkcms,jessedobbelaere/forkcms,jessedobbelaere/forkcms,jeroendesloovere/forkcms,forkcms/forkcms,jonasdekeukelaere/forkcms,jeroendesloovere/forkcms,jessedobbelaere/forkcms,jacob-v-dam/forkcms,forkcms/forkcms,bartdc/forkcms,jacob-v-dam/forkcms,forkcms/forkcms,jessedobbelaere/forkcms
1f6c9b945fee36d71695bdcd05fd1fc312bde969
manifest.yml
manifest.yml
declared-services: conversation-service: label: conversation plan: free cloudantNoSQLDB-service: label: cloudantNoSQLDB plan: Lite Discovery-service: label: discovery plan: free applications: - services: - conversation-service - cloudantNoSQLDB-service - Discovery-service path: . command: python ./run.py memory: 128M instances: 1 domain: mybluemix.net name: watson-online-store host: watson-online-store disk_quota: 1024M health-check-type: process no-route: true env: CLOUDANT_DB_NAME: watson-online-store SLACK_BOT_USER: wosbot SLACK_BOT_TOKEN: placeholder DISCOVERY_ENVIRONMENT_ID: placeholder DISCOVERY_COLLECTION_ID: placeholder WORKSPACE_ID: placeholder
declared-services: wos-conversation-service: label: conversation plan: free wos-cloudantNoSQLDB-service: label: cloudantNoSQLDB plan: Lite wos-discovery-service: label: discovery plan: free applications: - services: - wos-conversation-service - wos-cloudantNoSQLDB-service - wos-discovery-service path: . command: python ./run.py memory: 128M instances: 1 name: watson-online-store disk_quota: 1024M health-check-type: process no-route: true env: CLOUDANT_DB_NAME: watson-online-store SLACK_BOT_USER: wosbot SLACK_BOT_TOKEN: placeholder DISCOVERY_ENVIRONMENT_ID: placeholder DISCOVERY_COLLECTION_ID: placeholder WORKSPACE_ID: placeholder
Use prefix on service to create. Remove unneeded things.
Use prefix on service to create. Remove unneeded things. The services to be created should have a prefix to make them more unique an distinct -- "wos-". Also removed some server settings which should help Bluemix understand that there is no app running there.
YAML
apache-2.0
IBM/watson-online-store,IBM/watson-online-store,IBM/watson-online-store
7b5858fbfb3a86e702f800518155b49e8be536b6
manifest.yml
manifest.yml
applications: - name: clumsy-bird-docker docker_image: stackatoapps/clumsy-bird:latest memory: 64M
applications: - name: clumsy-bird-docker docker_image: stackatoapps/clumsy-bird:latest memory: 128M
Increase memory to 128 to prevent clumsy flapping
Increase memory to 128 to prevent clumsy flapping
YAML
mit
Stackato-Apps/clumsy-bird-docker,Stackato-Apps/clumsy-bird-docker
5be03cb1d6613f546702d7ea51bf41e4443d04ca
pubspec.yaml
pubspec.yaml
name: intl version: 0.16.0-dev author: Dart Team <[email protected]> homepage: https://github.com/dart-lang/intl description: >- Contains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues. environment: sdk: '>=2.0.0-dev.48 <3.0.0' documentation: http://www.dartdocs.org/documentation/intl/latest dependencies: path: '>=0.9.0 <2.0.0' dev_dependencies: fixnum: '>=0.9.0 <0.11.0' test: ^1.2.0
name: intl version: 0.16.0 author: Dart Team <[email protected]> homepage: https://github.com/dart-lang/intl description: >- Contains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues. environment: sdk: '>=2.0.0 <3.0.0' dependencies: path: '>=0.9.0 <2.0.0' dev_dependencies: fixnum: '>=0.9.0 <0.11.0' test: ^1.2.0
Update analyzer version constraint, bump version
Update analyzer version constraint, bump version PiperOrigin-RevId: 265562033
YAML
bsd-3-clause
dart-lang/intl
271e55849c86d76fad2c8aafb138fcea667465a8
install.conf.yaml
install.conf.yaml
- defaults: link: relink: true - clean: ['~'] - link: ~/.gitconfig: gitconfig_local ~/.zshrc: zshrc ~/.oh-my-zsh: oh-my-zsh ~/.fzf: fzf ~/.fzf.bash: fzf.bash ~/.fzf.zsh: fzf.zsh ~/.vimrc: vimconf/.vimrc ~/.vim: vim ~/.vimrc.first: vimrc/vimrc.first ~/.vimrc.last: vimrc/vimrc.last ~/.vimrc.plugins: vimrc/vimrc.plugins ~/.tmux.conf: tmux.conf ~/.spectrum: spectrumyzer/spectrumyzer.py ~/.spectrum.conf: spectrum.conf # Awesome WM ~/.config/awesome: awesome - shell: - [git submodule update --init --recursive, Installing submodules]
- defaults: link: relink: true - clean: ['~'] - link: ~/.gitconfig: gitconfig_local ~/.zshrc: zshrc ~/.oh-my-zsh: oh-my-zsh ~/.fzf: fzf ~/.fzf.bash: fzf.bash ~/.fzf.zsh: fzf.zsh ~/.vimrc: vimconf/.vimrc ~/.vim: vim ~/.vimrc.first: vimrc/vimrc.first ~/.vimrc.last: vimrc/vimrc.last ~/.vimrc.plugins: vimrc/vimrc.plugins ~/.tmux.conf: tmux.conf - shell: - [git submodule update --init --recursive, Installing submodules]
Add spectrumyzer and Awesome WM to install script
Add spectrumyzer and Awesome WM to install script
YAML
mit
ataulmohsin/dotfiles,ataulmohsin/dotfiles
bc4230e3f3787b7c8963e64ab1a1053f0a733a0b
config/focal.yml
config/focal.yml
defaults: &defaults site_url: focal.yourdomain.com development: <<: *defaults site_url: focal.dev test: <<: *defaults site_url: focal.test production: <<: *defaults
defaults: &defaults site_url: focal.yourdomain.com development: <<: *defaults site_url: focal.dev test: <<: *defaults site_url: focal.test production: <<: *defaults site_url: <%= ENV['FOCAL_SITE_URL'] %>
Use env FOCAL_SITE_URL for correct notifications
Use env FOCAL_SITE_URL for correct notifications
YAML
mit
kabisa/focal,kabisa/focal
6ee8d5df0f36820c1ab494e48f102460019647c6
config/database.yml
config/database.yml
# PostgreSQL. Versions 9.1 and up are supported. # # Install the pg driver: # gem install pg # On OS X with Homebrew: # gem install pg -- --with-pg-config=/usr/local/bin/pg_config # On OS X with MacPorts: # gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config # On Windows: # gem install pg # Choose the win32 build. # Install PostgreSQL and put its /bin directory on your path. # # Configure Using Gemfile # gem 'pg' # default: &default adapter: postgresql encoding: unicode # For details on connection pooling, see rails configuration guide # http://guides.rubyonrails.org/configuring.html#database-pooling pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> development: <<: *default database: mailman_development test: <<: *default database: <%= ENV['WERCKER_POSTGRESQL_DATABASE'] %><%= ENV['TEST_ENV_NUMBER'] %> username: <%= ENV['WERCKER_POSTGRESQL_USERNAME'] %> password: <%= ENV['WERCKER_POSTGRESQL_PASSWORD'] %> host: <%= ENV['WERCKER_POSTGRESQL_HOST'] %> port: <%= ENV['WERCKER_POSTGRESQL_PORT'] %> production: <<: *default url: <%= ENV['DATABASE_URL'] %>
# PostgreSQL. Versions 9.1 and up are supported. # # Install the pg driver: # gem install pg # On OS X with Homebrew: # gem install pg -- --with-pg-config=/usr/local/bin/pg_config # On OS X with MacPorts: # gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config # On Windows: # gem install pg # Choose the win32 build. # Install PostgreSQL and put its /bin directory on your path. # # Configure Using Gemfile # gem 'pg' # default: &default adapter: postgresql encoding: unicode # For details on connection pooling, see rails configuration guide # http://guides.rubyonrails.org/configuring.html#database-pooling pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> development: <<: *default database: mailman_development test: <<: *default database: <%= ENV['DATABASE_URL'] || 'mailman_test' %> production: <<: *default url: <%= ENV['DATABASE_URL'] %>
Remove all the wercker config
Remove all the wercker config
YAML
agpl-3.0
payloadtech/mailpenny,payloadtech/mailpenny,payloadtech/mailpenny
a79a7d33a5b4b37c8527722e7056276d5c0fdc7f
ecs/ecs.yaml
ecs/ecs.yaml
imports: - { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/psr12.yaml' } - { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/clean-code.yaml' } - { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/symfony.yaml' } parameters: exclude_files: - 'tests/_support/_generated/*' - '**/Migrations/Version*' skip: PhpCsFixer\Fixer\PhpTag\BlankLineAfterOpeningTagFixer: PhpCsFixer\Fixer\ArrayNotation\TrailingCommaInMultilineArrayFixer: PhpCsFixer\Fixer\Phpdoc\PhpdocSummaryFixer: PhpCsFixer\Fixer\ReturnNotation\ReturnAssignmentFixer: services: PhpCsFixer\Fixer\Phpdoc\NoSuperfluousPhpdocTagsFixer: ~ PhpCsFixer\Fixer\Basic\BracesFixer: allow_single_line_closure: false position_after_functions_and_oop_constructs: 'next' position_after_control_structures: 'next' position_after_anonymous_constructs: 'next' PhpCsFixer\Fixer\Operator\ConcatSpaceFixer: spacing: one PhpCsFixer\Fixer\Whitespace\BlankLineBeforeStatementFixer: statements: ['continue', 'declare', 'return', 'throw', 'try'] Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer: inline_short_lines: false
imports: - { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/psr12.yaml' } - { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/clean-code.yaml' } - { resource: '../../../../vendor/symplify/easy-coding-standard/config/set/symfony.yaml' } parameters: exclude_files: - 'tests/_support/_generated/*' - '**/Migrations/Version*' skip: PhpCsFixer\Fixer\PhpTag\BlankLineAfterOpeningTagFixer: PhpCsFixer\Fixer\ArrayNotation\TrailingCommaInMultilineArrayFixer: PhpCsFixer\Fixer\Phpdoc\PhpdocSummaryFixer: PhpCsFixer\Fixer\ReturnNotation\ReturnAssignmentFixer: services: PhpCsFixer\Fixer\Phpdoc\NoSuperfluousPhpdocTagsFixer: ~ PhpCsFixer\Fixer\Basic\BracesFixer: allow_single_line_closure: false position_after_functions_and_oop_constructs: 'next' position_after_control_structures: 'next' position_after_anonymous_constructs: 'next' PhpCsFixer\Fixer\Operator\ConcatSpaceFixer: spacing: one PhpCsFixer\Fixer\Whitespace\BlankLineBeforeStatementFixer: statements: ['continue', 'declare', 'return', 'throw', 'try'] Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer: inline_short_lines: false PhpCsFixer\Fixer\Phpdoc\NoSuperfluousPhpdocTagsFixer: allow_mixed: true allow_unused_params: false remove_inheritdoc: true
Allow mixed in doc blocks
Allow mixed in doc blocks
YAML
mit
headsnet/build-tool-configs
addfb25fec61fe8f6d6fe2f5814e77116161922e
packages/di/diet.yaml
packages/di/diet.yaml
homepage: https://github.com/tonymorris/diet changelog-type: '' hash: a8744806178b5c854eebdcc8c4c3ef3b75e3e7752366d9fd8289dd5cb5bf4ead test-bench-deps: {} maintainer: Tony Morris synopsis: Discrete Interval Encoding Tree changelog: '' basic-deps: base: <5 && >=3 all-versions: - '0.0.1' author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ> latest: '0.0.1' description-type: haddock description: Discrete Interval Encoding Tree described by Martin Erwig in /Diets for Fat Sets, January 1993/. license-name: BSD3
homepage: https://github.com/andrewthad/primitive-containers/ changelog-type: '' hash: 552feee9a0147154e174f10cb56491aa42937876019f59ecd970e7cbd7a86715 test-bench-deps: base: -any quickcheck-classes: ! '>=0.4.11.1' containers: -any diet: -any tasty-quickcheck: -any tasty: -any QuickCheck: -any primitive: -any maintainer: [email protected], [email protected] synopsis: Discrete Interval Encoding Trees changelog: '' basic-deps: base: ! '>=4.9 && <5' contiguous: -any primitive: ! '>=0.6.4' all-versions: - '0.0.1' - '0.1.0.0' author: Andrew Martin, chessai latest: '0.1.0.0' description-type: haddock description: Discrete Interval Encoding Tree described by Martin Erwig in /Diets for Fat Sets, January 1993/. license-name: BSD3
Update from Hackage at 2018-06-05T20:12:24Z
Update from Hackage at 2018-06-05T20:12:24Z
YAML
mit
commercialhaskell/all-cabal-metadata
586b290a472e36c297cb2f4049eadbfa2bf1ca5e
packages/fr/freq.yaml
packages/fr/freq.yaml
homepage: '' changelog-type: '' hash: 242f77aa05765079ffd60f49648ebb85234f45e538b77dc1ccc0e9155d7b2945 test-bench-deps: {} maintainer: [email protected] synopsis: TBA changelog: '' basic-deps: {} all-versions: - '0.0.0' author: chessai latest: '0.0.0' description-type: markdown description: ! '# freq Currently being prepared for release at https://github.com/chessai/freq, reserving the namespace here. ' license-name: BSD3
homepage: https://github.com/chessai/freq changelog-type: '' hash: 6f50016c0c72a167c4702d5308d68611b23b437c5edd6996bd0058ff094e4b7c test-bench-deps: bytestring: -any base: ! '>=4.7 && <5' hedgehog: -any gauge: -any containers: -any freq: -any maintainer: [email protected] synopsis: Are you ready to get freaky? changelog: '' basic-deps: bytestring: -any base: ! '>=4.9 && <5.0' containers: -any freq: -any primitive: ! '>=0.6.1' all-versions: - '0.0.0' - '0.1.0.0' author: Daniel Cartwright latest: '0.1.0.0' description-type: markdown description: ! "# freq\n\n## About\nThis is a simple cryptanalytic frequency analysis tool that uses [english character digrams](https://en.wikipedia.org/wiki/Bigram) as a probabilistic model for scoring ByteStrings according to their randomness (0..1, 0 being the most random, 1 being the least random).\n\n## Uses\nI currently use this to validate domain names, and so the training data available consists of about 6.5 Megabytes of Public Domain 19th and 20th century English novels. You can feed any training data you wish to 'freq' to achieve different results.\n\n## Improvements\nTo improve further on the accuracy of this approach, I will experiment with a generalised dynamic n-gram approach, which will sacrifice slightly in performance for a potentially large gain in accuracy. \n\n## Further\nSee my implementation of the [Linear Hadamard Spectral Test](https://github.com/chessai/lhst) for a different approach to a similar problem with much higher variance in the potentially random data, where a trained approach might be less accurate.\n" license-name: MIT
Update from Hackage at 2018-05-24T02:28:56Z
Update from Hackage at 2018-05-24T02:28:56Z
YAML
mit
commercialhaskell/all-cabal-metadata
8ca692394450d2149834d4cf9c599e1d6109c6ea
packages/gh/ghci.yaml
packages/gh/ghci.yaml
homepage: '' changelog-type: markdown hash: 2e5c1008a8f6a2d369300bc50d892a32c38afb296a179861bc5cbfa5c26cfba2 test-bench-deps: {} maintainer: [email protected] synopsis: The library supporting GHC's interactive interpreter changelog: ! "## 8.0.1 *Feb 2016*\n\n * Bundled with GHC 8.0.1\n\n * Initial version\n" basic-deps: bytestring: ==0.10.* unix: ==2.7.* base: ==4.9.* filepath: ==1.4.* array: ==0.5.* containers: ==0.5.* ghc-boot: ==8.0.1 binary: ==0.8.* transformers: ==0.5.* deepseq: ==1.4.* template-haskell: ==2.11.* all-versions: - '8.0.1' author: '' latest: '8.0.1' description-type: haddock description: ! 'This library offers interfaces which mediate interactions between the @ghci@ interactive shell and @iserv@, GHC''s out-of-process interpreter backend.' license-name: BSD3
homepage: '' changelog-type: markdown hash: 992fdd7e5ad599e452c33515f1d24bcdf47c8d007a383d1fe9381370aab807af test-bench-deps: {} maintainer: [email protected] synopsis: The library supporting GHC's interactive interpreter changelog: ! "## 8.0.2 *Jan 2017*\n\n * Bundled with GHC 8.0.2\n\n * Tag pointers in interpreted constructors (#12523)\n\n## 8.0.1 *Feb 2016*\n\n * Bundled with GHC 8.0.1\n\n * Initial version\n" basic-deps: bytestring: ==0.10.* unix: ==2.7.* base: ==4.9.* filepath: ==1.4.* array: ==0.5.* containers: ==0.5.* ghc-boot: ==8.0.2 binary: ==0.8.* transformers: ==0.5.* deepseq: ==1.4.* template-haskell: ==2.11.* all-versions: - '8.0.1' - '8.0.2' author: '' latest: '8.0.2' description-type: haddock description: ! 'This library offers interfaces which mediate interactions between the @ghci@ interactive shell and @iserv@, GHC''s out-of-process interpreter backend.' license-name: BSD3
Update from Hackage at 2017-01-14T08:48:58Z
Update from Hackage at 2017-01-14T08:48:58Z
YAML
mit
commercialhaskell/all-cabal-metadata
9cbfd6551710ac96e81f76aec5b2862a8fe01741
packages/po/polysemy-path.yaml
packages/po/polysemy-path.yaml
homepage: '' changelog-type: markdown hash: d985ebbceda2032428656e066ac2caf9c25fd3efb12bc3f7c5164e42494e7675 test-bench-deps: {} maintainer: [email protected] synopsis: Polysemy versions of Path functions. changelog: | # Changelog for polysemy-path ## v0.0.1.0 * Add polysemy versions of parsing functions and `stripProperPrefix`. basic-deps: polysemy-plugin: -any path: -any base: '>=4.7 && <5' polysemy-zoo: -any polysemy: -any all-versions: - 0.0.1.0 author: Daniel Firth latest: 0.0.1.0 description-type: markdown description: | # polysemy-path Polysemy-ready versions of functions from the `path` library. license-name: MIT
homepage: '' changelog-type: markdown hash: aebad3d8a49af1d8b1191a8f02b93c936c2f639b8491edaf33d6368dbb3477fe test-bench-deps: {} maintainer: [email protected] synopsis: Polysemy versions of Path functions. changelog: | # Changelog for polysemy-path ## v0.1.0.0 * Make functions sign `PathException` rather than `SomeException`. ## v0.0.1.0 * Add polysemy versions of parsing functions and `stripProperPrefix`. basic-deps: polysemy-plugin: -any polysemy-extra: '>=0.1.7.0 && <0.2.0.0' path: -any base: '>=4.7 && <5' polysemy: -any all-versions: - 0.0.1.0 - 0.1.0.0 author: Daniel Firth latest: 0.1.0.0 description-type: markdown description: | # polysemy-path Polysemy-ready versions of functions from the `path` library. license-name: MIT
Update from Hackage at 2020-11-30T02:42:39Z
Update from Hackage at 2020-11-30T02:42:39Z
YAML
mit
commercialhaskell/all-cabal-metadata
355456140072c4570c3692ca496d9d9a9825b43d
hieradata/class/rabbitmq.yaml
hieradata/class/rabbitmq.yaml
--- lv: data: pv: '/dev/sdb1' vg: 'rabbitmq' mount: /mnt/apt: disk: '/dev/mapper/rabbitmq-data' govuk_lvm: 'data' mountoptions: 'defaults' rabbitmq::config_kernel_variables: 'inet_dist_listen_min': '9100' 'inet_dist_listen_max': '9105' rabbitmq::config_mirrored_queues: true rabbitmq::config_cluster: true rabbitmq::cluster_node_type: 'disc' rabbitmq::cluster_nodes: - 'rabbitmq-1' - 'rabbitmq-2' - 'rabbitmq-3' rabbitmq::erlang_cookie: 'EOKOWXQREETZSHFNTPEY' rabbitmq::wipe_db_on_cookie_change: true
--- lv: data: pv: '/dev/sdb1' vg: 'rabbitmq' mount: /mnt/apt: disk: '/dev/mapper/rabbitmq-data' govuk_lvm: 'data' mountoptions: 'defaults' rabbitmq::config_cluster: true rabbitmq::config_kernel_variables: 'inet_dist_listen_min': '9100' 'inet_dist_listen_max': '9105' rabbitmq::config_mirrored_queues: true rabbitmq::config_variables: 'vm_memory_high_watermark': '0.8' rabbitmq::cluster_node_type: 'disc' rabbitmq::cluster_nodes: - 'rabbitmq-1' - 'rabbitmq-2' - 'rabbitmq-3' rabbitmq::erlang_cookie: 'EOKOWXQREETZSHFNTPEY' rabbitmq::wipe_db_on_cookie_change: true
Increase RabbitMQ `vm_memory_high_watermark` to 80%
Increase RabbitMQ `vm_memory_high_watermark` to 80% The `vm_memory_high_watermark` is a fractional value. It tells RabbitMQ at which fraction of (total) memory usage to start aggressively writing queued messages to disk or to use up the page file. Whilst it does this, it also blocks publishing from client connections. This watermark is triggered across the cluster, not just per-node. Our RabbitMQ nodes are dedicated to running RabbitMQ. The default value for `vm_memory_high_watermark` is 40% (1.5GB of RAM on a 4GB RAM VM). We should increase this value so that our cluster continues to operate for much longer as it has the memory to do so. For more information on this, see: - https://www.rabbitmq.com/memory.html#memsup - https://www.rabbitmq.com/configure.html#config_items
YAML
mit
alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet
66fe97da72d5e7ad068c21fbe34c4bf896ed1043
tests/aws-lambda-1.yml
tests/aws-lambda-1.yml
# Configuration schema version 1. version: 1 functions: test-0.1: runtime: python3.6 build: source: src/hello_world requirements: - file: requirements.txt use_docker: false compile_dependencies: false package: build/hello_world.zip deploy: description: A basic Hello World handler region: eu-west-1 handler: hello.handler memory_size: 128 timeout: 60 # Role, VPC, subnets, security groups and KMS key are all specified by name. role: service-role/NONTF-lambda vpc_config: name: My VPC subnets: - Public subnet - name: Private subnet security_groups: - name: allow_database kms_key: name: aws/lambda tags: wibble: wobble environment: variables: foo: baz bar: # tracing: PassThrough | Active tracing_config: mode: PassThrough # dead_letter: [ARN of SQS queue or SNS topic] dead_letter_config: target_arn: some-dead-letter-arn
# Configuration schema version 1. version: 1 functions: test-0.1: runtime: python3.6 build: source: src/hello_world requirements: - file: requirements.txt use_docker: false compile_dependencies: false package: build/hello_world.zip ignore: - "*.py[cdo]" - __pycache__ - requirements.txt deploy: description: A basic Hello World handler region: eu-west-1 handler: hello.handler memory_size: 128 timeout: 60 # Role, VPC, subnets, security groups and KMS key are all specified by name. role: service-role/NONTF-lambda vpc_config: name: My VPC subnets: - Public subnet - name: Private subnet security_groups: - name: allow_database kms_key: name: aws/lambda tags: wibble: wobble environment: variables: foo: baz bar: # tracing: PassThrough | Active tracing_config: mode: PassThrough # dead_letter: [ARN of SQS queue or SNS topic] dead_letter_config: target_arn: some-dead-letter-arn
Add ignore section to test data
Add ignore section to test data
YAML
mit
jammycakes/lambda-tools
3c0248c8bdfba4e5fa33067bc03aaa77c551aabc
devops/ansible/roles/girder-worker/defaults/main.yml
devops/ansible/roles/girder-worker/defaults/main.yml
# whether to install directly from pypi or from git # if installed from git, the pip install will be editable girder_worker_install_source: "pypi" # must be one of pypi, git # versions to install, pypi will default to latest girder_worker_pypi_version: null girder_worker_git_version: "master" # path to virtualenv to install into, will be created if it doesn't exist # girder_worker_virtualenv: null # only useful if girder_worker_install_source is git, otherwise pip installs to relevant # site-packages dir. girder_worker_path: "{{ ansible_user_dir }}/girder_worker" # whether or not to update the install # this corresponds to ansible's git pull and pips present/latest state girder_worker_update: no # list of girder worker plugins to install girder_worker_plugins: [] # daemon options for running girder worker girder_worker_start: yes girder_worker_daemonize: yes girder_worker_enabled: yes # the user to run the girder-worker daemon under # unused if girder_worker_daemonize is false girder_worker_user: "{{ ansible_user_id }}"
# whether to install directly from pypi or from git # if installed from git, the pip install will be editable girder_worker_install_source: "pypi" # must be one of pypi, git # versions to install, pypi will default to latest girder_worker_git_version: "master" # path to virtualenv to install into, will be created if it doesn't exist # girder_worker_virtualenv: null # only useful if girder_worker_install_source is git, otherwise pip installs to relevant # site-packages dir. girder_worker_path: "{{ ansible_user_dir }}/girder_worker" # whether or not to update the install # this corresponds to ansible's git pull and pips present/latest state girder_worker_update: no # list of girder worker plugins to install girder_worker_plugins: [] # daemon options for running girder worker girder_worker_start: yes girder_worker_daemonize: yes girder_worker_enabled: yes # the user to run the girder-worker daemon under # unused if girder_worker_daemonize is false girder_worker_user: "{{ ansible_user_id }}"
Stop crashing when girder_worker_pypi_version isn't passed
Stop crashing when girder_worker_pypi_version isn't passed Prior to this commit, pypi installs via the ansible role were broken unless the user specified a version with girder_worker_pypi_version since it was defaulting to the empty string (equivalent to pip install girder-worker==). Since the variable is technically undefined now, the default will be to install the latest off pypi (not specifying ==).
YAML
apache-2.0
girder/girder_worker,girder/girder_worker,girder/girder_worker
e86364ff1111ffb623417f287f50c081296a1f13
readthedocs.yml
readthedocs.yml
formats: - pdf requirements_file: requirements_rtfd.txt python: version: 3 setup_py_install: true
build: image: latest formats: - pdf requirements_file: requirements_rtfd.txt python: version: 3.6 setup_py_install: true
Add RTD Python 3.6 support.
Add RTD Python 3.6 support.
YAML
mit
arkottke/pyrotd
c942714180a5102fd556765418cbb8e1a50d1e86
recipes-tag/isstools/meta.yaml
recipes-tag/isstools/meta.yaml
{% set version = "0.2" %} package: name: isstools version: {{ version }} source: git_url: https://github.com/NSLS-II-ISS/isstools git_rev: v{{ version }} build: number: 0 script: python setup.py install --single-version-externally-managed --record=record.txt skip: True # [py2k] requirements: build: - python - six run: - numpy - matplotlib test: imports: - isstools about: home: https://github.com/NSLS-II-ISS/isstools license: BSD
{% set version = "0.3" %} package: name: isstools version: {{ version }} source: git_url: https://github.com/NSLS-II-ISS/isstools git_rev: v{{ version }} build: number: 0 script: python setup.py install --single-version-externally-managed --record=record.txt skip: True # [py2k] requirements: build: - python - six run: - numpy - scipy - matplotlib - pyqt 4* - bluesky - pexpect - ftplib - pysmbc - netcdf4 - pyparsing test: imports: - isstools about: home: https://github.com/NSLS-II-ISS/isstools license: BSD
Update isstools and add misisng deps.
Update isstools and add misisng deps.
YAML
bsd-3-clause
NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes
34561a6343cb2f5713242d9b50b607cc4f318866
publishing-rules.yaml
publishing-rules.yaml
skip-godeps: true rules: - destination: kubernetes branches: - name: origin-4.0-kubernetes-1.11.1 source: branch: master dir: vendor/k8s.io/kubernetes - name: origin-3.10-kubernetes-1.10.2 source: branch: release-3.10 dir: vendor/k8s.io/kubernetes - name: release-1.9.1 source: branch: release-3.9 dir: vendor/k8s.io/kubernetes
skip-godeps: true rules: - destination: kubernetes branches: - name: origin-4.0-kubernetes-1.12.4 source: branch: master dir: vendor/k8s.io/kubernetes - name: origin-3.10-kubernetes-1.10.2 source: branch: release-3.10 dir: vendor/k8s.io/kubernetes - name: release-1.9.1 source: branch: release-3.9 dir: vendor/k8s.io/kubernetes
Update publisher bot for the master branch
Update publisher bot for the master branch
YAML
apache-2.0
akram/origin,Miciah/origin,bparees/origin,dinhxuanvu/origin,akram/origin,jeremyeder/origin,hroyrh/origin,nak3/origin,linzhaoming/origin,spadgett/origin,linzhaoming/origin,anpingli/origin,Miciah/origin,ironcladlou/origin,hroyrh/origin,anpingli/origin,mkumatag/origin,jeremyeder/origin,jeremyeder/origin,soltysh/origin,bparees/origin,xiuwang/origin,pweil-/origin,coreydaley/origin,jim-minter/origin,pecameron/origin,mfojtik/origin,mkumatag/origin,coreydaley/origin,pweil-/origin,spadgett/origin,spadgett/origin,pecameron/origin,jim-minter/origin,linzhaoming/origin,soltysh/origin,mfojtik/origin,openshift/origin,anpingli/origin,openshift/origin,gabemontero/origin,dinhxuanvu/origin,Miciah/origin,ingvagabund/origin,csrwng/origin,mkumatag/origin,deads2k/origin,tnozicka/origin,mahak/origin,spadgett/origin,JacobTanenbaum/origin,coreydaley/origin,csrwng/origin,sdminonne/origin,nak3/origin,JacobTanenbaum/origin,sdminonne/origin,xiuwang/origin,openshift/origin,pecameron/origin,jsafrane/origin,mahak/origin,enj/origin,jsafrane/origin,linzhaoming/origin,bparees/origin,sjug/origin,ingvagabund/origin,tnozicka/origin,sallyom/origin,sferich888/origin,soltysh/origin,akram/origin,ironcladlou/origin,tnozicka/origin,csrwng/origin,dinhxuanvu/origin,JacobTanenbaum/origin,tnozicka/origin,deads2k/origin,linzhaoming/origin,mfojtik/origin,xiuwang/origin,dinhxuanvu/origin,jeremyeder/origin,enj/origin,tnozicka/origin,jeremyeder/origin,gabemontero/origin,sjug/origin,ingvagabund/origin,sdminonne/origin,nak3/origin,ironcladlou/origin,pweil-/origin,sallyom/origin,mahak/origin,dinhxuanvu/origin,tnozicka/origin,sferich888/origin,spadgett/origin,enj/origin,jsafrane/origin,jim-minter/origin,hroyrh/origin,sjug/origin,sallyom/origin,gabemontero/origin,deads2k/origin,sferich888/origin
8acc5cf1356d9351e9593814a5801deca4cfad8a
buildspec.yml
buildspec.yml
version: 0.1 phases: build: commands: - echo "Build started" - ./bin/build
version: 0.1 phases: build: commands: - echo "Build started" - ./bin/build artifacts: files: - hhttpserver
Add compiled output to artifacts
Add compiled output to artifacts
YAML
mit
michalc/hhttpserver,michalc/hhttpserver
c5e2d753c915ba133acd61350314164273840274
component/component.yaml
component/component.yaml
id: mimekit name: MimeKit version: 1.0.13.0 publisher: Jeffrey Stedfast publisher-url: http://github.com/jstedfast/MimeKit getting-started: GettingStarted.md details: Details.md license: ../License.md summary: A complete MIME library with support for S/MIME and PGP. icons: - mimekit_512x512.png - mimekit_128x128.png packages: ios-unified: - MimeKit, Version=1.0.13.0 android: - MimeKit, Version=1.0.13.0 samples: - name: "Android Sample" path: ../samples/MessageReader.Android/MessageReader.Android.sln - name: "iOS Sample" path: ../samples/MessageReader.iOS/MessageReader.iOS.sln no_build: true
id: mimekit name: MimeKit version: 1.0.13.0 publisher: Jeffrey Stedfast publisher-url: http://github.com/jstedfast/MimeKit getting-started: GettingStarted.md details: Details.md license: ../License.md summary: A complete MIME library with support for S/MIME and PGP. icons: - mimekit_512x512.png - mimekit_128x128.png packages: ios-unified: - MimeKit, Version=1.0.13.0 android: - MimeKit, Version=1.0.13.0 samples: - name: "Android Sample" path: ../samples/MessageReader.Android/MessageReader.Android.sln - name: "iOS Sample" path: ../samples/MessageReader.iOS/MessageReader.iOS.sln no_build: true is_shell: true
Set is_shell to true for Xamarin Components
Set is_shell to true for Xamarin Components
YAML
mit
nachocove/MimeKit,nachocove/MimeKit,jstedfast/MimeKit,jstedfast/MimeKit,jstedfast/MimeKit,nachocove/MimeKit
e1cdf32b0292fdd6e1b7e601f4a4009a75c43b1b
recipes/ele/meta.yaml
recipes/ele/meta.yaml
{% set name = "ele" %} {% set version = "0.1.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/rsdefever/ele/archive/v{{ version }}.tar.gz sha256: 72ca474140b147d501df11c046d09978c7f4f8473e9c927b11ce854e69054d2c build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - python # [py>35] - pip run: - python # [py>35] test: imports: - ele about: home: https://github.com/rsdefever/ele license: MIT license_family: MIT license_file: LICENSE.rst summary: 'A lightweight package with the periodic table of the elements' description: | Ele is an extremely lightweight package that defines the elements of the periodic table and allows them to be accessed by symbol, name, atomic number, or mass. It has zero dependencies outside of the Python Standard Library. dev_url: https://github.com/rsdefever/ele extra: recipe-maintainers: - rsdefever
{% set name = "ele" %} {% set version = "0.1.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://github.com/rsdefever/ele/archive/v{{ version }}.tar.gz sha256: 72ca474140b147d501df11c046d09978c7f4f8473e9c927b11ce854e69054d2c build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - python>=3.6 - pip run: - python>=3.6 test: imports: - ele about: home: https://github.com/rsdefever/ele license: MIT license_family: MIT license_file: LICENSE.rst summary: 'A lightweight package with the periodic table of the elements' description: | Ele is an extremely lightweight package that defines the elements of the periodic table and allows them to be accessed by symbol, name, atomic number, or mass. It has zero dependencies outside of the Python Standard Library. dev_url: https://github.com/rsdefever/ele extra: recipe-maintainers: - rsdefever
Move to version constraint rather than selector
Move to version constraint rather than selector
YAML
bsd-3-clause
mariusvniekerk/staged-recipes,chrisburr/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,ocefpaf/staged-recipes,igortg/staged-recipes,johanneskoester/staged-recipes,igortg/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,patricksnape/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,SylvainCorlay/staged-recipes,conda-forge/staged-recipes,chrisburr/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,scopatz/staged-recipes,stuertz/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes
5755db21a143fce044f38ede058687b932fd4154
metadata/com.minar.birday.yml
metadata/com.minar.birday.yml
Categories: - Time License: MIT AuthorWebSite: https://minar.ml/ SourceCode: https://github.com/m-i-n-a-r/birday IssueTracker: https://github.com/m-i-n-a-r/birday/issues Changelog: https://github.com/m-i-n-a-r/birday/releases AutoName: Birday RepoType: git Repo: https://github.com/m-i-n-a-r/birday Builds: - versionName: 1.6.0 versionCode: 8 commit: v1.6.0 subdir: app gradle: - yes - versionName: 1.7.0 versionCode: 9 commit: v1.7.0 subdir: app gradle: - yes - versionName: 1.8.0 versionCode: 10 commit: v1.8.0 subdir: app gradle: - yes - versionName: 1.9.0 versionCode: 11 commit: v1.9.0 subdir: app gradle: - yes - versionName: 1.10.0 versionCode: 13 commit: v1.10.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.10.0 CurrentVersionCode: 13
Categories: - Time License: MIT AuthorWebSite: https://minar.ml/ SourceCode: https://github.com/m-i-n-a-r/birday IssueTracker: https://github.com/m-i-n-a-r/birday/issues Changelog: https://github.com/m-i-n-a-r/birday/releases AutoName: Birday RepoType: git Repo: https://github.com/m-i-n-a-r/birday Builds: - versionName: 1.6.0 versionCode: 8 commit: v1.6.0 subdir: app gradle: - yes - versionName: 1.7.0 versionCode: 9 commit: v1.7.0 subdir: app gradle: - yes - versionName: 1.8.0 versionCode: 10 commit: v1.8.0 subdir: app gradle: - yes - versionName: 1.9.0 versionCode: 11 commit: v1.9.0 subdir: app gradle: - yes - versionName: 1.10.0 versionCode: 13 commit: v1.10.0 subdir: app gradle: - yes - versionName: 2.0.0 versionCode: 14 commit: v2.0.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 2.0.0 CurrentVersionCode: 14
Update Birday to 2.0.0 (14)
Update Birday to 2.0.0 (14)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
da2b4f7e06bf240fef45e811595b96f2a9a72823
ovh/docker-compose.yml
ovh/docker-compose.yml
version: "3.2" services: lapi: build: context: . dockerfile: lapi.dockerfile restart: unless-stopped enviroment: - BROKER_HOST: mqtt.lambdaspace.gr - BROKER_PORT: 1883 - MQTT_TOPIC_HACKERS: "lambdaspace/spacestatus/hackers" - MQTT_TOPIC_STATS: "lambdaspace/spacestatus/stats" caddy: image: abiosoft/caddy restart: unless-stopped volumes: - ./Caddyfile:/etc/Caddyfile:ro ports: - 80:80 - 443:443 links: - lapi - rancher
version: "3.2" services: lapi: build: context: . dockerfile: lapi.dockerfile restart: unless-stopped enviroment: - BROKER_HOST: mqtt.lambdaspace.gr - BROKER_PORT: 1883 - MQTT_TOPIC_HACKERS: "lambdaspace/spacestatus/hackers" - MQTT_TOPIC_STATS: "lambdaspace/spacestatus/stats" caddy: image: abiosoft/caddy restart: unless-stopped volumes: - ./Caddyfile:/etc/Caddyfile:ro ports: - 80:80 - 443:443 links: - lapi
Remove link to deleted container
fix: Remove link to deleted container
YAML
mit
techministry/website-dockerfile
2f8809dc163725b3a852e76ef2908dcd58154cf8
.appveyor.yml
.appveyor.yml
init: - git config --global core.autocrlf true branches: only: - master - release - dev - /^(.*\/)?ci-.*$/ - /^rel\/.*/ build_script: - ps: .\run.ps1 default-build clone_depth: 1 environment: global: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 test: off deploy: off image: Previous Visual Studio 2017
init: - git config --global core.autocrlf true branches: only: - master - release - dev - /^(.*\/)?ci-.*$/ - /^rel\/.*/ build_script: - ps: .\run.ps1 default-build clone_depth: 1 environment: global: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: 1 test: off deploy: off image: Visual Studio 2017
Use latest Appveyor VS image
Use latest Appveyor VS image
YAML
apache-2.0
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
4701dcb5f66b1b28c494c88875d591ed50eff93e
.eslintrc.yml
.eslintrc.yml
root: true extends: semistandard rules: indent: - error - 4 camelcase: off padded-blocks: off operator-linebreak: off no-throw-literal: off linebreak-style: - error - unix
root: true extends: semistandard rules: indent: - error - 4 camelcase: off padded-blocks: off operator-linebreak: off no-throw-literal: off linebreak-style: - error - unix promise/catch-or-return: error
Add ESLint rule against unhandled promises
Add ESLint rule against unhandled promises
YAML
apache-2.0
apache/cordova-lib,shazron/cordova-lib,apache/cordova-lib,shazron/cordova-lib,shazron/cordova-lib,shazron/cordova-lib,shazron/cordova-lib,apache/cordova-lib,apache/cordova-lib,apache/cordova-lib,shazron/cordova-lib
9185c0bcc679e1f28d20d64e1c8e2e39b64d51b5
.eslintrc.yml
.eslintrc.yml
env: browser: true es6: false extends: "eslint:recommended" globals: $: readonly App: readonly annotator: readonly c3: readonly CKEDITOR: readonly L: readonly Turbolinks: readonly parserOptions: ecmaVersion: 5 rules: array-bracket-spacing: error block-spacing: error brace-style: error comma-spacing: error computed-property-spacing: error curly: error eol-last: error func-call-spacing: error indent: - error - 2 key-spacing: error keyword-spacing: error linebreak-style: error lines-between-class-members: error no-console: error no-multi-spaces: error no-multiple-empty-lines: - error - max: 1 no-spaced-func: error no-tabs: error no-trailing-spaces: error no-void: error no-whitespace-before-property: error object-curly-spacing: - error - always - objectsInObjects: false padded-blocks: - error - never quotes: - error - double - avoidEscape: true semi-spacing: error space-before-blocks: error space-before-function-paren: - error - never space-in-parens: error space-infix-ops: error space-unary-ops: error spaced-comment: - error - always - markers: - "=" exceptions: - "-" strict: error switch-colon-spacing: error
env: browser: true es6: false extends: "eslint:recommended" globals: $: readonly App: readonly annotator: readonly c3: readonly CKEDITOR: readonly L: readonly Turbolinks: readonly parserOptions: ecmaVersion: 5 rules: array-bracket-spacing: error block-spacing: error brace-style: error comma-spacing: error computed-property-spacing: error curly: error eol-last: error func-call-spacing: error indent: - error - 2 key-spacing: error keyword-spacing: error linebreak-style: error lines-between-class-members: error no-console: error no-multi-spaces: error no-multiple-empty-lines: - error - max: 1 no-spaced-func: error no-tabs: error no-trailing-spaces: error no-void: error no-whitespace-before-property: error object-curly-spacing: - error - always - objectsInObjects: false padded-blocks: - error - never quotes: - error - double - avoidEscape: true semi: - error - always semi-spacing: error space-before-blocks: error space-before-function-paren: - error - never space-in-parens: error space-infix-ops: error space-unary-ops: error spaced-comment: - error - always - markers: - "=" exceptions: - "-" strict: error switch-colon-spacing: error
Add JavaScript rule for semi colons
Add JavaScript rule for semi colons While I personally prefer the "never" option for this rule, we haven't discussed which guideline to follow, so for now I'm applying the rule CoffeeScript used when generating these files.
YAML
agpl-3.0
consul/consul,usabi/consul_san_borondon,usabi/consul_san_borondon,usabi/consul_san_borondon,usabi/consul_san_borondon,consul/consul,consul/consul,consul/consul,consul/consul
4e72166d529489feaad83ac8b0a0472e970dc0c5
bigtop-deploy/puppet/hieradata/bigtop/repo.yaml
bigtop-deploy/puppet/hieradata/bigtop/repo.yaml
bigtop::bigtop_repo_gpg_check: true bigtop::bigtop_repo_apt_key: "01621A73025BDCA30F4159C62922A48261524827" bigtop::bigtop_repo_yum_key_url: "https://dlcdn.apache.org/bigtop/KEYS" bigtop::bigtop_repo_default_version: "3.1.0"
bigtop::bigtop_repo_gpg_check: true bigtop::bigtop_repo_apt_key: "01621A73025BDCA30F4159C62922A48261524827" bigtop::bigtop_repo_yum_key_url: "https://dlcdn.apache.org/bigtop/KEYS" bigtop::bigtop_repo_default_version: "3.1.1"
Update default values in hieradata for release 3.1.1
Update default values in hieradata for release 3.1.1
YAML
apache-2.0
apache/bigtop,apache/bigtop,apache/bigtop,apache/bigtop,apache/bigtop
95822b3496c41ed3de344da26ec15a982ac2262a
.pre-commit-config.yaml
.pre-commit-config.yaml
# See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/PyCQA/bandit rev: 'master' hooks: - id: bandit
# See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/asottile/pyupgrade rev: v2.3.0 hooks: - id: pyupgrade args: [--py3-plus] - repo: https://github.com/psf/black rev: 19.10b0 hooks: - id: black - repo: https://github.com/pre-commit/pre-commit-hooks rev: v2.5.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-yaml - id: check-json - id: debug-statements - repo: https://gitlab.com/pycqa/flake8 rev: 3.7.9 hooks: - id: flake8 args: [--config=setup.cfg] - repo: https://github.com/PyCQA/bandit rev: 1.6.2 hooks: - id: bandit
Install a few more pre-commit hooks
Install a few more pre-commit hooks
YAML
mit
browniebroke/deezer-python,browniebroke/deezer-python,browniebroke/deezer-python
c76b3ae30ab9e73b622f44213087f2bbc9c322b8
sample_repos/stowm/leveldb-1.15.0/leveldb-1.15.0.yml
sample_repos/stowm/leveldb-1.15.0/leveldb-1.15.0.yml
# force 32bit compile on 64bit platform. --- fetch: wget https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz -O leveldb-1.15.0.tar.gz configure: bash configure --prefix=/usr/local/stow/leveldb-1.15.0 make: make CC="gcc -m32" CXX="g++ -m32" #make: make install: /bin/rm -rf /usr/local/stow/leveldb-1.15.0 ; mkdir -p /usr/local/stow/leveldb-1.15.0/lib ; /bin/cp -r ../leveldb-1.15.0/* /usr/local/stow/leveldb-1.15.0 ; /bin/cp ./libleveldb.a ./*.so* /usr/local/stow/leveldb-1.15.0/lib/ url: https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz filename: leveldb-1.15.0.tar.gz projname: leveldb-1.15.0
# force 32bit compile on 64bit platform. --- fetch: wget https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz -O leveldb-1.15.0.tar.gz configure: bash configure --prefix=/usr/local/stow/leveldb-1.15.0 #make: make CC="gcc -m32" CXX="g++ -m32" make: make install: /bin/rm -rf /usr/local/stow/leveldb-1.15.0 ; mkdir -p /usr/local/stow/leveldb-1.15.0/lib ; /bin/cp -r ../leveldb-1.15.0/* /usr/local/stow/leveldb-1.15.0 ; /bin/cp ./libleveldb.a ./*.so* /usr/local/stow/leveldb-1.15.0/lib/ url: https://leveldb.googlecode.com/files/leveldb-1.15.0.tar.gz filename: leveldb-1.15.0.tar.gz projname: leveldb-1.15.0
Remove 32bit build option from specfile for leveldb.
Remove 32bit build option from specfile for leveldb.
YAML
bsd-3-clause
kiyoka/stowm,kiyoka/stowm
e1cc5f6bd7cba8036db582f0dc24bbdca864547f
cloudbuild.yaml
cloudbuild.yaml
# See https://cloud.google.com/cloud-build/docs/build-config timeout: 1200s options: substitution_option: ALLOW_LOOSE steps: - name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20211118-2f2d816b90' entrypoint: make env: - TAG=$_PULL_BASE_REF - GIT_COMMIT=$_PULL_BASE_SHA args: - push
# See https://cloud.google.com/cloud-build/docs/build-config timeout: 1800s options: substitution_option: ALLOW_LOOSE steps: - name: 'gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20211118-2f2d816b90' entrypoint: make env: - TAG=$_PULL_BASE_REF - GIT_COMMIT=$_PULL_BASE_SHA args: - push
Increase build timeout to 1800s
Increase build timeout to 1800s
YAML
apache-2.0
kubernetes/kube-state-metrics,kubernetes/kube-state-metrics
1c6bb142300d822d0861e65381db0fffe4e9a939
docs/_config.yml
docs/_config.yml
theme: jekyll-theme-cayman title: "Carbon Free Footprint Project" tagline: "An analysis designed to establish a Carbon Free Footprint when operating a BC Northern Lights Bloombox 'Full Blast' 24/7" description: "An analysis designed to establish a Carbon Free Footprint when operating a BC Northern Lights Bloombox 'Full Blast' 24/7" author: name: "Robert Weber, Director" email: "[email protected]" github: "mminail" twitter: "mminail" baseurl: "/docs" exclude: ['README.md'] markdown: kramdown highlighter: rouge kramdown: input: "GFM" hard_wrap: "false" syntax_highlighter: "rouge" timezone: "America/Phoenix" google_analytics: [UA-44765001-8] defaults: - scope: path: "assets/img" values: image: "true" defaults: - scope: path: "" type: "pages" values: layout: "alt-default" author: "Robert Weber, Director" collections: collection_CFFP: output: "true" defaults: - scope: path: "" type: "collection_CFFP" values: layout: "page" defaults: - scope: path: "docs/pages" type: "pages" values: layout: "alt-default" author: "Robert Weber, Director" github: [metadata]
theme: jekyll-theme-cayman title: "Carbon Free Footprint Project" tagline: "An analysis designed to establish a Carbon Free Footprint when operating a BC Northern Lights Bloombox 'Full Blast' 24/7" description: "An analysis designed to establish a Carbon Free Footprint when operating a BC Northern Lights Bloombox 'Full Blast' 24/7" author: name: "Robert Weber, Director" email: "[email protected]" github: "mminail" twitter: "mminail" baseurl: "/" exclude: ['README.md'] markdown: kramdown highlighter: rouge kramdown: input: "GFM" hard_wrap: "false" syntax_highlighter: "rouge" timezone: "America/Phoenix" google_analytics: [UA-44765001-8] defaults: - scope: path: "assets/img" values: image: "true" defaults: - scope: path: "" type: "pages" values: layout: "alt-default" author: "Robert Weber, Director" collections: collection_CFFP: output: "true" defaults: - scope: path: "" type: "collection_CFFP" values: layout: "page" defaults: - scope: path: "/docs/pages" type: "pages" values: layout: "alt-default" author: "Robert Weber, Director" github: [metadata]
Revert base url to root /
Revert base url to root / No change in remote; Local renders same Ok!
YAML
agpl-3.0
rwebaz/Carbon-Free-Footprint-Project,rwebaz/CarbonFreeFootprint
0170ea3188347e1445ed711cdd94149b2609d7c6
config/igor.yml
config/igor.yml
server: port: ${services.igor.port:8088} address: ${services.igor.host:localhost} jenkins: enabled: ${services.jenkins.enabled:false} masters: - name: ${services.jenkins.defaultMaster.name} address: ${services.jenkins.defaultMaster.baseUrl} username: ${services.jenkins.defaultMaster.username} password: ${services.jenkins.defaultMaster.password} redis: connection: ${services.redis.connection:redis://localhost:6379} services: clouddriver: baseUrl: ${services.clouddriver.baseUrl} # echo: # This is recursive # baseUrl: ${services.echo.baseUrl}
server: port: ${services.igor.port:8088} address: ${services.igor.host:localhost} jenkins: enabled: ${services.jenkins.enabled:false} masters: - name: ${services.jenkins.defaultMaster.name} address: ${services.jenkins.defaultMaster.baseUrl} username: ${services.jenkins.defaultMaster.username} password: ${services.jenkins.defaultMaster.password} redis: connection: ${services.redis.connection:redis://localhost:6379} # services: # clouddriver: # baseUrl: ${services.clouddriver.baseUrl} # echo: # This is recursive # baseUrl: ${services.echo.baseUrl}
Remove circular dependency on services
Remove circular dependency on services @ewiseblatt
YAML
apache-2.0
spinnaker/spinnaker,spinnaker/spinnaker,skim1420/spinnaker,jtk54/spinnaker,skim1420/spinnaker,imosquera/spinnaker,duftler/spinnaker,jtk54/spinnaker,ewiseblatt/spinnaker,tgracchus/spinnaker,skim1420/spinnaker,duftler/spinnaker,Roshan2017/spinnaker,ewiseblatt/spinnaker,stitchfix/spinnaker,spinnaker/spinnaker,Roshan2017/spinnaker,stitchfix/spinnaker,spinnaker/spinnaker,duftler/spinnaker,tgracchus/spinnaker,tgracchus/spinnaker,stitchfix/spinnaker,imosquera/spinnaker,skim1420/spinnaker,Roshan2017/spinnaker,ewiseblatt/spinnaker,imosquera/spinnaker,jtk54/spinnaker,duftler/spinnaker,ewiseblatt/spinnaker
4d50fb280b839d019a2541cb54109522c91b9e2e
ab_tests/ab_tests.yaml
ab_tests/ab_tests.yaml
# List the variants for your AB or multivariate test here. # Please leave the 'Example' test config in place. --- - Example: - A - B - TaskListBrowse: - A - B - TaskListHeader: - A - B - TaskListSidebar: - A - B
# List the variants for your AB or multivariate test here. # Please leave the 'Example' test config in place. --- - Example: - A - B - SelfAssessmentSigninTest: - A - B - TaskListBrowse: - A - B - TaskListHeader: - A - B - TaskListSidebar: - A - B
Add Self Assessment Sign In test
Add Self Assessment Sign In test This configures a test to be run on the Self Assessment start page.
YAML
mit
alphagov/fastly-configure,alphagov/fastly-configure,alphagov/fastly-configure
e90aaf1d2426d60afcfeba36ef7e4b81d1afaceb
manifest.yml
manifest.yml
applications: - memory: 512M services: - weatherinsights name: datapalooza-node-starter declared-services: weatherinsights: label: weatherinsights plan: Free
applications: - memory: 512M services: - weatherinsights name: datapalooza-node-starter declared-services: weatherinsights: label: weatherinsights plan: Free-v2
Update weatherinsights plan to Free-v2
Update weatherinsights plan to Free-v2 Reflect Bluemix changes
YAML
apache-2.0
ibm-datapalooza/nodejs-starter,ibm-datapalooza/nodejs-starter
61cc3e2c7741226e4988c8f89a25fcbed6275675
manifest.yml
manifest.yml
--- applications: - name: token-run path: target/token-run-0.0.1-SNAPSHOT.jar memory: 1024M buildpack: java_buildpack
--- applications: - name: token-run path: target/token-run-0.0.1-SNAPSHOT.jar memory: 1024M buildpack: java_buildpack services: - postgresql
Revert "BPT-162: Changed back to h2 while flyway is not working correctly"
Revert "BPT-162: Changed back to h2 while flyway is not working correctly" This reverts commit 47e541db5a4a9b729d39b0679c2ce737df178bbd.
YAML
apache-2.0
tobiasschaefer/token-run,tobiasschaefer/token-run,tobiasschaefer/token-run,tobiasschaefer/token-run
3d5e896e1a2e6717d43586c73cf7f5699e66f946
app/config/routing.yml
app/config/routing.yml
greeting: path: "/{name}" defaults: { _controller: \App\Controller\GreeterController::greetAction, _format: json } requirements: { _format: json } methods: [ GET ]
greeting: path: "/{name}" defaults: { _controller: \App\Controller\GreeterController::greetAction, _format: json, name: "world" } requirements: { _format: json } methods: [ GET ]
Add a default value for the name
Add a default value for the name
YAML
mit
mheki/symfony-micro-demo-app
b25d82d721846ee87a227b91a689855aae348701
_data/2017/sessions.yml
_data/2017/sessions.yml
# Presentation - id: 001 title: "To be announced" description: "" speakers: [0, 1, 2, 3] language: "English" complexity: "Community Presentation" video: null register: null presentation: null # Services - id: 500 title: "TBA" place: "" service: true description: "" - id: 501 title: "Coffee Break" place: "" service: true description: "The best time to talk with speakers and attendees" - id: 502 title: "Lunch Break" place: "" service: true - id: 503 title: "Event opening" place: "" subtype: "presentation" speakers: [] language: "Romanian" - id: 504 title: "Ending" place: "" subtype: "presentation" speakers: [] language: "Romanian"
# Presentation - id: 001 title: "To be announced" description: "" speakers: [0, 1, 2, 3] language: "English" complexity: "Community Presentation" video: null register: null presentation: null - id: 002 title: "Python mocking - When and How to do it" description: > We will be taking a look at the DO's and DON'Ts when writting unittests with mocks. For the first part of the talk we will be taking a look at how and when mocks should be used, since they oftenly tend to be misused or even abused when testing. The second part will be focused on real life examples when mocks simply seem to not work and have unexpected behaviours and how we can debug or understand these weird behaviours. Prior experience with Python mocking is not a must, but it's welcome so that you can follow along easier with the examples. speakers: [2] language: "English" complexity: "Intermediate" video: null register: null presentation: "https://github.com/stefan-caraiman/python-mocking" # Services - id: 500 title: "TBA" place: "" service: true description: "" - id: 501 title: "Coffee Break" place: "" service: true description: "The best time to talk with speakers and attendees" - id: 502 title: "Lunch Break" place: "" service: true - id: 503 title: "Event opening" place: "" subtype: "presentation" speakers: [] language: "Romanian" - id: 504 title: "Ending" place: "" subtype: "presentation" speakers: [] language: "Romanian"
Add presentation about Python mocking
Add presentation about Python mocking Adds presentation for Stefan Caraiman
YAML
mit
oscamp/oscamp.eu,info-uaic/oscamp,info-uaic/oscamp,oscamp/oscamp.eu,oscamp/oscamp.eu,info-uaic/oscamp,info-uaic/oscamp,oscamp/oscamp.eu
0bfb527894a6364d8a85062fa5ce65458008249a
.expeditor/verify.pipeline.yml
.expeditor/verify.pipeline.yml
--- expeditor: cached_folders: - vendor defaults: buildkite: timeout_in_minutes: 30 steps: - label: run-lint-and-specs-ruby-2.4 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.4-buster - label: run-lint-and-specs-ruby-2.5 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.5-buster - label: run-lint-and-specs-ruby-2.6 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.6-buster - label: run-lint-and-specs-ruby-2.7 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.7-buster - label: run-lint-and-specs-ruby-3.0 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:3.0-buster - label: run-specs-windows command: - bundle config --local path vendor/bundle - bundle install --jobs=7 --retry=3 --without docs debug - bundle exec rake expeditor: executor: docker: host_os: windows
--- expeditor: cached_folders: - vendor defaults: buildkite: timeout_in_minutes: 30 steps: - label: run-lint-and-specs-ruby-2.4 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.4-buster - label: run-lint-and-specs-ruby-2.5 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.5-buster - label: run-lint-and-specs-ruby-2.6 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.6-buster - label: run-lint-and-specs-ruby-2.7 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.7-buster - label: run-lint-and-specs-ruby-3.0 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:3.0-buster - label: run-specs-windows command: - bundle config --local path vendor/bundle - bundle config set --local without docs debug - bundle install --jobs=7 --retry=3 - bundle exec rake expeditor: executor: docker: host_os: windows
Replace deprecated --without flag with bundle config
Replace deprecated --without flag with bundle config Signed-off-by: jayashri garud <[email protected]>
YAML
apache-2.0
chef/mixlib-log,chef/mixlib-log
c7d1c42961372adffc45b8536c5977e1a8f457d1
environment.yml
environment.yml
name: bfd dependencies: # Testing Dependencies - flake8 - pytest=2.8 # Run dependencies - matplotlib=1.4 - notebook=4.0 - numpy=1.10 - pandas=0.17 - python=2.7 - scipy=0.16 - pip: - concord-py==0.3 - yahoo-finance>=1.2
name: bfd dependencies: # Testing Dependencies - flake8 - pytest=2.8 # Run dependencies - numpy=1.10 - pandas=0.17 - python=2.7 - scipy=0.16 - pip: - concord-py==0.3 - yahoo-finance>=1.2
Remove matplotlib and ipython dependencies
Remove matplotlib and ipython dependencies
YAML
apache-2.0
concord/bfd,AndrewAday/bfd,alanhdu/bfd,concord/ml
3a9d92a3aa404ee3b3087f8c495cbae2ab1a1f69
config/application.yml
config/application.yml
defaults: &defaults max_unread_count: 10 default_favicon: <%= "#{Rails.root}/public/img/icon/default.png" %> subscribe_limit: 5000 save_pin_limit: 100 crawl_interval: 30 allow_tags: <%= %w(a i u b em strong table tr td th tbody font center div pre code blockquote ins del img br p hr ul li ol dl dt dd) %> allow_attributes: <%= %w(src width height border alt title href color size align) %> development: <<: *defaults test: <<: *defaults production: <<: *defaults
defaults: &defaults max_unread_count: 200 default_favicon: <%= "#{Rails.root}/public/img/icon/default.png" %> subscribe_limit: 5000 save_pin_limit: 100 crawl_interval: 30 allow_tags: <%= %w(a i u b em strong table tr td th tbody font center div pre code blockquote ins del img br p hr ul li ol dl dt dd) %> allow_attributes: <%= %w(src width height border alt title href color size align) %> development: <<: *defaults test: <<: *defaults production: <<: *defaults
Increase max_unread_count 10 to 200. It's same as LDR
Increase max_unread_count 10 to 200. It's same as LDR
YAML
mit
fastladder/fastladder,id774/fastladder,ykzts/fastladder,fastladder/fastladder,toshimaru/fastladder,toshimaru/fastladder,ykzts/fastladder,toshimaru/fastladder,onk/fastladder,onk/fastladder,fastladder/fastladder,id774/fastladder,onk/fastladder,ykzts/fastladder,id774/fastladder
02abd13325219ce7438ca02d5aa7e3245507a23c
.github/workflows/automerge.yml
.github/workflows/automerge.yml
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/[email protected] with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/[email protected] with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
Bump ridedott/merge-me-action from 2.9.15 to 2.9.17
Bump ridedott/merge-me-action from 2.9.15 to 2.9.17 Bumps [ridedott/merge-me-action](https://github.com/ridedott/merge-me-action) from 2.9.15 to 2.9.17. - [Release notes](https://github.com/ridedott/merge-me-action/releases) - [Changelog](https://github.com/ridedott/merge-me-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/ridedott/merge-me-action/compare/v2.9.15...v2.9.17) --- updated-dependencies: - dependency-name: ridedott/merge-me-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
YAML
mit
fizyk/pyramid_decoy
9fd391e2b84b05e436d2a66f30aee2d195d3739a
config/sidekiq.yml
config/sidekiq.yml
--- :concurrency: 20 :queues: - default - scraper - low :limits: scraper: 10
--- :concurrency: 20 :queues: - default - scraper :limits: scraper: 5
Drop number of scraper watchers down to 5
Drop number of scraper watchers down to 5
YAML
agpl-3.0
otherchirps/morph,otherchirps/morph,otherchirps/morph,otherchirps/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,openaustralia/morph,otherchirps/morph,otherchirps/morph,openaustralia/morph,openaustralia/morph,otherchirps/morph,openaustralia/morph
5c41b668f1e72eee655ef52ac1c489ccb49f65f6
dts/bindings/ethernet/nxp,kinetis-ethernet.yaml
dts/bindings/ethernet/nxp,kinetis-ethernet.yaml
# Copyright (c) 2018, Linaro Limited # SPDX-License-Identifier: Apache-2.0 description: NXP Kinetis Ethernet compatible: "nxp,kinetis-ethernet" include: ethernet.yaml properties: reg: required: true interrupts: required: true
# Copyright (c) 2018, Linaro Limited # SPDX-License-Identifier: Apache-2.0 description: NXP Kinetis Ethernet compatible: "nxp,kinetis-ethernet" include: ["ethernet.yaml", "ethernet,fixed-link.yaml"] properties: reg: required: true interrupts: required: true
Support 'fixed-link' property in nxp,kinetics-ethernet.yaml
dts: Support 'fixed-link' property in nxp,kinetics-ethernet.yaml This commit enables support for parsing 'fixed-link' node when it is added to node described in 'ethernet,fixed-link.yaml'. Signed-off-by: Lukasz Majewski <[email protected]>
YAML
apache-2.0
nashif/zephyr,nashif/zephyr,galak/zephyr,finikorg/zephyr,Vudentz/zephyr,galak/zephyr,Vudentz/zephyr,Vudentz/zephyr,galak/zephyr,finikorg/zephyr,galak/zephyr,zephyrproject-rtos/zephyr,Vudentz/zephyr,nashif/zephyr,finikorg/zephyr,galak/zephyr,Vudentz/zephyr,zephyrproject-rtos/zephyr,finikorg/zephyr,finikorg/zephyr,nashif/zephyr,Vudentz/zephyr,zephyrproject-rtos/zephyr,zephyrproject-rtos/zephyr,zephyrproject-rtos/zephyr,nashif/zephyr
7f5c0dc8b09b67694c84f644ce3a94fd1d5f43d3
.gitlab-ci.yml
.gitlab-ci.yml
--- .defaults: &defaults before_script: - apk add --update ragel build-base - if [ "$INSTALL_OPENJDK" == "true" ]; then apk add openjdk8; fi - gem install bundler --no-document - ruby --version - gem --version - bundle --version - bundle install --path vendor --retry=3 script: - bundle exec rake cache: paths: - vendor/ruby Ruby 2.3: image: "ruby:2.3-alpine" <<: *defaults Ruby 2.4: image: "ruby:2.4-alpine" <<: *defaults Ruby 2.5: image: "ruby:2.5-alpine" <<: *defaults Ruby 2.6: image: "ruby:2.6-alpine" <<: *defaults JRuby 9.1: image: "jruby:9.1-alpine" variables: INSTALL_OPENJDK: "true" <<: *defaults
--- .defaults: &defaults before_script: - apk add --update ragel build-base - if [ "$INSTALL_OPENJDK" == "true" ]; then apk add openjdk8; fi - gem install bundler --no-document - ruby --version - gem --version - bundle --version - bundle install --path vendor --retry=3 script: - bundle exec rake cache: paths: - vendor/ruby Ruby 2.3: image: "ruby:2.3-alpine" <<: *defaults Ruby 2.4: image: "ruby:2.4-alpine" <<: *defaults Ruby 2.5: image: "ruby:2.5-alpine" <<: *defaults Ruby 2.6: image: "ruby:2.6-alpine" <<: *defaults Ruby 2.7: image: "ruby:2.7-alpine" <<: *defaults JRuby 9.1: image: "jruby:9.1-alpine" variables: INSTALL_OPENJDK: "true" <<: *defaults
Add CI config for Ruby 2.7
Add CI config for Ruby 2.7
YAML
mpl-2.0
ttasanen/oga,ttasanen/oga,ttasanen/oga,YorickPeterse/oga,ttasanen/oga,YorickPeterse/oga,YorickPeterse/oga,YorickPeterse/oga,ttasanen/oga,YorickPeterse/oga
d0daec69ed703af315f48de3b8021f7bf3bcdcfc
.gitlab-ci.yml
.gitlab-ci.yml
stages: - test image: 'nbulai/ruby-chromedriver:latest' services: - postgres:9.4 cache: paths: - vendor/ruby variables: RAILS_ENV: test POSTGRES_DB: denteo_test DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/$POSTGRES_DB" before_script: - apt-get update -yq - gem install bundler --no-ri --no-rdoc - bundle install -j $(nproc) --path vendor test: stage: test script: - bundle exec rails db:schema:load - bundle exec rails test - bundle exec rails test:system
stages: - test services: - postgres:9.4 cache: paths: - vendor/ruby variables: RAILS_ENV: test POSTGRES_DB: aoz_test DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/$POSTGRES_DB" before_script: - apt-get update -yq - gem install bundler --no-ri --no-rdoc - bundle install -j $(nproc) --path vendor - bundle exec rails db:schema:load test: stage: test image: ruby:2.4.2 script: - bundle exec rails test test:system: image: 'nbulai/ruby-chromedriver:latest' stage: test script: - bundle exec rails test:system
Split testing into 2 stages
Split testing into 2 stages
YAML
agpl-3.0
panter/aoz-003,panter/aoz-003,panter/aoz-003
6d735ebab54b2be2418e2908b0b3bb3486440139
.gitlab-ci.yml
.gitlab-ci.yml
# Composer stores all downloaded packages in the vendor/ directory. # Do not use the following if the vendor/ directory is commited to # your git repository. cache: paths: - vendor/ services: - redis:latest test:7: before_script: - bash build/docker_install.sh > /dev/null - curl -sS https://getcomposer.org/installer | php - php composer.phar install --no-dev image: php:7 script: - phpunit -c build --coverage-text --colors=never test:7.1: before_script: - bash build/docker_install.sh > /dev/null - curl -sS https://getcomposer.org/installer | php - php composer.phar install --no-dev image: php:7.1 script: - phpunit -c build --coverage-text --colors=never test:hhvm: before_script: - /usr/local/bin/composer self-update - curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar - chmod +x /usr/local/bin/phpunit - composer install --no-dev image: 51systems/docker-gitlab-ci-runner-hhvm script: - hhvm -d hhvm.php7.all=true /usr/local/bin/phpunit -c build --coverage-text --colors=never
# Composer stores all downloaded packages in the vendor/ directory. # Do not use the following if the vendor/ directory is commited to # your git repository. cache: paths: - vendor/ services: - redis:latest test:7: before_script: - bash build/docker_install.sh > /dev/null - curl -sS https://getcomposer.org/installer | php - php composer.phar install --no-dev image: php:7 script: - phpunit -c build --coverage-text --colors=never test:7.1: before_script: - bash build/docker_install.sh > /dev/null - curl -sS https://getcomposer.org/installer | php - php composer.phar install --no-dev image: php:7.1 script: - phpunit -c build --coverage-text --colors=never test:hhvm: allow_failure: true before_script: - /usr/local/bin/composer self-update - curl -Lo /usr/local/bin/phpunit https://phar.phpunit.de/phpunit.phar - chmod +x /usr/local/bin/phpunit - composer install --no-dev image: 51systems/docker-gitlab-ci-runner-hhvm script: - hhvm -d hhvm.php7.all=true /usr/local/bin/phpunit -c build --coverage-text --colors=never
Update test config to allow hhvm failures
Update test config to allow hhvm failures
YAML
mit
timw4mail/HummingBirdAnimeClient,timw4mail/HummingBirdAnimeClient,timw4mail/HummingBirdAnimeClient
c6a71091177e8ecca1b31143ac62c3b7255b00a5
packages/ha/hashids.yaml
packages/ha/hashids.yaml
homepage: http://hashids.org/ changelog-type: '' hash: 36db938f70a6b8ee9d59a863534fbc18523c511ff65fff634f91feffc2f9b13c test-bench-deps: {} maintainer: [email protected] synopsis: Hashids generates short, unique, non-sequential ids from numbers. changelog: '' basic-deps: bytestring: -any split: -any base: ==4.* containers: -any all-versions: - '1.0.2' - '1.0.2.1' author: Johannes Hildén latest: '1.0.2.1' description-type: haddock description: This is a Haskell port of the Hashids library. It is typically used to encode numbers to a format suitable for appearance in places like urls. It converts numbers like 347 into strings like yr8, or a list of numbers like [27, 986] into 3kTMd. You can also decode those ids back. This is useful in bundling several parameters into one. license-name: MIT
homepage: http://hashids.org/ changelog-type: '' hash: 22f988ff2c0d7112d6ca0979c463a2a9ca8e81086a256f9bd09fb76b9a650e1e test-bench-deps: bytestring: -any split: -any base: -any containers: -any maintainer: [email protected] synopsis: Hashids generates short, unique, non-sequential ids from numbers. changelog: '' basic-deps: bytestring: -any split: -any base: ==4.* containers: -any all-versions: - '1.0.2' - '1.0.2.1' - '1.0.2.2' author: Johannes Hildén latest: '1.0.2.2' description-type: haddock description: This is a Haskell port of the Hashids library. It is typically used to encode numbers to a format suitable for appearance in visible places like urls. It converts numbers like 347 into strings like yr8, or a list of numbers like [27, 986] into 3kTMd. You can also decode those ids back. This is useful in bundling several parameters into one. license-name: MIT
Update from Hackage at 2015-11-26T13:36:18+0000
Update from Hackage at 2015-11-26T13:36:18+0000
YAML
mit
commercialhaskell/all-cabal-metadata