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 |
|---|---|---|---|---|---|---|---|---|---|
c7d84af3fa8b55b9cd761d4134228add96abe1c3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "iojs"
| language: node_js
node_js:
- "iojs"
| Drop node.js support for now | Drop node.js support for now
| YAML | mit | takenspc/convert-newline |
c87d5abbabb654d0ac3ee392bf16679053384cb6 | .github/workflows/lint.yml | .github/workflows/lint.yml | on: [push, pull_request]
name: Ansible Lint
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint Ansible Playbook
uses: ansible/ansible-lint-action@main
| on: [push, pull_request]
name: Ansible Lint
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint Ansible Playbook
uses: ansible/ansible-lint-action@main
| Update actions/checkout action to v3 | Update actions/checkout action to v3
| YAML | apache-2.0 | konstruktoid/ansible-role-hardening |
3565f8045cb7508943bf749c63bc7e0fb99b3949 | .travis.yml | .travis.yml | sudo: false
language: python
env: RUNNER=travis
python:
- "2.7"
install: pip install -r requirements/dev.txt --download-cache $HOME/.pip-cache
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- psql -U postgres -d travis_ci_test -c "create extension postgis"
script: coverage run --source=electionleaflets manage.py test
script: coverage run -a --source=electionleaflets manage.py harvest -a leaflets
after_success:
- coveralls
notifications:
slack: democracyclub:xPS8z1f2rT5iv25aeXtF6Ikl
cache:
directories:
- /home/travis/virtualenv
- $HOME/.pip-cache/
addons:
postgresql: "9.3" | sudo: false
language: python
env: RUNNER=travis
python:
- "2.7"
install: pip install -r requirements/dev.txt --download-cache $HOME/.pip-cache
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- psql -U postgres -d travis_ci_test -c "create extension postgis"
script:
- coverage run --source=electionleaflets manage.py test
- coverage run -a --source=electionleaflets manage.py harvest
after_success:
- coveralls
notifications:
slack: democracyclub:xPS8z1f2rT5iv25aeXtF6Ikl
cache:
directories:
- /home/travis/virtualenv
- $HOME/.pip-cache/
addons:
postgresql: "9.3" | Make Travis actually run tests | Make Travis actually run tests
The `script` key in `.travis.yml` needs an array if multiple test
scripts should be run. As it was, the harvest script was overriding the
nosetest script.
`leaflets` isn’t a valid harvest attribute, so no tests were running.
This now runs all features.
| YAML | mit | DemocracyClub/electionleaflets,DemocracyClub/electionleaflets,DemocracyClub/electionleaflets |
704c08c7b88c878bd9c3f80234af6cc773abd138 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
services:
- redis-server
env:
global:
- TEST_PHP_ARGS=-q
install:
- |
git clone https://github.com/redis/hiredis.git \
&& pushd hiredis \
&& make \
&& sudo make install \
&& popd
script:
- phpize
- ./configure --enable-phpiredis
- make
- make test
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
services:
- redis-server
env:
global:
- TEST_PHP_ARGS=-q
install:
- |
git clone https://github.com/redis/hiredis.git \
&& pushd hiredis \
&& make \
&& sudo make install \
&& popd
script:
- phpize
- ./configure --enable-phpiredis
- make
- make test
| Add PHP 5.6 as a testing environment on Travis CI. | Add PHP 5.6 as a testing environment on Travis CI.
| YAML | bsd-2-clause | nrk/phpiredis,RustJason/phpiredis,Danack/phpiredis,Danack/phpiredis,Danack/phpiredis,jymsy/phpiredis,nrk/phpiredis,RustJason/phpiredis,RustJason/phpiredis,nrk/phpiredis,jymsy/phpiredis |
6b14437001951dd6aea7edc6cac118b62d1c29c9 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
python-version: [3.7, 3.8]
marker: [not integration]
os: [ubuntu-latest]
include:
- python-version: 3.9
marker: ''
os: ubuntu-latest
- python-version: "3.10"
marker: 'not ((redis or redis_sentinel or redis_cluster) and asynchronous)'
os: ubuntu-latest
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v2
- uses: docker-practice/actions-setup-docker@master
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/**') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements/ci.txt
- name: Tests
run: |
py.test -m "${{ matrix.marker }}" --cov-report=xml --cov-branch --max-runs=3
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
| name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
python-version: [3.7, 3.8]
marker: [not integration]
os: [ubuntu-latest]
include:
- python-version: 3.9
marker: ''
os: ubuntu-latest
- python-version: "3.10"
marker: 'not ((redis or redis_sentinel or redis_cluster) and asynchronous)'
os: ubuntu-latest
runs-on: "${{ matrix.os }}"
steps:
- uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/**') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements/ci.txt
- name: Tests
run: |
py.test -m "${{ matrix.marker }}" --cov-report=xml --cov-branch --max-runs=3
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
| Remove docker step in CI | Remove docker step in CI
| YAML | mit | alisaifee/limits,alisaifee/limits |
0c8b2460bbb2b1c1f74768f10e8a6b94c74c8f13 | .github/workflows/main.yml | .github/workflows/main.yml | name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- fedora
- debian
fail-fast: false
steps:
- uses: actions/checkout@v2
- run: docker build -t libgusb-${{ matrix.distro }} -f contrib/ci/Dockerfile-${{ matrix.distro }} .
- run: docker run -t -v `pwd`:/build libgusb-${{ matrix.distro }} ./contrib/ci/build_and_test.sh -Dtests=false
| name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
distro:
- fedora
- debian
fail-fast: false
steps:
- uses: actions/checkout@v2
- run: docker build -t libgusb-${{ matrix.distro }} -f contrib/ci/Dockerfile-${{ matrix.distro }} .
- run: docker run -t -v `pwd`:/build libgusb-${{ matrix.distro }} ./contrib/ci/build_and_test.sh -Dtests=false
build-freebsd:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
id: test
uses: vmactions/freebsd-vm@v0.1.4
with:
usesh: true
mem: 8192
prepare: |
pkg install -y git python3 glib meson pkgconf gobject-introspection usbids
sync: rsync
run: ./contrib/ci/build_and_test.sh -Dvapi=false -Ddocs=false -Dusb_ids=/usr/local/share/usbids/usb.ids
| Add a FreeBSD CI target | Add a FreeBSD CI target
| YAML | lgpl-2.1 | hughsie/libgusb,hughsie/libgusb,hughsie/libgusb |
253ec53dc53bf540c0f57559ad8906807db0ddf4 | .github/workflows/main.yml | .github/workflows/main.yml | name: CI tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
misc:
name: Misc tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build
run: mvn -B package -DskipTests=true
- name: Verify
run: mvn -B verify -DskipTests=true
- name: Misc Tests
run: mvn -B '-Dtest=!sqlancer.dbms.**' test
sqlite:
name: SQLite Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build
run: mvn -B package -DskipTests=true
- name: SQLite Tests
run: |
mvn -Dtest=TestSQLitePQS test
mvn -Dtest=TestSQLite3 test
| name: CI tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
misc:
name: Misc tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build
run: mvn -B package -DskipTests=true
- name: Verify
run: mvn -B verify -DskipTests=true
- name: Misc Tests
run: mvn -B '-Dtest=!sqlancer.dbms.**' test
sqlite:
name: SQLite Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build
run: mvn -B package -DskipTests=true
- name: SQLite Tests
run: |
mvn -Dtest=TestSQLitePQS test
mvn -Dtest=TestSQLite3 test
duckdb:
name: DuckDB Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build
run: mvn -B package -DskipTests=true
- name: DuckDB Tests
run: mvn -Dtest=TestDuckDB test
| Test DuckDB using GitHub actions | Test DuckDB using GitHub actions
| YAML | mit | sqlancer/sqlancer,sqlancer/sqlancer |
6795ddc5e23542d768002a606e0813660a4be5a6 | .github/workflows/main.yml | .github/workflows/main.yml | on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: true
env:
NOKOGIRI_USE_SYSTEM_LIBRARIES: true # speeds up installation of html-proofer
- uses: actions/cache@v2
with:
path: ~/.npm
key: node-${{ hashFiles('**/package.json') }}
restore-keys: |
node-
- run: npm install
- run: ./test
| on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: true
env:
NOKOGIRI_USE_SYSTEM_LIBRARIES: true # speeds up installation of html-proofer
- uses: actions/cache@v2
with:
path: ~/.npm
key: node-${{ hashFiles('**/package.json') }}
restore-keys: |
node-
- run: npm install
- run: ./test
env:
JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| Use GitHub token for authenticated builds | Use GitHub token for authenticated builds | YAML | mit | nicolasmccurdy/nicolasmccurdy.github.io,nicolasmccurdy/nicolasmccurdy.github.io |
68dd2573e20ccd0a4dfb054036796acc88794d48 | .travis.yml | .travis.yml | ## Travis CI Integration
language: csharp
solution: libgame.sln
matrix:
include:
- os: linux
mono: latest
dotnet: 1.0.0-preview2-003121
- os: osx
mono: latest
dotnet: 1.0.0-preview2-003121
install:
- nuget restore libgame.sln
- nuget install NUnit.Runners -OutputDirectory testrunner
script:
- xbuild mono-addins/Mono.Addins/Mono.Addins.csproj
- xbuild libgame.sln
- mono ./testrunner/NUnit.ConsoleRunner.3.5.0/tools/nunit3-console.exe libgame.UnitTests/bin/Debug/libgame.UnitTests.dll
| ## Travis CI Integration
language: csharp
solution: libgame.sln
matrix:
include:
- os: linux
dist: trusty
mono: latest
- os: linux
dist: trusty
dotnet: 1.0.0-preview2-003121
mono: none
env: DOTNETCORE=1
- os: osx
osx_image: xcode8
mono: latest
- os: osx
osx_image: xcode8
dotnet: 1.0.0-preview2-003121
mono: none
env: DOTNETCORE=1
install:
- nuget restore libgame.sln
- nuget install NUnit.Runners -OutputDirectory testrunner
script:
- xbuild mono-addins/Mono.Addins/Mono.Addins.csproj
- xbuild libgame.sln
- mono ./testrunner/NUnit.ConsoleRunner.3.5.0/tools/nunit3-console.exe libgame.UnitTests/bin/Debug/libgame.UnitTests.dll
| Fix build for Linux and MacOS | :green_heart: Fix build for Linux and MacOS
| YAML | mit | SceneGate/Yarhl |
e2b79e93a13b09b5151c6a16099be21e920254f4 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
include:
- php: 5.3
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpcs --standard=phpcs.xml lib/
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_success:
- bash <(curl -s https://codecov.io/bash) | language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
include:
- php: 5.3
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
allow_failures:
- hhvm
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpcs --standard=phpcs.xml lib/
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_success:
- bash <(curl -s https://codecov.io/bash) | Allow Travis to fail on HHVM | Allow Travis to fail on HHVM
| YAML | mit | datasift/datasift-php,datasift/datasift-php |
b863674b34dba15eafbcd179e7dc6721002b5d3d | .travis.yml | .travis.yml | language: php
cache:
directories:
- $COMPOSER_CACHE_DIR
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit --verbose --coverage-text
- ./vendor/bin/phpcs --standard=PSR1 -p --report=full --report-checkstyle=build/logs/checkstyle.xml src/ tests/
after_script:
- CODECLIMATE_REPO_TOKEN=3893dec64ea1b8a939039133f6f4943c7d41f1b8d51cd7b1417e68568b20a740 ./vendor/bin/test-reporter
| language: php
cache:
directories:
- $COMPOSER_CACHE_DIR
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit --verbose --coverage-text
- ./vendor/bin/phpcs --standard=PSR1 -p --report=full --report-checkstyle=build/logs/checkstyle.xml src/ tests/
after_script:
- ./vendor/bin/test-reporter
| Remove Code Climate token, it should be stored in Travis Environment? | Remove Code Climate token, it should be stored in Travis Environment?
| YAML | mit | HippoPHP/Hippo |
4145f0155727a334bf7e76738f63758066d76573 | .github/workflows/ruby.yml | .github/workflows/ruby.yml | # This workflow will download a prebuilt Ruby version, install dependencies and
# run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '16 4 12 * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.6, 2.7, "3.0", jruby-9.3]
steps:
- uses: actions/checkout@v2
- name: Install non-ruby dependencies
run: |
# Provides libgirepository-1.0.so.1
sudo apt-get install libgirepository-1.0-1
# Provides Gst-1.0.typelib
sudo apt-get install gir1.2-gstreamer-1.0
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- name: Run RuboCop
run: bundle exec rubocop -P
| # This workflow will download a prebuilt Ruby version, install dependencies and
# run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '16 4 12 * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.6, 2.7, "3.0", "3.1", jruby-9.3]
steps:
- uses: actions/checkout@v2
- name: Install non-ruby dependencies
run: |
# Provides libgirepository-1.0.so.1
sudo apt-get install libgirepository-1.0-1
# Provides Gst-1.0.typelib
sudo apt-get install gir1.2-gstreamer-1.0
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
- name: Run RuboCop
run: bundle exec rubocop -P
| Test with Ruby 3.1 in CI | Test with Ruby 3.1 in CI
| YAML | lgpl-2.1 | mvz/gir_ffi-gst |
9ecd47945e505356cb72990842223d1099587909 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO='https://github.com/django/django/archive/master.tar.gz'
- DJANGO='django>=1.9.0,<1.10.0'
- DJANGO='django>=1.8.0,<1.9.0'
install:
- travis_retry pip install $DJANGO
- travis_retry pip install -r requirements/travis-ci.txt
script:
- coverage run --source django_filters runtests.py -v 2
- coverage report
notifications:
email: false
matrix:
exclude:
- python: "3.2"
env: DJANGO='https://github.com/django/django/archive/master.tar.gz'
- python: "3.2"
env: DJANGO='django>=1.9.0,<1.10.0'
- python: "3.3"
env: DJANGO='https://github.com/django/django/archive/master.tar.gz'
- python: "3.3"
env: DJANGO='django>=1.9.0,<1.10.0'
allow_failures:
- env: DJANGO='https://github.com/django/django/archive/master.tar.gz'
fast_finish: true
| language: python
sudo: false
cache: pip
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO='https://github.com/django/django/archive/master.tar.gz'
- DJANGO='django>=1.9.0,<1.10.0'
- DJANGO='django>=1.8.0,<1.9.0'
install:
- travis_retry pip install $DJANGO
- travis_retry pip install -r requirements/travis-ci.txt
script:
- coverage run --source django_filters runtests.py -v 2
- coverage report
notifications:
email: false
matrix:
exclude:
- python: "3.2"
env: DJANGO='https://github.com/django/django/archive/master.tar.gz'
- python: "3.2"
env: DJANGO='django>=1.9.0,<1.10.0'
- python: "3.3"
env: DJANGO='https://github.com/django/django/archive/master.tar.gz'
- python: "3.3"
env: DJANGO='django>=1.9.0,<1.10.0'
allow_failures:
- env: DJANGO='https://github.com/django/django/archive/master.tar.gz'
fast_finish: true
| Add pip cache to TravisCI | Add pip cache to TravisCI
| YAML | bsd-3-clause | alex/django-filter,alex/django-filter |
b7c12d86c493adc86de7b2a22395ab3f0dcf513b | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "8"
- "10"
- "node"
script: "npm run-script travis"
| language: node_js
node_js:
- "8"
- "10"
- "node"
script: "npm run-script travis"
| Drop node.js 6 support as well | Drop node.js 6 support as well
| YAML | bsd-3-clause | One-com/teepee |
b03b41e168d9131111e5e5a43646c58bda2028cb | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
before_install:
- MVN_VERSION=3.5.0
- wget https://archive.apache.org/dist/maven/maven-3/${MVN_VERSION}/binaries/apache-maven-${MVN_VERSION}-bin.zip
- unzip -qq apache-maven-${MVN_VERSION}-bin.zip
- export M2_HOME=$PWD/apache-maven-${MVN_VERSION}
- export PATH=$M2_HOME/bin:$PATH
install: mvn -B install -U -DskipTests=true -am -pl caliper
script: mvn -B verify -U -Dmaven.javadoc.skip=true -am -pl caliper
cache:
directories:
- $HOME/.m2
branches:
only:
- master
- /^release.*$/
| sudo: false
language: java
jdk:
- oraclejdk8
install: mvn -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn install -U -DskipTests=true -am -pl caliper
script: mvn -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn verify -U -Dmaven.javadoc.skip=true -am -pl caliper
cache:
directories:
- $HOME/.m2
branches:
only:
- master
- /^release.*$/
| Remove stuff for downloading Maven 3.5.0 from Travis config; according to Travis, Maven 3.5.x is the default now. | Remove stuff for downloading Maven 3.5.0 from Travis config; according to Travis, Maven 3.5.x is the default now.
Also suppress "Downloading/Downloaded ..." messages from Maven output like we did for Guava.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=186629833
| YAML | apache-2.0 | google/caliper |
9090781fb309e31cf7e7209b5eb38dcb7e0db0c7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
gemfile:
- gemfiles/liquid_2.5.gemfile
- gemfiles/liquid_2.6.gemfile
- gemfiles/liquid_3.gemfile
bundler_args: --without documentation
script: bundle exec rake validate
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
gemfile:
- gemfiles/liquid_2.5.gemfile
- gemfiles/liquid_2.6.gemfile
- gemfiles/liquid_3.gemfile
script: bundle exec rake validate
| Remove a reference to the deleted documentation gem group | Remove a reference to the deleted documentation gem group | YAML | mit | Within3/liquid-autoescape |
ce534823ad2fb5f2e4674364df9dbbe65ad14a69 | .travis.yml | .travis.yml | sudo: required
dist: trusty
os:
- linux
- osx
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
- NUGET_XMLDOC_MODE=skip
branches:
only:
- master
cache:
directories:
- /home/travis/.npm
- /home/travis/.nuget/packages
- src/Website/node_modules
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
install:
- npm install -g npm
- npm install -g gulp@3.9.1
script:
- ./build.sh --restore-packages
| sudo: required
dist: trusty
os:
- linux
- osx
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
- NUGET_XMLDOC_MODE=skip
branches:
only:
- master
cache:
directories:
- /home/travis/.npm
- /home/travis/.nuget/packages
- src/Website/node_modules
addons:
apt:
sources:
- google-chrome
packages:
- gettext
- google-chrome-stable
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
install:
- npm install -g npm
- npm install -g gulp@3.9.1
script:
- ./build.sh --restore-packages
| Install Chrome in Travis CI | Install Chrome in Travis CI
Install Chrome in Travis CI so the UI tests can use it.
| YAML | apache-2.0 | martincostello/website,martincostello/website,martincostello/website,martincostello/website |
18ce40776c0ee616cfbf3d68fef59bd28708379e | .travis.yml | .travis.yml | # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- 1.4
- 1.5
- tip
before_install:
- go get -v golang.org/x/tools/cmd/vet
- go get -v golang.org/x/tools/cmd/cover
- go get -v github.com/mattn/goveralls
- go get -v bitbucket.org/liamstask/goose/cmd/goose
- go get -v github.com/jteeuwen/go-bindata/...
- npm install -g grunt-cli bower browserify json
- sudo /etc/init.d/postgresql stop
script:
- make
- ./scripts/run-pg-tests.sh
- ./scripts/run-sqlite-tests.sh
after_script:
- $HOME/gopath/bin/goveralls -coverprofile=profile.cov -service=travis-ci
| # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- 1.5
- 1.6
- tip
before_install:
- go get -v golang.org/x/tools/cmd/cover
- go get -v github.com/mattn/goveralls
- go get -v bitbucket.org/liamstask/goose/cmd/goose
- go get -v github.com/jteeuwen/go-bindata/...
- npm install -g grunt-cli bower browserify json
- sudo /etc/init.d/postgresql stop
script:
- make
- ./scripts/run-pg-tests.sh
- ./scripts/run-sqlite-tests.sh
after_script:
- $HOME/gopath/bin/goveralls -coverprofile=profile.cov -service=travis-ci
| Drop Go 1.4, add Go 1.6 and don't install vet | Drop Go 1.4, add Go 1.6 and don't install vet
| YAML | bsd-2-clause | rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog,rtfb/rtfblog |
e23596be49476f93f6c1eaa8aad824750042a81c | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
addons:
chrome: stable
env:
- DB=postgres
- DB=mysql
gemfile:
- gemfiles/spree_3_2.gemfile
- gemfiles/spree_3_5.gemfile
- gemfiles/spree_3_6.gemfile
- gemfiles/spree_master.gemfile
script:
- bundle exec rake test_app
- bundle exec rake spec
rvm:
- 2.5.1
- 2.4.4
- 2.3.7
matrix:
allow_failures:
- gemfile: gemfiles/spree_master.gemfile
before_install:
- mysql -u root -e "GRANT ALL ON *.* TO 'travis'@'%';"
- wget -N https://chromedriver.storage.googleapis.com/2.35/chromedriver_linux64.zip -P ~/
- unzip ~/chromedriver_linux64.zip -d ~/
- rm ~/chromedriver_linux64.zip
- sudo mv -f ~/chromedriver /usr/local/share/
- sudo chmod +x /usr/local/share/chromedriver
- sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
| sudo: required
dist: trusty
language: ruby
addons:
chrome: stable
env:
- DB=postgres
- DB=mysql
gemfile:
- gemfiles/spree_3_2.gemfile
- gemfiles/spree_3_5.gemfile
- gemfiles/spree_3_6.gemfile
- gemfiles/spree_master.gemfile
script:
- bundle exec rake test_app
- bundle exec rake spec
rvm:
- 2.5.1
- 2.4.4
- 2.3.7
matrix:
allow_failures:
- gemfile: gemfiles/spree_master.gemfile
exclude:
- rvm: 2.3.7
gemfile: gemfiles/spree_master.gemfile
- rvm: 2.4.4
gemfile: gemfiles/spree_master.gemfile
before_install:
- mysql -u root -e "GRANT ALL ON *.* TO 'travis'@'%';"
- wget -N https://chromedriver.storage.googleapis.com/2.35/chromedriver_linux64.zip -P ~/
- unzip ~/chromedriver_linux64.zip -d ~/
- rm ~/chromedriver_linux64.zip
- sudo mv -f ~/chromedriver /usr/local/share/
- sudo chmod +x /usr/local/share/chromedriver
- sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
| Exclude master branch drom testing on ruby 2.3 and 2.4 | Exclude master branch drom testing on ruby 2.3 and 2.4
| YAML | bsd-3-clause | spree/spree_gateway,spree/spree_gateway |
6fda9cb62b1f45c675894a450c08257a5d546f90 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
script:
- cd enum-map
- cargo build --verbose
- cargo test --verbose --all-features
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
script:
- cd enum-map
- cargo build --verbose
- cargo test --verbose
- cargo test --verbose --all-features
| Test without all features too | Test without all features too
| YAML | apache-2.0 | xfix/enum-map |
b2b029e8528fcc30abef371e5f75cbfa5eee4d03 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| Test on Node stable instead of iojs. | Test on Node stable instead of iojs.
| YAML | mit | tugend/node-source-map-support,merqlove/node-source-map-support,evanw/node-source-map-support,kpdecker/node-source-map-support,merqlove/node-source-map-support,tugend/node-source-map-support,evanw/node-source-map-support,kpdecker/node-source-map-support |
7bb3b350b22ca052164b1f14575a4d9286cb5920 | .travis.yml | .travis.yml | ---
language: objective-c
before_install:
# - brew update
# - brew upgrade xctool
install:
- sudo easy_install cpp-coveralls
script:
- xctool -project DTFoundation.xcodeproj -scheme "DTSidePanels Demo" build -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO
- xctool -project DTFoundation.xcodeproj -scheme "DTReachability Demo" build -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO
- xctool -project DTFoundation.xcodeproj -scheme "DTZipArchive Demo" build -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO
- xctool -project DTFoundation.xcodeproj -scheme "DTProgressHUD Demo" build -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO
- xctool -project DTFoundation.xcodeproj -scheme "Static Library" build test -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO -configuration Coverage
- appledoc -o /tmp .
after_success:
- ./coveralls.rb --extension m --exclude-folder Demo --exclude-folder Test --exclude-folder Externals
| ---
language: objective-c
before_install:
# - brew update
# - brew upgrade xctool
install:
- sudo easy_install cpp-coveralls
script:
- xctool -project DTFoundation.xcodeproj -scheme "DTSidePanels Demo" build -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO
- xctool -project DTFoundation.xcodeproj -scheme "DTReachability Demo" build -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO
- xctool -project DTFoundation.xcodeproj -scheme "DTZipArchive Demo" build -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO
- xctool -project DTFoundation.xcodeproj -scheme "DTProgressHUD Demo" build -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO
# - xctool -project DTFoundation.xcodeproj -scheme "Static Library" build test -sdk iphonesimulator -arch i386 ONLY_ACTIVE_ARCH=NO -configuration Coverage
- xcodebuild -project DTFoundation.xcodeproj -scheme "Static Library" -configuration Coverage -destination 'platform=iOS Simulator,name=iPhone Retina (4-inch)' test
- appledoc -o /tmp .
after_success:
- ./coveralls.rb --extension m --exclude-folder Demo --exclude-folder Test --exclude-folder Externals
| Test if keychain unit test also fails with xcodebuild | Test if keychain unit test also fails with xcodebuild
| YAML | bsd-2-clause | ywzw2013/DTFoundation,JasperYanky/DTFoundation,SanjoDeundiak/DTFoundation,vlondon/DTFoundation,sbausis/DTFoundation,SanjoDeundiak/DTFoundation,nrcmedia/DTFoundation,Cocoanetics/DTFoundation,z8927623/DTFoundation,ShengQiangLiu/DTFoundation,1yvT0s/DTFoundation,programming086/DTFoundation,JasperYanky/DTFoundation,devontech/DTFoundation |
ecf332c3fdfa6515858a211032d62277178f5e6e | .travis.yml | .travis.yml | sudo: false
language: node_js
cache:
directories:
- $HOME/.npm
- $HOME/.yarn-cache
- node_modules
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4"
- "5"
- "node"
before_install:
- npm i -g yarn
install:
- yarn
before_script:
- nvm install stable
- yarn run lint
- nvm use $TRAVIS_NODE_VERSION
script:
- yarn test
after_success:
- "nyc report --reporter=text-lcov | coveralls"
| sudo: false
language: node_js
cache:
directories:
- $HOME/.npm
- $HOME/.yarn-cache
- node_modules
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4"
- "5"
- "node"
before_install:
- npm i -g yarn
install:
- yarn
before_script:
- nvm install stable
- npm run lint
- nvm use $TRAVIS_NODE_VERSION
script:
- yarn test
after_success:
- "nyc report --reporter=text-lcov | coveralls"
| Use npm to run lint script on Travis CI | Use npm to run lint script on Travis CI
Since we're using a different version of Node for linting (due to eslint
dropping support for Node < 4), the yarn package we installed prior to the
temporary version switch is not available. It's silly to install it again just
to run a script, so we'll just stick with npm on this step.
| YAML | mit | wKovacs64/pwned,wKovacs64/pwned |
9ea42daf8f906a751c06e64bb1bb87f5946d5a16 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
env:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
matrix:
exclude:
- python: 3.3
env: DJANGO="Django>=1.9,<1.10"
- python: 3.3
env: DJANGO="Django>=1.10,<1.11"
install:
- pip install $DJANGO
- pip install -e .
- pip install -r requirements.txt
script:
- coverage run runtests.py
- coverage report -m
after_success:
- coveralls --verbose
| language: python
cache: pip
python:
- 2.7
- 3.3
- 3.4
- 3.5
env:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
matrix:
exclude:
- python: 3.3
env: DJANGO="Django>=1.9,<1.10"
- python: 3.3
env: DJANGO="Django>=1.10,<1.11"
install:
- pip install $DJANGO
- pip install -e .
- pip install -r requirements.txt
script:
- coverage run runtests.py
- coverage report -m
after_success:
- coveralls --verbose
| Use Travis's builtin support for pip cache | Use Travis's builtin support for pip cache
See docs:
https://docs.travis-ci.com/user/caching/#pip-cache
| YAML | bsd-3-clause | llazzaro/django-scheduler,sprightco/django-scheduler,sprightco/django-scheduler,sprightco/django-scheduler,drodger/django-scheduler,llazzaro/django-scheduler,llazzaro/django-scheduler,drodger/django-scheduler,drodger/django-scheduler |
c72d558c99595fdcd5828c09ecc7a7e5b06532df | .travis.yml | .travis.yml | language: node_js
node_js:
- 4.0
- 4.1
- 4.2
- 4.3
- 4.4
- 5.0
- 5.1
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- 5.7
- 5.8
- 5.9
- 5.10
- 5.11
- 5.12
- 6.0
- 6.1
- 6.2
- 6.3
| language: node_js
node_js:
- 4.0
- 4.1
- 4.2
- 4.3
- 4.4
- 4.5
- 5.0
- 5.1
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- 5.7
- 5.8
- 5.9
- 5.10
- 5.11
- 5.12
- 6.0
- 6.1
- 6.2
- 6.3
- 6.4
| Test against Node.js 4.5 and 6.4 | Test against Node.js 4.5 and 6.4
| YAML | mit | xavierdutreilh/wintersmith-environments,xavierdutreilh/wintersmith-environments |
4220f6ba0a82217ce8efe5deeaabcf05db3c1556 | .github/actions/npmjs/action.yml | .github/actions/npmjs/action.yml | name: Build and Deploy to NPM.js
description: Build TS and deploy package to NPM.js
inputs:
NPM_TOKEN:
description: NPM.js Token
required: true
runs:
using: "composite"
steps:
- name: Create JS from TS files
run: |
npm ci --silent
npm run build
shell: bash
- name: Deploy NPM package
run: |
npm publish
env:
NODE_AUTH_TOKEN: ${{ inputs.NPM_TOKEN }}
shell: bash
| name: Build and Deploy to NPM.js
description: Build TS and deploy package to NPM.js
inputs:
NPM_TOKEN:
description: NPM.js Token
required: true
runs:
using: "composite"
steps:
- name: Create JS from TS files
run: |
npm ci --silent
npm run build
shell: bash
- name: Deploy NPM package
run: |
npm login
npm publish
env:
NODE_AUTH_TOKEN: ${{ inputs.NPM_TOKEN }}
shell: bash
| Use Login before publish to NPM | Use Login before publish to NPM
| YAML | apache-2.0 | kuzzleio/kuzzle,kuzzleio/kuzzle,kuzzleio/kuzzle,kuzzleio/kuzzle |
56ead10bd5ce4762349ed265520ad2b25bb05067 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.5"
- "5.4"
- "5.3"
- "5.2"
- "5.1"
- "5.0"
- "4.2"
- "4.1"
- "4.0"
script:
- npm test
after_success:
./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
| language: node_js
node_js:
- 5
- 4
- "0.12"
- "0.10"
script:
- npm test
after_success:
./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
| Build for Node 0.12 and Node 0.10 | Build for Node 0.12 and Node 0.10
| YAML | mit | frostney/rollup-babel-lib-bundler |
65c89cd1d1363b78b60fc2bf1a39dd23afc338e8 | .travis.yml | .travis.yml | language: node_js
node_js:
# - "0.10"
- "0.11"
install: npm install
| language: node_js
node_js:
- "0.10"
- "0.11"
install: npm install
| Test node.js v0.10 and v0.11 | Test node.js v0.10 and v0.11
| YAML | mit | cloud9UG/generator-qsExtension,cloud9UG/generator-qsExtension |
b975603a2696f702d58011ef2edb1f5b2963548b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "5"
install:
- npm install -g elm
- npm install -g elm-test
- elm-package install -y
- pushd tests && elm-package install -y && popd
script:
- elm-test
| sudo: false
language: node_js
node_js:
- "5"
cache:
directories:
- node_modules
install:
- npm install -g elm
- npm install -g elm-test
- elm-package install -y
- pushd tests && elm-package install -y && popd
script:
- elm-test
| Add node_modules to cache folder | Add node_modules to cache folder
| YAML | mit | stil4m/elm-analyse,stil4m/elm-analyse,stil4m/elm-analyse,stil4m/elm-analyse |
000fcacff4a28989106754ece8a0843879a32b3e | .travis.yml | .travis.yml | language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo apt-get install graphviz python-tk
install:
- pip install Sphinx --use-mirrors
- pip install pep8 --use-mirrors
before_script:
- pep8 --exclude=asizeof.py,metadata.py,bottle*.py --max-line-length=80 pympler
script:
- python setup.py try
- python setup.py install
- python setup.py test
- python run.py --doctest
- python run.py --html
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo apt-get install graphviz python-tk
install:
- pip install Sphinx --use-mirrors
- pip install pep8 --use-mirrors
script:
- python setup.py try
- python setup.py install
- python setup.py test
- python run.py --doctest
- python run.py --html
after_script:
- pep8 --exclude=asizeof.py,metadata.py,bottle*.py --max-line-length=80 pympler
| Remove Python 2.5 from CI config; run tests before checking PEP8 | Remove Python 2.5 from CI config; run tests before checking PEP8
| YAML | apache-2.0 | yunjianfei/pympler,pympler/pympler,Khan/pympler,pympler/pympler,swiftstack/pympler,yunjianfei/pympler,Khan/pympler |
c13d222ef75383777587d404131fc68e9252ea49 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.3.1
before_install: gem install bundler -v 1.13.2
| sudo: false
language: ruby
rvm:
- 2.4.1
before_install: gem install bundler -v 1.13.2
| Use ruby 2.4.1 for ci | Use ruby 2.4.1 for ci
| YAML | mit | okazu-dm/barbatos,okazu-dm/barbatos,okazu-dm/barbatos |
f6dfbd26252c258c462f5b9857de057c9715405e | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
| Upgrade Travis to container-based infrastructure | Upgrade Travis to container-based infrastructure
See http://docs.travis-ci.com/user/migrating-from-legacy/ for details.
| YAML | mit | dopeddude/loopback-boot |
9f52a8a06fa6e02deab178e7d3d532f9eb0e6703 | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
- "8"
- "6"
sudo: false
| language: node_js
node_js:
- "stable"
- "12"
- "10"
- "8"
sudo: false
| Update nodejs versions we test against * 6 no longer supported * Add 10 and 12 specifically | [~] Update nodejs versions we test against
* 6 no longer supported
* Add 10 and 12 specifically
| YAML | mit | cubehouse/themeparks |
9c2eddd76248f31f3423d2132c97dadb404981e1 | .travis.yml | .travis.yml | dist: trusty
sudo: required
language:
- cpp
compiler:
- g++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
packages:
- g++-6
- clang-3.8
notifications:
email: false
# Install project dependencies
install:
- "[ $CXX = g++ ] && export CXX=g++-6 || true"
- "[ $CXX = clang++ ] && export CXX=clang++-3.8 || true"
- bash get_dependencies.sh
# Build the project
script:
# Build INS server
- bash server/build_and_run_ut.sh
- bash ins-node/build_and_run_ut.sh
| dist: trusty
sudo: required
language:
- cpp
compiler:
- g++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
packages:
- g++-6
- clang-3.8
- lcov
notifications:
email: false
# Install project dependencies
install:
- "[ $CXX = g++ ] && export CXX=g++-6 || true"
- "[ $CXX = clang++ ] && export CXX=clang++-3.8 || true"
- bash get_dependencies.sh
# Build the project
script:
# Build INS server
- bash server/build_and_run_ut.sh
- bash ins-node/build_and_run_ut.sh
after_success:
- bash run_coverage.sh
| Update CI script with lcov | Update CI script with lcov
| YAML | apache-2.0 | platisd/indoor-navigation-system,platisd/indoor-navigation-system,platisd/indoor-navigation-system,platisd/indoor-navigation-system |
7b373b065b2e6cf04c34c018b7f50b74d6a7469f | .github/workflows/deploy-dev.yml | .github/workflows/deploy-dev.yml | name: Deploy Dev Build
on:
push:
branches:
- master
jobs:
deploy:
name: Deploy Lambda Function
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: install dependencies
run: npm ci
- name: Serverless Deploy
run: npm run deploy:dev
env:
AWS_ACCESS_KEY_ID: ${{ secrets.ZORGBORT_STAGE_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.ZORGBORT_STAGE_AWS_SECRET_ACCESS_KEY }}
SLACK_SIGNING_SECRET: ${{ secrets.ZORGBORT_STAGE_SLACK_SIGNING_SECRET }}
SLACK_BOT_TOKEN: ${{ secrets.ZORGBORT_STAGE_SLACK_BOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ZORGBORT_TOKEN }}
VALID_RELEASE_USERS: ${{ secrets.ZORGBORT_STAGE_VALID_RELEASE_USERS }}
| name: Deploy Dev Build
on:
push:
branches:
- master
jobs:
deploy:
name: Deploy Lambda Function
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: install dependencies
run: npm ci
- name: Serverless Deploy
run: npm run deploy:dev
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
SLACK_SIGNING_SECRET: ${{ secrets.ZORGBORT_STAGE_SLACK_SIGNING_SECRET }}
SLACK_BOT_TOKEN: ${{ secrets.ZORGBORT_STAGE_SLACK_BOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ZORGBORT_TOKEN }}
VALID_RELEASE_USERS: ${{ secrets.ZORGBORT_STAGE_VALID_RELEASE_USERS }}
| Use a single AWS key for all deployments | Use a single AWS key for all deployments
This permission doesn't need to be scoped for dev/prod.
| YAML | mit | ucsf-ckm/zorgbort |
87e0bd4b4559eb7c8c14e4dba9e51ba8c078c3eb | .github/workflows/dotnetcore.yml | .github/workflows/dotnetcore.yml | name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core 3.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.0.101
- name: Create NuGet.Config.template
run: echo '<?xml version="1.0" encoding="utf-8"?><configuration><packageSources><add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /><add key="GitHub" value="https://nuget.pkg.github.com/managed-commons/index.json" /></packageSources><packageSourceCredentials><GitHub><add key="Username" value="managed-commons" /><add key="ClearTextPassword" value="GH_TOKEN" /></GitHub></packageSourceCredentials></configuration>' > NuGet.Config.template
- name: Setup Nuget.Config
run: sed -e "s/GH_TOKEN/${{ secrets.RegistryToken }}/" NuGet.Config.template > NuGet.Config
- name: Test with dotnet
run: NONET461=true dotnet test --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
- name: Push nuget
run: dotnet nuget push `pwd`/.nugets/*.nupkg -s GitHub
| name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core 3.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.0.101
- name: Create NuGet.Config.template
run: echo '<?xml version="1.0" encoding="utf-8"?><configuration><packageSources><add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /><add key="GitHub" value="https://nuget.pkg.github.com/managed-commons/index.json" /></packageSources><packageSourceCredentials><GitHub><add key="Username" value="managed-commons" /><add key="ClearTextPassword" value="GH_TOKEN" /></GitHub></packageSourceCredentials></configuration>' > NuGet.Config.template
- name: Setup Nuget.Config
run: sed -e "s/GH_TOKEN/${{ secrets.RegistryToken }}/" NuGet.Config.template > NuGet.Config
- name: Test with dotnet
run: NONET461=true dotnet test --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
- name: Push nuget
run: echo 'dotnet nuget push `pwd`/.nugets/*.nupkg -s GitHub'
| Comment out nuget push to later see if it is some security issue | Comment out nuget push to later see if it is some security issue
| YAML | bsd-3-clause | managed-commons/SvgNet |
a3365d8e2e66d106eec89702213f193d2640df91 | .github/workflows/update-www.yml | .github/workflows/update-www.yml | name: "Update challenges on owasp-juice.shop"
on:
push:
branches: [ master ]
paths:
- 'data/static/challenges.yml'
jobs:
UpdateChallengesOnWebsite:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
with:
repository: OWASP/www-project-juice-shop/
branch: master
- name: 'Update challenges.yml'
run: |
cd _data/
rm challenges.yml
wget https://raw.githubusercontent.com/bkimminich/juice-shop/master/data/static/challenges.yml
- uses: stefanzweifel/git-auto-commit-action@v4.0.0
with:
commit_message: "Auto-update challenges.yml from $GITHUB_SHA"
branch: master
commit_options: '--signoff'
# Optional commit user and author settings
commit_user_name: JuiceShopBot
commit_user_email: 61591748+JuiceShopBot@users.noreply.github.com
commit_author: JuiceShopBot <61591748+JuiceShopBot@users.noreply.github.com>
| name: "Update challenges on owasp-juice.shop"
on:
push:
branches: [ master ]
paths:
- 'data/static/challenges.yml'
jobs:
UpdateChallengesOnWebsite:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
with:
repository: OWASP/www-project-juice-shop
branch: master
- name: 'Update challenges.yml'
run: |
cd _data/
rm challenges.yml
wget https://raw.githubusercontent.com/bkimminich/juice-shop/master/data/static/challenges.yml
- uses: stefanzweifel/git-auto-commit-action@v4.0.0
with:
commit_message: "Auto-update challenges.yml from $GITHUB_SHA"
branch: master
commit_options: '--signoff'
# Optional commit user and author settings
commit_user_name: JuiceShopBot
commit_user_email: 61591748+JuiceShopBot@users.noreply.github.com
commit_author: JuiceShopBot <61591748+JuiceShopBot@users.noreply.github.com>
| Remove trainling slash from repository identifer | Remove trainling slash from repository identifer
| YAML | mit | bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop,bkimminich/juice-shop |
8dec2c759ccdc9224e913f21f121ccb6c02a8c29 | .github/workflows/analyze-and-build.yml | .github/workflows/analyze-and-build.yml | name: Analyze and Build
on: push
jobs:
js:
name: js
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@master
with: {version: ^12.0}
- uses: actions/checkout@master
- run: yarn install --frozen-lockfile
- run: yarn run bundle-data
- run: yarn run pretty
- run: yarn run flow check
- run: yarn run lint
- name: Run tests
run: yarn run test --coverage
- name: Upload coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: bash <(curl -s https://codecov.io/bash)
bundle-android:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@master
with: { version: ^12.0 }
- uses: actions/checkout@master
- run: yarn install --frozen-lockfile
- run: yarn run bundle-data
- run: yarn run --silent bundle:android
bundle-ios:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@master
with: { version: ^12.0 }
- uses: actions/checkout@master
- run: yarn install --frozen-lockfile
- run: yarn run bundle-data
- run: yarn run --silent bundle:ios
| name: Analyze and Build
on: push
jobs:
js:
name: Run JavaScript Checks
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@master
with: {version: ^12.0}
- uses: actions/checkout@master
- run: yarn install --frozen-lockfile
- run: yarn run bundle-data
- run: yarn run pretty
- run: yarn run flow check
- run: yarn run lint
- name: Run tests
run: yarn run test --coverage
- name: Upload coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: bash <(curl -s https://codecov.io/bash)
bundle-android:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@master
with: { version: ^12.0 }
- uses: actions/checkout@master
- run: yarn install --frozen-lockfile
- run: yarn run bundle-data
- run: yarn run --silent bundle:android
bundle-ios:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@master
with: { version: ^12.0 }
- uses: actions/checkout@master
- run: yarn install --frozen-lockfile
- run: yarn run bundle-data
- run: yarn run --silent bundle:ios
| Add a better name for the js job | Add a better name for the js job
Signed-off-by: Kristofer Rye <1ed31cfd0b53bc3d1689a6fee6dbfc9507dffd22@gmail.com>
| YAML | agpl-3.0 | StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native |
c566006a183566fa2abcd852ae554ba4797a7ecc | metadata/de.kromke.andreas.mediascanner.yml | metadata/de.kromke.andreas.mediascanner.yml | Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Andreas Kromke
SourceCode: https://gitlab.com/AndreasK/mediascanner
IssueTracker: https://gitlab.com/AndreasK/mediascanner/issues
Changelog: https://gitlab.com/AndreasK/mediascanner/blob/HEAD/app/src/main/assets/version-history.txt
AutoName: Classical Music Scanner
Description: |-
Scans the device for local audio files and builds a database to be used by
Unpopular Music Player or Opus 1 Music Player. Contrary to the Android service it
knows about composers, works, movements, conductors etc.
RepoType: git
Repo: https://gitlab.com/AndreasK/mediascanner.git
Builds:
- versionName: '1.1'
versionCode: 3
commit: v1.1
subdir: app
gradle:
- yes
ndk: r18b
AutoUpdateMode: None
UpdateCheckMode: Tags
CurrentVersion: '1.1'
CurrentVersionCode: 3
| Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Andreas Kromke
SourceCode: https://gitlab.com/AndreasK/mediascanner
IssueTracker: https://gitlab.com/AndreasK/mediascanner/issues
Changelog: https://gitlab.com/AndreasK/mediascanner/blob/HEAD/app/src/main/assets/version-history.txt
AutoName: Classical Music Scanner
Description: |-
Scans the device for local audio files and builds a database to be used by
Unpopular Music Player or Opus 1 Music Player. Contrary to the Android service it
knows about composers, works, movements, conductors etc.
RepoType: git
Repo: https://gitlab.com/AndreasK/mediascanner.git
Builds:
- versionName: '1.1'
versionCode: 3
commit: v1.1
subdir: app
gradle:
- yes
ndk: r18b
AutoUpdateMode: None
UpdateCheckMode: Tags
CurrentVersion: '1.2'
CurrentVersionCode: 5
| Update CV of Classical Music Scanner to 1.2 (5) | Update CV of Classical Music Scanner to 1.2 (5)
| YAML | agpl-3.0 | f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata |
357558715ba70be1f111e2a03a59491469ad7287 | metadata/com.oF2pks.jquarks.yml | metadata/com.oF2pks.jquarks.yml | Categories:
- Internet
- Navigation
- Reading
License: Apache-2.0
SourceCode: https://gitlab.com/oF2pks/jelly
IssueTracker: https://gitlab.com/oF2pks/jelly/issues
AutoName: jQuarks
RepoType: git
Repo: https://gitlab.com/oF2pks/jelly.git
Builds:
- versionName: 1.0-2
versionCode: 2
commit: v1.0-2
subdir: app
gradle:
- yes
- versionName: 1.0-3
versionCode: 3
commit: v1.0-3
subdir: app
gradle:
- yes
- versionName: 1.0-4
versionCode: 4
commit: v1.0-4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0-4
CurrentVersionCode: 4
| Categories:
- Internet
- Navigation
- Reading
License: Apache-2.0
SourceCode: https://gitlab.com/oF2pks/jelly
IssueTracker: https://gitlab.com/oF2pks/jelly/issues
AutoName: jQuarks
RepoType: git
Repo: https://gitlab.com/oF2pks/jelly.git
Builds:
- versionName: 1.0-2
versionCode: 2
commit: v1.0-2
subdir: app
gradle:
- yes
- versionName: 1.0-3
versionCode: 3
commit: v1.0-3
subdir: app
gradle:
- yes
- versionName: 1.0-4
versionCode: 4
commit: v1.0-4
subdir: app
gradle:
- yes
- versionName: 1.0-5
versionCode: 5
commit: v1.0-5
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0-5
CurrentVersionCode: 5
| Update jQuarks to 1.0-5 (5) | Update jQuarks to 1.0-5 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
4e80328b16b26639d35286698c9df829869eb136 | src/Oro/Bundle/EntityMergeBundle/Resources/config/mass_action.yml | src/Oro/Bundle/EntityMergeBundle/Resources/config/mass_action.yml | parameters:
oro_entity_merge.mass_action.merge.class: Oro\Bundle\EntityMergeBundle\DataGrid\Extension\MassAction\MergeMassAction
oro_entity_merge.mass_action.data_handler.class: Oro\Bundle\EntityMergeBundle\DataGrid\Extension\MassAction\MergeMassActionHandler
oro_entity_merge.mass_action.merge_mass_action_listener.class: Oro\Bundle\EntityMergeBundle\EventListener\DataGrid\MergeMassActionListener
services:
oro_entity_merge.mass_action.merge_mass_action_listener:
class: %oro_entity_merge.mass_action.merge_mass_action_listener.class%
arguments:
- @oro_entity_merge.metadata.registry
tags:
- { name: kernel.event_listener, event: oro_datagrid.datgrid.build.before.accounts-grid, method: onBuildBefore }
oro_entity_merge.mass_action.merge:
class: %oro_entity_merge.mass_action.merge.class%
arguments:
- @oro_entity_merge.metadata.registry
scope: prototype
tags:
- { name: oro_datagrid.extension.mass_action.type, type: merge }
oro_entity_merge.mass_action.data_handler:
class: %oro_entity_merge.mass_action.data_handler.class%
arguments:
- @oro_entity_merge.doctrine_helper
| parameters:
oro_entity_merge.mass_action.merge.class: Oro\Bundle\EntityMergeBundle\DataGrid\Extension\MassAction\MergeMassAction
oro_entity_merge.mass_action.data_handler.class: Oro\Bundle\EntityMergeBundle\DataGrid\Extension\MassAction\MergeMassActionHandler
oro_entity_merge.mass_action.merge_mass_action_listener.class: Oro\Bundle\EntityMergeBundle\EventListener\DataGrid\MergeMassActionListener
services:
oro_entity_merge.mass_action.merge:
class: %oro_entity_merge.mass_action.merge.class%
arguments:
- @oro_entity_merge.metadata.registry
scope: prototype
tags:
- { name: oro_datagrid.extension.mass_action.type, type: merge }
oro_entity_merge.mass_action.data_handler:
class: %oro_entity_merge.mass_action.data_handler.class%
arguments:
- @oro_entity_merge.doctrine_helper
oro_entity_merge.mass_action.merge_mass_action_listener:
class: %oro_entity_merge.mass_action.merge_mass_action_listener.class%
arguments:
- @oro_entity_merge.metadata.registry
tags:
- { name: kernel.event_listener, event: oro_datagrid.datgrid.build.before, method: onBuildBefore }
| Add validate mass action event - CR | BAP-3186: Add validate mass action event
- CR
| YAML | mit | mszajner/platform,trustify/oroplatform,northdakota/platform,trustify/oroplatform,hugeval/platform,mszajner/platform,morontt/platform,orocrm/platform,northdakota/platform,hugeval/platform,ramunasd/platform,hugeval/platform,geoffroycochard/platform,Djamy/platform,2ndkauboy/platform,mszajner/platform,morontt/platform,Djamy/platform,ramunasd/platform,trustify/oroplatform,geoffroycochard/platform,morontt/platform,ramunasd/platform,Djamy/platform,northdakota/platform,2ndkauboy/platform,geoffroycochard/platform,2ndkauboy/platform,orocrm/platform,orocrm/platform |
4ab0a98d88b1a47d912739feabc2ee92a31c76c0 | .github/workflows/contributions-validator.yml | .github/workflows/contributions-validator.yml | # Copyright 2020 The TensorFlow Hub Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
name: Documentation markdown validator
on:
pull_request:
push:
branches: [ master ]
jobs:
test-changed-md-files:
runs-on: ubuntu-latest
name: Test changed markdown documentation files.
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.6'
- name: Install packages
run: |
pip install absl-py attrs tensorflow tensorflow_hub pyaml ruamel.yaml
pip freeze all
- name: Debug information
run: |
echo $(git status)
echo $(git branch)
echo $(git remote)
echo $(git diff origin/master --name-only)
echo $(ls)
- name: Run validator on changed files
run: |
git diff origin/master --name-only --relative=assets/docs | xargs python3.6 ./tools/validator.py
python3.6 ./tools/tags_validator_main.py
| # Copyright 2020 The TensorFlow Hub Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
name: Documentation markdown validator
on:
pull_request:
push:
branches: [ master ]
jobs:
test-changed-md-files:
runs-on: ubuntu-latest
name: Test changed markdown documentation files.
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.7'
- name: Install packages
run: |
pip install absl-py attrs tensorflow tensorflow_hub pyaml ruamel.yaml
pip freeze all
- name: Debug information
run: |
echo $(git status)
echo $(git branch)
echo $(git remote)
echo $(git diff origin/master --name-only)
echo $(ls)
- name: Run validator on changed files
run: |
git diff origin/master --name-only --relative=assets/docs | xargs python3.7 ./tools/validator.py
python3.7 ./tools/tags_validator_main.py
| Update the markdown validation action to use Python 3.7 | Update the markdown validation action to use Python 3.7
PiperOrigin-RevId: 488886070
| YAML | apache-2.0 | tensorflow/tfhub.dev |
3ffad7e4829562598e3a08348a701210b2b4362f | roles/ssh-client/tasks/main.yml | roles/ssh-client/tasks/main.yml | ---
- name: Ensure ~/.ssh exists
file:
path: "{{ ansible_user_dir }}/.ssh"
owner: "{{ ansible_user_id }}"
state: directory
mode: 0700
tags:
- ssh-client
- name: Ensure default settings for ssh exists in ~/.ssh/config
blockinfile:
dest: "{{ ansible_user_dir }}/.ssh/config"
block: |
Host *
ForwardAgent yes
Compression yes
TCPKeepAlive yes
ServerAliveCountMax 3
ServerAliveInterval 20
ControlMaster auto
ControlPath ~/.ssh/master-%r@%h:%p
ControlPersist 300
IdentityFile ~/.ssh/id_rsa.default
tags:
- ssh-client
| ---
- name: Ensure ~/.ssh exists
file:
path: "{{ ansible_user_dir }}/.ssh"
owner: "{{ ansible_user_id }}"
state: directory
mode: 0700
tags:
- ssh-client
- name: Ensure default settings for ssh exists in ~/.ssh/config
blockinfile:
dest: "{{ ansible_user_dir }}/.ssh/config"
create: yes
block: |
Host *
ForwardAgent yes
Compression yes
TCPKeepAlive yes
ServerAliveCountMax 3
ServerAliveInterval 20
ControlMaster auto
ControlPath ~/.ssh/master-%r@%h:%p
ControlPersist 300
IdentityFile ~/.ssh/id_rsa.default
tags:
- ssh-client
| Create file if it does not exists | Create file if it does not exists
| YAML | mit | henrik-farre/ansible,henrik-farre/ansible,henrik-farre/ansible |
2ebce8097815c953763c707cfa69168aae80c21b | roles/vagrant/defaults/main.yml | roles/vagrant/defaults/main.yml | ---
vagrant_allow_hosts: []
# - "rpcbind mountd nfsd statd lockd rquotad : 192.168.50."
vagrant_deny_hosts: []
# - "rpcbind mountd nfsd statd lockd rquotad : ALL"
vagrant_modules:
- nfs-common
- nfs-kernel-server
vagrant_nfs_lines: {}
# Default-Start: ""
# Default-Stop "0 1 2 3 4 5 6"
vagrant_plugins:
- vagrant-vbguest
vagrant_rpc_mountd_port: 1011
vagrant_vagrant_path: /usr/bin/vagrant
vagrant_version: 1.7.0
vagrant_sudoers_path: /etc/sudoers.d
| ---
vagrant_allow_hosts: []
# - "rpcbind mountd nfsd statd lockd rquotad : 192.168.50."
vagrant_deny_hosts: []
# - "rpcbind mountd nfsd statd lockd rquotad : ALL"
vagrant_modules:
- nfs-common
- nfs-kernel-server
vagrant_nfs_lines: {}
# Default-Start: ""
# Default-Stop "0 1 2 3 4 5 6"
vagrant_plugins:
- vagrant-vbguest
vagrant_rpc_mountd_port: 1011
vagrant_vagrant_path: /usr/bin/vagrant
vagrant_version: 1.7.2
vagrant_sudoers_path: /etc/sudoers.d
| Increase default version number, cause of bug in version < 1.7.2 | Increase default version number, cause of bug in version < 1.7.2
| YAML | mit | kraksoft/ansible-roles |
0c0463b27c19bee76694a568c5c0f0044413761a | packages/ca/call-haskell-from-anything.yaml | packages/ca/call-haskell-from-anything.yaml | homepage: https://github.com/nh2/call-haskell-from-anything
changelog-type: ''
hash: 88524be27d9f51260decd01cad1d402f1e574c68e417074d483417f1c5f674d7
test-bench-deps: {}
maintainer: Niklas Hambüchen (mail@nh2.me)
synopsis: Python-to-Haskell function calls
changelog: ''
basic-deps:
call-haskell-from-anything: -any
bytestring: ! '>=0.10.0.0'
base: ==4.*
msgpack: ! '>=0.7.1.5 && <1.0.0'
mtl: ! '>=2.1.2'
attoparsec: ! '>=0.10.3.0'
template-haskell: -any
all-versions:
- '0.1.0.2'
author: Niklas Hambüchen (mail@nh2.me)
latest: '0.1.0.2'
description-type: haddock
description: ''
license-name: MIT
| homepage: https://github.com/nh2/call-haskell-from-anything
changelog-type: ''
hash: 90fa593a259eb1bbef669b5be27c007899743e531df356386493142f5684d07e
test-bench-deps: {}
maintainer: Niklas Hambüchen (mail@nh2.me)
synopsis: Call Haskell functions from other languages via serialization and dynamic
libraries
changelog: ''
basic-deps:
call-haskell-from-anything: -any
bytestring: ! '>=0.10.0.0'
base: ! '>=4.8 && <5'
msgpack: ! '>=1.0.0'
mtl: ! '>=2.1.2'
template-haskell: -any
vector: -any
all-versions:
- '0.1.0.2'
- '0.2.0.0'
author: Niklas Hambüchen (mail@nh2.me)
latest: '0.2.0.0'
description-type: haddock
description: FFI via serialisation. See https://github.com/nh2/call-haskell-from-anything
for details.
license-name: MIT
| Update from Hackage at 2016-01-30T22:41:14+0000 | Update from Hackage at 2016-01-30T22:41:14+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
005a7fe8c7af25e8e95ddde1918e1c1ec47e0389 | packages/ha/hasql-optparse-applicative.yaml | packages/ha/hasql-optparse-applicative.yaml | homepage: https://github.com/sannsyn/hasql-optparse-applicative
changelog-type: ''
hash: bf5588265e64ccd7afdd42930c3b6ca01abc955ba81e116a58c1589412818b90
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: ! '"optparse-applicative" parsers for "hasql"'
changelog: ''
basic-deps:
hasql: ! '>=0.19 && <0.20 || >=1 && <2'
base-prelude: <2
optparse-applicative: ! '>=0.12 && <0.15'
hasql-pool: ! '>=0.4 && <0.5'
all-versions:
- '0.1'
- '0.1.1'
- '0.2'
- '0.2.1'
- '0.2.2'
- '0.2.3'
- '0.2.4'
- '0.3'
- '0.3.0.1'
author: Nikita Volkov <nikita.y.volkov@mail.ru>
latest: '0.3.0.1'
description-type: haddock
description: ''
license-name: MIT
| homepage: https://github.com/sannsyn/hasql-optparse-applicative
changelog-type: ''
hash: 176cc71d03d65fc7864dac3d4c979ea943afe4c402d28e0bb0c252d44ea72962
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: ! '"optparse-applicative" parsers for "hasql"'
changelog: ''
basic-deps:
hasql: ! '>=1.3 && <1.4'
base-prelude: <2
optparse-applicative: ! '>=0.12 && <0.15'
hasql-pool: ! '>=0.5 && <0.6'
all-versions:
- '0.1'
- '0.1.1'
- '0.2'
- '0.2.1'
- '0.2.2'
- '0.2.3'
- '0.2.4'
- '0.3'
- '0.3.0.1'
- '0.3.0.3'
author: Nikita Volkov <nikita.y.volkov@mail.ru>
latest: '0.3.0.3'
description-type: haddock
description: ''
license-name: MIT
| Update from Hackage at 2018-05-24T07:28:34Z | Update from Hackage at 2018-05-24T07:28:34Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ae766f09961ada10bcd1ea7b76bfc6a7426225da | ansible-stunnel/inventory/group_vars/all/stunnel/all.yml | ansible-stunnel/inventory/group_vars/all/stunnel/all.yml | ---
stunnel_server: [ 'test-service' ]
stunnel_services:
- name: 'test-service'
server_accept: ':::test-service'
server_connect: '3306'
port: '3307'
type: 'dport_accept'
dport: [ 'test-service' ]
daemon: 'test-service'
accept_any: True
| ---
stunnel_server: [ 'test-service' ]
stunnel_services:
- name: 'test-service'
server_accept: ':::test-service'
server_connect: '3306'
port: '3307'
type: 'accept'
dport: [ 'test-service' ]
daemon: 'test-service'
accept_any: True
| Change the ferm rule type | Change the ferm rule type
| YAML | mit | ganto/debops-test-suite,ganto/test-suite,ganto/test-suite,ganto/test-suite,debops/test-suite,ganto/test-suite,debops/test-suite,ganto/debops-test-suite,ganto/debops-test-suite,ganto/test-suite,ganto/debops-test-suite,debops/test-suite,debops/test-suite,ganto/debops-test-suite,debops/test-suite |
0fca575bc779962a7dfb97443f49e27c43d93039 | releasenotes/notes/remove-nova-manage-service-subcommand-2a11ed662864341c.yaml | releasenotes/notes/remove-nova-manage-service-subcommand-2a11ed662864341c.yaml | ---
features:
- The service subcommand of nova-manage was deprecated in 13.0. Now in 14.0
the service subcommand is removed. Use service-* commands from
python-novaclient or the os-services REST resource instead.
| ---
upgrade:
- The service subcommand of nova-manage was deprecated in 13.0. Now in 14.0
the service subcommand is removed. Use service-* commands from
python-novaclient or the os-services REST resource instead.
| Fix reno for removal of nova-manage service command | Fix reno for removal of nova-manage service command
Removing the nova-manage service subcommand is not a
feature, but it could impact upgrades, so this change
fixes the category of that change in the release notes.
Change-Id: I42def633f22353faf5e4df817b85a0f8b81a90f0
| YAML | apache-2.0 | rajalokan/nova,hanlind/nova,rajalokan/nova,vmturbo/nova,sebrandon1/nova,jianghuaw/nova,klmitch/nova,alaski/nova,klmitch/nova,jianghuaw/nova,Juniper/nova,gooddata/openstack-nova,rajalokan/nova,cloudbase/nova,openstack/nova,rahulunair/nova,klmitch/nova,Juniper/nova,vmturbo/nova,klmitch/nova,openstack/nova,gooddata/openstack-nova,Juniper/nova,cloudbase/nova,hanlind/nova,mahak/nova,sebrandon1/nova,phenoxim/nova,jianghuaw/nova,cloudbase/nova,hanlind/nova,rahulunair/nova,mikalstill/nova,vmturbo/nova,vmturbo/nova,mikalstill/nova,mahak/nova,Juniper/nova,rahulunair/nova,gooddata/openstack-nova,phenoxim/nova,alaski/nova,mahak/nova,openstack/nova,sebrandon1/nova,rajalokan/nova,gooddata/openstack-nova,jianghuaw/nova,mikalstill/nova |
2a48ddaf121133c574dd318b4eb40263fb3c33f8 | conda-recipe/meta.yaml | conda-recipe/meta.yaml | package:
name: gutils
version: "1.2.2"
source:
path: ../
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- gsw
- numpy
- scipy
- netcdf4
test:
imports:
- gutils
- gutils.ctd
- gutils.gps
- gutils.yo
- gutils.yo.filters
- gutils.nc
- gutils.gbdr
- gutils.gbdr.methods
about:
home: https://github.com/axiom-data-science/GUTILS
license: MIT License
license_file: LICENSE
summary: A set of Python utilities for reading, merging, and post processing Teledyne Webb Slocum Glider data
| package:
name: gutils
version: "1.2.2"
source:
path: ../
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- gsw
- numpy
- scipy
- netcdf4
test:
imports:
- gutils
- gutils.ctd
- gutils.gps
- gutils.yo
- gutils.yo.filters
- gutils.nc
- gutils.gbdr
- gutils.gbdr.methods
commands:
- create_glider_netcdf.py --help
about:
home: https://github.com/axiom-data-science/GUTILS
license: MIT License
license_file: LICENSE
summary: A set of Python utilities for reading, merging, and post processing Teledyne Webb Slocum Glider data
| Test the create_glider_netcdf.py command on conda build | Test the create_glider_netcdf.py command on conda build
| YAML | mit | SECOORA/GUTILS,SECOORA/GUTILS |
31aa916323c974dc802a6c3e9a2a560709c9a337 | conda.recipe/meta.yaml | conda.recipe/meta.yaml | package:
name: pyboost_ipc
version: 0.1
source:
git_url: git@github.com:ESSS/pyboost_ipc.git
requirements:
build:
- gcc [linux]
- cmake >=3.0
- python
- libpython [win]
- boost >=1.55
run:
- python
- boost >=1.55
test:
imports:
- pyboost_ipc
| package:
name: pyboost_ipc
version: 0.2
source:
path: ../
requirements:
build:
- gcc [linux]
- cmake >=3.0
- python
- libpython [win]
- boost >=1.55
run:
- python
- boost >=1.55
test:
imports:
- pyboost_ipc
| Use the '..' as source of conda recipe instead of the github url | Use the '..' as source of conda recipe instead of the github url
| YAML | mit | ESSS/pyboost_ipc,ESSS/pyboost_ipc,ESSS/pyboost_ipc |
7ed19462f93bbf8d494fa49fb90b51ebcd53e2fc | templates/iot/operator/030-ClusterRoleBinding-iot-operator.yaml | templates/iot/operator/030-ClusterRoleBinding-iot-operator.yaml | apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: iot-operator
labels:
app: enmasse
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: enmasse.io:iot-operator
subjects:
- kind: ServiceAccount
name: iot-operator
namespace: ${NAMESPACE}
| apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: "enmasse.io:iot-operator-${NAMESPACE}"
labels:
app: enmasse
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: enmasse.io:iot-operator
subjects:
- kind: ServiceAccount
name: iot-operator
namespace: ${NAMESPACE}
| Align the names with the other binding | Align the names with the other binding | YAML | apache-2.0 | EnMasseProject/enmasse,jenmalloy/enmasse,EnMasseProject/enmasse,jenmalloy/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse,jenmalloy/enmasse,EnMasseProject/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,jenmalloy/enmasse,EnMasseProject/enmasse,EnMasseProject/enmasse |
2ababdee3439bbe13862118e27b2103505f396a8 | repository.yaml | repository.yaml | digital-service: Check your State Pension
| digital-service: Check your State Pension
repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
| Enforce repo yaml privacy key. | PLATOPS-BAU: Enforce repo yaml privacy key.
| YAML | apache-2.0 | hmrc/nisp-frontend,hmrc/nisp-frontend |
b4d4ab4418be36c474b52edc41168b957d4defab | Magic/src/main/resources/examples/survival/crafting/magicbow.yml | Magic/src/main/resources/examples/survival/crafting/magicbow.yml | magicbow:
output: magicbow
output_type: wand
group: "Wands"
materials:
o: nether_star
i: bow
h: magicheart
row_1: o
row_2: i
row_3: h
| magicbow:
output: magicbow
output_type: wand
group: "Wands"
materials:
i: bow
h: magicheart
row_1: h
row_2: i
row_3: h
| Change magic bow crafting recipe, no nether star | Change magic bow crafting recipe, no nether star
| YAML | mit | elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicPlugin |
c47c86b21eb254fe7deff7e9d69022caa0c10f96 | .github/workflows/cucumber-ruby.yml | .github/workflows/cucumber-ruby.yml | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Ruby
on:
push:
branches: [ master, publish-option ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
with:
ruby-version: 2.6
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec cucumber --publish
env:
# Remove this when the messages.cucumber.io domain is available
CUCUMBER_MESSAGE_STORE_URL: https://b1f2yk58d8.execute-api.eu-west-3.amazonaws.com
| # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Ruby
on:
push:
branches: [ master, publish-option ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
with:
ruby-version: 2.6
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec cucumber --publish
| Remove customized CUCUMBER_MESSAGE_STORE_URL in CI config | Remove customized CUCUMBER_MESSAGE_STORE_URL in CI config
| YAML | mit | cucumber/cucumber-ruby,cucumber/cucumber-ruby,cucumber/cucumber-ruby |
280493f04d0fc9f93601b7cde66da7facf13d229 | .github/workflows/run-all-tests.yml | .github/workflows/run-all-tests.yml | name: run-all-tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.4.2
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v1.12
with:
cmake-version: '3.23.x'
- name: Build CMake project
run: |
cmake -S . -B build
cmake --build build
- name: Run tests
run: make -C build test
| name: run-all-tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.4.2
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v1.12
with:
cmake-version: '3.23.x'
- name: Build CMake project
run: |
cmake -S . -B build
cmake --build build
- name: Run tests
run: make -C build test
| Fix indentation in Github Actions workflow. | Fix indentation in Github Actions workflow.
| YAML | mit | kartikkumar/cppbase |
6955c69dc728516896f681d7823a798279343193 | .github/workflows/test-and-lint.yml | .github/workflows/test-and-lint.yml | name: Test and lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9.0-rc.2]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
flake8 --version
flake8 --show-source --statistics asserts test_asserts.py
- name: Type checking with mypy
run: |
mypy --version
mypy asserts test_asserts.py
- name: Test with unittest
run: python -Wall -m unittest test_asserts
- name: Run doctests
run: python -m doctest asserts/__init__.py
| name: Test and lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
flake8 --version
flake8 --show-source --statistics asserts test_asserts.py
- name: Type checking with mypy
run: |
mypy --version
mypy asserts test_asserts.py
- name: Test with unittest
run: python -Wall -m unittest test_asserts
- name: Run doctests
run: python -m doctest asserts/__init__.py
| Use Python 3.9 final in CI | Use Python 3.9 final in CI
| YAML | mit | srittau/python-asserts |
6b3ee6997840fe52bb67579039ca99cebdd341cc | jenkins/jobs/octavia.yaml | jenkins/jobs/octavia.yaml | - job-template:
name: '{pipeline}-tempest-dsvm-octavia{job-suffix}'
node: '{node}'
wrappers:
- build-timeout:
timeout: 65
- timestamps
builders:
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TEMPEST=1
export DEVSTACK_GATE_NEUTRON=1
export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1
export BRANCH_OVERRIDE={branch-override}
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi
function pre_test_hook {{
$BASE/new/octavia/octavia/tests/contrib/pre_test_hook.sh
}}
export -f pre_test_hook
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
./safe-devstack-vm-gate-wrap.sh
publishers:
- devstack-logs
- console-log
| - job-template:
name: '{pipeline}-tempest-dsvm-octavia{job-suffix}'
node: '{node}'
wrappers:
- build-timeout:
timeout: 65
- timestamps
builders:
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TEMPEST=1
export DEVSTACK_GATE_NEUTRON=1
export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1
export BRANCH_OVERRIDE={branch-override}
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi
export PROJECTS="openstack/barbican $PROJECTS"
export PROJECTS="openstack/python-barbicanclient $PROJECTS"
function pre_test_hook {{
$BASE/new/octavia/octavia/tests/contrib/pre_test_hook.sh
}}
export -f pre_test_hook
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
./safe-devstack-vm-gate-wrap.sh
publishers:
- devstack-logs
- console-log
| Add Barbican and client to Octavia PROJECTS | Add Barbican and client to Octavia PROJECTS
Adding the same list of PROJECTS in pre_test_hook of Octavia didn't
help. It throws an error "Cloning is not allowed, please add in
the job definition". This patch adds the same to Octavia PROJECTS.
Change-Id: Id6d64c59233628aad3715a0b61d2377616073a49
| YAML | apache-2.0 | Tesora/tesora-project-config,openstack-infra/project-config,dongwenjuan/project-config,Tesora/tesora-project-config,dongwenjuan/project-config,openstack-infra/project-config |
219d2b60b43265dbbc4c079ecdc9c23760c6b0ac | .github/ISSUE_TEMPLATE/bug_report.yml | .github/ISSUE_TEMPLATE/bug_report.yml | name: Bug Report
description: Bug report for RxJS core behavior.
body:
- type: textarea
id: description
attributes:
label: Describe the bug
description: |
A clear and concise description of the behavior.
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: A clear and concise description of what you expect to happen.
validations:
required: true
- type: textarea
id: code
attributes:
label: Input code
render: typescript
- type: input
id: repro-link
attributes:
label: Link to repro
description: Use [Stackblitz](https://stackblitz.com/fork/rxjs) or git repo can reproduce issue
- type: input
id: version
attributes:
label: Version
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
placeholder: Version of runtime environment, build configuration, etcs can affect behavior of RxJS.
- type: textarea
id: addition
attributes:
label: Additional context
placeholder: Add any other context about the problem here.
| name: Bug Report
description: Bug report for RxJS core behavior.
body:
- type: textarea
id: description
attributes:
label: Describe the bug
description: |
A clear and concise description of the behavior.
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
description: A clear and concise description of what you expect to happen.
validations:
required: true
- type: textarea
id: code
attributes:
label: Input code
render: typescript
- type: input
id: repro-link
attributes:
label: Reproduction URL
description: Use [Stackblitz](https://stackblitz.com/fork/rxjs) or git repo can reproduce issue
- type: input
id: version
attributes:
label: Version
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
placeholder: Version of runtime environment, build configuration, etcs can affect behavior of RxJS.
- type: textarea
id: addition
attributes:
label: Additional context
placeholder: Add any other context about the problem here.
| Tweak label to be more clear | chore: Tweak label to be more clear | YAML | apache-2.0 | martinsik/rxjs,martinsik/rxjs,ReactiveX/rxjs,ReactiveX/rxjs,martinsik/rxjs,ReactiveX/rxjs,martinsik/rxjs,ReactiveX/rxjs |
a186aa0f5f0824fe86c76dc7af76a24b3064fa8a | .github/workflows/tests-yaml-lint.yml | .github/workflows/tests-yaml-lint.yml | name: YAML Lint
on: [push, pull_request]
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
config_data: "{extends: default, ignore: .github}"
| name: YAML Lint
on: [push, pull_request]
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
config_data: "{extends: default, ignore: .github}"
| Update actions/checkout action to v2 | Update actions/checkout action to v2
| YAML | apache-2.0 | anarkiwi/faucet,REANNZ/faucet,REANNZ/faucet,mwutzke/faucet,faucetsdn/faucet,mwutzke/faucet,faucetsdn/faucet,anarkiwi/faucet |
6b87b3b3105cd5b280d7d2584607b82ff07da22c | caf-audit/docs/_config.yml | caf-audit/docs/_config.yml | title: Audit
email: caf-audit@hpe.com
description: CAF Auditing Site Documentation
baseurl: "https://github.com/CAFAudit/audit-service"
# Build settings
exclude: ['node_modules']
markdown: kramdown
highlighter: rouge
gems: ['jekyll-coffeescript', 'jekyll-watch', 'jekyll-assets', 'jekyll-paginate']
layouts_dir: caf-templates/_layouts
includes_dir: caf-templates/_includes
paginate: 5
paginate_path: "/pages/en-us/blog/page:num/"
sass:
sass_dir: caf-templates/_sass | title: Audit
email: caf-audit@hpe.com
description: CAF Auditing Site Documentation
baseurl: "https://cafaudit.github.io/audit-service"
# Build settings
exclude: ['node_modules']
markdown: kramdown
highlighter: rouge
gems: ['jekyll-coffeescript', 'jekyll-watch', 'jekyll-assets', 'jekyll-paginate']
layouts_dir: caf-templates/_layouts
includes_dir: caf-templates/_includes
paginate: 5
paginate_path: "/pages/en-us/blog/page:num/"
sass:
sass_dir: caf-templates/_sass | Update base url for CAF Auditing Documentation site. | CAF-2447: Update base url for CAF Auditing Documentation site.
| YAML | apache-2.0 | CAFAudit/audit-service,CAFAudit/audit-service,CAFAudit/audit-service |
e9a48e90132d00fa3241cc476810db3d062c0f7a | packages/si/simple-get-opt.yaml | packages/si/simple-get-opt.yaml | homepage: ''
changelog-type: ''
hash: f176a815405c40606638cf125d3f28af87aec82a27995fde9f745eba4c08064c
test-bench-deps: {}
maintainer: iavor.diatchki@gmail.com
synopsis: A simple library for processing command-line options.
changelog: ''
basic-deps:
base: <10
all-versions:
- '0.1.0.0'
author: Iavor S. Diatchki
latest: '0.1.0.0'
description-type: haddock
description: ! 'A simple library for processing command-line options.
The library captures a common usage pattern of the GetOpt module
form the standard libraries.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 5331664091910dc9cb0cad6caca369fbb67457964ff0cbbbd5e10b03e7c43f23
test-bench-deps: {}
maintainer: iavor.diatchki@gmail.com
synopsis: A simple library for processing command-line options.
changelog: ''
basic-deps:
base: <5
all-versions:
- '0.1.0.0'
- '0.2.0'
author: Iavor S. Diatchki
latest: '0.2.0'
description-type: haddock
description: ! 'A simple library for processing command-line options.
The library captures a common usage pattern of the GetOpt module
form the standard libraries.'
license-name: BSD3
| Update from Hackage at 2018-11-21T20:01:47Z | Update from Hackage at 2018-11-21T20:01:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8b25130d54bc3397bb675d91ec94b44d4d3502f6 | .config/beets/config.yaml | .config/beets/config.yaml | directory: ~/media/music
library: ~/media/music/musiclibrary.blb
asciify_paths: yes
import:
move: yes
write: yes
languages: en
log: ~/media/music/beets-log.txt
match:
preferred:
countries: ['CA']
media: ['CD']
paths:
default: $albumartist/$album%aunique{}/$track $title
singleton: Non-Album/$artist/$title
comp: Compilations/$album%aunique{}/$track $title
albumtype:soundtrack: Soundtracks/$album/$track $title
# The default replacements, plus " " -> "-"
replace:
'[\\/]': _
'^\.': _
'[\x00-\x1f]': _
'[<>:"\?\*\|]': _
'\.$': _
'\s+$': ''
'^\s+': ''
'\s': '-'
plugins: >
fromfilename
fetchart
mbsync
ipfs
fetchart:
store_source: yes
| directory: ~/media/music
library: ~/media/music/musiclibrary.blb
asciify_paths: yes
import:
move: yes
write: yes
languages: en
log: ~/media/music/beets-log.txt
match:
preferred:
countries: ['CA']
media: ['CD']
paths:
default: $albumartist/$album%aunique{}/$track $title
singleton: Non-Album/$artist/$title
comp: Compilations/$album%aunique{}/$track $title
albumtype:soundtrack: Soundtracks/$album/$track $title
# The default replacements, plus " " -> "-"
replace:
'[\\/]': _
'^\.': _
'[\x00-\x1f]': _
'[<>:"\?\*\|]': _
'\.$': _
'\s+$': ''
'^\s+': ''
'\s': '-'
plugins: >
fromfilename
fetchart
mbsync
ipfs
fetchart:
store_source: yes
ipfs:
auto: no
| Disable adding to IPFS by default | beets: Disable adding to IPFS by default
| YAML | mit | musoke/dotfiles,musoke/dotfiles,musoke/dotfiles |
d92cef8c3292c59e6ff8640bf70328e55720b8fc | packages/tr/tree-sitter-ql.yaml | packages/tr/tree-sitter-ql.yaml | homepage: https://github.com/tree-sitter/haskell-tree-sitter/tree/master/tree-sitter-ql
changelog-type: markdown
hash: f04f1b0dd281071651f7ff443881ea71e34da384f0ed82b851707c7b7ad5f37d
test-bench-deps: {}
maintainer: rewinfrey@github.com
synopsis: Tree-sitter grammar/parser for QL
changelog: |
# v0.1.0.0
* add tree-sitter-ql parser
basic-deps:
base: ! '>=4.12 && <4.14'
tree-sitter: ^>=0.9.0.0
all-versions:
- 0.1.0.0
author: Max Brunsfeld, Tim Clem, Rob Rix, Josh Vera, Rick Winfrey, Ayman Nadeem, Patrick
Thomson
latest: 0.1.0.0
description-type: haddock
description: This package provides a parser for QL suitable for use with the tree-sitter
package.
license-name: BSD-3-Clause
| homepage: https://github.com/tree-sitter/haskell-tree-sitter/tree/master/tree-sitter-ql
changelog-type: markdown
hash: 3f02c7f87c192218498509b3360d60691e4ebf73d757746d2c8a0c379ad4e9d9
test-bench-deps: {}
maintainer: rewinfrey@github.com
synopsis: Tree-sitter grammar/parser for QL
changelog: |
# v0.1.0.1
* Bump tree-sitter-ql parser to use consistent test structure (test/corpus/*.txt)
# v0.1.0.0
* add tree-sitter-ql parser
basic-deps:
base: ! '>=4.12 && <4.14'
tree-sitter: ^>=0.9.0.0
all-versions:
- 0.1.0.0
- 0.1.0.1
author: Max Brunsfeld, Tim Clem, Rob Rix, Josh Vera, Rick Winfrey, Ayman Nadeem, Patrick
Thomson
latest: 0.1.0.1
description-type: haddock
description: This package provides a parser for QL suitable for use with the tree-sitter
package.
license-name: BSD-3-Clause
| Update from Hackage at 2020-03-05T01:46:28Z | Update from Hackage at 2020-03-05T01:46:28Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
bfe157f34b3b72ef01292e24ba7041d19ed1fe93 | .github/workflows/ci.yaml | .github/workflows/ci.yaml | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clear up some space on runner
run: |
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 100
df -h
sudo apt-get remove -y '^ghc-8.*'
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y azure-cli google-cloud-sdk hhvm google-chrome-stable firefox powershell mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
rm -rf /usr/share/dotnet/
df -h
- name: Checkout code
uses: actions/checkout@v2
- name: check tags are correct
run: |
make check-tags
- name: run lint
run: |
make lint
- name: run solutions
run: |
make run
| name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clear up some space on runner
run: |
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 100
df -h
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^ghc-8.*'
sudo apt-get remove -y '^libclang.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y '^mongodb-.*'
sudo apt-get remove -y '^mysql-.*'
sudo apt-get remove -y '^postgresql-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y azure-cli google-cloud-sdk hhvm google-chrome-stable firefox powershell mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
rm -rf /usr/share/dotnet/
df -h
- name: Checkout code
uses: actions/checkout@v2
- name: check tags are correct
run: |
make check-tags
- name: run lint
run: |
make lint
- name: run solutions
run: |
make run
| Remove more packages to free space on CI server | Remove more packages to free space on CI server
| YAML | mit | deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground |
1fa1d40ca40e4dc429c0ad742c33ce594c4a86cb | .github/workflows/ci.yaml | .github/workflows/ci.yaml | name: superflore-ci
on:
push:
branches: ['master']
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
python: [3.6, 3.7, 3.8, 3.9]
name: superflore tests
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python}}
uses: actions/setup-python@v1
with:
python-version: ${{matrix.python}}
- name: Install dependencies
run: |
echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" | sudo tee -a /etc/apt/sources.list.d/ros-latest.list
wget https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc -O /tmp/ros.asc
sudo apt-key add /tmp/ros.asc
sudo apt-get update -qq
sudo apt-get install dpkg -y
sudo apt-get install -y python-rosdep
pip install -r requirements.txt
- name: Run tests
run: |
sudo rosdep init
rosdep update
python -m 'nose' --exclude test_pull --exclude test_run --exclude test_logger_output
python -m 'flake8' superflore --import-order-style=google
| name: superflore-ci
on:
push:
branches: ['master']
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
python: [3.6, 3.7, 3.8, 3.9]
name: superflore tests
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python}}
uses: actions/setup-python@v1
with:
python-version: ${{matrix.python}}
- name: Install dependencies
run: |
echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" | sudo tee -a /etc/apt/sources.list.d/ros-latest.list
wget https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc -O /tmp/ros.asc
sudo apt-key add /tmp/ros.asc
sudo apt-get update -qq
sudo apt-get install dpkg -y
sudo apt-get install -y python3-rosdep
pip install -r requirements.txt
- name: Run tests
run: |
sudo rosdep init
rosdep update
python -m 'nose' --exclude test_pull --exclude test_run --exclude test_logger_output
python -m 'flake8' superflore --import-order-style=google
| Use python3-rosdep to provide the rosdep utility. | Use python3-rosdep to provide the rosdep utility.
| YAML | apache-2.0 | ros-infrastructure/superflore,ros-infrastructure/superflore |
1742c3f122bbfb6c79eaa9edad386e262c902c97 | .github/workflows/ci.yaml | .github/workflows/ci.yaml | name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '2.5'
- '2.6'
- '2.7'
- '3.0'
rails-version:
- '6.0'
- '6.1'
env:
TEST_RAILS_VERSION: ${{ matrix.rails-version }}
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
- name: Report code coverage
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' && matrix.rails-version == '6.1' }}
continue-on-error: true
uses: paambaati/codeclimate-action@v3.0.0
| name: CI
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '2.5'
- '2.6'
- '2.7'
- '3.0'
rails-version:
- '6.0'
- '6.1'
env:
TEST_RAILS_VERSION: ${{ matrix.rails-version }}
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
timeout-minutes: 30
- name: Run tests
run: bundle exec rake
- name: Report code coverage
if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.0' && matrix.rails-version == '6.1' }}
continue-on-error: true
uses: paambaati/codeclimate-action@v3.0.0
| Add timeout-minutes to setup-ruby job | Add timeout-minutes to setup-ruby job
| YAML | mit | ManageIQ/ovirt_metrics,ManageIQ/ovirt_metrics |
28c2fb0132bba8c1c26658de392ea96ec63dfd23 | .github/workflows/php.yml | .github/workflows/php.yml | name: Continuous Integration
on:
- pull_request
- push
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
dependencies:
- lowest
- highest
steps:
- uses: actions/checkout@v1
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
ini-values: assert.exception=1, zend.assertions=1
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install lowest dependencies with composer
if: matrix.dependencies == 'lowest'
run: composer update --no-ansi --no-interaction --no-progress --prefer-lowest
- name: Install highest dependencies with composer
if: matrix.dependencies == 'highest'
run: composer update --no-ansi --no-interaction --no-progress
- name: Run tests
run: vendor/bin/phpunit tests
| name: Continuous Integration
on:
- pull_request
- push
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
dependencies:
- lowest
- highest
steps:
- uses: actions/checkout@v1
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
ini-values: assert.exception=1, zend.assertions=1
- name: Install lowest dependencies with composer
if: matrix.dependencies == 'lowest'
run: composer update --no-ansi --no-interaction --no-progress --prefer-lowest
- name: Install highest dependencies with composer
if: matrix.dependencies == 'highest'
run: composer update --no-ansi --no-interaction --no-progress
- name: Run tests
run: vendor/bin/phpunit tests
| Remove composer validation from github action | Remove composer validation from github action
| YAML | bsd-3-clause | sigma-z/Jentin,sigma-z/Jentin |
6cfc25a0a02d3a9a6e2117b8ca26c9b14730c684 | Tests/Functionnal/src/Acme/AppBundle/DataFixtures/Fixtures/ORM/Blog/pattern.yml | Tests/Functionnal/src/Acme/AppBundle/DataFixtures/Fixtures/ORM/Blog/pattern.yml | Victoire\Bundle\BusinessPageBundle\Entity\BusinessTemplate:
pattern_article:
name: "{{item.name}}"
slug: "{{item.slug}}"
businessEntityId: article
author: @anakin
locale: fr
template: @template_base
status: published
parent: @blog-jedi-network
publishedAt: <dateTime('now')>
createdAt: <dateTime('now')>
updatedAt: <dateTime('now')>
| Victoire\Bundle\BlogBundle\Entity\ArticleTemplate:
pattern_article:
name: "{{item.name}}"
slug: "{{item.slug}}"
businessEntityId: article
author: @anakin
locale: fr
template: @template_base
status: published
parent: @blog-jedi-network
publishedAt: <dateTime('now')>
createdAt: <dateTime('now')>
updatedAt: <dateTime('now')>
| Update fixture for tests travis | Update fixture for tests travis
| YAML | mit | gregumo/victoire,talbotseb/victoire,gregumo/victoire,talbotseb/victoire,alexislefebvre/victoire,paulandrieux/victoire,MadeWilson/victoire,vincent-chapron/victoire,Victoire/victoire,alexislefebvre/victoire,Charlie-Lucas/victoire,Charlie-Lucas/victoire,paulandrieux/victoire,lenybernard/victoire,Victoire/victoire,lenybernard/victoire,vincent-chapron/victoire,gregumo/victoire,lenybernard/victoire,Charlie-Lucas/victoire,MadeWilson/victoire,vincent-chapron/victoire,MadeWilson/victoire,Victoire/victoire,gregumo/victoire,MadeWilson/victoire,Charlie-Lucas/victoire,vincent-chapron/victoire,Victoire/victoire,alexislefebvre/victoire,talbotseb/victoire,paulandrieux/victoire,talbotseb/victoire,alexislefebvre/victoire,paulandrieux/victoire,lenybernard/victoire |
24223a5f55a9ce4e5159c5db911371ac6f95cb28 | demo/config/pod.yaml | demo/config/pod.yaml | apiVersion: v1
kind: Pod
metadata:
labels:
name: blog
name: blog-pod
spec:
containers:
- name: git-sync
image: gcr.io/google_containers/git-sync
imagePullPolicy: Always
volumeMounts:
- name: markdown
mountPath: /git
env:
- name: GIT_SYNC_REPO
value: https://github.com/GoogleCloudPlatform/kubernetes.git
- name: GIT_SYNC_DEST
value: git
- name: hugo
image: gcr.io/google_containers/hugo
imagePullPolicy: Always
volumeMounts:
- name: markdown
mountPath: /src
- name: html
mountPath: /dest
env:
- name: HUGO_SRC
value: /src/git-sync/demo/blog
- name: HUGO_BUILD_DRAFT
value: "true"
- name: HUGO_BASE_URL
value: example.com
- name: nginx
image: nginx
volumeMounts:
- name: html
mountPath: /usr/share/nginx/html
ports:
- containerPort: 80
volumes:
- name: markdown
emptyDir: {}
- name: html
emptyDir: {}
| apiVersion: v1
kind: Pod
metadata:
labels:
name: blog
name: blog-pod
spec:
containers:
- name: git-sync
image: gcr.io/google_containers/git-sync
imagePullPolicy: Always
volumeMounts:
- name: markdown
mountPath: /git
env:
- name: GIT_SYNC_REPO
value: https://github.com/GoogleCloudPlatform/kubernetes.git
- name: GIT_SYNC_DEST
value: git
- name: hugo
image: gcr.io/google_containers/hugo
imagePullPolicy: Always
securityContext:
runAsUser: 0
volumeMounts:
- name: markdown
mountPath: /src
- name: html
mountPath: /dest
env:
- name: HUGO_SRC
value: /src/git-sync/demo/blog
- name: HUGO_BUILD_DRAFT
value: "true"
- name: HUGO_BASE_URL
value: example.com
- name: nginx
image: nginx
volumeMounts:
- name: html
mountPath: /usr/share/nginx/html
ports:
- containerPort: 80
volumes:
- name: markdown
emptyDir: {}
- name: html
emptyDir: {}
| Add runAsUser to demo example | Add runAsUser to demo example
Fixes #32 | YAML | apache-2.0 | kubernetes/git-sync,kubernetes/git-sync |
f970bc0f139af87f2cf554024c4064a777528e90 | .github/workflows/ha-config-check.yml | .github/workflows/ha-config-check.yml | name: "Run action"
on:
push:
branch:
- master
pull_request:
branch:
- master
jobs:
check:
name: Home Assistant Config Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Create ssh key file
run: |
touch ./fake_id_rsa
- name: Create empty database file
run: |
touch ./home-assistant_v2.db
- name: Create empty log file
run: |
touch ./home-assistant.log
- name: Create ssl certificate file
run: |
touch ./fake_cert.pem
- name: Run Config Check
uses: frenck/action-home-assistant@v1
with:
path: "."
secrets: ./secrets.example.yaml
version: stable
| name: "Run action"
on:
push:
branch:
- master
pull_request:
branch:
- master
jobs:
check:
name: Home Assistant Config Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# touch files
- name: Create ssh key file
run: touch ./fake_id_rsa
- name: Create empty database file
run: touch ./home-assistant_v2.db
- name: Create empty log file
run: touch ./home-assistant.log
- name: Create ssl certificate file
run: touch ./fake_cert.pem
# clone custom components
- run: git clone https://github.com/eelcohn/home-assistant-rdw.git
- run: mv home-assistant-rdw/custom_components ./custom_components
- run: git clone https://github.com/Limych/ha-car_wash.git
- run: mv ha-car_wash/custom_components ./custom_components
- run: git clone https://github.com/LordBoos/discord_game.git
- run: mv discord_game/custom_components ./custom_components
- run: git clone https://github.com/cyberjunky/home-assistant-p2000.git
- run: mv home-assistant-p2000/custom_components ./custom_components
# check config
- name: Run Config Check
uses: frenck/action-home-assistant@v1
with:
path: "."
secrets: ./secrets.example.yaml
version: stable
| Add custom components to action | Add custom components to action
| YAML | mit | rtvb/home-assistant-config |
c169f355757e705bdbe3ba5785739d29a45b17af | .github/workflows/publish-package.yml | .github/workflows/publish-package.yml | name: Publish Package
on:
push:
branches:
- 'master'
paths-ignore:
- 'docs/**'
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
jobs:
publish:
runs-on: 'windows-latest'
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 100
- name: Set up .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100-preview.6.21355.2
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Unit Tests
run: dotnet test --configuration Release tests\MySqlConnector.Tests --no-build
- name: Pack
run: dotnet pack --configuration Release --no-build
- name: Install gpr tool
run: dotnet tool install -g gpr --no-cache -v q
- name: Publish packages
run: gpr push --api-key ${{ secrets.GITHUB_TOKEN }} ".\**\*.nupkg"
| name: Publish Package
on:
push:
branches:
- 'master'
paths-ignore:
- 'docs/**'
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
jobs:
publish:
runs-on: 'windows-latest'
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100-preview.6.21355.2
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Unit Tests
run: dotnet test --configuration Release tests\MySqlConnector.Tests --no-build
- name: Pack
run: dotnet pack --configuration Release --no-build
- name: Install gpr tool
run: dotnet tool install -g gpr --no-cache -v q
- name: Publish packages
run: gpr push --api-key ${{ secrets.GITHUB_TOKEN }} ".\**\*.nupkg"
| Fix all git history (for MinVer). | Fix all git history (for MinVer).
| YAML | mit | mysql-net/MySqlConnector,mysql-net/MySqlConnector |
8f6003ff0ddfb758adc36ab03605591722236f07 | versions.yml | versions.yml | version: 1.2.0-rc.2
aproVersion: 0.11.0
qotmVersion: 1.7
quoteVersion: 0.3.0
| version: 1.2.0
aproVersion: 0.11.0
qotmVersion: 1.7
quoteVersion: 0.3.0
| Update version numbers for v1.2.0 | Update version numbers for v1.2.0
| YAML | apache-2.0 | datawire/ambassador,datawire/ambassador,datawire/ambassador,datawire/ambassador,datawire/ambassador |
35492a028598340660c4a0b7fd64b4f896f20907 | packages/pi/picosat.yaml | packages/pi/picosat.yaml | homepage: https://github.com/sdiehl/haskell-picosat
changelog-type: ''
hash: e9e0c9681478d8712c007542688b7fd4521e22f7db4830e51c72443da8744bcf
test-bench-deps:
rdtsc: -any
base: -any
picosat: -any
containers: -any
transformers: -any
random: -any
maintainer: stephen.m.diehl@gmail.com
synopsis: Bindings to the PicoSAT solver
changelog: ''
basic-deps:
base: ! '>=4.6 && <5.0'
containers: ! '>=0.4 && <0.6'
transformers: ! '>=0.4 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
author: Stephen Diehl
latest: '0.1.4'
description-type: haddock
description: ! '`picosat` provides bindings for the fast PicoSAT solver library.'
license-name: MIT
| homepage: https://github.com/sdiehl/haskell-picosat
changelog-type: ''
hash: e0626c0ae0218ad24d97b7ec509aecaa9334ac30a3099e470260bf52db84d2f1
test-bench-deps:
rdtsc: -any
base: -any
picosat: -any
containers: -any
transformers: -any
random: -any
maintainer: stephen.m.diehl@gmail.com
synopsis: Bindings to the PicoSAT solver
changelog: ''
basic-deps:
base: ! '>=4.6 && <5.0'
containers: ! '>=0.4 && <0.7'
transformers: ! '>=0.4 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
- '0.1.5'
author: Stephen Diehl
latest: '0.1.5'
description-type: haddock
description: ! '`picosat` provides bindings for the fast PicoSAT solver library.'
license-name: MIT
| Update from Hackage at 2018-11-20T13:36:29Z | Update from Hackage at 2018-11-20T13:36:29Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
2e33e2fdd6b98efed854e4c3f8036349dbc3fd4a | .appveyor.yml | .appveyor.yml | version: "{branch}-ci-{build}"
image: Visual Studio 2019
branches:
only:
- master
platform:
- mingw32
- mingw64
install:
- set PATH=C:\msys64\%platform%;C:\msys64\%platform%\bin;C:\projects\deps\ninja;C:\Libraries\boost_1_71_0;%PATH%
before_build:
- git submodule update --init
build_script:
- mkdir build && cd build
- cmake ../simulator -G Ninja
- ninja mipt-mips unit-tests cachesim
test_script:
- .\unit-tests
- .\mipt-mips -b ..\tests\mips\mips-fib.bin -n 100000 --mars
- .\cachesim -t ..\tests\mem_trace.json -s 32768 -w 32
| version: "{branch}-ci-{build}"
image: Visual Studio 2019
branches:
only:
- master
platform:
- mingw32
- mingw64
install:
- set PATH=C:\msys64\%platform%;C:\msys64\%platform%\bin;C:\projects\deps\ninja;C:\Libraries\boost_1_73_0;%PATH%
before_build:
- git submodule update --init
build_script:
- mkdir build && cd build
- cmake ../simulator -G Ninja
- ninja mipt-mips unit-tests cachesim
test_script:
- .\unit-tests
- .\mipt-mips -b ..\tests\mips\mips-fib.bin -n 100000 --mars
- .\cachesim -t ..\tests\mem_trace.json -s 32768 -w 32
| Update Boost version on Appveyor | Update Boost version on Appveyor | YAML | mit | MIPT-ILab/mipt-mips,MIPT-ILab/mipt-mips-2015,MIPT-ILab/mipt-mips-2015,MIPT-ILab/mipt-mips-2015,MIPT-ILab/mipt-mips,MIPT-ILab/mipt-mips-2015 |
5501f12f2380d81ab66468f065b5d1dacb38cd32 | playbooks/wheel/pre.yaml | playbooks/wheel/pre.yaml | - hosts: all
roles:
- legacy-install-afs-with-puppet
- legacy-copy-project-config-scripts
| - hosts: all
roles:
- role: bindep
bindep_profile: test
bindep_dir: "src/{{ zuul.project.canonical_name }}"
- legacy-install-afs-with-puppet
- legacy-copy-project-config-scripts
| Add bindep support for build-wheel-mirror job | Add bindep support for build-wheel-mirror job
Our wheels will end up requiring dependencies, so add support for
bindep.
Change-Id: Ifa73ba475284ac8435ba29ffaf228a54dce59b09
Signed-off-by: Paul Belanger <e7139c8e6c4ea75cc1c287ce081b2dc0f3ab39ec@redhat.com>
| YAML | apache-2.0 | openstack-infra/project-config,openstack-infra/project-config |
13788787a030aafdeb5a5fb5b55c2fd8417b6502 | core/cibox-project-builder/files/drupal8/scripts/devops.yml | core/cibox-project-builder/files/drupal8/scripts/devops.yml | ---
- hosts: localhost
connection: local
gather_facts: no
vars:
scan_security: false
roles:
- { role: devops/roles/cibox-security-testing, when: scan_security == true }
| ---
- hosts: localhost
connection: local
gather_facts: no
vars:
scan_security: false
roles:
# - { role: devops/roles/cibox-security-testing, when: scan_security == true }
| Disable security for Drupal 8 | Disable security for Drupal 8
| YAML | bsd-3-clause | Sanchiz/cibox,valthebald/cibox,valthebald/cibox,valthebald/cibox,ey-/cibox,propeoplemd/cibox,PavelLoparev/cibox,Sanchiz/cibox,propeopleua/cibox,valthebald/cibox,propeoplemd/cibox,propeopleua/cibox,propeopleua/cibox,ygerasimov/cibox-1,PavelLoparev/cibox,ygerasimov/cibox-1,propeopleua/cibox,valthebald/cibox,Sanchiz/cibox,ygerasimov/cibox-1,ygerasimov/cibox-1,ey-/cibox,propeoplemd/cibox,Sanchiz/cibox,Sanchiz/cibox,PavelLoparev/cibox,ey-/cibox,propeoplemd/cibox,PavelLoparev/cibox,PavelLoparev/cibox,ey-/cibox,propeoplemd/cibox,propeopleua/cibox,PavelLoparev/cibox,ygerasimov/cibox-1,ey-/cibox,Sanchiz/cibox |
9fd4f0697efbc4373efd2c62304f5e836e51c0ed | .forestry/settings.yml | .forestry/settings.yml | ---
new_page_extension: md
auto_deploy: false
admin_path: static/redac
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200
use_front_matter_path: true
file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:'
instant_preview: true
build:
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.55.6
preview_output_directory: public
preview_docker_image: forestryio/hugo:latest
mount_path: "/srv"
instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk
-d public
publish_command: hugo -d public
publish_env:
- HUGO_ENV=production
- HUGO_VERSION=0.55.6
output_directory: public
preview_command: hugo -E -F -D -b $DEPLOY_URL -d public
version: 0.55.6
| ---
new_page_extension: md
auto_deploy: false
admin_path: static/redac
webhook_url: ''
sections:
- type: directory
path: content/post
label: Articles
create: all
match: "**/*"
templates:
- post
- type: document
path: config.yaml
label: Configuration
upload_dir: ''
public_path: ''
front_matter_path: https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1200
use_front_matter_path: true
file_template: 'https://res.cloudinary.com/jamstatic/image/upload/c_scale,f_auto,q_auto,w_1028/:filename:'
instant_preview: true
build:
preview_env:
- HUGO_ENV=staging
- HUGO_VERSION=0.58.1
preview_output_directory: public
preview_docker_image: forestryio/hugo:latest
mount_path: "/srv"
instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk
-d public
publish_command: hugo -d public
publish_env:
- HUGO_ENV=production
- HUGO_VERSION=0.55.6
output_directory: public
preview_command: hugo -E -F -D -b $DEPLOY_URL -d public
version: 0.55.6
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io |
18a1758ca8a8685c5067d7ee1dffa1fa77e550fa | config/feature_toggles.yml | config/feature_toggles.yml | # Add feature toggles with the format:
# <feature_name>: off|dev|release
show_licensing_overview_success_rate: release
show_licensing_visitors_realtime: release
show_fco_visitors_realtime: dev
fco_dashboards: dev
hmrc_dashboards: dev
lpa_dashboard: dev
lpa_dashboard_completion_rate: dev
lpa_dashboard_application_method: dev
show_fco_availability: dev
show_lpa_availability: release
lpa_conversion_funnel: dev
evl_dashboard: dev
evl_availability_modules: dev
| # Add feature toggles with the format:
# <feature_name>: off|dev|release
show_licensing_overview_success_rate: release
show_licensing_visitors_realtime: release
show_fco_visitors_realtime: dev
fco_dashboards: dev
hmrc_dashboards: dev
lpa_dashboard: release
lpa_dashboard_completion_rate: release
lpa_dashboard_application_method: release
show_fco_availability: dev
show_lpa_availability: release
lpa_conversion_funnel: release
evl_dashboard: dev
evl_availability_modules: dev
| Switch on LPA feature toggles | Switch on LPA feature toggles
| YAML | mit | gds-attic/limelight,gds-attic/limelight,gds-attic/limelight |
f6da4c206723cd803a1ffcf90ba4e505ac744607 | docker-compose.yml | docker-compose.yml | version: '3.1'
services:
goodline_ip:
build: .
restart: "no"
environment:
LOG_LEVEL: 1
PRETTY_XMLTV: "True"
volumes:
- './iptv:/var/lib/goodline_iptv'
| version: '3.1'
services:
goodline_iptv:
build: .
restart: "no"
environment:
LOG_LEVEL: 1
PRETTY_XMLTV: "True"
volumes:
- './iptv:/var/lib/goodline_iptv'
| Change service name in compose file | Change service name in compose file
| YAML | mit | nsadovskiy/goodline_tv |
d3d0092e6fa6c4b8b3cb00f910c8d7b2099549ff | docker-compose.yml | docker-compose.yml | version: '3'
services:
db:
image: mysql:5.5
environment:
- MYSQL_ROOT_PASSWORD=docker
- MYSQL_DATABASE=ddcz
web:
build: .
command: python3 manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- "8000:8000"
depends_on:
- db
links:
- db:db
| version: '3'
services:
# db:
# build: ./db-image/.
# image: mysql:5.5
# command: --default-authentication-plugin=mysql_native_password
# environment:
# - MYSQL_ROOT_PASSWORD=docker
# - MYSQL_DATABASE=ddcz
db:
image: mysql:5.5
environment:
- MYSQL_ROOT_PASSWORD=docker
- MYSQL_DATABASE=dracidoupe_cz
web:
build: .
command: python3 manage.py runserver 0.0.0.0:8000
volumes:
- .:/code
ports:
- "8000:8000"
depends_on:
- db
links:
- db:db
| Synchronize MYSQL_DATABASE with local default | fix: Synchronize MYSQL_DATABASE with local default
| YAML | mit | dracidoupe/graveyard,dracidoupe/graveyard,dracidoupe/graveyard,dracidoupe/graveyard |
2f632e7c21cfc63ac356e19812b3c1847f64cfed | docker-compose.yml | docker-compose.yml | version: '2'
services:
web:
build: .
ports:
- "8080:8080"
links:
- postgres-db
environment:
- 'SPRING_APPLICATION_JSON={"spring":{"profiles": {"active": "dev"}, "datasource":{"username": "postgres", "url": "jdbc:postgresql://postgres-db:5432/postgres"}}}'
postgres-db:
image: postgres:9.4
expose:
- "5432"
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: {}
| version: '2'
services:
web:
build: .
ports:
- "8080:8080"
links:
- postgres-db
environment:
- 'SPRING_APPLICATION_JSON={"spring":{"profiles": {"active": "dev"}, "datasource":{"username": "postgres", "url": "jdbc:postgresql://postgres-db:5432/postgres"}}}'
postgres-db:
image: registry.opensource.zalan.do/stups/postgres:9.4.5-1
expose:
- "5432"
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: {}
| Use postgres image from pierone | Use postgres image from pierone
| YAML | mit | zalando/pazuzu-registry |
62ef6b0ebd2a5157c096ddbf7411554c4486a546 | docker-compose.yml | docker-compose.yml |
web:
build: spendb/Dockerfile
command: spendb runserver
ports:
- "5000:5000"
links:
- db
db:
image: postgres:9.4
environment:
POSTGRES_USER: spendb
POSTGRES_PASSWORD: spendb
expose:
- "5432"
volumes:
- /srv/spendb/db:/var/lib/postgresql
- /srv/spendb/logs/postgresql:/var/log
| web:
build: .
command: gunicorn -w 5 spendb.wsgi:app
ports:
- "8000:8000"
links:
- db
- worker
db:
image: postgres:9.4
environment:
- POSTGRES_USER= spendb
- POSTGRES_PASSWORD= spendb
expose:
- "5432"
volumes:
- /srv/spendb/db:/var/lib/postgresql
- /srv/spendb/logs/postgresql:/var/log
rabbitmq:
image: rabbitmq
worker:
build: .
command: celery -A spendb.tasks worker -l info
links:
- rabbitmq
- db
| Add database, worker, rabbitmq to compose | Add database, worker, rabbitmq to compose
use local files for build
use gunicorn for server
| YAML | agpl-3.0 | openspending/spendb,johnjohndoe/spendb,openspending/spendb,johnjohndoe/spendb,pudo/spendb,pudo/spendb,johnjohndoe/spendb,spendb/spendb,pudo/spendb,openspending/spendb,CivicVision/datahub,CivicVision/datahub,spendb/spendb,spendb/spendb,CivicVision/datahub |
3efde500287e3a82bc8d25ceda37c94bf4029448 | docker-compose.yml | docker-compose.yml | version: "3.7"
services:
web:
build:
context: .
dockerfile: .docker/ruby/Dockerfile
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
depends_on:
- postgres
- redis
environment:
- SPROCKETS_CACHE=/cache
volumes:
- ./:/app
- cache:/cache
ports:
- 3000:3000
redis:
image: redis:3.2.11-alpine
ports:
- 6379:6379
postgres:
image: postgres:10.12
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: justask
POSTGRES_DB: justask_development
volumes:
cache: | version: "3.7"
services:
web:
build:
context: .
dockerfile: .docker/ruby/Dockerfile
command: bash -c "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b '0.0.0.0'"
depends_on:
- postgres
- redis
environment:
- SPROCKETS_CACHE=/cache
volumes:
- ./:/app
- cache:/cache
ports:
- 3000:3000
redis:
image: redis:3.2.11-alpine
ports:
- 6379:6379
postgres:
image: postgres:10.12
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: justask
POSTGRES_DB: justask_development
volumes:
- db:/var/lib/postgresql/data
volumes:
db:
cache: | Store Postgres data in volume | Store Postgres data in volume
| YAML | agpl-3.0 | Retrospring/retrospring,Retrospring/retrospring,Retrospring/retrospring,Retrospring/retrospring,Retrospring/retrospring |
b08630afae630af33c9ac9a68e75451b74dc8022 | upgrade/upgrade_2x/tasks/stopsfservices.yml | upgrade/upgrade_2x/tasks/stopsfservices.yml | ---
# Stop all service mariadb, gerrit, ...
- name: Stop services
service: name={{ item }} state=stopped
ignore_errors: yes
with_items:
- monit
- httpd
- jenkins
- zuul
- zuul-merger
- nodepool
- gerrit
- etherpad
- lodgeit
- mariadb
- gerritbot
- grafana-server
- postfix
- murmurd
- log-gearman-client
- log-gearman-worker
- elasticsearch
- logstash
- kibana
- storyboard
| ---
# Stop all service mariadb, gerrit, ...
- name: Stop services
service: name={{ item }} state=stopped
ignore_errors: yes
with_items:
- monit
- httpd
- jenkins
- zuul
- zuul-merger
- nodepool
- gerrit
- etherpad
- lodgeit
- mariadb
- gerritbot
- grafana-server
- postfix
- murmurd
- log-gearman-client
- log-gearman-worker
- elasticsearch
- logstash
- kibana
- storyboard
- repoxplorer-webui
- repoxplorer
| Add repoxplorer srv that was missing from the srvs to be stopped | upgrade: Add repoxplorer srv that was missing from the srvs to be stopped
Change-Id: Ie11444e169af61e11cd9e8065c05458ab073b99c
| YAML | apache-2.0 | enovance/software-factory,enovance/software-factory,enovance/software-factory,enovance/software-factory,enovance/software-factory |
4b3f3c7c737b5b54d1089c30acbfca1fa3ece172 | ansible/roles/deployka/tasks/main.yml | ansible/roles/deployka/tasks/main.yml | - name: install cpanminus
apt: name=cpanminus state=present
- name: install make
apt: name=make
- name: install deployka Perl module
cpanm: name=git://github.com/alexclear/de-ployka.git
| - name: install cpanminus
apt: name=cpanminus state=present
- name: install make
apt: name=make
- name: install deployka Perl module
cpanm: name=git://github.com/alexclear/de-ployka.git
- name: delete config from a previous test run
file: dest=/etc/deployka.yml state=absent
- name: invoke the tool without params
shell: /root/de-ployka/tool
register: result
failed_when: result.rc == 0
- name: invoke the tool with params, save a config, perform a deploy
shell: /root/de-ployka/tool --application /root/de-ployka/testwebapp/target/testwebapp-1.war --action deploy --user tomcat --password passw0rd --host localhost --port 8080 --timeout 50
- name: check if the app is deployed
shell: /root/de-ployka/tool --action check
- name: stop the app
shell: /root/de-ployka/tool --action stop
- name: check if the app is stopped
shell: /root/de-ployka/tool --action check
register: result
failed_when: result.rc == 0
- name: start the app
shell: /root/de-ployka/tool --action start
- name: check if the app is started
shell: /root/de-ployka/tool --action check
- name: undeploy the app
shell: /root/de-ployka/tool --action undeploy
- name: check if the app is undeployed
shell: /root/de-ployka/tool --action check
register: result
failed_when: result.rc == 0
#- name: try to start the app
# shell: /root/de-ployka/tool --action start
# register: result
# failed_when: result.rc == 0
| Add a set of tests | Add a set of tests
| YAML | mit | alexclear/de-ployka,alexclear/de-ployka |
14667b1a3af39ee7e69c57d3aba00e52c4e1d258 | .github/workflows/main-openjdk_lts-linux.yml | .github/workflows/main-openjdk_lts-linux.yml | name: main-openjdk_lts-linux
on:
push:
branches: [ develop, feature/*, release/* ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: JDK
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build
run: mvn --errors clean verify site
- name: Coverage
uses: codecov/codecov-action@v1
with:
file: com.io7m.jmurmur.tests/target/site/jacoco/jacoco.xml
| name: main-openjdk_lts-linux
on:
push:
branches: [ develop, feature/*, release/* ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: JDK
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build
run: mvn --errors clean verify site
- name: Coverage
uses: codecov/codecov-action@v1
with:
file: com.io7m.jmurmur.tests/target/site/jacoco/jacoco.xml
| Use correct JDK version in GH Actions | Use correct JDK version in GH Actions
| YAML | isc | io7m/jmurmur |
1c7d8169d88d6c026865c8f6619564676743bf11 | manifest-generation/bosh-lite-stubs/instance-count-overrides.yml | manifest-generation/bosh-lite-stubs/instance-count-overrides.yml | instance_count_overrides:
- name: access_z2
instances: 1
- name: access_z3
instances: 0
- name: brain_z2
instances: 0
- name: cc_bridge_z2
instances: 0
- name: cell_z2
instances: 0
- name: etcd_z2
instances: 0
- name: etcd_z3
instances: 0
- name: route_emitter_z2
instances: 0
| instance_count_overrides:
- name: access_z2
instances: 0
- name: access_z3
instances: 0
- name: brain_z2
instances: 0
- name: cc_bridge_z2
instances: 0
- name: cell_z2
instances: 0
- name: etcd_z2
instances: 0
- name: etcd_z3
instances: 0
- name: route_emitter_z2
instances: 0
| Disable access_z2 for default bosh-lite configuration | Disable access_z2 for default bosh-lite configuration
| YAML | apache-2.0 | cloudfoundry-incubator/diego-release,cloudfoundry-incubator/diego-release,cloudfoundry-incubator/diego-release,cloudfoundry-incubator/diego-release |
488563663af2cef9b1d0936701798d207958759e | bosh-lite/v1-dummy-broker-stub.yml | bosh-lite/v1-dummy-broker-stub.yml | director_uuid: PLACEHOLDER-DIRECTOR-UUID
jobs:
- name: acceptance-tests
properties:
cf:
admin_username: admin
admin_password: admin
skip_ssl_validation: true
properties:
domain: 10.244.0.34.xip.io
nats:
user: nats
password: nats
address: 10.244.0.6
port: 4222
v1-dummy-broker:
uaa_client_auth_credentials:
username: admin
password: admin
| director_uuid: PLACEHOLDER-DIRECTOR-UUID
jobs:
- name: acceptance-tests
properties:
cf:
admin_username: admin
admin_password: admin
skip_ssl_validation: true
properties:
domain: 10.244.0.34.xip.io
app_domains:
- (( domain ))
nats:
user: nats
password: nats
address: 10.244.0.6
port: 4222
v1-dummy-broker:
uaa_client_auth_credentials:
username: admin
password: admin
| Fix stub to generate bosh-lite manifest | Fix stub to generate bosh-lite manifest
| YAML | apache-2.0 | cloudfoundry-incubator/v1-dummy-broker-release,cloudfoundry-attic/v1-dummy-broker-release,cloudfoundry-incubator/v1-dummy-broker-release,cloudfoundry-attic/v1-dummy-broker-release,cloudfoundry-attic/v1-dummy-broker-release,cloudfoundry-attic/v1-dummy-broker-release,cloudfoundry-incubator/v1-dummy-broker-release,cloudfoundry-incubator/v1-dummy-broker-release |
ea3a827293de01178ab3cad8b67ecd81df10a167 | tests/test.yml | tests/test.yml | ---
- hosts: all
sudo: true
vars:
git_install_from_source: true
git_install_from_source_force_update: true
git_version: 2.9.3
curl_configure_flags:
- disable-shared
- with-ssl
install_ivm: true
install_iojs: true
node_version: 7.9.0
node_versions:
- 1.0.0
- 2.0.0
- 3.0.0
- 4.0.0
- 5.0.0
- 6.0.0
- 7.0.0
node_packages:
- grunt
tasks:
- name: Install dependencies.
package:
name:: "{{ item }}"
state: installed
with_items:
- curl
- git
- git-svn
- rsync
- openssh-server
- openssh-client
- python
- python-dev
- unzip
- tar
- gtar
- gzip
- wget
- gettext-devel
- expat-devel
- curl-devel
- zlib-devel
- perl-devel
- openssl-devel
- subversion-perl
- make
- libcurl4-gnutls-dev
- libexpat1-dev
- gettext
- libssl-dev
- build-essential
- zip
- sudo
failed_when: false
roles:
- geerlingguy.git
- fubarhouse.curl
- role_under_test
| ---
- hosts: all
sudo: true
vars:
git_install_from_source: true
git_install_from_source_force_update: true
git_version: 2.9.3
curl_configure_flags:
- disable-shared
- with-ssl
install_ivm: true
install_iojs: true
node_version: 7.9.0
node_versions:
- 1.0.0
- 2.0.0
- 3.0.0
- 4.0.0
- 5.0.0
- 6.0.0
- 7.0.0
node_packages:
- grunt
pre_tasks:
- name: Update apt cache.
apt:
update_cache: yes
cache_valid_time: 600
when: ansible_os_family == 'Debian'
changed_when: false
failed_when: false
tasks:
- name: Install dependencies.
package:
name:: "{{ item }}"
state: installed
with_items:
- curl
- git
- git-svn
- rsync
- openssh-server
- openssh-client
- python
- python-dev
- unzip
- tar
- gtar
- gzip
- wget
- gettext-devel
- expat-devel
- curl-devel
- zlib-devel
- perl-devel
- openssl-devel
- subversion-perl
- make
- libcurl4-gnutls-dev
- libexpat1-dev
- gettext
- libssl-dev
- build-essential
- zip
- sudo
failed_when: false
roles:
- geerlingguy.git
- fubarhouse.curl
- role_under_test
| Add pre_task to clear apt cache | Add pre_task to clear apt cache
| YAML | mit | fubarhouse/ansible-role-nodejs,fubarhouse/fubarhouse.npm |
85fd3615dc9b11293bee7297e736097622f38d67 | bin/conda/python-clang/meta.yaml | bin/conda/python-clang/meta.yaml | package:
name: python-clang
version: "3.8.1"
source:
fn: cfe-3.8.1.src.tar.xz
url: http://llvm.org/releases/3.8.1/cfe-3.8.1.src.tar.xz
build:
number: 0
about:
home: http://www.llvm.org/
license: The University of Illinois/NCSA Open Source License
requirements:
build:
- python
- python-dev
- zlib
- xz [unix]
- m2w64-xz [py27 and win]
run:
- python
- clang
- path.py
| package:
name: python-clang
version: "3.8.1"
source:
fn: cfe-3.8.1.src.tar.xz
url: http://llvm.org/releases/3.8.1/cfe-3.8.1.src.tar.xz
build:
number: 0
about:
home: http://www.llvm.org/
license: The University of Illinois/NCSA Open Source License
requirements:
build:
- python
- python-dev
- zlib
- xz [unix]
- m2w64-xz [win]
run:
- python
- clang
- path.py
| Update recipe for python-clang on Windows | Update recipe for python-clang on Windows
| YAML | apache-2.0 | StatisKit/StatisKit,StatisKit/StatisKit |
28e781c2f023964f03b4bfdd2c589bfe98414c8f | roles/wildfly/defaults/main.yml | roles/wildfly/defaults/main.yml | ---
wildfly_version: 10.1.0.Final
wildfly_url: http://download.jboss.org/wildfly/{{ wildfly_version }}/wildfly-{{ wildfly_version }}.tar.gz
wildfly_prefix: /usr/local
wildfly_user: wildfly
wildfly_group: dtb
java_initial_memory: 512m
java_maximum_memory: 2048m
java_metaspace_size: 384M
java_maximum_metaspace_size: 512M
java_user_timezone: UTC
mysql_connector_version: 5.1.39
| ---
wildfly_version: 10.1.0.Final
wildfly_url: http://download.jboss.org/wildfly/{{ wildfly_version }}/wildfly-{{ wildfly_version }}.tar.gz
wildfly_prefix: /usr/local
wildfly_user: wildfly
wildfly_group: dtb
java_initial_memory: 1G
java_maximum_memory: 2G
java_metaspace_size: 384M
java_maximum_metaspace_size: 512M
java_user_timezone: UTC
mysql_connector_version: 5.1.39
| Increase initial memory for wildfly | Increase initial memory for wildfly
| YAML | mit | sbsdev/sbs-infrastructure |
87d9fcd92091214be60641d829a884f9243abe4c | packages/as/assoc.yaml | packages/as/assoc.yaml | homepage: ''
changelog-type: markdown
hash: 305770dfe76319749f704a1f23240f806d22905dae1aa54e6d57dc747662dae0
test-bench-deps: {}
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
synopsis: ! 'swap and assoc: Symmetric and Semigroupy Bifunctors'
changelog: |
## 1.0.1
- Add `Assoc Const` and `Tagged` instances
basic-deps:
base: ! '>=4.3 && <4.15'
tagged: ! '>=0.8.6 && <0.9'
bifunctors: ! '>=5.5.5 && <5.6'
all-versions:
- '1'
- 1.0.1
author: Oleg Grenrus <oleg.grenrus@iki.fi>
latest: 1.0.1
description-type: haddock
description: |-
Provides generalisations of
@swap :: (a,b) -> (b,a)@ and
@assoc :: ((a,b),c) -> (a,(b,c))@
to
@Bifunctor@s supporting similar operations (e.g. @Either@, @These@).
license-name: BSD-3-Clause
| homepage: ''
changelog-type: markdown
hash: 0be532f389dcaf4969c9e1066e1dca41b08ca4272d1b88450f552281d93106cb
test-bench-deps: {}
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
synopsis: 'swap and assoc: Symmetric and Semigroupy Bifunctors'
changelog: |
## 1.0.2
- Add 'Swap' instances for more n-tuples
## 1.0.1
- Add `Assoc Const` and `Tagged` instances
basic-deps:
base: '>=4.3 && <4.15'
tagged: '>=0.8.6 && <0.9'
bifunctors: '>=5.5.5 && <5.6'
all-versions:
- '1'
- 1.0.1
- 1.0.2
author: Oleg Grenrus <oleg.grenrus@iki.fi>
latest: 1.0.2
description-type: haddock
description: |-
Provides generalisations of
@swap :: (a,b) -> (b,a)@ and
@assoc :: ((a,b),c) -> (a,(b,c))@
to
@Bifunctor@s supporting similar operations (e.g. @Either@, @These@).
license-name: BSD-3-Clause
| Update from Hackage at 2020-08-09T11:05:16Z | Update from Hackage at 2020-08-09T11:05:16Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d452e7231b689eeac2acb7d35ed10eaffbb8aa7c | packages/hs/hs2ps.yaml | packages/hs/hs2ps.yaml | homepage: ''
changelog-type: markdown
hash: b00330b9db7bc80535c2a94dc26fd5b2e98533871ee5943451c49028b8395390
test-bench-deps:
base: ! '>=4.7 && <5'
hspec: -any
hs2ps: -any
template-haskell: ! '>=2.14.0.0 && <3'
maintainer: williamrusnack@gmail.com
synopsis: Translate Haskell types to PureScript
changelog: |
# Changelog for h2ps-types
## Unreleased changes
basic-deps:
base: ! '>=4.7 && <5'
template-haskell: ! '>=2.14.0.0 && <3'
all-versions:
- 0.1.0.0
- 0.1.1.0
author: William Rusnack
latest: 0.1.1.0
description-type: markdown
description: |
# h2ps-types
license-name: MIT
| homepage: ''
changelog-type: markdown
hash: 5a92441533def9b7a25c268b765a5a86762306ddedc535f844da66ac0bbdd282
test-bench-deps:
base: ! '>=4.7 && <5'
hspec: -any
hs2ps: -any
template-haskell: ! '>=2.14.0.0 && <3'
maintainer: williamrusnack@gmail.com
synopsis: Translate Haskell types to PureScript
changelog: |
# Changelog for h2ps-types
## Unreleased changes
basic-deps:
base: ! '>=4.7 && <5'
template-haskell: ! '>=2.14.0.0 && <3'
all-versions:
- 0.1.0.0
- 0.1.1.0
- 0.1.2.0
author: William Rusnack
latest: 0.1.2.0
description-type: markdown
description: |
# h2ps-types
license-name: MIT
| Update from Hackage at 2020-02-14T19:50:06Z | Update from Hackage at 2020-02-14T19:50:06Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
d42d9088a6dbd5d724aadb1dafa5e9de83a727c6 | packages/ix/ixset.yaml | packages/ix/ixset.yaml | homepage: http://happstack.com
changelog-type: ''
hash: b51a990fef4f8e82b0f508765a4a19b124df6cb320e64e841f9fc51d58b7ff74
test-bench-deps:
Cabal: ! '>=1.10'
base: -any
ixset: -any
HUnit: -any
containers: -any
random: -any
QuickCheck: -any
maintainer: Happstack team <happs@googlegroups.com>
synopsis: Efficient relational queries on Haskell sets.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
syb: -any
containers: ! '>=0.5.5.1'
syb-with-class: ! '>=0.6.1'
safecopy: -any
template-haskell: -any
all-versions:
- 1.0.0
- 1.0.1
- 1.0.2
- 1.0.3
- 1.0.4
- 1.0.5
- 1.0.6
- 1.0.6.1
- 1.0.7
- '1.1'
- 1.1.1
author: Happstack team, HAppS LLC
latest: 1.1.1
description-type: haddock
description: Create and query sets that are indexed by multiple indices.
license-name: BSD-3-Clause
| homepage: http://happstack.com
changelog-type: ''
hash: be27159a55e8a81b7b50a27a6ca5bb56a145296877ae4551a43c06b75256103a
test-bench-deps:
Cabal: ! '>=1.10'
base: -any
ixset: -any
HUnit: -any
containers: -any
random: -any
QuickCheck: -any
maintainer: Happstack team <happs@googlegroups.com>
synopsis: Efficient relational queries on Haskell sets.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
syb: -any
containers: ! '>=0.5.5.1'
syb-with-class: ! '>=0.6.1'
safecopy: -any
template-haskell: -any
all-versions:
- 1.0.0
- 1.0.1
- 1.0.2
- 1.0.3
- 1.0.4
- 1.0.5
- 1.0.6
- 1.0.6.1
- 1.0.7
- '1.1'
- 1.1.1
- 1.1.1.1
author: Happstack team, HAppS LLC
latest: 1.1.1.1
description-type: haddock
description: Create and query sets that are indexed by multiple indices.
license-name: BSD-3-Clause
| Update from Hackage at 2019-12-09T00:09:58Z | Update from Hackage at 2019-12-09T00:09:58Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
132c84c26028f3fbd265fa03fb173d13b012b2df | tasks/packages.yml | tasks/packages.yml | ---
#
# Copyright (c) 2014 Davide Guerri <davide.guerri@gmail.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
- name: Install nova conductor
apt: name="{{ item }}" state=present
with_items:
- nova-conductor
| ---
#
# Copyright (c) 2014 Davide Guerri <davide.guerri@gmail.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
- name: Install Nova Conductor
apt: name="{{ item }}" state=present
with_items:
- nova-conductor
| Fix "Install Nova Conductor" task name case | Fix "Install Nova Conductor" task name case
| YAML | apache-2.0 | openstack-ansible-galaxy/openstack-nova_conductor |
01edb1bbf02ee753f19bf85ad2e266c358988f71 | roles/ntp/tasks/main.yml | roles/ntp/tasks/main.yml | - name: Enable ntp service
become: yes
command: /usr/bin/timedatectl set-ntp true
tags:
- ntp
| # Equivalent /usr/bin/timedatectl set-ntp true
# https://wiki.archlinux.org/index.php/systemd-timesyncd
- name: Enable ntp service
become: yes
service:
name: systemd-timesyncd.service
enabled: yes
state: started
tags:
- ntp
| Use service module instead of command | Use service module instead of command
| YAML | mit | henrik-farre/ansible,henrik-farre/ansible,henrik-farre/ansible |
fa0a38d90282917ad96c411b7d4cc108a194815e | spec/fixtures/organizations.yml | spec/fixtures/organizations.yml | acme:
name: ACME
foo_inc:
name: Foo Inc.
| acme:
name: ACME
foo_inc:
name: Foo Inc.
no_order_org:
name: No Order Org
| Add an organization with no orders | Add an organization with no orders
| YAML | mit | on-site/StockAid,on-site/StockAid,on-site/StockAid |
aa920255a0658e380e1dcb3b1bf6f436a275ad48 | src/kubernetes/prometheus-proxy/prometheus-proxy-deployment.yaml | src/kubernetes/prometheus-proxy/prometheus-proxy-deployment.yaml | apiVersion: apps/v1
kind: Deployment
metadata:
name: prometheus-proxy
labels:
app: prometheus-proxy
spec:
# replicas: 3
selector:
matchLabels:
app: prometheus-proxy
template:
metadata:
labels:
app: prometheus-proxy
spec:
serviceAccountName: prometheus-proxy
containers:
- name: prometheus-proxy
image: micrometermetrics/prometheus-rsocket-proxy:latest
imagePullPolicy: Always
ports:
- name: scrape
containerPort: 8080
- name: rsocket
containerPort: 7001
resources:
limits:
cpu: 1.0
memory: 2048Mi
requests:
cpu: 0.5
memory: 1024Mi
# requests:
# cpu: "2"
# memory: "1000Mi"
# args:
# - -cpus
# - "2"
securityContext:
fsGroup: 2000
runAsNonRoot: true
runAsUser: 1000
| apiVersion: apps/v1
kind: Deployment
metadata:
name: prometheus-proxy
labels:
app: prometheus-proxy
spec:
# replicas: 3
selector:
matchLabels:
app: prometheus-proxy
template:
metadata:
labels:
app: prometheus-proxy
spec:
serviceAccountName: prometheus-proxy
containers:
- name: prometheus-proxy
image: micrometermetrics/prometheus-rsocket-proxy:latest
imagePullPolicy: Always
ports:
- name: scrape
containerPort: 8080
- name: rsocket
containerPort: 7001
resources:
limits:
cpu: 1.0
memory: 2048Mi
requests:
cpu: 0.5
memory: 1024Mi
securityContext:
fsGroup: 2000
runAsNonRoot: true
runAsUser: 1000
| Remove comments from prom proxy config | Remove comments from prom proxy config
| YAML | apache-2.0 | spring-cloud/spring-cloud-dataflow,ilayaperumalg/spring-cloud-dataflow,spring-cloud/spring-cloud-data,jvalkeal/spring-cloud-data,spring-cloud/spring-cloud-data,spring-cloud/spring-cloud-dataflow,markpollack/spring-cloud-dataflow,cppwfs/spring-cloud-dataflow,markpollack/spring-cloud-dataflow,jvalkeal/spring-cloud-dataflow,spring-cloud/spring-cloud-dataflow,ilayaperumalg/spring-cloud-dataflow,spring-cloud/spring-cloud-dataflow,jvalkeal/spring-cloud-dataflow,spring-cloud/spring-cloud-dataflow,jvalkeal/spring-cloud-dataflow,jvalkeal/spring-cloud-data,cppwfs/spring-cloud-dataflow,mminella/spring-cloud-data,trisberg/spring-cloud-dataflow,ghillert/spring-cloud-dataflow,jvalkeal/spring-cloud-data,ghillert/spring-cloud-dataflow,cppwfs/spring-cloud-dataflow,trisberg/spring-cloud-dataflow,markpollack/spring-cloud-dataflow,spring-cloud/spring-cloud-data,jvalkeal/spring-cloud-dataflow,trisberg/spring-cloud-dataflow,mminella/spring-cloud-data,jvalkeal/spring-cloud-dataflow,ilayaperumalg/spring-cloud-dataflow,trisberg/spring-cloud-dataflow |
260bf3eed772ee2a42e0aac7d157a077e867106e | .github/workflows/copy-pr-template-to-dependabot-prs.yaml | .github/workflows/copy-pr-template-to-dependabot-prs.yaml | name: Copy PR template to Dependabot PRs
on:
pull_request_target:
types: [opened]
jobs:
copy_pr_template:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- name: Fetch PR template
id: fetch-pr-template
uses: juliangruber/read-file-action@v1
with:
path: .github/pull_request_template.md
- name: Create comment
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: ${{ github.event.number }}
body: ${{ steps.fetch-pr-template.outputs.content }}
| name: Copy PR template to Dependabot PRs
on:
pull_request_target:
types: [opened]
permissions:
contents: read
pull-requests: write
jobs:
copy_pr_template:
name: Copy PR template to Dependabot PR
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- name: Post PR template as a comment
uses: actions/github-script@v6
with:
script: |
const fs = require('fs')
const body = [
"pull_request_template.md",
".github/pull_request_template.md",
"docs/pull_request_template.md",
].
filter(path => fs.existsSync(path)).
map(path => fs.readFileSync(path)).
join("\n")
if (body !== "") {
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body
})
}
| Create workflow to copy PR template onto Dependabot PRs | Create workflow to copy PR template onto Dependabot PRs | YAML | mit | alphagov/contacts-admin,alphagov/contacts-admin,alphagov/contacts-admin |
d6eaa72723b9c3d46e941a07261d7db2578390ad | data/fixtures/010_navigation.yml | data/fixtures/010_navigation.yml | Navigation:
secure_global_navigation_album:
type: "secure_global"
uri: "@album_list"
sort_order: 25
Translation:
en:
caption: "Album"
ja_JP:
caption: "アルバム"
default_navigation_album:
type: "default"
uri: "@album_list_mine"
sort_order: 15
Translation:
en:
caption: "Album"
ja_JP:
caption: "アルバム"
friend_navigation_album:
type: "friend"
uri: "@album_list_member"
sort_order: 15
Translation:
en:
caption: "Album"
ja_JP:
caption: "アルバム"
| Navigation:
secure_global_navigation_album:
type: "secure_global"
uri: "@album_list"
sort_order: 25
Translation:
en:
caption: "Album"
ja_JP:
caption: "アルバム"
default_navigation_album:
type: "default"
uri: "@album_list_mine"
sort_order: 15
Translation:
en:
caption: "Album"
ja_JP:
caption: "アルバム"
friend_navigation_album:
type: "friend"
uri: "@album_list_member"
sort_order: 15
Translation:
en:
caption: "Album"
ja_JP:
caption: "アルバム"
mobile_home_side_navigation_album_list:
type: "mobile_home_side"
uri: "@album_list"
sort_order: 16
Translation:
en:
caption: "Recently Posted Albums"
ja_JP:
caption: "最新アルバム"
| Set AlbumList_link to mobile_frontend's home. | Set AlbumList_link to mobile_frontend's home.
| YAML | apache-2.0 | openpne-ospt/opAlbumPlugin |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.