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 |
|---|---|---|---|---|---|---|---|---|---|
47aa911cde09bca50edc19ba41383dc5c784e8a7 | packages/mb/mbox.yaml | packages/mb/mbox.yaml | homepage: ''
changelog-type: ''
hash: 5e823aee3dad596e3250f202c211316921f4a95bb6fa77c703adb1f7b65de540
test-bench-deps: {}
maintainer: gershomb@gmail.com
synopsis: Read and write standard mailbox files.
changelog: ''
basic-deps:
base: ! '>=4 && <6'
time: <1.7
text: -any
safe: -any
time-locale-compat: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.3.1'
- '0.3.3'
author: Gershom Bazerman
latest: '0.3.3'
description-type: haddock
description: Read and write standard mailbox (mboxrd) files.
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: dba5e180ec30fc4baf234f70ddc22a9a17fbe576fa32256e061c44c9fc7bc6be
test-bench-deps: {}
maintainer: gershomb@gmail.com
synopsis: Read and write standard mailbox files.
changelog: ''
basic-deps:
base: ! '>=4 && <6'
time: <1.9
text: -any
safe: -any
time-locale-compat: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.3.1'
- '0.3.3'
- '0.3.4'
author: Gershom Bazerman
latest: '0.3.4'
description-type: haddock
description: Read and write standard mailbox (mboxrd) files.
license-name: BSD3
| Update from Hackage at 2017-08-16T16:31:08Z | Update from Hackage at 2017-08-16T16:31:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
9017423975391d99d49377475ec324486c262610 | src/_data/urls.yml | src/_data/urls.yml | # MSI package download URL
latest_msi_location: https://www.appveyor.com/downloads/appveyor-server/latest/windows
latest_msi_filename: appveyor-server.msi
# Debian package download URL
latest_deb_location: https://www.appveyor.com/downloads/appveyor-server/7.0/linux
latest_deb_filename: appveyor-server_7.0.2083_amd64.deb | # MSI package download URL
latest_msi_location: https://www.appveyor.com/downloads/appveyor-server/latest/windows
latest_msi_filename: appveyor-server.msi
# Debian package download URL
latest_deb_location: https://www.appveyor.com/downloads/appveyor-server/7.0/linux
latest_deb_filename: appveyor-server_7.0.2087_amd64.deb | Update latest build number to 7.0.2087 | Update latest build number to 7.0.2087
| YAML | mit | appveyor/website,appveyor/website,appveyor/website |
964c0bcce29bc9f6a48585d2160239bf665c42a2 | roles/spark/defaults/main.yml | roles/spark/defaults/main.yml | spark:
version: 2.2.0
hadoop_version: 2.7
working_dir: /tmp/spark/data
master_port: 7077
worker_work_port: 65000
master_ui_port: 8080
worker_ui_port: 8085
download_location: https://archive.apache.org/dist/spark/
user: "spark" # the name of the (OS)user created for spark
user_groups: [] # Optional list of (OS)groups the new spark user should belong to
user_shell: "/bin/false" # the spark user's default shell
env_extras: {}
defaults_extras: {}
| spark:
version: 2.4.0
hadoop_version: 2.9.2
working_dir: /tmp/spark/data
master_port: 7077
worker_work_port: 65000
master_ui_port: 8080
worker_ui_port: 8085
download_location: https://archive.apache.org/dist/spark/
user: "spark" # the name of the (OS)user created for spark
user_groups: [] # Optional list of (OS)groups the new spark user should belong to
user_shell: "/bin/false" # the spark user's default shell
env_extras: {}
defaults_extras: {}
| Update to Spark 2.4.0 and HDFS 2.9.2 | Update to Spark 2.4.0 and HDFS 2.9.2
| YAML | apache-2.0 | lresende/spark-cluster-install |
a8f3c63cba78a3b88e6d40943f3141b9e32bdff4 | .gitlab-ci.yml | .gitlab-ci.yml | image: tetraweb/php:5.6
cache:
key: "$CI_BUILD_NAME_$CI_BUILD_REF_NAME"
untracked: true
paths:
- /root/.composer
stages:
- build
- test
- deploy
before_script:
# enable needed php extensions
- docker-php-ext-enable mbstring zip xdebug
# composer update
- composer self-update && composer --version
- composer global require --no-interaction hirak/prestissimo
- composer global require --no-interaction "fxp/composer-asset-plugin:~1.2.0"
- composer global require --no-interaction phpunit/php-code-coverage
- export PATH="$HOME/.composer/vendor/bin:$PATH"
build:
stage: build
script:
- composer install --dev --prefer-dist --no-interaction
artifacts:
name: "${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}"
expire_in: 1 week
untracked: true
test:
stage: test
only:
- master
script:
- phpunit --coverage-text --colors=never --coverage-html tests/report
artifacts:
paths:
- tests/report
deploy report:
stage: deploy
dependencies:
- test
script:
- mv -f tests/report/ public/
artifacts:
paths:
- public
expire_in: 30 days
only:
- master
| image: tetraweb/php:5.6
cache:
key: "$CI_BUILD_NAME_$CI_BUILD_REF_NAME"
untracked: true
paths:
- /root/.composer
stages:
- build
- test
- deploy
before_script:
# enable needed php extensions
- docker-php-ext-enable mbstring zip xdebug
# composer update
- composer self-update && composer --version
- composer global require --no-interaction hirak/prestissimo
- composer global require --no-interaction "fxp/composer-asset-plugin:~1.2.0"
- composer global require --no-interaction phpunit/php-code-coverage
- export PATH="$HOME/.composer/vendor/bin:$PATH"
build:
stage: build
script:
- composer install --dev --prefer-dist --no-interaction
artifacts:
name: "${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}"
expire_in: 1 week
untracked: true
test:
stage: test
only:
- master
script:
- phpunit --coverage-text --colors=never --coverage-html tests/report
artifacts:
paths:
- tests/report
| Remove test report publishing in gitlab ci | Remove test report publishing in gitlab ci
| YAML | mit | la-haute-societe/yii2-save-relations-behavior |
23944bdd59b5f7e9423a851c65b429aab4675da5 | .gitlab-ci.yml | .gitlab-ci.yml | image: ruby:2.1
# jekyll-coffeescript need a JS runtime...
before_script:
- apt-get update
- apt-get upgrade -y
- apt-get install nodejs -y
- gem install bundler --no-ri --no-rdoc
- bundle install --jobs $(nproc)
pages:
stage: deploy
script:
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- master
| image: ruby:2.3
# jekyll-coffeescript need a JS runtime...
before_script:
- apt-get update
- apt-get upgrade -y
- apt-get install nodejs -y
- gem install bundler --no-ri --no-rdoc
- bundle install --jobs $(nproc) --deployment --full-index
pages:
stage: deploy
script:
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- master
| Use Ruby 2.3 and install only deployment gems | Use Ruby 2.3 and install only deployment gems
| YAML | mit | rymai/rymai.github.io,rymai/rymai.github.io |
b697d1fb961fca109e8eab1674e66d0a51de862d | .gitlab-ci.yml | .gitlab-ci.yml | # Use Kvazaar CI base image which includes the build tools and ffmpeg + hmdec in ${HOME}/bin
image: ultravideo/kvazaar_ci_base:latest
# Build kvazaar and run tests
build-kvazaar:
stage: build
script:
- ./autogen.sh
- ./configure --enable-werror
- make --jobs=2 V=1
artifacts:
paths:
- src/kvazaar
- src/.libs
expire_in: 1 week
run-tests:
stage: test
script:
- ./autogen.sh
- ./configure
- export PATH="${HOME}/bin:${PATH}"
- export KVAZAAR_OVERRIDE_angular_pred=generic
- export KVAZAAR_OVERRIDE_sao_band_ddistortion=generic
- export KVAZAAR_OVERRIDE_sao_edge_ddistortion=generic
- export KVAZAAR_OVERRIDE_calc_sao_edge_dir=generic
- make check VERBOSE=1
| # Use Kvazaar CI base image which includes the build tools and ffmpeg + hmdec in ${HOME}/bin
image: ultravideo/kvazaar_ci_base:latest
# Build kvazaar and run tests
build-kvazaar:
stage: build
script:
- ./autogen.sh
- ./configure --enable-werror || (cat config.log && false)
- make --jobs=8 V=1
artifacts:
paths:
- src/kvazaar
- src/.libs
expire_in: 1 week
run-tests:
stage: test
script:
- ./autogen.sh
- ./configure
- export PATH="${HOME}/bin:${PATH}"
- export KVAZAAR_OVERRIDE_angular_pred=generic
- export KVAZAAR_OVERRIDE_sao_band_ddistortion=generic
- export KVAZAAR_OVERRIDE_sao_edge_ddistortion=generic
- export KVAZAAR_OVERRIDE_calc_sao_edge_dir=generic
- make check VERBOSE=1
| Print config.log when configure fails in Gitlab CI | Print config.log when configure fails in Gitlab CI
| YAML | bsd-3-clause | ultravideo/kvazaar,ultravideo/kvazaar,ultravideo/kvazaar,ultravideo/kvazaar,ultravideo/kvazaar |
947db5e1b6e1ff629ef5bcb4412c92309e2a1354 | tests/docker-compose.yml | tests/docker-compose.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
version: "2"
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.2.2
environment:
- xpack.security.enabled=false
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
hbase:
image: harisekhon/hbase:1.0
postgres:
image: postgres:9
environment:
POSTGRES_USER: pio
POSTGRES_PASSWORD: pio
POSTGRES_INITDB_ARGS: --encoding=UTF8
pio-testing:
image: predictionio/pio-testing:latest
depends_on:
- elasticsearch
- hbase
- postgres
volumes:
- ~/.ivy2:/root/.ivy2
- ~/.sbt:/root/.sbt
| # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
version: "2"
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.2.2
environment:
- bootstrap.memory_lock=false
- xpack.security.enabled=false
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
hbase:
image: harisekhon/hbase:1.0
postgres:
image: postgres:9
environment:
POSTGRES_USER: pio
POSTGRES_PASSWORD: pio
POSTGRES_INITDB_ARGS: --encoding=UTF8
pio-testing:
image: predictionio/pio-testing:latest
depends_on:
- elasticsearch
- hbase
- postgres
volumes:
- ~/.ivy2:/root/.ivy2
- ~/.sbt:/root/.sbt
| Disable memory lock on ES5 | Disable memory lock on ES5
| YAML | apache-2.0 | takezoe/incubator-predictionio,himanshudhami/PredictionIO,himanshudhami/PredictionIO,dszeto/incubator-predictionio,mars/incubator-predictionio,mars/incubator-predictionio,marevol/incubator-predictionio,shimamoto/incubator-predictionio,shimamoto/incubator-predictionio,dszeto/incubator-predictionio,marevol/incubator-predictionio,mars/incubator-predictionio,takezoe/incubator-predictionio,marevol/incubator-predictionio,dszeto/incubator-predictionio,mars/incubator-predictionio,takezoe/incubator-predictionio,PredictionIO/PredictionIO,dszeto/incubator-predictionio,shimamoto/incubator-predictionio,PredictionIO/PredictionIO,shimamoto/incubator-predictionio,PredictionIO/PredictionIO,himanshudhami/PredictionIO,himanshudhami/PredictionIO,marevol/incubator-predictionio,takezoe/incubator-predictionio |
bad6f0599b11d3293bd093ac76e141a810bfc86e | ansible/roles/setup_php/tasks/main.yml | ansible/roles/setup_php/tasks/main.yml | ---
- name: Install php
apt:
name: '{{ item }}'
update_cache: yes
cache_valid_time: 36000
state: latest
with_items:
- php-fpm
- php-cli
- php-mysql
- php-intl
- php-curl
- php-memcached
- php-imagick
- php-mcrypt
- php-xml
- php-mbstring
- memcached
- composer
- name: Remove default fpm pool
file:
path: /etc/php/7.0/fpm/pool.d/www.conf
state: absent
notify: reload php-fpm
- name: Drop php-fpm configuration
copy:
src: tatoeba.conf
dest: /etc/php/7.0/fpm/pool.d
owner: root
group: root
mode: 0640
notify: reload php-fpm
# Desired state
- name: Start/Enable php-fpm
service:
name: php7.0-fpm
state: started
enabled: yes
| ---
- name: Install php
apt:
name: '{{ item }}'
update_cache: yes
cache_valid_time: 36000
state: latest
with_items:
- php-fpm
- php-cli
- php-mysql
- php-intl
- php-curl
- php-memcached
- php-imagick
- php-mcrypt
- php-xml
- php-mbstring
- php-zip
- memcached
- composer
- name: Remove default fpm pool
file:
path: /etc/php/7.0/fpm/pool.d/www.conf
state: absent
notify: reload php-fpm
- name: Drop php-fpm configuration
copy:
src: tatoeba.conf
dest: /etc/php/7.0/fpm/pool.d
owner: root
group: root
mode: 0640
notify: reload php-fpm
# Desired state
- name: Start/Enable php-fpm
service:
name: php7.0-fpm
state: started
enabled: yes
| Add php-zip to allow composer to download dists | Add php-zip to allow composer to download dists
I was getting the following warning:
Failed to download cakephp/cakephp from dist: The zip extension and unzip command are both missing, skipping.
The php.ini used by your command-line PHP is: /etc/php/7.0/cli/php.ini
Now trying to download from source
| YAML | agpl-3.0 | Tatoeba/tatoeba2,Tatoeba/tatoeba2,Tatoeba/tatoeba2,Tatoeba/tatoeba2,Tatoeba/tatoeba2 |
12ba739358c9bc852625218c6270f4247b81f33e | .github/workflows/test-pypi-install.yml | .github/workflows/test-pypi-install.yml | name: Test PyPI install
on: push
# on:
# schedule:
# # * is a special character in YAML so you have to quote this string
# - cron: '0 0 * * 3'
jobs:
test-installation:
name: Test PyPI install (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: [3.6, 3.7, 3.8]
steps:
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
# no windows wheel for Python 3.6 cftime 1.3.1
# https://github.com/Unidata/cftime/issues/224
- name: Install cftime 1.3.0 (${{ runner.os }})
if: startsWith(runner.os, 'Windows') && endsWith(matrix.python-version, '3.6')
run: |
pip install --upgrade --user pip wheel
pip install cftime==1.3.0
- name: Install package
run: |
pip install --upgrade pip
pip install pymagicc --pre
- name: Checkout repository
uses: actions/checkout@v2
- name: Test installation
run: |
python scripts/test_install.py
| name: Test PyPI install
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 * * 3'
jobs:
test-installation:
name: Test PyPI install (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: [3.6, 3.7, 3.8]
steps:
- name: Setup python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
# no windows wheel for Python 3.6 cftime 1.3.1
# https://github.com/Unidata/cftime/issues/224
- name: Install cftime 1.3.0 (${{ runner.os }})
if: startsWith(runner.os, 'Windows') && endsWith(matrix.python-version, '3.6')
run: |
pip install --upgrade --user pip wheel
pip install cftime==1.3.0
- name: Install package
run: |
pip install --upgrade pip
pip install pymagicc --pre
- name: Checkout repository
uses: actions/checkout@v2
- name: Test installation
run: |
python scripts/test_install.py
| Put tests PyPI install back on schedule | Put tests PyPI install back on schedule
| YAML | agpl-3.0 | openclimatedata/pymagicc,openclimatedata/pymagicc |
8bc58cbfdab75c5f105d79d045d85ef8e10b02cf | metadata/de.nproth.pin.yml | metadata/de.nproth.pin.yml | Categories:
- Writing
License: GPL-3.0-or-later
SourceCode: https://github.com/nproth/pin
IssueTracker: https://github.com/nproth/pin/issues
AutoName: p!n
RepoType: git
Repo: https://github.com/nproth/pin
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: 1.0.1
versionCode: 2
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: '1.1'
versionCode: 3
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 4
commit: v1.2
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 5
commit: v1.2.1
subdir: app
gradle:
- yes
- versionName: 1.2.2
versionCode: 6
commit: v1.2.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.2.2
CurrentVersionCode: 6
| Categories:
- Writing
License: GPL-3.0-or-later
SourceCode: https://github.com/nproth/pin
IssueTracker: https://github.com/nproth/pin/issues
AutoName: p!n
RepoType: git
Repo: https://github.com/nproth/pin
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
- versionName: 1.0.1
versionCode: 2
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: '1.1'
versionCode: 3
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 4
commit: v1.2
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 5
commit: v1.2.1
subdir: app
gradle:
- yes
- versionName: 1.2.2
versionCode: 6
commit: v1.2.2
subdir: app
gradle:
- yes
- versionName: 1.2.3
versionCode: 7
commit: v1.2.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.2.3
CurrentVersionCode: 7
| Update p!n to 1.2.3 (7) | Update p!n to 1.2.3 (7)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
d7cb7e294f19368a65f1af4ca921d0c0c0b0db69 | packages/me/metadata.yaml | packages/me/metadata.yaml | homepage: https://github.com/cutsea110/metadata
changelog-type: ''
hash: 6fb88dfb6e89e950f1f378a41da0e0a86c63c6c00fb6e2fb6044d34b2a4ac0d3
test-bench-deps: {}
maintainer: cutsea110@gmail.com
synopsis: metadata library for semantic web
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
time: ! '>=1.4 && <1.6'
text: ! '>=1.1 && <1.3'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
- '0.1.4.0'
- '0.1.5.0'
- '0.1.6.0'
- '0.1.7.0'
- '0.2.0.0'
- '0.3.0.0'
- '0.4.0.0'
- '0.4.1.0'
author: cutsea110
latest: '0.4.1.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: https://github.com/cutsea110/metadata
changelog-type: ''
hash: ba24a36b1706eee58f25d1d5142d7585b34bf541940fe1f82bdb0b0b506070f5
test-bench-deps: {}
maintainer: cutsea110@gmail.com
synopsis: metadata library for semantic web
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
time: ! '>=1.4 && <1.6'
text: ! '>=1.1 && <1.3'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
- '0.1.4.0'
- '0.1.5.0'
- '0.1.6.0'
- '0.1.7.0'
- '0.2.0.0'
- '0.3.0.0'
- '0.4.0.0'
- '0.4.1.0'
- '0.4.2.0'
author: cutsea110
latest: '0.4.2.0'
description-type: haddock
description: metadata library for semantic web (schema.org)
license-name: BSD3
| Update from Hackage at 2016-02-03T03:41:09+0000 | Update from Hackage at 2016-02-03T03:41:09+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
b85e0727407ab05f0694f5243d0ae7dd694e529d | packages/sh/shikensu.yaml | packages/sh/shikensu.yaml | homepage: https://github.com/icidasset/shikensu#README
changelog-type: ''
hash: 37f26a1c77420e05c3c4fa2a86aedb819474addde11f002b9ab9f53d42ef6ac8
test-bench-deps:
bytestring: -any
flow: -any
base: -any
unordered-containers: -any
text: ! '>=1.2 && <2'
filepath: -any
shikensu: -any
tasty-hunit: ==0.9.*
tasty: ==0.11.*
aeson: -any
directory: -any
maintainer: icid.asset@gmail.com
synopsis: A small toolset for building static websites
changelog: ''
basic-deps:
bytestring: ==0.10.*
flow: ==1.0.*
base: ==4.*
unordered-containers: ==0.2.*
filepath: ==1.4.*
Glob: ==0.7.*
aeson: ==0.11.*
directory: ! '>=1.2.6 && <2'
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
author: Steven Vandevelde
latest: '0.1.2'
description-type: haddock
description: Please see README.md
license-name: MIT
| homepage: https://github.com/icidasset/shikensu#README
changelog-type: ''
hash: 1d0310768e9c74f18935665e08dc636e48505ac22255a27680e93435d632e35e
test-bench-deps:
bytestring: -any
flow: -any
base: -any
unordered-containers: -any
text: ! '>=1.2 && <2'
filepath: -any
shikensu: -any
tasty-hunit: ==0.9.*
tasty: ==0.11.*
aeson: -any
directory: -any
maintainer: icid.asset@gmail.com
synopsis: A small toolset for building static websites
changelog: ''
basic-deps:
bytestring: ==0.10.*
flow: ==1.0.*
base: ==4.*
unordered-containers: ==0.2.*
filepath: ==1.4.*
Glob: ==0.7.*
aeson: ==0.11.*
directory: ! '>=1.2.6 && <2'
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
author: Steven Vandevelde
latest: '0.1.3'
description-type: haddock
description: Please see README.md
license-name: MIT
| Update from Hackage at 2016-11-25T20:12:50Z | Update from Hackage at 2016-11-25T20:12:50Z | YAML | mit | commercialhaskell/all-cabal-metadata |
71313735dfb2ef0e90dc0d577cdce92c25613371 | packages/su/sublists.yaml | packages/su/sublists.yaml | homepage: https://hackage.haskell.org/package/sublists
changelog-type: markdown
hash: 7dfa910fad8412f9f2d5bfc3a54d8a812184b694fdda371523c5d6a4198fc6a5
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Allows to split lists into sublists with some patterns by quantity.
changelog: |
# Revision history for sublists
## 0.1.0.0 -- 2021-03-03
* First version. Released on an unsuspecting world.
basic-deps:
base: '>=4.7 && <4.15'
all-versions:
- 0.1.0.0
author: OleksandrZhabenko
latest: 0.1.0.0
description-type: haddock
description: This patterns can be a number, a list of numbers or obtained from the
monadic function. Leads to somewhat cycling or regularized structures from the length
perspective (this can be transformed into other variativity types).
license-name: MIT
| homepage: https://hackage.haskell.org/package/sublists
changelog-type: markdown
hash: ecb51d1754d4f2f68b014e537e227253fa99e5f55994ec6de474269c2a39bb1a
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Allows to split lists into sublists with some patterns by quantity.
changelog: |+
# Revision history for sublists
## 0.1.0.0 -- 2021-03-03
* First version. Released on an unsuspecting world.
## 0.1.0.1 -- 2021-03-03
* First version revised A. Fixed issue with the incorrect statement in the documentation.
basic-deps:
base: '>=4.7 && <4.15'
all-versions:
- 0.1.0.0
- 0.1.0.1
author: OleksandrZhabenko
latest: 0.1.0.1
description-type: haddock
description: This patterns can be a list of numbers or obtained from the monadic function.
Leads to somewhat cycling or regularized structures from the length perspective
(this can be transformed into other variativity types).
license-name: MIT
| Update from Hackage at 2021-03-03T18:05:24Z | Update from Hackage at 2021-03-03T18:05:24Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e348caf4784f199fd3ed22d88a39a465306783fd | producer_with_xml/src/test/resources/contracts/beer/rest/shouldProcessBeerOrder.yml | producer_with_xml/src/test/resources/contracts/beer/rest/shouldProcessBeerOrder.yml | request:
method: POST
url: /order
headers:
Content-Type: application/xml
body: |
<order>
<value>123</value>
<beerNames>
<beerName>abc</beerName>
<beerName>def</beerName>
<beerName>ghi</beerName>
</beerNames>
</order>
response:
status: 200
headers:
Content-Type: application/xml
body: |
<sale>
<transactionUuid>uuid</transactionUuid>
<beerNames>
<beerName>abc</beerName>
<beerName>def</beerName>
<beerName>ghi</beerName>
</beerNames>
</sale>
matchers:
headers:
- key: Content-Type
regex: "application/json.*"
body:
- path: /sale/transactionUuid/text()
type: by_regex
predefined: uuid | request:
method: POST
url: /order
headers:
Content-Type: application/xml
body: |
<order>
<value>123</value>
<beerNames>
<beerName>abc</beerName>
<beerName>def</beerName>
<beerName>ghi</beerName>
</beerNames>
</order>
response:
status: 200
headers:
Content-Type: application/xml
body: |
<sale>
<transactionUuid>uuid</transactionUuid>
<beerNames>
<beerName>abc</beerName>
<beerName>def</beerName>
<beerName>ghi</beerName>
</beerNames>
</sale>
matchers:
headers:
- key: Content-Type
regex: "application/xml.*"
body:
- path: /sale/transactionUuid/text()
type: by_regex
predefined: uuid | Fix content type matcher for xml. | Fix content type matcher for xml.
| YAML | apache-2.0 | spring-cloud-samples/spring-cloud-contract-samples,spring-cloud-samples/spring-cloud-contract-samples,spring-cloud-samples/spring-cloud-contract-samples,spring-cloud-samples/spring-cloud-contract-samples,spring-cloud-samples/spring-cloud-contract-samples |
4e7b455507a29ec17dbd66a2b284b982903e41a5 | packages/st/styx.yaml | packages/st/styx.yaml | homepage: ''
changelog-type: ''
hash: 937ad695670b8c8e98c6b0240aefb95ce35bd08fffcb1571fa5526ca4147c42f
test-bench-deps: {}
maintainer: jeanphilippe.bernardy@gmail.com
synopsis: A generator of nix files
changelog: ''
basic-deps:
base: <=666
text: -any
filepath: ! '>=1.3'
process: ! '>=1.1'
containers: -any
mtl: -any
optparse-applicative: -any
aeson: -any
yaml: -any
directory: ! '>=1.1'
all-versions:
- '1.0'
- '1.1'
author: Jean-Philippe Bernardy
latest: '1.1'
description-type: haddock
description: Soon to appear.
license-name: GPL
| homepage: ''
changelog-type: ''
hash: 03b7f1e4fffe19237f278c6b7c138753947189f5d9ae5ac1d5e66bba4b3ce953
test-bench-deps: {}
maintainer: jeanphilippe.bernardy@gmail.com
synopsis: A generator of nix files
changelog: ''
basic-deps:
base: <=666
text: -any
filepath: ! '>=1.3'
process: ! '>=1.1'
containers: -any
mtl: -any
optparse-applicative: -any
aeson: -any
yaml: -any
directory: ! '>=1.1'
all-versions:
- '1.0'
- '1.1'
- '1.2'
author: Jean-Philippe Bernardy
latest: '1.2'
description-type: haddock
description: Soon to appear.
license-name: GPL
| Update from Hackage at 2017-02-03T07:28:38Z | Update from Hackage at 2017-02-03T07:28:38Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
89a74fa8b8ccadf9ef79ba0b52404f9e19701541 | src/Beloop/Bundle/UserBundle/Resources/config/doctrine/User.orm.yml | src/Beloop/Bundle/UserBundle/Resources/config/doctrine/User.orm.yml | Beloop\Component\User\Entity\User:
type: entity
repositoryClass: Beloop\Component\User\Repository\UserRepository
table: user
id:
id:
type: integer
generator:
strategy: AUTO
fields:
biography:
column: biography
type: text
nullable: true
website:
column: website
type: string
length: 255
nullable: true
instagram:
column: instagram
type: string
length: 255
nullable: true
avatarName:
column: avatar
type: string
length: 255
nullable: true
oneToMany:
images:
targetEntity: Beloop\Component\Instagram\Entity\Instagram
mappedBy: user
manyToOne:
language:
targetEntity: Beloop\Component\Language\Entity\Interfaces\LanguageInterface
joinColumn:
name: language_iso
referencedColumnName: iso
nullable: true
manyToMany:
courses:
targetEntity: Beloop\Component\Course\Entity\Interfaces\CourseInterface
mappedBy: enrolledUsers
lifecycleCallbacks:
preUpdate: [loadUpdateAt]
prePersist: [loadUpdateAt] | Beloop\Component\User\Entity\User:
type: entity
repositoryClass: Beloop\Component\User\Repository\UserRepository
table: user
id:
id:
type: integer
generator:
strategy: AUTO
fields:
biography:
column: biography
type: text
nullable: true
website:
column: website
type: string
length: 255
nullable: true
instagram:
column: instagram
type: string
length: 255
nullable: true
avatarName:
column: avatar
type: string
length: 255
nullable: true
oneToMany:
images:
targetEntity: Beloop\Component\Instagram\Entity\Instagram
mappedBy: user
manyToOne:
language:
targetEntity: Beloop\Component\Language\Entity\Interfaces\LanguageInterface
joinColumn:
name: language_iso
referencedColumnName: iso
nullable: true
manyToMany:
courses:
targetEntity: Beloop\Component\Course\Entity\Interfaces\CourseInterface
mappedBy: enrolledUsers
orderBy:
startDate: DESC
lifecycleCallbacks:
preUpdate: [loadUpdateAt]
prePersist: [loadUpdateAt] | Order user courses by start date | Order user courses by start date
| YAML | mit | beloop/components,beloop/components,beloop/components |
9764a2c04b98f3238e190cfb94442bc4fadb3890 | .github/workflows/DEPLOY.yml | .github/workflows/DEPLOY.yml | name: DEPLOY
on:
push:
branches:
- 'releases/**'
tags-ignore:
- '*.*'
env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
jobs:
publish-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- run: CALL gradlew.bat --no-daemon
shell: cmd
- run: CALL gradlew.bat --no-daemon assemble check publish -x jsBrowserTest -x jsNodeTest
shell: cmd
publish-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- run: ./gradlew
- run: ./gradlew assemble check publish -x jsBrowserTest -x jsNodeTest
publish-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: ./gradlew
- run: ./gradlew assemble check lint testDebugUnitTest publish -x jsBrowserTest -x jsNodeTest
publish-finalize:
needs: [publish-windows, publish-mac, publish-linux]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: ./gradlew publishKotlinMultiplatformPublicationToMavenRepository publishMetadataPublicationToMavenRepository actuallyPublishBintray
| name: DEPLOY
on:
push:
branches:
- 'releases/**'
tags-ignore:
- '*.*'
env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
jobs:
publish-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- run: CALL gradlew.bat --no-daemon
shell: cmd
- run: CALL gradlew.bat --no-daemon assemble check publish -x jsBrowserTest
shell: cmd
publish-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- run: ./gradlew
- run: ./gradlew assemble check publish -x jsBrowserTest
publish-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: ./gradlew
- run: ./gradlew assemble check lint testDebugUnitTest publish -x jsBrowserTest
publish-finalize:
needs: [publish-windows, publish-mac, publish-linux]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: ./gradlew publishKotlinMultiplatformPublicationToMavenRepository publishMetadataPublicationToMavenRepository actuallyPublishBintray
| Remove jsNodeTest from deploy too | Remove jsNodeTest from deploy too
| YAML | apache-2.0 | soywiz/korge,soywiz/korge,soywiz/korge |
d4e5f1414f540b19c5eaa6713dec1638f72fdaa8 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,15.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install --no-package-lock
- name: npm ls
run: npm ls
- name: npm install nyc, prove@9.0.7, codecov
run: npm install -g nyc prove codecov
- name: generate WebIDL
run: node util/webidl.js
- name: npm test
run: nyc npm test
env:
CI: true
- name: generate codecov report
run: nyc report --reporter=text-lcov > coverage.lcov
- name: ship coverage to codecov
run: codecov --branch=${GITHUB_REF##*/}
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
| name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install --no-package-lock
- name: npm ls
run: npm ls
- name: npm install nyc, prove@9.0.7, codecov
run: npm install -g nyc prove codecov
- name: generate WebIDL
run: node util/webidl.js
- name: npm test
run: nyc npm test
env:
CI: true
- name: generate codecov report
run: nyc report --reporter=text-lcov > coverage.lcov
- name: ship coverage to codecov
run: codecov --branch=${GITHUB_REF##*/}
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
| Build with Node.js 16 on GitHub Actions. | Build with Node.js 16 on GitHub Actions.
| YAML | mit | bigeasy/indexeddb,bigeasy/indexeddb |
2c79c4effe4c498dd1212eb6a80851c38932a848 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ devel ]
pull_request:
branches: [ devel ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ devel ]
pull_request:
branches: [ devel ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- name: Check that "binary" script works
run: ./bin/analyze-css.js --file examples/ti.mobile.css -p | grep metrics -B2
| Check that binary script works | Check that binary script works | YAML | bsd-2-clause | macbre/analyze-css,macbre/analyze-css |
84ef86b872504ecd7a3d88f515216fa4e05b821b | .github/workflows/update.yml | .github/workflows/update.yml | on:
schedule:
- cron: '37 * * * *'
name: update
jobs:
update:
runs-on: ubuntu-18.04
steps:
- name: checkout
uses: actions/checkout@master
with:
fetch-depth: 1
- name: checkout bikeshed
uses: actions/checkout@master
with:
repository: tabatkins/bikeshed
ref: master
fetch-depth: 1
path: bikeshed
- name: setup python
uses: actions/setup-python@master
with:
python-version: 2.x
- name: install bikeshed
run: pip install --editable $GITHUB_WORKSPACE/bikeshed
- name: git config
run: |
git config user.name "bikeshed-bot"
git config user.email "<>"
git remote set-url --push origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
git checkout master
- name: update
run: python __init__.py
| on:
schedule:
- cron: '37 * * * *'
name: update
jobs:
update:
runs-on: ubuntu-18.04
steps:
- name: checkout
uses: actions/checkout@master
with:
fetch-depth: 1
- name: checkout bikeshed
uses: actions/checkout@master
with:
repository: tabatkins/bikeshed
ref: master
fetch-depth: 1
path: bikeshed
- name: setup python
uses: actions/setup-python@master
with:
python-version: 3.7
- name: install bikeshed
run: pip install --editable $GITHUB_WORKSPACE/bikeshed
- name: git config
run: |
git config user.name "bikeshed-bot"
git config user.email "<>"
git remote set-url --push origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
git checkout master
- name: update
run: python __init__.py
| Update the workflow to py3, too. | Update the workflow to py3, too.
| YAML | mit | tabatkins/bikeshed-data |
c272c13af7bbdfe79f98d6724aca62ef5c634af9 | assets_src/config/ui/halley/asset_browser_tabs.yaml | assets_src/config/ui/halley/asset_browser_tabs.yaml | ---
widget: { class: widget }
sizer: { type: vertical }
proportion: 1
children:
- widget: { id: tabs, class: list, type: horizontal, style: tabs }
proportion: 0
- widget: { id: pages, class: pagedPane }
proportion: 1
... | ---
widget: { class: widget }
sizer: { type: vertical }
proportion: 1
children:
- widget: { class: scrollBarPane, scrollHorizontal: true, scrollVertical: false, autoHide: true, size: [50, 10] }
proportion: 0
sizer: { type: vertical }
children:
- widget: { id: tabs, class: list, type: horizontal, style: tabs }
proportion: 1
- widget: { id: pages, class: pagedPane }
proportion: 1
... | Allow tabs to scroll if necessary | Allow tabs to scroll if necessary
| YAML | apache-2.0 | amzeratul/halley,amzeratul/halley,amzeratul/halley |
c06cb0954ead1a408cdf40e1f33a381172cadcc6 | Resources/config/services/switcher.yaml | Resources/config/services/switcher.yaml | parameters:
darvin_menu.switcher.admin.form_type.class: Darvin\MenuBundle\Form\Type\Admin\MenuSwitcherType
darvin_menu.switcher.class: Darvin\MenuBundle\Switcher\MenuSwitcher
darvin_menu.switcher.switch_event_subscriber.class: Darvin\MenuBundle\EventListener\SwitchMenuSubscriber
services:
darvin_menu.switcher.admin.form_type:
class: '%darvin_menu.switcher.admin.form_type.class%'
arguments:
- '@darvin_menu.configuration.menu'
- '@darvin_menu.switcher'
tags:
- { name: form.type }
darvin_menu.switcher:
class: '%darvin_menu.switcher.class%'
arguments:
- '@doctrine.orm.entity_manager'
- '@darvin_utils.orm.entity_resolver'
- '%darvin_menu.switcher.default_menus%'
darvin_menu.switcher.switch_event_subscriber:
class: '%darvin_menu.switcher.switch_event_subscriber.class%'
arguments:
- '@darvin_utils.orm.entity_resolver'
- '@darvin_menu.switcher'
- '@darvin_content.translatable.translation_initializer'
- '%locales%'
tags:
- { name: doctrine.event_subscriber, priority: 100 }
| parameters:
darvin_menu.switcher.admin.form_type.class: Darvin\MenuBundle\Form\Type\Admin\MenuSwitcherType
darvin_menu.switcher.class: Darvin\MenuBundle\Switcher\MenuSwitcher
darvin_menu.switcher.switch_event_subscriber.class: Darvin\MenuBundle\EventListener\SwitchMenuSubscriber
services:
darvin_menu.switcher.admin.form_type:
class: '%darvin_menu.switcher.admin.form_type.class%'
arguments:
- '@darvin_menu.provider_registry'
- '@darvin_menu.switcher'
tags:
- { name: form.type }
darvin_menu.switcher:
class: '%darvin_menu.switcher.class%'
arguments:
- '@doctrine.orm.entity_manager'
- '@darvin_utils.orm.entity_resolver'
- '%darvin_menu.switcher.default_menus%'
darvin_menu.switcher.switch_event_subscriber:
class: '%darvin_menu.switcher.switch_event_subscriber.class%'
arguments:
- '@darvin_utils.orm.entity_resolver'
- '@darvin_menu.switcher'
- '@darvin_content.translatable.translation_initializer'
- '%locales%'
tags:
- { name: doctrine.event_subscriber, priority: 100 }
| Replace menu configuration service with menu provider registry one. | Replace menu configuration service with menu provider registry one.
| YAML | mit | DarvinStudio/DarvinMenuBundle,DarvinStudio/DarvinMenuBundle |
7a4bd29d771cc5752c62e84fab7fa4d011cf8dfd | .forestry/front_matter/templates/posts.yml | .forestry/front_matter/templates/posts.yml | ---
label: Posts
hide_body: false
is_partial: false
fields:
- type: text
default: post
label: Layout
name: layout
hidden: true
- type: textarea
name: summary
label: Summary
description: Meta description
config:
required: true
- type: select
config:
source:
type: simple
options:
- tutorials
- research
- tools
- ai
- webservice
- tips
required: true
label: Category
name: categories
default: tutorials
- type: text
name: keywords
label: Keywords
- type: tag_list
name: tags
label: Tags
- type: list
label: Redirect From
name: redirect_from
- type: file
name: cover_image
label: Cover Image
description: The image that will appear on the first page
pages:
- _posts/2018-06-10-chatbots-a-different-approach-for-messaging.md
- _posts/2018-12-07-debate-django-pro-vs-cons.md
- _posts/2018-09-10-keep-changelog-file.md
- _category/portfolio.md
| ---
label: Posts
hide_body: false
is_partial: false
fields:
- type: text
default: post
label: Layout
name: layout
hidden: true
- type: textarea
name: summary
label: Summary
description: Meta description
config:
required: true
- type: select
config:
source:
type: simple
options:
- tutorials
- research
- tools
- ai
- webservice
- tips
required: true
label: Category
name: categories
default: tutorials
- type: text
name: keywords
label: Keywords
- type: tag_list
name: tags
label: Tags
- type: list
label: Redirect From
name: redirect_from
- type: file
name: cover
label: Cover Image
description: The image that will appear on the first page
pages:
- _posts/2018-06-10-chatbots-a-different-approach-for-messaging.md
- _posts/2018-12-07-debate-django-pro-vs-cons.md
- _posts/2018-09-10-keep-changelog-file.md
- _category/portfolio.md
| Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration | YAML | mit | boobo94/boobo94.github.io,boobo94/boobo94.github.io |
e0326f30618a63cd10c57a1c192236fc55eb7787 | .github/workflows/deploy-to-docker-hub.yml | .github/workflows/deploy-to-docker-hub.yml | name: Deploy to Docker Hub
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#on
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build app
# We use "npm run" so that we can get the version number out of package.json
run: npm run docker
- name: List images
run: docker images
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Publish to Docker Hub
run: docker image push --all-tags sillsdev/web-languagedepot-api
| name: Deploy to Docker Hub
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#on
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build app
# We use "npm run" so that we can get the version number out of package.json
run: npm run docker
- name: List images
run: docker images
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
- name: Publish to Docker Hub
run: docker image push --all-tags sillsdev/web-languagedepot-api
| Use new Docker access token in deploy action | Use new Docker access token in deploy action
| YAML | mit | sillsdev/web-languagedepot-api,sillsdev/web-languagedepot-api,sillsdev/web-languagedepot-api,sillsdev/web-languagedepot-api |
681261b88988a608b7847458ad20fc76414855bc | catalog/Testing/testing_frameworks.yml | catalog/Testing/testing_frameworks.yml | name: Test Frameworks
description:
projects:
- assert
- bacon
- detest
- dtf
- fix
- kintama
- lemon
- micronaut
- minitest
- riot
- rspec
- rubydoctest
- shindo
- test-unit
- test_inline
- testrocket
- testy
- wrong
| name: Test Frameworks
description:
projects:
- assert
- bacon
- detest
- dtf
- fix
- kintama
- lemon
- micronaut
- minitest
- riot
- rspec
- rubydoctest
- shindo
- test-unit
- test_inline
- testrocket
- testy
- wrong
- yard-doctest
| Add yard-doctest to the list of testing frameworks | Add yard-doctest to the list of testing frameworks | YAML | mit | rubytoolbox/catalog |
fb97aa6b31752b3ef8b795398d1199203fbad60f | tmuxinator/tmuxinator.symlink/where_were_we.yml | tmuxinator/tmuxinator.symlink/where_were_we.yml | # ~/.tmuxinator/where_were_we.yml
# you can make as many tabs as you wish...
project_name: where-were-we
project_root: ~/projects/wherewerewe/www/wherewerewe
tabs:
- bash: #empty, will just run plain bash
- vim: vim
- consoles:
layout: even-horizontal
panes:
- rails c
- rails db
- server: rails s
- logs:
layout: main-vertical
panes:
- tail -f log/development.log
- tail -f ~/Library/Logs/Pow/access.log
- tail -f ~/Library/Logs/Pow/apps/wherewerewe.log
- git: tig
| # ~/.tmuxinator/where_were_we.yml
# you can make as many tabs as you wish...
project_name: where-were-we
project_root: ~/projects/wherewerewe/www/wherewerewe
tabs:
- bash: #empty, will just run plain bash
- vim: vim
- consoles:
layout: even-horizontal
panes:
- rails c
- rails db
- server: rails s thin -p 5000
- logs:
layout: main-vertical
panes:
- tail -f log/development.log
- tail -f ~/Library/Logs/Pow/access.log
- tail -f ~/Library/Logs/Pow/apps/wherewerewe.log
- git: tig
| Use thin as wherewerewe rails server | Use thin as wherewerewe rails server
| YAML | mit | markscholtz/dotfiles,markscholtz/dotfiles |
81fc7e898c196d800413ec414537267392d0dd44 | src/test/resources/com/akiban/sql/pg/yaml/functional/test-views.yaml | src/test/resources/com/akiban/sql/pg/yaml/functional/test-views.yaml | # Test view construction and usage.
---
- CreateTable: t (id INT PRIMARY KEY NOT NULL, s VARCHAR(10))
---
- Statement: INSERT INTO t VALUES(1, 'foo'),(2, 'bar')
---
- Statement: SELECT * FROM t
- output_ordered: [[1, 'foo'],[2, 'bar']]
---
- Statement: CREATE VIEW v1 AS SELECT * FROM t
---
- Statement: SELECT * FROM v1
- output_ordered: [[1, 'foo'],[2, 'bar']]
---
- Statement: CREATE VIEW v2(x,y) AS SELECT s,id FROM t ORDER BY s
---
- Statement: SELECT * FROM v2
# TODO _ordered should not be needed
- output_ordered: [['bar', 2],['foo', 1]]
---
- Statement: CREATE VIEW v3 AS SELECT s||x FROM v1 INNER JOIN v2 ON v1.id = v2.y
---
- Statement: SELECT * FROM v3
- output_ordered: [['barbar'],['foofoo']]
---
- Statement: CREATE VIEW v0(a,b) AS VALUES(1,10),(2,20),(3,30)
---
- Statement: SELECT * FROM v0 WHERE a > 1
- output: [[2,20],[3,30]]
...
| # Test view construction and usage.
---
- CreateTable: t (id INT PRIMARY KEY NOT NULL, s VARCHAR(10))
---
- Statement: INSERT INTO t VALUES(1, 'foo'),(2, 'bar')
---
- Statement: SELECT * FROM t
- output_ordered: [[1, 'foo'],[2, 'bar']]
---
- Statement: CREATE VIEW v1 AS SELECT * FROM t
---
- Statement: SELECT * FROM v1
- output_ordered: [[1, 'foo'],[2, 'bar']]
---
- Statement: CREATE VIEW v2(x,y) AS SELECT s,id FROM t ORDER BY s
---
- Statement: SELECT * FROM v2
- output: [['bar', 2],['foo', 1]]
---
- Statement: CREATE VIEW v3 AS SELECT s||x FROM v1 INNER JOIN v2 ON v1.id = v2.y
---
- Statement: SELECT * FROM v3
- output_ordered: [['barbar'],['foofoo']]
---
- Statement: CREATE VIEW v0(a,b) AS VALUES(1,10),(2,20),(3,30)
---
- Statement: SELECT * FROM v0 WHERE a > 1
- output: [[2,20],[3,30]]
...
| Order not needed after parser fix. | Order not needed after parser fix.
| YAML | agpl-3.0 | relateiq/sql-layer,wfxiang08/sql-layer-1,shunwang/sql-layer-1,wfxiang08/sql-layer-1,jaytaylor/sql-layer,jaytaylor/sql-layer,ngaut/sql-layer,ngaut/sql-layer,shunwang/sql-layer-1,wfxiang08/sql-layer-1,relateiq/sql-layer,qiuyesuifeng/sql-layer,qiuyesuifeng/sql-layer,relateiq/sql-layer,jaytaylor/sql-layer,ngaut/sql-layer,wfxiang08/sql-layer-1,qiuyesuifeng/sql-layer,relateiq/sql-layer,qiuyesuifeng/sql-layer,jaytaylor/sql-layer,shunwang/sql-layer-1,ngaut/sql-layer,shunwang/sql-layer-1 |
cbce19fcdc48b71d06036dce731dde90a0204380 | .github/workflows/set-automatic-deploys-enabled.yaml | .github/workflows/set-automatic-deploys-enabled.yaml | name: Set automatic deploys
on:
workflow_dispatch:
inputs:
resetImageTag:
description: 'Reset image tag to main'
required: false
default: false
type: boolean
automaticDeploysEnabled:
description: 'Activate automatic deploys'
required: false
default: true
type: boolean
environment:
description: 'Environment to deploy to'
required: true
type: choice
options:
- integration
- staging
- production
default: 'integration'
jobs:
set_automatic_deploys_enabled:
name: Set automatic_deploys_enabled to ${{ github.event.inputs.environment }}
uses: alphagov/govuk-infrastructure/.github/workflows/set-automatic-deploys-enabled.yaml@main
with:
resetImageTag: ${{ github.event.inputs.resetImageTag == 'true' }}
automaticDeploysEnabled: ${{ github.event.inputs.automaticDeploysEnabled == 'true' }}
environment: ${{ github.event.inputs.environment }}
secrets:
WEBHOOK_TOKEN: ${{ secrets.GOVUK_INTEGRATION_ARGO_EVENTS_WEBHOOK_TOKEN }}
WEBHOOK_URL: ${{ secrets.GOVUK_INTEGRATION_ARGO_EVENTS_WEBHOOK_URL }}
GOVUK_CI_GITHUB_API_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
| name: Set automatic deploys
run-name: Set automatic deploys to ${{ inputs.setAutomaticDeploys }} in ${{ inputs.environment }}
on:
workflow_dispatch:
inputs:
setAutomaticDeploys:
description: 'Set automatic deploys'
required: false
type: choice
options:
- enabled
- disabled
default: 'enabled'
environment:
description: 'Environment'
required: true
type: choice
options:
- integration
- staging
- production
default: 'integration'
jobs:
set-automatic-deploys:
name: Set automatic deploys
uses: alphagov/govuk-infrastructure/.github/workflows/set-automatic-deploys.yaml@main
with:
automaticDeploysEnabled: ${{ github.event.inputs.automaticDeploys == 'enabled' }}
environment: ${{ github.event.inputs.environment }}
secrets:
WEBHOOK_TOKEN: ${{ secrets.GOVUK_ARGO_EVENTS_WEBHOOK_TOKEN }}
WEBHOOK_URL: ${{ secrets.GOVUK_ARGO_EVENTS_WEBHOOK_URL }}
GH_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
| Update set automatic deploy workflow | Update set automatic deploy workflow
This updates the workflow to use the changes in the resuable workflow.
| YAML | mit | alphagov/content-tagger,alphagov/content-tagger,alphagov/content-tagger |
c4776af1dc970ea875ce08808c18a391047ca827 | .istanbul.yml | .istanbul.yml | instrumentation:
root: src
include-all-sources: true
excludes: [
'server/main.js',
'server/config.js',
'server/mainCss.js',
'server/mainServer.js',
'server/middleware/dev.js',
'web/main.jsx',
'web/store.js',
'web/sagas/index.js',
'web/forms/index.js',
]
extensions:
- .jsx
- .js
| instrumentation:
root: src
include-all-sources: true
excludes: [
'server/index.js',
'server/main.js',
'server/config.js',
'server/mainCss.js',
'server/mainServer.js',
'server/middleware/dev.js',
'web/main.jsx',
'web/store.js',
'web/sagas/index.js',
'web/forms/index.js',
]
extensions:
- .jsx
- .js
| Exclude server configuration from coverage | Exclude server configuration from coverage
| YAML | mit | just-paja/improtresk-web,just-paja/improtresk-web |
e23177047dfe83c5c412e0e357db3654610e28db | packages/ws/ws.yaml | packages/ws/ws.yaml | homepage: ''
changelog-type: ''
hash: 5b72f4befddc3f3afca3a061df68ca2fb3babde9d9efd3158c8a1a08ada1bcb7
test-bench-deps: {}
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: A simple CLI utility for interacting with a websocket
changelog: ''
basic-deps:
ws: -any
exceptions: -any
bytestring: -any
haskeline: ! '>=0.7.4'
base: ! '>=4.8 && <5'
text: -any
network: -any
async: -any
websockets: -any
wuss: -any
network-uri: -any
mtl: -any
optparse-applicative: -any
all-versions:
- '0.0.1'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.1'
description-type: haddock
description: ''
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 6042c35ea31b41b80a9ca7054e1e45bea24b060fa4ca104e5acdbf31da6755a9
test-bench-deps: {}
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: A simple CLI utility for interacting with a websocket
changelog: ''
basic-deps:
ws: -any
exceptions: -any
bytestring: -any
haskeline: ! '>=0.7.4'
base: ! '>=4.8 && <5'
text: -any
network: -any
async: -any
websockets: -any
wuss: -any
network-uri: -any
mtl: -any
optparse-applicative: -any
all-versions:
- '0.0.1'
- '0.0.2'
author: Athan Clark <athan.clark@gmail.com>
latest: '0.0.2'
description-type: haddock
description: ''
license-name: BSD3
| Update from Hackage at 2017-12-19T20:34:47Z | Update from Hackage at 2017-12-19T20:34:47Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1f8a12c8587b8db33bf29d91885e8ca683f917e1 | recipes/sshpass/meta.yaml | recipes/sshpass/meta.yaml | {% set name = "sshpass" %}
{% set version = "1.06" %}
package:
name: {{ name }}
version: {{ version }}
source:
url: http://downloads.sourceforge.net/project/{{ name }}/{{ name }}/{{ version }}/{{ name }}-{{ version }}.tar.gz
sha256: c6324fcee608b99a58f9870157dfa754837f8c48be3df0f5e2f3accf145dee60
build:
number: 0
skip: True # [win]
requirements:
build:
- {{ compiler('c') }}
- make
- pkgconfig
test:
commands:
- test -x ${PREFIX}/bin/sshpass
- ${PREFIX}/bin/sshpass -h
about:
home: https://sourceforge.net/projects/sshpass/
license: GPL-2.0-or-later
license_file: COPYING
summary: 'Non-interactive ssh password auth'
description: |
sshpass is a tool for non-interactivly performing password authentication
with SSH's so called "interactive keyboard password authentication".
extra:
recipe-maintainers:
- asafkahlon
| {% set name = "sshpass" %}
{% set version = "1.06" %}
package:
name: {{ name }}
version: {{ version }}
source:
url: http://downloads.sourceforge.net/project/{{ name }}/{{ name }}/{{ version }}/{{ name }}-{{ version }}.tar.gz
sha256: c6324fcee608b99a58f9870157dfa754837f8c48be3df0f5e2f3accf145dee60
build:
number: 0
skip: True # [win]
requirements:
build:
- {{ compiler('c') }}
- make
- pkgconfig
test:
commands:
- test -x ${PREFIX}/bin/sshpass
- sshpass -h
about:
home: https://sourceforge.net/projects/sshpass/
license: GPL-2.0-or-later
license_file: COPYING
summary: 'Non-interactive ssh password auth'
description: |
sshpass is a tool for non-interactivly performing password authentication
with SSH's so called "interactive keyboard password authentication".
extra:
recipe-maintainers:
- asafkahlon
| Remove PREFIX suffix on test | Remove PREFIX suffix on test
Signed-off-by: Asaf Kahlon <64ca4990975254f2ecfadedee58f18409579ee17@gmail.com>
| YAML | bsd-3-clause | conda-forge/staged-recipes,dschreij/staged-recipes,goanpeca/staged-recipes,SylvainCorlay/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,Juanlu001/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,patricksnape/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,jochym/staged-recipes,asmeurer/staged-recipes,asmeurer/staged-recipes,chrisburr/staged-recipes,birdsarah/staged-recipes,birdsarah/staged-recipes,igortg/staged-recipes,Juanlu001/staged-recipes,stuertz/staged-recipes,chrisburr/staged-recipes,stuertz/staged-recipes,dschreij/staged-recipes,petrushy/staged-recipes,SylvainCorlay/staged-recipes,scopatz/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes |
968c1ed37c682fd76f264225dce55d9bb47153cc | keps/sig-instrumentation/1933-secret-logging-static-analysis/kep.yaml | keps/sig-instrumentation/1933-secret-logging-static-analysis/kep.yaml | title: Defend against accidental credential logging via static analysis interation into Prow.
kep-number: "1933"
authors:
- "@PurelyApplied"
owning-sig: sig-instrumentation
participating-sigs:
- sig-instrumentation
- sig-testing
reviewers:
- TBD
approvers:
- TBD
creation-date: "2020-08-12"
last-updated: v1.19
status: provisional
see-also:
- /keps/sig-instrumentation/1753-logs-sanitization
- /keps/sig-instrumentation/1602-structured-logging
| title: Defend against accidental credential logging via static analysis interation into Prow.
kep-number: "1933"
authors:
- "@PurelyApplied"
owning-sig: sig-instrumentation
participating-sigs:
- sig-instrumentation
- sig-testing
reviewers:
- TBD
approvers:
- TBD
creation-date: "2020-08-12"
last-updated: v1.19
status: implementable
see-also:
- /keps/sig-instrumentation/1753-logs-sanitization
- /keps/sig-instrumentation/1602-structured-logging
| Change status to implementable from provisional. | Change status to implementable from provisional.
| YAML | apache-2.0 | kubernetes/enhancements,kubernetes/enhancements,kubernetes/enhancements |
7bb8e4f589ad5e9e1fd7b12f424ca623c7d169eb | other/ansible/installation/roles/PostInstallationTasks/tasks/main.yml | other/ansible/installation/roles/PostInstallationTasks/tasks/main.yml | ---
- name: install PM2 npm module
npm: name=pm2 global=yes
- name: install cordova npm module
npm: name=cordova global=yes
- name: copy the default couchdb configurations
copy: src=local.ini dest=/usr/local/etc/couchdb/local.ini owner=root group=root mode=0777
- name: restart couchdb
service: name=couchdb state=restarted
- name: perform the couchdb admin related tasks
shell: /etc/ContentDiscovery/couchdb_tasks.sh
- name: restart couchdb
service: name=couchdb state=restarted
| ---
- name: install PM2 npm module
npm: name=pm2 global=yes
- name: copy the default couchdb configurations
copy: src=local.ini dest=/usr/local/etc/couchdb/local.ini owner=root group=root mode=0777
- name: restart couchdb
service: name=couchdb state=restarted
- name: perform the couchdb admin related tasks
shell: /etc/ContentDiscovery/couchdb_tasks.sh
- name: restart couchdb
service: name=couchdb state=restarted
| Revert "[Rav/Mah] installing cordova npm with ansible" | Revert "[Rav/Mah] installing cordova npm with ansible"
This reverts commit 544bf7f9bb87fe5ead9e2edfe2e17f8bb4ef2aa8.
| YAML | agpl-3.0 | media-centre/makenews,media-centre/makenews,media-centre/makenews,media-centre/makenews |
efbc86b4742527589223b73199f5b7d9825d9d91 | pkg/http/pubspec.yaml | pkg/http/pubspec.yaml | name: http
version: 0.9.2+2
author: "Dart Team <misc@dartlang.org>"
homepage: https://pub.dartlang.org/packages/http
description: A composable, Future-based API for making HTTP requests.
dependencies:
path: ">=0.9.0 <2.0.0"
stack_trace: ">=0.9.1 <0.10.0"
dev_dependencies:
unittest: ">=0.9.0 <0.10.0"
environment:
sdk: ">=0.8.10+6 <2.0.0"
| name: http
version: 0.9.2+3
author: "Dart Team <misc@dartlang.org>"
homepage: https://pub.dartlang.org/packages/http
description: A composable, Future-based API for making HTTP requests.
dependencies:
path: ">=0.9.0 <2.0.0"
stack_trace: ">=0.9.1 <0.10.0"
dev_dependencies:
unittest: ">=0.9.0 <0.10.0"
environment:
sdk: ">=1.1.0 <2.0.0"
| Update the SDK constraint on pkg/http. | Update the SDK constraint on pkg/http.
It's using the [encoding] parameter to [Uri.encodeQueryomponent],
which was only released in Dart 1.1.
R=rnystrom@google.com
BUG=16131
Review URL: https://codereview.chromium.org//140683007
git-svn-id: c93d8a2297af3b929165606efe145742a534bc71@31897 260f80e4-7a28-3924-810f-c04153c831b5
| YAML | bsd-3-clause | dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-lang/sdk,dartino/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk |
4f94f19940c23835bff26911d89f5d50e746d691 | codecov.yml | codecov.yml | codecov:
require_ci_to_pass: yes
coverage:
status:
project:
default: false
server:
target: auto
threshold: 0.5%
flags:
- server
ui-tests:
target: auto
threshold: 0.5%
flags:
- ui-tests
comment:
layout: "diff, flags"
require_changes: true
flags:
server:
paths:
- ".*\\.py"
carryforward: true
ui-tests:
paths:
- ".*\\.js"
carryforward: true | codecov:
require_ci_to_pass: yes
coverage:
status:
project:
default: false
server:
target: auto
threshold: 0.5%
flags:
- server
comment:
layout: "diff, flags"
require_changes: true
flags:
server:
paths:
- ".*\\.py"
carryforward: true
ui-tests:
paths:
- ".*\\.js"
carryforward: true
| Remove Github status for UI coverage | ci: Remove Github status for UI coverage | YAML | mit | mhbu50/frappe,almeidapaulopt/frappe,frappe/frappe,almeidapaulopt/frappe,mhbu50/frappe,yashodhank/frappe,yashodhank/frappe,StrellaGroup/frappe,yashodhank/frappe,mhbu50/frappe,mhbu50/frappe,StrellaGroup/frappe,yashodhank/frappe,frappe/frappe,almeidapaulopt/frappe,StrellaGroup/frappe,almeidapaulopt/frappe,frappe/frappe |
81ae08248b699c687e6d9318b6ec9b6aef0cdb56 | .github/workflows/prerelease.yml | .github/workflows/prerelease.yml | # This is a basic workflow to help you get started with Actions
name: Prerelease
# Controls when the workflow will run
# Allows you to run this workflow manually from the Actions tab
on: [workflow_dispatch]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: windows-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# - name: Git version tag
# id: version
# run: echo "::set-output name=version::`echo 0.1.$(git rev-list --count HEAD)`"
- name: Setup .NET Core 5.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore tool
working-directory: ./src
run: dotnet tool restore
- name: Electronize build
working-directory: ./src
run: |
cd HstWbInstaller.Imager.GuiApp
dotnet electronize build /target win
| # This is a basic workflow to help you get started with Actions
name: Prerelease
# Controls when the workflow will run
# Allows you to run this workflow manually from the Actions tab
on: [workflow_dispatch]
# default environment variables
env:
TARGET: 'win'
ARTIFACT: './src/HstWbInstaller.Imager.GuiApp/bin/Desktop/HstWbInstaller.Imager.GuiApp Setup 1.0.0.exe'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Set windows release
if: ${{ matrix.os == "windows-latest" }}
run: |
echo "::set-env name=TARGET::win"
echo "::set-env name=ARTIFACT::./src/HstWbInstaller.Imager.GuiApp/bin/Desktop/HstWbInstaller.Imager.GuiApp Setup 1.0.0.exe"
- name: Set build
id: build
run: echo "::set-output name=version::`echo 0.1.$(git rev-list --count HEAD)`"
- name: Setup .NET Core 5.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore tool
working-directory: ./src
run: dotnet tool restore
- name: Electronize build
working-directory: ./src
run: |
cd HstWbInstaller.Imager.GuiApp
dotnet electronize build /target ${{ env.TARGET }} | Add matrix and set release and build env vars | Add matrix and set release and build env vars
| YAML | mit | henrikstengaard/hstwb-installer,henrikstengaard/hstwb-installer,henrikstengaard/hstwb-installer,henrikstengaard/hstwb-installer,henrikstengaard/hstwb-installer,henrikstengaard/hstwb-installer |
4e62e3e9959700590b7083db090f94de65bc5802 | .github/workflows/unit_tests.yml | .github/workflows/unit_tests.yml | name: Unit Test dev and main branch
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, pypy3, '3.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup pip cache
uses: actions/cache@v2
timeout-minutes: 5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-${{ matrix.python-version }}-pip-
- name: Install deps
run: |
pip install -r test-requirements.txt &&
pip install -e .
timeout-minutes: 3
- name: Run python unit/integration tests
run: python -m unittest discover -s ./freenom_dns_updater/test
timeout-minutes: 20
| name: Unit Test dev and main branch
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, pypy3, '3.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup pip cache
uses: actions/cache@v2
timeout-minutes: 5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-${{ matrix.python-version }}-pip-
- name: Install deps
run: |
pip install -r test-requirements.txt &&
pip install -e .
timeout-minutes: 3
- name: Run python unit tests
run: python -m unittest discover -s ./freenom_dns_updater/test
timeout-minutes: 20
| Fix github actions' job name | Fix github actions' job name
| YAML | mit | maxisoft/Freenom-dns-updater,maxisoft/Freenom-dns-updater |
1b209e7d52e8405915c948d00246b63689c57842 | navigation.yml | navigation.yml | - "company/all"
- "company/2014"
- "network/2014"
- "opex/2014"
- "reach/2014"
- "research-projects-training/2014"
- "company/2013"
- "commercial"
- "membership"
- "tech"
- "training"
| - "company/all"
- "company/2014"
- "network/2014"
- "opex/2014"
- "reach/2014"
- "research-projects-training/2014"
- "company/2013"
- "tech"
| Remove old dashboards from nav list | Remove old dashboards from nav list
| YAML | mit | theodi/dashboards,theodi/dashboards,theodi/dashboards |
7a7acd61d7751556f6ee7daad21fe41e81e62b92 | .travis.yml | .travis.yml | language: smalltalk
os:
- linux
smalltalk:
- Pharo32-6.1
- Pharo64-6.1
- Pharo32-7.0
- Pharo64-7.0
- Pharo32-stable
- Pharo64-stable
- Pharo32-alpha
- Pharo64-alpha
matrix:
allow_failures:
- smalltalk: Pharo32-alpha
- smalltalk: Pharo64-alpha
fash_finish: true
| language: smalltalk
os:
- linux
smalltalk:
- Pharo32-6.1
- Pharo64-6.1
- Pharo32-7.0
- Pharo64-7.0
- Pharo64-stable
- Pharo64-alpha
matrix:
allow_failures:
- smalltalk: Pharo64-alpha
fash_finish: true
| Delete 32 versions of Pharo starting at version 8 | Delete 32 versions of Pharo starting at version 8 | YAML | mit | iot-uca/IoT,iot-uca/back-end,iot-uca/back-end,fortizpenaloza/IoT |
2f294c6f32835af02dc58bf61cf7ca7d70f30bbe | packages/db/dbcleaner.yaml | packages/db/dbcleaner.yaml | homepage: ''
changelog-type: ''
hash: 18baee50d8837710cae7dbb4e83ff21ffc812ee5287b2e94b10bb800bbb8ee93
test-bench-deps:
base: -any
hspec: -any
text: -any
postgresql-simple: -any
maintainer: hackage@stackbuilders.com
synopsis: Clean database tables automatically around hspec tests
changelog: ''
basic-deps:
base: ! '>=4.4 && <4.9'
text: -any
postgresql-simple: -any
all-versions:
- '0.1.0'
- '0.1.1'
author: Stack Builders
latest: '0.1.1'
description-type: haddock
description: ! 'A simple database cleaner library for testing that provides
different cleanup strategies.'
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 71983f40c1ada034d2ec504a6229218c64a8ec9a251f35625ca34ef4ee3d1cdf
test-bench-deps:
base: -any
hspec: -any
text: -any
postgresql-simple: -any
maintainer: hackage@stackbuilders.com
synopsis: Clean database tables automatically around hspec tests
changelog: ''
basic-deps:
base: ! '>=4.4 && <4.10'
text: -any
postgresql-simple: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
author: Stack Builders
latest: '0.1.2'
description-type: haddock
description: ! 'A simple database cleaner library for testing that provides
different cleanup strategies.'
license-name: MIT
| Update from Hackage at 2017-07-28T14:10:31Z | Update from Hackage at 2017-07-28T14:10:31Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
617c74b92f6ab88a9d75a345740be1ca94c151dc | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- "$HOME/.gradle/caches/"
- "$HOME/.gradle/wrapper/"
after_success:
- "./gradlew bintrayUpload"
deploy:
provider: releases
api_key:
secure: "${GITHUB_API_KEY_SECURE}"
file: build/libs
on:
repo: VcSaJen/BBCodeForSponge
tags: true
| language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- "$HOME/.gradle/caches/"
- "$HOME/.gradle/wrapper/"
after_success:
- "./gradlew bintrayUpload"
deploy:
provider: releases
api_key:
secure: "${GITHUB_API_KEY_SECURE}"
file_glob: true
file: build/libs/*.jar
on:
repo: VcSaJen/BBCodeForSponge
tags: true
| Fix "is a folder" error for GitHub releases | Fix "is a folder" error for GitHub releases
| YAML | mit | VcSaJen/BBCodeForSponge |
654088a4b376224a4f96f799b685cdf77e5e1895 | packages/in/indextype.yaml | packages/in/indextype.yaml | homepage: ''
changelog-type: ''
hash: 416ec9ba770b218da2a936c38cbf060f1d9c24712e71332b822252d7b959c0ef
test-bench-deps:
base: ==4.9.*
hspec: ==2.4.*
maintainer: clintonmead@gmail.com
synopsis: A series of type families and constraints for "indexable" types.
changelog: ''
basic-deps:
base: ==4.9.*
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.2.0'
- '0.2.3.0'
author: Clinton Mead
latest: '0.2.3.0'
description-type: haddock
description: ! 'This package deals with types that can roughly be "indexed" at compile
time by an integer.
For example, tuples and be indexed by their nth elements, and functions by their
nth argument.
A number of type functions allow one to extract these subtypes, i.e. the type of
the 2nd element of a given tuple.
Furthermore, constraints are defined which allow one to easily constrain types to
these index types,
e.g. a constraint that says "''t'' is a 3 tuple". ''Control.IndexT'' has more detail.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: da63c61f631ba3c9eca530240ff459e6f07f1bdbf04973ed49296570c72e0bbd
test-bench-deps:
base: ==4.9.*
hspec: ==2.4.*
maintainer: clintonmead@gmail.com
synopsis: A series of type families and constraints for "indexable" types.
changelog: ''
basic-deps:
base: ==4.9.*
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.2.0'
- '0.2.3.0'
- '0.3.0.0'
author: Clinton Mead
latest: '0.3.0.0'
description-type: haddock
description: ! 'This package deals with types that can roughly be "indexed" at compile
time by an integer.
For example, tuples and be indexed by their nth elements, and functions by their
nth argument.
A number of type functions allow one to extract these subtypes, i.e. the type of
the 2nd element of a given tuple.
Furthermore, constraints are defined which allow one to easily constrain types to
these index types,
e.g. a constraint that says "''t'' is a 3 tuple". ''Control.IndexT'' has more detail.'
license-name: BSD3
| Update from Hackage at 2017-10-16T05:16:31Z | Update from Hackage at 2017-10-16T05:16:31Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
5abfa757a8d31074f77384417407a4e6ec9788b3 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
script: mvn verify -PintegrationTesting
language: java
jdk:
- openjdk6
notifications:
email:
recipients: oak-dev@jackrabbit.apache.org
on_success: change
on_failure: change
| # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
script: mvn verify -Ppedantic,integrationTesting
language: java
jdk:
- openjdk6
notifications:
email:
recipients: oak-dev@jackrabbit.apache.org
on_success: change
on_failure: change
| Make Travis check our license headers | Make Travis check our license headers
git-svn-id: 67138be12999c61558c3dd34328380c8e4523e73@1481157 13f79535-47bb-0310-9956-ffa450edef68
| YAML | apache-2.0 | code-distillery/jackrabbit-oak,ieb/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,francescomari/jackrabbit-oak,francescomari/jackrabbit-oak,yesil/jackrabbit-oak,afilimonov/jackrabbit-oak,anchela/jackrabbit-oak,tripodsan/jackrabbit-oak,yesil/jackrabbit-oak,stillalex/jackrabbit-oak,francescomari/jackrabbit-oak,joansmith/jackrabbit-oak,chetanmeh/jackrabbit-oak,mduerig/jackrabbit-oak,code-distillery/jackrabbit-oak,bdelacretaz/jackrabbit-oak,kwin/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,bdelacretaz/jackrabbit-oak,leftouterjoin/jackrabbit-oak,joansmith/jackrabbit-oak,joansmith/jackrabbit-oak,afilimonov/jackrabbit-oak,alexparvulescu/jackrabbit-oak,rombert/jackrabbit-oak,meggermo/jackrabbit-oak,Kast0rTr0y/jackrabbit-oak,bdelacretaz/jackrabbit-oak,AndreasAbdi/jackrabbit-oak,stillalex/jackrabbit-oak,Kast0rTr0y/jackrabbit-oak,davidegiannella/jackrabbit-oak,davidegiannella/jackrabbit-oak,code-distillery/jackrabbit-oak,chetanmeh/jackrabbit-oak,leftouterjoin/jackrabbit-oak,AndreasAbdi/jackrabbit-oak,catholicon/jackrabbit-oak,joansmith/jackrabbit-oak,mduerig/jackrabbit-oak,chetanmeh/jackrabbit-oak,yesil/jackrabbit-oak,kwin/jackrabbit-oak,tripodsan/jackrabbit-oak,alexparvulescu/jackrabbit-oak,anchela/jackrabbit-oak,meggermo/jackrabbit-oak,davidegiannella/jackrabbit-oak,kwin/jackrabbit-oak,joansmith/jackrabbit-oak,ieb/jackrabbit-oak,leftouterjoin/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,catholicon/jackrabbit-oak,alexkli/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,Kast0rTr0y/jackrabbit-oak,meggermo/jackrabbit-oak,mduerig/jackrabbit-oak,tripodsan/jackrabbit-oak,rombert/jackrabbit-oak,mduerig/jackrabbit-oak,meggermo/jackrabbit-oak,alexkli/jackrabbit-oak,alexparvulescu/jackrabbit-oak,stillalex/jackrabbit-oak,code-distillery/jackrabbit-oak,afilimonov/jackrabbit-oak,alexparvulescu/jackrabbit-oak,alexkli/jackrabbit-oak,francescomari/jackrabbit-oak,anchela/jackrabbit-oak,alexparvulescu/jackrabbit-oak,davidegiannella/jackrabbit-oak,AndreasAbdi/jackrabbit-oak,mduerig/jackrabbit-oak,rombert/jackrabbit-oak,catholicon/jackrabbit-oak,stillalex/jackrabbit-oak,catholicon/jackrabbit-oak,catholicon/jackrabbit-oak,chetanmeh/jackrabbit-oak,alexkli/jackrabbit-oak,meggermo/jackrabbit-oak,chetanmeh/jackrabbit-oak,leftouterjoin/jackrabbit-oak,francescomari/jackrabbit-oak,ieb/jackrabbit-oak,yesil/jackrabbit-oak,kwin/jackrabbit-oak,kwin/jackrabbit-oak,code-distillery/jackrabbit-oak,afilimonov/jackrabbit-oak,anchela/jackrabbit-oak,anchela/jackrabbit-oak,Kast0rTr0y/jackrabbit-oak,alexkli/jackrabbit-oak,davidegiannella/jackrabbit-oak,AndreasAbdi/jackrabbit-oak,tripodsan/jackrabbit-oak,rombert/jackrabbit-oak,ieb/jackrabbit-oak,stillalex/jackrabbit-oak,bdelacretaz/jackrabbit-oak |
d8b0a86456e8938468c857af9e9c6c38fd9da798 | .travis.yml | .travis.yml | language: php
sudo: false
## Cache composer bits
cache:
directories:
- $HOME/.composer/cache
## PHP versions we test against
php:
- 7.0
- hhvm
## Build matrix for lowest and highest possible targets
matrix:
include:
- php: 7.0
env: dependencies=lowest
- php: hhvm
env: dependencies=lowest
- php: 7.0
env: dependencies=highest
- php: hhvm
env: dependencies=highest
## Update composer and run the appropriate composer command
before_script:
- composer self-update -q
- if [ -z "$dependencies" ]; then composer install; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update -n; fi;
- composer show -i
## Run the actual test
script: make travis
## Send coverage report to scrutinizer
after_script: make travis-coverage
| language: php
sudo: false
## Cache composer bits
cache:
directories:
- $HOME/.composer/cache
## PHP versions we test against
php:
- 7.0
- hhvm
## Build matrix for lowest and highest possible targets
matrix:
include:
- php: 7.0
env: dependencies=lowest
- php: hhvm
env: dependencies=lowest
- php: 7.0
env: dependencies=highest
- php: hhvm
env: dependencies=highest
allow_failures:
- php: hhvm
## Update composer and run the appropriate composer command
before_script:
- composer self-update -q
- if [ -z "$dependencies" ]; then composer install; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update -n; fi;
- composer show -i
## Run the actual test
script: make travis
## Send coverage report to scrutinizer
after_script: make travis-coverage
| Allow HHVM to fail until they are PHP 7 compatible | Allow HHVM to fail until they are PHP 7 compatible
| YAML | mit | WyriHaximus/PhuninNode |
84d1c7f7a8e6148416bf1c06f35a5d2da026de89 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
sudo: false
services:
- mysql
env:
global:
- ARTISAN_DB_HOST=127.0.0.1
- ARTISAN_DB_PORT=3306
- ARTISAN_DB_USER=travis
- ARTISAN_DB_PASS=""
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_default;'
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_foo;'
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_bar;'
install:
- composer install --no-interaction --prefer-dist --no-suggest
script: vendor/bin/phpunit
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: php
php:
- 7.0
- 7.1
sudo: false
services:
- mysql
env:
global:
- ARTISAN_DB_HOST=127.0.0.1
- ARTISAN_DB_PORT=3306
- ARTISAN_DB_USER=travis
- ARTISAN_DB_PASS=""
matrix:
- PHPUNIT_VERSION="^5.7"
- PHPUNIT_VERSION="^6.0"
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_default;'
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_foo;'
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_bar;'
install:
- composer install --no-interaction --prefer-dist --no-suggest
- composer update phpunit/phpunit:${PHPUNIT_VERSION} --dev --update-with-dependencies --no-interaction --prefer-dist --no-suggest
script: vendor/bin/phpunit
after_success:
- bash <(curl -s https://codecov.io/bash)
| Test PHPUnit 5.7+ and 6.0+ | Test PHPUnit 5.7+ and 6.0+
| YAML | mit | thecrypticace/suitey |
ee9fcd81b3007d3d1847643b38680ff5b10b69ef | .travis.yml | .travis.yml | osx_image: xcode10.1
language: objective-c
cache: cocoapods
before_install:
- brew install cmake # for compiling BLS
- gem install fastlane
- set -o pipefail
- DW_DIR=`pwd` && pushd .. && git clone https://github.com/dashevo/dashsync-iOS.git DashSync && pushd DashSync && git checkout `cat "$DW_DIR/DashSyncCurrentCommit"` && popd && popd
- travis_wait 55 pod install --repo-update
install: true # disable automatic `pod install`
script:
- fastlane test
| osx_image: xcode10.2
language: objective-c
cache: cocoapods
before_install:
- brew install cmake # for compiling BLS
- gem install fastlane
- set -o pipefail
- DW_DIR=`pwd` && pushd .. && git clone https://github.com/dashevo/dashsync-iOS.git DashSync && pushd DashSync && git checkout `cat "$DW_DIR/DashSyncCurrentCommit"` && popd && popd
- travis_wait 55 pod install --repo-update
install: true # disable automatic `pod install`
script:
- fastlane test
| Use xcode 10.2 on Travis | Use xcode 10.2 on Travis
| YAML | mit | QuantumExplorer/breadwallet,QuantumExplorer/breadwallet,QuantumExplorer/breadwallet,QuantumExplorer/breadwallet |
2f98c5c01490b0e7f1b75ae4d3d9451fac272e10 | .travis.yml | .travis.yml | language: clojure
lein: lein2
script: "lein2 test"
jdk:
- oraclejdk8
branches:
only:
- master
- development
# Handle git submodules manually
git:
submodules: false
# Replace the authenticated SSH URL with the public URL, then initialize submodules
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive | sudo: false
language: clojure
lein: lein2
script: "lein2 test"
jdk:
- oraclejdk8
branches:
only:
- master
- development
# Handle git submodules manually
git:
submodules: false
# Replace the authenticated SSH URL with the public URL, then initialize submodules
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive | Update TravisCI configuration to use container-based infrastructure | Update TravisCI configuration to use container-based infrastructure | YAML | apache-2.0 | bpoweski/http.async.client |
1325db4dca812fd3326021627300fae5a08c0ccd | .travis.yml | .travis.yml | language: android
jdk: oraclejdk8
android:
components:
- build-tools-27.0.3
- android-27
- extra-android-support
- extra-google-m2repository
- extra-android-m2repository
licenses:
- '.+'
before_script:
- echo yes | android update sdk --no-ui --all --filter platform-tools,tools
- echo yes | android update sdk --no-ui --all --filter build-tools-27.0.3
- echo yes | android update sdk --no-ui --all --filter android-27
script:
- ./gradlew clean test
| language: android
jdk: oraclejdk8
android:
components:
- build-tools-27.0.3
- android-27
- extra-android-support
- extra-google-m2repository
- extra-android-m2repository
- sys-img-armeabi-v7a-android-27
licenses:
- '.+'
before_script:
- echo yes | android update sdk --no-ui --all --filter platform-tools,tools
- echo yes | android update sdk --no-ui --all --filter build-tools-27.0.3
- echo yes | android update sdk --no-ui --all --filter android-27
- echo no | android create avd --force -n test -t android-27 --abi armeabi-v7a
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
- ./gradlew build connectedCheck
| Update Travis to support emulator and testing | Update Travis to support emulator and testing
| YAML | apache-2.0 | javiersantos/AppUpdater |
398f1ed87d35f1ec4a1c55aa77e9394d7c54f73e | .travis.yml | .travis.yml | sudo: false
language: android
jdk: oraclejdk8
before_install:
- chmod +x gradlew
android:
components:
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- sys-img-armeabi-v7a-android-16
before_script:
- echo no | android create avd --force -n test -t android-16 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- sleep 10
- adb shell input keyevent 82
addons:
artifacts: true | sudo: false
language: android
jdk: oraclejdk8
before_install:
- chmod +x gradlew
android:
components:
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-m2repository
- sys-img-armeabi-v7a-android-16
before_script:
- echo no | android create avd --force -n test -t android-16 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- sleep 10
- adb shell input keyevent 82 | Revert "Save build artifacts on Travis CI" | Revert "Save build artifacts on Travis CI"
This reverts commit ceb1f319a4f5ce73d946abd6426842b7e3f3af2d.
| YAML | apache-2.0 | adamski8/MyWeather |
6bf349e2c7fa4625dbbd3406756f5902515b3d16 | .travis.yml | .travis.yml | notifications:
email: false
rvm:
- 2.1.2
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
language: ruby
cache: bundler
before_script:
- cp config/solr.yml.example config/solr.yml
script: bundle exec rake
after_success:
coveralls
| notifications:
email: false
rvm:
- 2.2.0
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
sudo: false
language: ruby
cache: bundler
before_script:
- cp config/solr.yml.example config/solr.yml
script: bundle exec rake
after_success:
coveralls
| Update Ruby version to 2.2.0 to use latest version of rubocop-rspec | Update Ruby version to 2.2.0 to use latest version of rubocop-rspec
| YAML | apache-2.0 | sul-dlss/sw-indexer-service,sul-dlss/sw-indexer-service,sul-dlss/sw-indexer-service |
4236cbe7f42fad29d7527be413507cb48c21de45 | packages/ge/gelatin.yaml | packages/ge/gelatin.yaml | homepage: ''
changelog-type: ''
hash: d5892f01b4ced70005e663cea65d042633a56b1242bc67ccf5cc7c66c3f3fe29
test-bench-deps: {}
maintainer: efsubenovex@gmail.com
synopsis: An experimental real time renderer.
changelog: ''
basic-deps:
JuicyPixels: -any
bytestring: -any
base: ! '>=4.7 && <5'
time: ! '>=1.4'
async: ! '>=2.0'
containers: ! '>=0.5'
gelatin: -any
lens: -any
FontyFruity: ! '>=0.5'
linear: ! '>=1.18'
GLFW-b: ! '>=1.4.7.2'
file-embed: ! '>=0.0.8.2'
gl: ! '>=0.7'
vector: ! '>=0.10'
directory: ! '>=1.2'
all-versions:
- '0.0.0.0'
- '0.0.0.2'
- '0.0.0.3'
author: Schell Scivally
latest: '0.0.0.3'
description-type: haddock
description: ! 'gelatin is a very experimental real time rendering
engine for 2d graphics. It is backed by opengl 3.3.'
license-name: MIT
| homepage: https://github.com/schell/gelatin
changelog-type: ''
hash: 8605a20120555f89822c577ef016f29fc88176a11b103b299f6c610d567b0f70
test-bench-deps: {}
maintainer: schell@takt.com
synopsis: A graphics description language.
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
base: ! '>=4.8 && <4.11'
containers: ! '>=0.5 && <0.6'
gelatin: -any
lens: ! '>=4.14 && <4.16'
linear: ==1.20.*
mtl: ==2.2.*
transformers: ! '>=0.4 && <0.6'
vector: ==0.12.*
all-versions:
- '0.0.0.0'
- '0.0.0.2'
- '0.0.0.3'
- '0.1.0.0'
author: Schell Scivally
latest: '0.1.0.0'
description-type: haddock
description: An EDSL for describing pictures and scenes.
license-name: MIT
| Update from Hackage at 2017-10-27T17:37:01Z | Update from Hackage at 2017-10-27T17:37:01Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7efd3dc5eb6d4c348d1aacc9aa8cbf94807c23c1 | .travis.yml | .travis.yml | sudo: required
language: bash
services:
- docker
install:
- docker pull swipl:stable
script:
- docker run -it --name test --entrypoint=/bin/bash library/swipl -c "logtalk_user_setup && cd ~/logtalk/tests/logtalk && logtalk_tester"
| sudo: required
language: bash
services:
- docker
install:
- docker pull swipl:stable
- sudo LogtalkDotOrg/logtalk3/scripts/install.sh
script:
- docker run -it --name test --entrypoint=/bin/bash library/swipl -c "logtalk_user_setup && cd ~/logtalk/tests/logtalk && logtalk_tester"
| Fix Logtalk install when running Travis CI builds | Fix Logtalk install when running Travis CI builds
| YAML | apache-2.0 | LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3 |
b354a843ba5aa82d1dbd57dbacbadae630070b2c | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
after_success: npm run coveralls
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
after_success: npm run coveralls
| Update Travis to test node 4 and 5 | Update Travis to test node 4 and 5 | YAML | mit | jstransformers/jstransformer |
a599b849c2b7bb4a24c5393e77d8412833d2c00c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx
| Use rbx instead of rbx-19mode | Use rbx instead of rbx-19mode
rbx-19mode is not supported anymore.
| YAML | isc | blom/fakecmd |
34a16d6e0a425495bc124ebe7c734bd325dcc74e | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
| rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
| Remove 1.9.2 from testing add newer ruby versions | Remove 1.9.2 from testing add newer ruby versions
| YAML | mit | JeremyGeros/Conjugate |
dd62d04fb49ae9cbe312e799d308b2aa73ce6686 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
# - clang
# Install dependencies
# install: make get-deps
install: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get -qq update && sudo apt-get -qq install g++-4.8 && sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 && export CXX=g++ && export CC=g++ && g++ --version && gcc --version && cd libjl777 && make onetime
# Build and test
script: echo "Start make SuperNET" && make SuperNET && echo "Start make btcd" && make btcd | language: cpp
compiler:
- gcc
# - clang
# Install dependencies
# install: make get-deps
install: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get -qq update && sudo apt-get -qq install g++-4.8 && sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 && export CXX=g++ && export CC=g++ && g++ --version && gcc --version && sudo ln -s /usr/bin/g++-4.8 /usr/bin/gcc && gcc --version && cd libjl777 && make onetime
# Build and test
script: echo "Start make SuperNET" && make SuperNET && echo "Start make btcd" && make btcd | Fix gcc link when compiling in Travis | Fix gcc link when compiling in Travis
| YAML | mit | mezzovide/btcd,ychaim/dark-test-v2,Bitcoinsulting/multigateway-v2,mezzovide/btcd,Bitcoinsulting/dark-test-v2,Bitcoinsulting/multigateway-v2,Bitcoinsulting/dark-test-v2,Bitcoinsulting/multigateway-v2,Bitcoinsulting/dark-test-v2,mezzovide/btcd,mezzovide/btcd,Bitcoinsulting/dark-test-v2,ychaim/dark-test-v2,mezzovide/btcd,mezzovide/btcd,Bitcoinsulting/dark-test-v2,mezzovide/btcd,Bitcoinsulting/multigateway-v2,Bitcoinsulting/dark-test-v2,Bitcoinsulting/dark-test-v2,Bitcoinsulting/multigateway-v2,Bitcoinsulting/multigateway-v2,ychaim/dark-test-v2,ychaim/dark-test-v2,ychaim/dark-test-v2,mezzovide/btcd,ychaim/dark-test-v2,Bitcoinsulting/multigateway-v2,mezzovide/btcd,Bitcoinsulting/multigateway-v2,ychaim/dark-test-v2,ychaim/dark-test-v2,Bitcoinsulting/multigateway-v2,Bitcoinsulting/dark-test-v2 |
8d3d7e70cc08bead0d53e71d673b0de88dc45a68 | .travis.yml | .travis.yml | sudo: false
language: cpp
compiler:
- clang
- gcc
addons:
apt:
packages:
- libgtest-dev
env:
- CFLAGS="-Werror" CXXFLAGS="-Werror"
before_install:
- mkdir gtest-build
- mkdir build/
- pushd gtest-build
- cmake /usr/src/gtest
- make
- popd
before_script:
- cd build/
- CMAKE_LIBRARY_PATH=../gtest-build/ cmake ../tests
script:
- make
- ./run_tests
| sudo: false
language: cpp
compiler:
- clang
- gcc
addons:
apt:
packages:
- libgtest-dev
- libc6-dev-i386
- g++-multilib
- libstdc++6-4.6-dev:i386
env:
- CFLAGS="-Werror" CXXFLAGS="-Werror"
before_install:
- mkdir gtest-build
- mkdir build/
- pushd gtest-build
- cmake /usr/src/gtest
- make
- popd
before_script:
- cd build/
- CMAKE_LIBRARY_PATH=../gtest-build/ cmake ../tests
script:
- make
- ./run_tests
| Add 32 bit libc to Travis environment | Add 32 bit libc to Travis environment
| YAML | mit | UAVCAN/libcanard,UAVCAN/libcanard,UAVCAN/libcanard |
8a3d45b3223c1f3ea25543f108a0460f44b28b43 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
before_install:
- sudo ln -s /usr/lib/`uname -i`-linux-gnu/libz.so ~/virtualenv/python2.7/lib/
install:
- pip install --quiet git+https://github.com/python-imaging/Pillow.git
- sudo apt-get --quiet=2 install perceptualdiff
- sudo apt-get --quiet=2 install ffmpeg
script:
- ./test/test.py
- ./test/test_coordinates.py
- ./test/test_projections.py
- ./test/test_gpx.py
- ./test/test_projection_scale.py
- ./test/test_random.py
- ./test/test_animation.py
- if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then ./test/test_gradients.py; fi
| language: python
python:
- "2.7"
- "3.2"
before_install:
- sudo ln -s /usr/lib/`uname -i`-linux-gnu/libz.so ~/virtualenv/python2.7/lib/
install:
- pip install --quiet git+https://github.com/python-imaging/Pillow.git
- sudo apt-get --quiet=2 install perceptualdiff
script:
- ./test/test.py
- ./test/test_coordinates.py
- ./test/test_projections.py
- ./test/test_gpx.py
- ./test/test_projection_scale.py
- ./test/test_random.py
- if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then ./test/test_gradients.py; fi
| Revert "add animation test to Travis" | Revert "add animation test to Travis"
This reverts commit 3e64db9fa2b4194c941552b67d655ae93a48e8a6.
| YAML | agpl-3.0 | aeszter/heatmap,hugovk/heatmap,aeszter/heatmap,hugovk/heatmap,sethoscope/heatmap,sethoscope/heatmap |
74d93ff92583079c7dd6a2c49e207104ff76cd6c | .travis.yml | .travis.yml | language: erlang
otp_release:
- 19.2
install:
- make
- ./rebar3 update
before_script:
- epmd -daemon
script:
- make eunit
- make xref
- make ct
- make peer-to-peer-ad-counter-simulation
- make client-server-ad-counter-simulation
- make peer-to-peer-game-tournament-simulation
- make client-server-game-tournament-simulation
notifications:
email: christopher.meiklejohn@gmail.com
slack: lasp-lang:hiPRNnbUa3zdGrrXZfGRAF7D
irc: "irc.freenode.org#lasp-lang"
sudo: required
env:
global:
- OMIT_HIGH_ULIMIT=true
| language: erlang
otp_release:
- 19.2
install:
- make
- ./rebar3 update
before_script:
- epmd -daemon
script:
- make eunit
- make xref
- make ct
- make peer-to-peer-ad-counter-simulation
- make client-server-ad-counter-simulation
- make peer-to-peer-game-tournament-simulation
- make client-server-game-tournament-simulation
notifications:
email: christopher.meiklejohn@gmail.com
slack: lasp-lang:hiPRNnbUa3zdGrrXZfGRAF7D
irc: "irc.freenode.org#lasp-lang"
sudo: false
env:
global:
- OMIT_HIGH_ULIMIT=true
| Mark sudo as no longer required. | Mark sudo as no longer required.
| YAML | apache-2.0 | ergl/lasp,lasp-lang/lasp,ergl/lasp,lasp-lang/lasp,lasp-lang/lasp,ergl/lasp,lasp-lang/lasp,ergl/lasp |
93630178dd60bf3949adc642e780aa837a2add6c | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
language: java
sudo: false
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk11
- openjdk8
- openjdk10
- openjdk11
script:
- mvn
after_success:
- mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura
| # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
language: java
sudo: false
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk11
- openjdk8
- openjdk10
- openjdk11
- openjdk12
- openjdk-ea
script:
- mvn
after_success:
- mvn clean cobertura:cobertura coveralls:report -Ptravis-cobertura
| Add OpenJDK 12 to Travis builds. Also 13-EA. | Add OpenJDK 12 to Travis builds. Also 13-EA. | YAML | apache-2.0 | apache/commons-codec,apache/commons-codec,apache/commons-codec |
86c3201d0cfdb301ca787f70df80f2b0b63b8d07 | .travis.yml | .travis.yml | language: objective-c
xcode_workspace: OneTimePassword.xcworkspace
xcode_scheme:
- OneTimePassword
- OneTimePasswordLegacy
osx_image: xcode6.4
xcode_sdk:
- iphonesimulator8.4
# Check out nested dependencies
before_install: git submodule update --init --recursive
# A custom test script is required because xctool cannot access the iOS keychain
# https://github.com/facebook/xctool/issues/269
script: xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK build test | xcpretty -c
| language: objective-c
xcode_workspace: OneTimePassword.xcworkspace
xcode_scheme:
- OneTimePassword
- OneTimePasswordLegacy
osx_image: xcode7
xcode_sdk:
- iphonesimulator9.0
# Check out nested dependencies
before_install: git submodule update --init --recursive
# A custom test script is required because xctool cannot access the iOS keychain
# https://github.com/facebook/xctool/issues/269
script: xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK build test | xcpretty -c
| Update Travis configuration to build with Xcode 7 for iOS 9.0 | Update Travis configuration to build with Xcode 7 for iOS 9.0
| YAML | mit | mattrubin/onetimepassword,mattrubin/onetimepassword |
91ee07eacc199d4c4ab5a648e037d6b215d2e63c | .travis.yml | .travis.yml | sudo: false
language: c
os: linux
install:
- git clone https://github.com/nim-lang/nim
- cd nim
- ./bootstrap.sh
- cd ..
before_script:
- set -e
- export PATH=$(pwd)/nim/bin:$(pwd):$PATH
script:
- nim c c2nim.nim
- nim c -r testsuite/tester.nim
| sudo: false
language: c
os: linux
install:
- git clone https://github.com/nim-lang/nim
- cd nim
- ./bootstrap.sh
- export PATH=$(pwd)/bin:$PATH
- nim e install_nimble.nims
- cd ..
before_script:
- set -e
- export PATH=$(pwd)/nim/bin:$(pwd):$PATH
- nimble update
- nimble install compiler
script:
- nim c c2nim.nim
- nim c -r testsuite/tester.nim
| Revert "no need for nimble with nim@devel" | Revert "no need for nimble with nim@devel"
This reverts commit c8e49093672c0df1842556a0b35d4842385d4a78.
| YAML | mit | nim-lang/c2nim,BigEpsilon/c2nim,BigEpsilon/c2nim,nim-lang/c2nim |
493767b9466d2e612f4a7b750836bed47925cbd2 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "4.1"
- "0.12"
- "0.10"
| language: node_js
sudo: false
node_js:
- "node"
- "0.12"
- "0.10"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- export CXX=g++-4.8
- $CXX --version
- npm install | Resolve issues with Travis toolchain | Resolve issues with Travis toolchain
| YAML | mit | zackehh/neek,iwhitfield/neek |
e4bdd5c652e8d1bb54417c0633784ef11e01c2c6 | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
- tip
| language: go
go:
- 1.8
- 1.9
- tip
| Fix Travis-Ci build fail: remove Go version before 1.8 | Fix Travis-Ci build fail: remove Go version before 1.8
After Go 1.8, we can call Server.Shutdown().
| YAML | mit | northbright/jwthelper |
45592938402741a1eaaa1eff5589dcdb6dfd40ab | .travis.yml | .travis.yml | rvm:
# MRI
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.2
# rbx
- rbx-2.4.1
# jruby
- jruby-19mode
bundler_args: --without development
| language: ruby
sudo: false
cache: bundler
rvm:
# MRI
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.2
# rbx
- rbx-2.4.1
# jruby
- jruby-19mode
bundler_args: --without development
| Speed up builds on Travis | Speed up builds on Travis
| YAML | mit | adparlor/koala,supriyantomaftuh/koala,lisa-lina/koala,Loke155/koala,mateusrevoredo/koala,christer155/koala,samnang/koala,hendricius/koala,sancopanco/koala,arsduo/koala,chrisortman/koala,sideci-sample/sideci-sample-koala,lucaskds/koala |
f6de6daf729bcef950d15b1399e1c5d53ee3bdb2 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
matrix:
allow_failures:
- php: 7.0
- php: hhvm
- php: nightly
install:
- composer install --prefer-source -n
script:
- vendor/bin/php-cs-fixer fix -v --dry-run .
- vendor/bin/phpcs --standard=PSR2 -p --extensions=php Gass/ Tests/
- vendor/bin/phpunit -c Tests/phpunit.xml.dist --coverage-clover clover.xml
after_script:
- php vendor/bin/coveralls -v
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
matrix:
allow_failures:
- php: 7.0
- php: hhvm
- php: nightly
sudo: false
install:
- composer install --prefer-source -n
script:
- vendor/bin/php-cs-fixer fix -v --dry-run .
- vendor/bin/phpcs --standard=PSR2 -p --extensions=php Gass/ Tests/
- vendor/bin/phpunit -c Tests/phpunit.xml.dist --coverage-clover clover.xml
after_script:
- php vendor/bin/coveralls -v
| Use Travis Docker containers rather than legacy infrastructure | Use Travis Docker containers rather than legacy infrastructure
| YAML | bsd-3-clause | chappy84/google-analytics-server-side |
d64c9a9c459cb79e919538a7321c2a20802ff005 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
sudo: false
virtualenv:
system_site_packages: true
addons:
apt:
packages:
- python-opencv
- python-nump
- python-pyside
- libtiff4-dev
- libjpeg8-dev
- zlib1g-dev
install:
- pip install -r requirements.txt
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- nosetests --with-coverage --cover-inclusive --cover-tests --cover-package=inselect
after_success:
- coveralls
| language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get update
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then
sudo apt-get install --fix-missing python-opencv python-numpy python-pyside libtiff4-dev libjpeg8-dev zlib1g-dev;
fi
- pip install -r requirements.txt
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- nosetests --with-coverage --cover-inclusive --cover-tests --cover-package=inselect
after_success:
- coveralls
| Disable container based Travis - python-pyside not yet whitelisted | Disable container based Travis - python-pyside not yet whitelisted
| YAML | bsd-3-clause | NaturalHistoryMuseum/inselect,NaturalHistoryMuseum/inselect |
2252effd622e65e4b247caae9ff4943efe5a1b52 | .travis.yml | .travis.yml | # .travis.yml
# Do not set the language to c++, this over rides our environment variable CXX
# below.
language: C++
sudo: false
git:
depth: 1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
os:
- linux
cache:
ccache: true
directories:
- node_modules
install:
- npm install
- pip install --user cpp-coveralls
before_script:
- export CXX="ccache g++-5"
script:
- mkdir build && cd build
- cmake -DB9_GCOV=ON ..
- make -j8 || echo "RETRYING BUILD!" && make -j1 VERBOSE=1 # On failure, retry with verbose output
- ctest --output-on-failure
after_script:
- coveralls --exclude third_party --gcov-options '\-lp'
| # .travis.yml
# Do not set the language to c++, this over rides our environment variable CXX
# below.
language: C++
sudo: false
git:
depth: 1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
os:
- linux
cache:
ccache: true
directories:
- node_modules
install:
- npm install
- pip install --user cpp-coveralls
before_script:
- export CXX="ccache g++-5"
script:
- mkdir build && cd build
- cmake -DB9_GCOV=ON ..
- make -j8 || echo "RETRYING BUILD!" && make -j1 VERBOSE=1 # On failure, retry with verbose output
- ctest --output-on-failure
after_script:
- coveralls --exclude third_party --gcov /usr/bin/gcov-5 --gcov-options '\-lp' --build-root build
| Set the gcov version to match the compiler | Set the gcov version to match the compiler
Signed-off-by: Robert Young <42c59959a3f4413d6a1b4d7b4f99db457d199e49@gmail.com>
| YAML | apache-2.0 | youngar/Base9,jduimovich/Base9,youngar/Base9,jduimovich/Base9,youngar/Base9 |
dc3759986d55377b2b3875678c2f459826c65081 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6" | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
| Drop support for node v0.6 | Drop support for node v0.6
| YAML | mit | sevastos/tiner |
9dc1e0af3ba3dcc5663d1235ad5502668ac15266 | .travis.yml | .travis.yml | language: python
install: true
script: py.test
notifications:
email:
on_success: never
on_failure: always
deploy:
provider: pypi
user: vecnet
password:
secure: P6zKZHjUc/cFxdE1gYMx00NfShFFKdiZ9lDcMdP9Fk7d1chWId052De3n9boP8FcxJvqhMHf9GqM5Drmxk3rHtFBCDUcHPpFYQu3KOOejuMh3a3E748tQ8cNxv/R1X9bLQb8lc+m1/akO9U4xSppbypee7Xc7feIUGC/w4kHNDc=
on:
all_branches: true
tags: true
| sudo: false
language: python
install: true
script: py.test
notifications:
email:
on_success: never
on_failure: always
deploy:
provider: pypi
user: vecnet
password:
secure: P6zKZHjUc/cFxdE1gYMx00NfShFFKdiZ9lDcMdP9Fk7d1chWId052De3n9boP8FcxJvqhMHf9GqM5Drmxk3rHtFBCDUcHPpFYQu3KOOejuMh3a3E748tQ8cNxv/R1X9bLQb8lc+m1/akO9U4xSppbypee7Xc7feIUGC/w4kHNDc=
on:
all_branches: true
tags: true
| Use container-based infrastructure in Travis CI. | Add: Use container-based infrastructure in Travis CI.
| YAML | mpl-2.0 | vecnet/vecnet.openmalaria,vecnet/vecnet.openmalaria |
b390c97f013549ad51568150df45314484d0b2c1 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
# TODO: Gross until Travis support setting maven version or upgrades to 3.3
before_install:
- wget http://apache.claz.org/maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.tar.gz
- tar zxvf apache-maven-3.3.3-bin.tar.gz
- chmod +x apache-maven-3.3.3/bin/mvn
script:
- export M2_HOME=$PWD/apache-maven-3.3.3
- export PATH=$PWD/apache-maven-3.3.3/bin:${PATH}
- hash -r
- mvn verify -Dgpg.skip=true
| sudo: false
language: java
jdk:
- oraclejdk8
# TODO: Gross until Travis support setting maven version or upgrades to 3.3
before_install:
- wget http://apache.claz.org/maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.tar.gz
- tar zxvf apache-maven-3.3.3-bin.tar.gz
- chmod +x apache-maven-3.3.3/bin/mvn
- export M2_HOME=$PWD/apache-maven-3.3.3
- export PATH=$PWD/apache-maven-3.3.3/bin:${PATH}
- hash -r
before_script:
- export M2_HOME=$PWD/apache-maven-3.3.3
- export PATH=$PWD/apache-maven-3.3.3/bin:${PATH}
- hash -r
script: mvn verify -Dgpg.skip=true
| Revert "Trying simplifying Travis CI." | Revert "Trying simplifying Travis CI."
This reverts commit 908ad124ea800864be18c8e8bb7a70b64781bcbb.
| YAML | unlicense | binkley/labs,binkley/labs |
e7b0695942a3cd0e63106d4f487e8d9fe4bf2b43 | .travis.yml | .travis.yml | language: go
go:
- 1.8.x
- 1.9.x
- 1.10.x
- master
sudo: false
before_install:
- gotools=golang.org/x/tools
install:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure -v
script:
- go test -race -v ./test -service-start-delay 1000ms -http-client-timeout 60000ms
| language: go
go:
- 1.8.x
- 1.9.x
- 1.10.x
- master
sudo: false
before_install:
- gotools=golang.org/x/tools
install:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure -v
script:
- go test -v -race -cover ./test -service-start-delay 1000ms -http-client-timeout 60000ms
| Add code coverage to build script | Add code coverage to build script
| YAML | mit | eleniums/gohost,eleniums/gohost |
72c9e4540b52e84aaa005fc0e21cf5e3d930b9d8 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
matrix:
allow_failures:
jdk:
- oraclejdk7
- openjdk6 | language: java
jdk: oraclejdk8 | Drop everything that isn't Java 8 | Drop everything that isn't Java 8
| YAML | mit | Team4761/L3GD20HGyroLib |
63af7750ffc5e3404caefdae29c4cecc0a3f6dff | .travis.yml | .travis.yml | language: php
php:
- 5.3
install:
- npm install
- mkdir node_modules_new
- mkdir node_modules_new/grunt-drupal-tasks
- for fn in *; do if [ "$fn" != "node_modules_new" ]; then mv $fn node_modules_new/grunt-drupal-tasks; fi; done
- cp -r node_modules_new/grunt-drupal-tasks/example/* .
- mv node_modules_new node_modules
- npm install
- npm install -g grunt-cli
- wget https://github.com/drush-ops/drush/archive/6.4.0.tar.gz
- tar xfvz 6.4.0.tar.gz
before_script:
- rm composer.json
script:
- PATH=$PATH:drush-6.4.0 grunt
- npm test
| language: php
php:
- 5.3
install:
- npm install
- mkdir -p node_modules_new/grunt-drupal-tasks
- for fn in *; do if [ "$fn" != "node_modules_new" ]; then mv $fn node_modules_new/grunt-drupal-tasks; fi; done
- cp -r node_modules_new/grunt-drupal-tasks/example/* .
- mv node_modules_new node_modules
- npm install
- npm install -g grunt-cli
- wget https://github.com/drush-ops/drush/archive/6.4.0.tar.gz
- tar xfvz 6.4.0.tar.gz
before_script:
- rm composer.json
script:
- PATH=$PATH:drush-6.4.0 grunt
- npm test
| Use mkdir -p instead of two mkdir's. | Use mkdir -p instead of two mkdir's.
| YAML | mit | phase2/grunt-drupal-tasks,AndBicScadMedia/grunt-drupal-tasks,phase2/grunt-drupal-tasks,AndBicScadMedia/grunt-drupal-tasks,EvanLovely/grunt-drupal-tasks,AndBicScadMedia/grunt-drupal-tasks,AndBicScadMedia/grunt-drupal-tasks,puppetlabs/grunt-drupal-tasks,puppetlabs/grunt-drupal-tasks,phase2/grunt-drupal-tasks,puppetlabs/grunt-drupal-tasks,EvanLovely/grunt-drupal-tasks,puppetlabs/grunt-drupal-tasks,EvanLovely/grunt-drupal-tasks,EvanLovely/grunt-drupal-tasks |
a8ca907618f60755db6028983df11cdc4c2c8ae1 | .travis.yml | .travis.yml | before_install: gem install bundler
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.1.0
- ree
gemfile:
- Gemfile
- gemfiles/rspec2.gemfile
| before_script:
- gem install bundler
- bundle install
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.1.0
- ree
gemfile:
- Gemfile
- gemfiles/rspec2.gemfile
| Add bundle install to the before script for Travis. | Add bundle install to the before script for Travis.
| YAML | mit | zackexplosion/yee-formatter,mattsears/nyan-cat-formatter,Brescia717/nyan-cat-formatter,StevenNunez/nyan-cat-formatter |
1a94bf5b377db92c78f5d5f2da17128ba68f0d45 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
script:
- "node tools/build.js -t node"
- "npm test"
sudo: false # Use container-based architecture
| language: node_js
node_js:
- "4.1"
- "4.0"
script:
- "node tools/build.js -t node"
- "npm test"
sudo: false # Use container-based architecture
| Change test node version to only 4.x | Change test node version to only 4.x
| YAML | bsd-3-clause | sourrust/highlight.js,aurusov/highlight.js,palmin/highlight.js,palmin/highlight.js,Sannis/highlight.js,StanislawSwierc/highlight.js,VoldemarLeGrand/highlight.js,bluepichu/highlight.js,VoldemarLeGrand/highlight.js,teambition/highlight.js,dbkaplun/highlight.js,MakeNowJust/highlight.js,highlightjs/highlight.js,isagalaev/highlight.js,tenbits/highlight.js,dbkaplun/highlight.js,carlokok/highlight.js,bluepichu/highlight.js,StanislawSwierc/highlight.js,dbkaplun/highlight.js,lead-auth/highlight.js,carlokok/highlight.js,carlokok/highlight.js,tenbits/highlight.js,sourrust/highlight.js,carlokok/highlight.js,highlightjs/highlight.js,MakeNowJust/highlight.js,Sannis/highlight.js,MakeNowJust/highlight.js,palmin/highlight.js,Sannis/highlight.js,isagalaev/highlight.js,highlightjs/highlight.js,teambition/highlight.js,tenbits/highlight.js,VoldemarLeGrand/highlight.js,teambition/highlight.js,bluepichu/highlight.js,highlightjs/highlight.js,aurusov/highlight.js,sourrust/highlight.js,aurusov/highlight.js |
23562bbb0d828d706767cb89c5ac49c17631a2b8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
sudo: false
install:
- pip install -r requirements.txt
- pip install codecov
script:
- py.test
after_success:
- py.test --cov=avena
- codecov
| language: python
python:
- "2.7"
- "3.2"
os:
- linux
- osx
sudo: false
install:
- pip install -r requirements.txt
- pip install codecov
script:
- py.test
after_success:
- py.test --cov=avena
- codecov
| Test on Linux and OS X. | Test on Linux and OS X.
| YAML | isc | eliteraspberries/avena |
66f32384516de655dfb3380fc679de2ae1d41882 | .travis.yml | .travis.yml | script: "bundle exec rake db:drop db:create db:migrate test"
rvm:
- 1.8.7
- 1.9.2
- ree
- ruby-head
| script: "bundle exec rake db:drop db:create db:migrate test"
| Revert "Test against Ruby 1.9.2 and 1.9.3" | Revert "Test against Ruby 1.9.2 and 1.9.3"
This reverts commit 199fa510d9fab78edfa771ecf9a2c3c09236875d.
| YAML | mit | 0xCCD/travis-ci,0xCCD/travis-ci |
c3850107a5f74a370ec27069b47e14ecfc0787b0 | .travis.yml | .travis.yml | language: rust
rust:
- stable
script:
- cargo build
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
script:
- cargo build
notifications:
on_success: change
| Build over beta and nightly | Build over beta and nightly
| YAML | mit | dopsi/arch-audit,ilpianista/arch-audit |
8f2850a8cf01a6c1bc1283a42d01953debcbd8dd | .travis.yml | .travis.yml | language: java
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -o Dpkg::Options::="--force-confold" -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi
- wget http://dl.google.com/android/android-sdk_r21.0.1-linux.tgz
- tar xzf android-sdk_r21.0.1-linux.tgz
- export ANDROID_HOME=$PWD/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
- android update sdk --filter platform-tools,android-15,extra-android-support --no-ui --force
install: mvn clean install --quiet -DskipTests=true
script: mvn clean test -P integration-tests
| language: java
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -o Dpkg::Options::="--force-confold" -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi
- wget http://dl.google.com/android/android-sdk_r21.1-linux.tgz
- tar xzf android-sdk_r21.1-linux.tgz
- export ANDROID_HOME=$PWD/android-sdk-linux
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
- android update sdk --filter platform-tools,android-16,extra-android-support --no-ui --force
install: mvn clean install --quiet -DskipTests=true
script: mvn clean test -P integration-tests
| Update Android SDK version and target platform | Update Android SDK version and target platform
| YAML | apache-2.0 | vcgato29/Travis-Jr,sahan/Travis-Jr |
0f2cc63f5f11d5f399c64b0de0f867a13c54c7ba | .travis.yml | .travis.yml | before_script:
- "bundle exec rake test_app"
script: "DISPLAY=:99.0 bundle exec rspec spec"
notifications:
email:
- lbrapid@gmail.com
- ryan@spreecommerce.com
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
| ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
sudo: false
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- bundle exec rake test_app
script:
- bundle exec rspec spec
| Use new beta build for Travis | Use new beta build for Travis
| YAML | bsd-3-clause | habib136888/spree_social,sunny2601/spree_social,ramkumar-kr/spree_social,habib136888/spree_social,spree-contrib/spree_social,gogo52cn/spree_social,wuboy0307/solidus_social,spark-solutions/spree_social,spree-contrib/spree_social,spark-solutions/spree_social,DynamoMTL/spree_social,wuboy0307/solidus_social,ramkumar-kr/spree_social,wuboy0307/solidus_social,groundctrl/spree_social,rogelio-meza-t/spree_social,rogelio-meza-t/spree_social,groundctrl/spree_social,supherman/spree_social,gogo52cn/spree_social,ramkumar-kr/spree_social,groundctrl/spree_social,gogo52cn/spree_social,denniscastro/spree_social,habib136888/spree_social,denniscastro/spree_social,spree-contrib/spree_social,DynamoMTL/spree_social,rogelio-meza-t/spree_social,supherman/spree_social,denniscastro/spree_social,DynamoMTL/spree_social,supherman/spree_social,spark-solutions/spree_social,sunny2601/spree_social,sunny2601/spree_social |
6c36d279a0ee73694a6cf99759501f4ae8fd7cc3 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- jruby-18mode
- jruby-19mode
- rbx
| language: ruby
rvm:
- 2.1.2
- 2.1.1
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- jruby-18mode
- jruby-19mode
- rbx-2
| Add Ruby 2.1.2 and fix RBX | Add Ruby 2.1.2 and fix RBX
| YAML | mit | JonRowe/ping_pong |
f168a1dceb104930a5d638166bec25fc1dc289c1 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- sudo apt-get update
- sudo apt-get install mongodb sqlite-3 build-essential python-dev python-setuptools
# command to install dependencies
install: pip install -r requirements.txt --use-mirrors
# # command to run tests
script: nosetests --exe -v tests/
| language: python
python:
- "2.7"
before_install:
- sudo apt-get update
- sudo apt-get install mongodb sqlite3 build-essential python-dev python-setuptools
# command to install dependencies
install: pip install -r requirements.txt --use-mirrors
# # command to run tests
script: nosetests --exe -v tests/
| Fix typo in package name. | Fix typo in package name.
| YAML | agpl-3.0 | cnelsonsic/SimpleMMO,cnelsonsic/SimpleMMO,cnelsonsic/SimpleMMO |
9971699f7fb1ec437e77da5306f4b00da14efaa8 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "3.6"
before_install: pip install codecov
install: pip install --upgrade -r dev_requirements.txt
script: mypy *.py && PYTHONHASHSEED=random pytest
after_success: codecov
| dist: xenial
language: python
python:
- "3.7"
before_install: pip install codecov
install: pip install --upgrade -r dev_requirements.txt
script: mypy *.py && PYTHONHASHSEED=random pytest
after_success: codecov
| Change to Python 3.7 and remove deprecated sudo config | Change to Python 3.7 and remove deprecated sudo config
| YAML | apache-2.0 | jingw/dconf-manager |
f751292f892d17acff0abf35ad3677c77e053153 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
before_script:
- composer install
script:
- (cd tests ; phpunit ./)
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install
script:
- (cd tests ; phpunit ./)
matrix:
allow_failures:
- php: hhvm
| Add PHP v5.6 and hhvm to build | Add PHP v5.6 and hhvm to build | YAML | mit | ojhaujjwal/currency-converter-php |
f6a6cbeec707c2ed237048507130fafca98fe061 | .travis.yml | .travis.yml | language: c
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgmp-dev libssl-dev check
script: ./configure && make && make check
compiler:
- clang
- gcc
| language: c
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgmp-dev libssl-dev check autoconf automake m4
script: autoreconf -iv && ./configure && make && make check
compiler:
- clang
- gcc
| Rebuild configure file in CI | Rebuild configure file in CI | YAML | mit | jtdowney/trustworthy-c-spike,jtdowney/trustworthy-c-spike,jtdowney/trustworthy-c-spike |
44005960b2e068363a68427ea50cf7e8cf6f06dc | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
install:
- python setup.py install
script:
- export DJANGO_SETTINGS_MODULE=saleor.test_settings
- python setup.py test
notifications:
webhooks: https://webhooks.gitter.im/e/af18bf2decb40329066b
| language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
install:
- python setup.py install
script:
- export DJANGO_SETTINGS_MODULE=saleor.test_settings
- python setup.py test
notifications:
webhooks: https://webhooks.gitter.im/e/af18bf2decb40329066b
| Drop support for python 2.6 and add support for python 3.4 | Drop support for python 2.6 and add support for python 3.4
| YAML | bsd-3-clause | rchav/vinerack,arth-co/saleor,paweltin/saleor,rodrigozn/CW-Shop,spartonia/saleor,KenMutemi/saleor,arth-co/saleor,taedori81/saleor,taedori81/saleor,paweltin/saleor,laosunhust/saleor,itbabu/saleor,mociepka/saleor,UITools/saleor,hongquan/saleor,jreigel/saleor,car3oon/saleor,KenMutemi/saleor,spartonia/saleor,UITools/saleor,tfroehlich82/saleor,laosunhust/saleor,spartonia/saleor,rodrigozn/CW-Shop,HyperManTT/ECommerceSaleor,itbabu/saleor,josesanch/saleor,taedori81/saleor,maferelo/saleor,tfroehlich82/saleor,UITools/saleor,laosunhust/saleor,avorio/saleor,maferelo/saleor,josesanch/saleor,Drekscott/Motlaesaleor,jreigel/saleor,josesanch/saleor,car3oon/saleor,mociepka/saleor,arth-co/saleor,spartonia/saleor,tfroehlich82/saleor,KenMutemi/saleor,mociepka/saleor,dashmug/saleor,dashmug/saleor,paweltin/saleor,car3oon/saleor,Drekscott/Motlaesaleor,rchav/vinerack,Drekscott/Motlaesaleor,hongquan/saleor,Drekscott/Motlaesaleor,avorio/saleor,HyperManTT/ECommerceSaleor,HyperManTT/ECommerceSaleor,UITools/saleor,laosunhust/saleor,avorio/saleor,dashmug/saleor,paweltin/saleor,jreigel/saleor,itbabu/saleor,rodrigozn/CW-Shop,UITools/saleor,rchav/vinerack,avorio/saleor,taedori81/saleor,maferelo/saleor,hongquan/saleor,arth-co/saleor |
0d5aa3577dfe4a1f4058222d72a58eb8894c465e | .travis.yml | .travis.yml | language: android
android:
components:
# The BuildTools version used by your project
- build-tools-19.1.0
# The SDK version used to compile your project
- android-19
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-19
| language: android
android:
components:
# The BuildTools version used by your project
- build-tools-21.0.2
# The SDK version used to compile your project
- android-20
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-20
| Use proper sdk and tools version | Use proper sdk and tools version
| YAML | apache-2.0 | dreamscape-carnival/zurbagan-android |
348a5d884dcaf8ffae32b347d2e67cc1e069e87e | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- build-tools-23.0.2
- android-23
- extra-android-support
- extra-android-m2repository
- extra-google-m2repository
jdk:
- oraclejdk8
branches:
except:
- gh-pages
notifications:
email: false
script:
- chmod +x ./gradlew
| language: android
android:
components:
- tools
- build-tools-23.0.3
- android-23
- extra-android-support
- extra-android-m2repository
- extra-google-m2repository
jdk:
- oraclejdk8
branches:
except:
- gh-pages
notifications:
email: false
script:
- chmod +x ./gradlew
| Fix build tools version for Travis (gets me every time) | Fix build tools version for Travis (gets me every time)
| YAML | apache-2.0 | oriley-me/crate |
c35d4a07bffb47913208ecb81388f041a57ac6eb | .travis.yml | .travis.yml | language: ruby
gemfile:
- Gemfile
- Gemfile_activemodel4
rvm:
- 1.9.3
- 2.1.6
- jruby-1.7.11
- jruby-head
script: bundle exec rake unattended_spec
| language: ruby
gemfile:
- Gemfile
- Gemfile_activemodel4
rvm:
- 1.9.3
- 2.1.6
script: bundle exec rake unattended_spec
| Revert "Add JRubies to Travis CI config" | Revert "Add JRubies to Travis CI config"
This reverts commit d1300c21281515ad7ff82389b1dcd5afe1bf5bed.
| YAML | mit | dnswus/Dynamoid,BilalBudhani/Dynamoid,dnswus/Dynamoid,philipmw/Dynamoid,BilalBudhani/Dynamoid,cavi21/Dynamoid,cavi21/Dynamoid,Dynamoid/Dynamoid,philipmw/Dynamoid,Dynamoid/Dynamoid |
0f7ced7edf49179aa68db7b43589882c1cb954e0 | .travis.yml | .travis.yml | language: node_js
node_js:
- 8
- 10
- 12
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
before_install: 'sudo apt-get update && sudo apt-get install -y optipng pngcrush pngquant graphicsmagick libjpeg-turbo-progs inkscape libcairo2-dev libgif-dev libjpeg8-dev zlib1g-dev'
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
node_js:
- 10
- 12
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
before_install: 'sudo apt-get update && sudo apt-get install -y optipng pngcrush pngquant graphicsmagick libjpeg-turbo-progs inkscape libcairo2-dev libgif-dev libjpeg8-dev zlib1g-dev'
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| Remove node.js 8 support (semver-major) | Remove node.js 8 support (semver-major)
| YAML | bsd-3-clause | papandreou/express-processimage |
6f7cc675c217787c16e04fc0d8193e4bf2e0dbc6 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
before_install:
- 'sudo apt-get install -qqy autoconf automake libtool nasm'
| sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
addons:
apt:
packages: nasm
| Test on `stable` instead of `iojs` | Test on `stable` instead of `iojs`
| YAML | mit | imagemin/mozjpeg-bin |
fd74a372d8576ace6d28592212b549de89610684 | src/Oro/Bundle/UIBundle/Resources/views/layouts/blank/page/layout.yml | src/Oro/Bundle/UIBundle/Resources/views/layouts/blank/page/layout.yml | layout:
actions:
- '@setBlockTheme':
themes: 'default.html.twig'
- '@addTree':
items:
head:
blockType: head
title:
blockType: title
meta_charset:
blockType: meta
options:
charset: 'utf-8'
meta_viewport:
blockType: meta
options:
name: viewport
content: 'width=device-width, initial-scale=1'
theme_icon:
blockType: external_resource
options:
visible: '=data["theme"].getIcon()!=null'
href: '=data["asset"].getUrl(data["theme"].getIcon())'
rel: shortcut icon
styles:
blockType: style
options:
src: '=data["asset"].getUrl(data["theme"].getData()["assets"]["styles"]["output"])'
body:
blockType: body
tree:
root:
head:
title: ~
meta_charset: ~
meta_viewport: ~
theme_icon: ~
styles: ~
body: ~
| layout:
actions:
- '@setBlockTheme':
themes: 'layout.html.twig'
- '@addTree':
items:
head:
blockType: head
title:
blockType: title
meta_charset:
blockType: meta
options:
charset: 'utf-8'
meta_viewport:
blockType: meta
options:
name: viewport
content: 'width=device-width, initial-scale=1'
theme_icon:
blockType: external_resource
options:
visible: '=data["theme"].getIcon()!=null'
href: '=data["asset"].getUrl(data["theme"].getIcon())'
rel: shortcut icon
styles:
blockType: style
options:
src: '=data["asset"].getUrl(data["theme"].getData()["assets"]["styles"]["output"])'
body:
blockType: body
tree:
root:
head:
title: ~
meta_charset: ~
meta_viewport: ~
theme_icon: ~
styles: ~
body: ~
| Create blank theme - correct path | BB-3732: Create blank theme
- correct path
| YAML | mit | Djamy/platform,orocrm/platform,geoffroycochard/platform,orocrm/platform,orocrm/platform,geoffroycochard/platform,Djamy/platform,geoffroycochard/platform,Djamy/platform |
5ea8df861ff00a97084ddd08f0f1d5606e3e3eb2 | .travis.yml | .travis.yml | language: go
sudo: required
services:
- docker
go:
- 1.8.1
script:
- make get-deps
- make test
- make bin/buildlog bin/buildlog.static
- make docker
| language: go
sudo: false
services:
- docker
go:
- 1.8.1
script:
- make get-deps
- make test
- make bin/buildlog bin/buildlog.static
- make docker
| Move to container based Travis build | Move to container based Travis build
| YAML | mit | fajran/buildlog |
2c4c1405dc64014583e0f4e91c614085575561cb | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install:
- python setup.py install
- python setup.py test
script:
- pep8 --max-line-length=120 .
- nosetests
| language: python
python:
- "2.6"
- "2.7"
install:
- python setup.py install
- python setup.py test
notifications:
irc: "chat.freenode.net#eucalyptus-qa"
script:
- pep8 --max-line-length=120 .
- nosetests
| Add eucalyptus-qa IRC notification for Travis | Add eucalyptus-qa IRC notification for Travis
| YAML | apache-2.0 | tbeckham/DeploymentManager,ccassler/DeploymentManager,tbeckham/DeploymentManager,ccassler/DeploymentManager,ccassler/DeploymentManager,tbeckham/DeploymentManager |
2c308e4bcca45fa01982f3a8d827976e6b24026b | .travis.yml | .travis.yml | language: c
compiler: gcc
sudo: required
dist: xenial
before_install:
- sudo add-apt-repository ppa:vala-team/ppa -y
- sudo apt-get update -y
- sudo apt-get install -y xvfb build-essential gnome-common libglib2.0-dev libgtk-3-dev libgee libjson-glib libjson-glib-dev libvala-0.30-dev valac libvte-2.91-dev libsoup2.4-dev
after_success:
- bash <(curl -s https://codecov.io/bash)
script:
- NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make
- NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make test-coverage
| language: c
compiler: gcc
sudo: required
dist: xenial
before_install:
- sudo add-apt-repository ppa:vala-team/ppa -y
- sudo apt-get update -y
- sudo apt-get install -y xvfb build-essential gnome-common libglib2.0-dev libgtk-3-dev libgee-0.8-dev libjson-glib-dev libsoup2.4-dev libvte-2.91-dev
after_success:
- bash <(curl -s https://codecov.io/bash)
script:
- NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make
- NO_AT_BRIDGE=1 TRAVIS=true xvfb-run make test-coverage
| Use same install packages than local | Use same install packages than local | YAML | mit | lcallarec/gnome-docker-manager,lcallarec/dockery |
57660531c70f37e9d2d06d3c865c97eccf53347a | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
# command to run tests
script: python -m unittest discover | language: python
python:
- "3.4"
# command to run tests
script: python -m unittest discover | Remove python 2.7 from supported versions | Remove python 2.7 from supported versions
| YAML | mit | Darkheir/pyjection |
5461ac84cef3ae96238d5baba8f725e6de4aaff7 | .travis.yml | .travis.yml | language: erlang
dist: bionic
sudo: false
notifications:
email:
- backend@gameanalytics.com
otp_release:
- 21.1
- 22.3
- 23.0
addons:
apt:
packages:
- default-jre
install: make deps
script: make xref test dialyzer
| language: erlang
dist: bionic
sudo: false
notifications:
email:
- backend@gameanalytics.com
otp_release:
- 21.1
- 22.3
addons:
apt:
packages:
- default-jre
install: make deps
script: make xref test dialyzer
| Remove Erlang 23 testing for now | Remove Erlang 23 testing for now
| YAML | mit | GameAnalytics/current |
2c1c8f73a7c5ad3fc1031b8e753b59a0c4d3dfc1 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9.3beta
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE=ASMapLauncher.xcworkspace
- SCHEME=ASMapLauncher
- SDK=iphonesimulator11.3
- RUN_TESTS="YES"
- POD_LINT="NO"
matrix:
- DESTINATION="OS=11.3,name=iPhone 8"
- DESTINATION="OS=10.3.1,name=iPhone 6"
before_install:
- rm -rf /Users/travis/Library/Developer/Xcode/DerivedData/ASMapLauncher-*/
- rvm use $RVM_RUBY_VERSION
install:
- bundle install
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
# Build in Debug and Run Tests if specified
- if [ $RUN_TESTS == "YES" ]; then
travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty;
else
xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty;
fi
after_success: slather
| language: objective-c
osx_image: xcode9.3beta
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE=ASMapLauncher.xcworkspace
- SCHEME=ASMapLauncher
- SDK=iphonesimulator11.3
- RUN_TESTS="YES"
- POD_LINT="NO"
matrix:
- DESTINATION="OS=11.3,name=iPhone 8"
- DESTINATION="OS=10.3.1,name=iPhone 6"
- DESTINATION="OS=9.3,name=iPhone 5s"
before_install:
- rm -rf /Users/travis/Library/Developer/Xcode/DerivedData/ASMapLauncher-*/
- rvm use $RVM_RUBY_VERSION
install:
- bundle install
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
# Build in Debug and Run Tests if specified
- if [ $RUN_TESTS == "YES" ]; then
travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty;
else
xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty;
fi
after_success: slather
| Build and run for iOS 9.3 too. | Build and run for iOS 9.3 too.
| YAML | mit | abdullahselek/ASMapLauncher,abdullahselek/ASMapLauncher |
014b4eece33d88579965955bffd2326ab59da317 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
env:
- GROUP=js
- GROUP=
services:
- mongodb
before_install:
# Pierre Carrier's PPA for PhantomJS and CasperJS
- time sudo add-apt-repository -y ppa:pcarrier/ppa
- sudo apt-get update
- git clone --recursive https://github.com/ipython/ipython.git
install:
- sudo apt-get install pandoc casperjs libzmq3-dev
# pin tornado < 4 for js tests while phantom is on super old webkit
- if [[ $GROUP == 'js' ]]; then pip install 'tornado<4'; fi
- cd ipython && pip install -e ".[notebook]" && cd ..
- pip install -r requirements.txt
- pip install nose requests
- if [[ $GROUP == 'js' ]]; then cp nbextensions/* $(ipython locate)/nbextensions/; fi
script:
- ./scripts/runtests $GROUP
| language: python
python:
- 2.7
- 3.4
env:
- GROUP=js
- GROUP=
services:
- mongodb
before_install:
# Pierre Carrier's PPA for PhantomJS and CasperJS
- time sudo add-apt-repository -y ppa:pcarrier/ppa
- sudo apt-get update
- git clone --recursive https://github.com/ipython/ipython.git
install:
- sudo apt-get install pandoc casperjs libzmq3-dev
# pin tornado < 4 for js tests while phantom is on super old webkit
- if [[ $GROUP == 'js' ]]; then pip install 'tornado<4'; fi
- cd ipython && pip install -e ".[notebook]" && cd ..
- pip install -r requirements.txt
- pip install nose requests!=2.4.2
- if [[ $GROUP == 'js' ]]; then cp nbextensions/* $(ipython locate)/nbextensions/; fi
script:
- ./scripts/runtests $GROUP
| Exclude version 2.4.2 of requests | Exclude version 2.4.2 of requests
| YAML | bsd-3-clause | EdwardJKim/nbgrader,jhamrick/nbgrader,EdwardJKim/nbgrader,ellisonbg/nbgrader,MatKallada/nbgrader,EdwardJKim/nbgrader,jhamrick/nbgrader,modulexcite/nbgrader,jdfreder/nbgrader,ellisonbg/nbgrader,alope107/nbgrader,alope107/nbgrader,dementrock/nbgrader,jhamrick/nbgrader,dementrock/nbgrader,EdwardJKim/nbgrader,jupyter/nbgrader,jupyter/nbgrader,jhamrick/nbgrader,jupyter/nbgrader,ellisonbg/nbgrader,ellisonbg/nbgrader,jdfreder/nbgrader,modulexcite/nbgrader,MatKallada/nbgrader,jupyter/nbgrader,jupyter/nbgrader |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.