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
|
---|---|---|---|---|---|---|---|---|---|
dfb59eba5e9f74887df8c72b586861cf2562c8c3
|
provisioning/configuration/roles/wpt-cli/tasks/main.yml
|
provisioning/configuration/roles/wpt-cli/tasks/main.yml
|
---
- name: Install system packages
apt:
name: '{{ item }}'
state: present
with_items:
- python-pip
- python2.7
- name: Install script for modifying system hosts file
copy:
src: ../../src/scripts/extend-hosts.py
dest: /usr/local/bin/extend-hosts.py
mode: 0755
# This allows workers to edit the hostsfile via `sudo extend-hosts.py`
- name: Allow application user to modify system hosts file
lineinfile:
dest: /etc/sudoers
line: '{{application_user}} ALL=(ALL) NOPASSWD: /usr/local/bin/extend-hosts.py'
|
---
# The `easy_install` module offers the "state: latest" configuration, but tt
# is incapable of installing the latest version of pip, so the system must be
# bootstrapped with an old version. That version can then be used to update
# itself (see the next task).
#
# Reference:
# https://github.com/pypa/setuptools/issues/1334
- name: Install package manager used by the CLI
easy_install:
name: pip
- name: Update package manager used by the CLI
pip:
name: pip
state: latest
- name: Install script for modifying system hosts file
copy:
src: ../../src/scripts/extend-hosts.py
dest: /usr/local/bin/extend-hosts.py
mode: 0755
# This allows workers to edit the hostsfile via `sudo extend-hosts.py`
- name: Allow application user to modify system hosts file
lineinfile:
dest: /etc/sudoers
line: '{{application_user}} ALL=(ALL) NOPASSWD: /usr/local/bin/extend-hosts.py'
|
Use cross-platform command to install PIP
|
macOS: Use cross-platform command to install PIP
|
YAML
|
apache-2.0
|
GoogleChrome/wptdashboard,GoogleChrome/wptdashboard,GoogleChrome/wptdashboard
|
97d0ee5e3b96e560ce819762c5315bd9a6daef02
|
.hound.yml
|
.hound.yml
|
scss:
enabled: false
config_file: scss/.scss-style.yml
ruby:
enabled: false
coffee_script:
enabled: false
java_script:
enabled: false
|
scss:
enabled: true
config_file: scss/.scss-lint.yml
ruby:
enabled: false
coffee_script:
enabled: false
java_script:
enabled: false
|
Configure Hound to use in-repo SCSS lint config
|
Configure Hound to use in-repo SCSS lint config
* The `enabled` flag is now turned on.
* The file name is `scss/.scss-lint.yml`.
https://twitter.com/mdo/status/581544087146254338
|
YAML
|
mit
|
fac/origin,waern/primer,Alanaktion/primer,primer/primer,primer/primer-css,dushmis/primer,tarebyte/primer,loki315zx/primer,roidelapluie/primer,Cartman0/primer,marcelosomers/primer,primer/primer,primer/primer-css,primer/primer,tatygrassini/primer,fac/origin,df2k2/primer,ilovezy/primer,primer-cn/primer-cn,primer/primer-css,ryanjm/primer,MSch/primer,timv88/primer,andrewmowe/primer,tehp/primer
|
2741bd9cceb1ab246d5efd99d4ad011ca698924a
|
roles/database/client/gui/vars/main.yml
|
roles/database/client/gui/vars/main.yml
|
---
jdk_filename: jdk-8u144-linux-x64.rpm
sct_filename: aws-schema-conversion-tool-1.0.606-1.x86_64.rpm
sct_extractor_filename: aws-schema-conversion-tool-extractor-1.0.606-1.x86_64.rpm
sqldeveloper_filename: sqldeveloper-17.2.0.188.1159-1.noarch.rpm
|
---
jdk_filename: jdk-8u151-linux-x64.rpm
sct_filename: aws-schema-conversion-tool-1.0.608-1.x86_64.rpm
sct_extractor_filename: aws-schema-conversion-tool-extractor-1.0.608-1.x86_64.rpm
sqldeveloper_filename: sqldeveloper-17.2.0.188.1159-1.noarch.rpm
|
Update JDK and SCT version
|
Update JDK and SCT version
|
YAML
|
mit
|
rewse/ansible-playbooks,rewse/ansible-playbooks,rewse/ansible-playbooks
|
8b097bcd8c08bb0f0deee82f1b1204ba72f2a16b
|
.buildkite/pipeline.yaml
|
.buildkite/pipeline.yaml
|
steps:
- label: ":eslint: Lint"
command:
- "yarn install"
- "yarn lint"
plugins:
- docker#v3.0.1:
image: "node:10"
- label: ":karma: Tests"
command:
# Install chrome
- "echo '--- Installing Chrome'"
- "wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -"
- "sh -c 'echo \"deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main\" >> /etc/apt/sources.list.d/google.list'"
- "apt-get update"
- "apt-get install -y google-chrome-stable"
# Run tests
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "echo '+++ Running Tests'"
- "yarn test"
env:
CHROME_BIN: "/usr/bin/google-chrome-stable"
plugins:
- docker#v3.0.1:
image: "node:10"
propagate-environment: true
|
steps:
- label: ":eslint: Lint"
command:
- "yarn install"
- "yarn lint"
plugins:
- docker#v3.0.1:
image: "node:10"
- label: ":karma: Tests"
agents:
# We use a medium sized instance instead of the normal small ones because
# webpack loves to gorge itself on resources.
queue: "medium"
command:
# Install chrome
- "echo '--- Installing Chrome'"
- "wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -"
- "sh -c 'echo \"deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main\" >> /etc/apt/sources.list.d/google.list'"
- "apt-get update"
- "apt-get install -y google-chrome-stable"
# Run tests
- "echo '--- Fetching Dependencies'"
- "./scripts/fetch-develop.deps.sh --depth 1"
- "yarn install"
- "echo '+++ Running Tests'"
- "yarn test"
env:
CHROME_BIN: "/usr/bin/google-chrome-stable"
plugins:
- docker#v3.0.1:
image: "node:10"
propagate-environment: true
|
Use medium agents for the more resource intensive builds
|
Use medium agents for the more resource intensive builds
|
YAML
|
apache-2.0
|
vector-im/vector-web,vector-im/riot-web,vector-im/vector-web,vector-im/riot-web,vector-im/vector-web,vector-im/riot-web,vector-im/vector-web,vector-im/vector-web,vector-im/riot-web,vector-im/riot-web,vector-im/riot-web
|
78bdc78a33242ea2ddf92845fd88392176056012
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push]
jobs:
ci:
name: CI - OS ${{ matrix.os }}, Node.js ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [14.x, 16.x]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run prod
- name: Test
run: npm run test
- name: Upload coverage report
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '16.x' }}
uses: codecov/codecov-action@v3
- name: SonarCloud Scan
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '16.x' }}
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
name: CI
on: [push]
jobs:
ci:
name: CI - OS ${{ matrix.os }}, Node.js ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [17.x, 18.x]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run prod
- name: Test
run: npm run test
- name: Upload coverage report
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '16.x' }}
uses: codecov/codecov-action@v3
- name: SonarCloud Scan
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '16.x' }}
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
Update node versions in CI config
|
Update node versions in CI config
|
YAML
|
mit
|
michaeldzjap/react-signature-pad-wrapper,michaeldzjap/react-signature-pad-wrapper,michaeldzjap/react-signature-pad-wrapper,michaeldzjap/react-signature-pad-wrapper
|
a1707f420cb33e41e784a58c5fc798ae7bd87132
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push, pull_request]
jobs:
tests:
name: Tests and validations
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node: [12, 13, 14, 15, 16]
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Run coverage report
uses: codecov/codecov-action@v3
- name: Run validations
run: npm run lint
|
name: CI
on: [push, pull_request]
jobs:
tests:
name: Tests and validations
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node: [12, 13, 14, 15, 16, 17, 18]
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Run coverage report
uses: codecov/codecov-action@v3
- name: Run validations
run: npm run lint
|
Add node 17 and 18 to test matrix in github actions
|
Add node 17 and 18 to test matrix in github actions
|
YAML
|
mit
|
schorfES/node-lintspaces,schorfES/node-lintspaces
|
9db5a8946d7610b4d835ab3d05c84e99d121a50d
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
---
name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
schedule:
- cron: '0 1 1 * *'
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade coverage[toml] virtualenv tox tox-gh-actions
- name: "Run tox targets for ${{ matrix.python-version }}"
run: "python -m tox"
|
---
name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
schedule:
- cron: '0 1 1 * *'
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.5", "3.6", "3.7", "3.8"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade coverage[toml] virtualenv tox tox-gh-actions
- name: "Run tox targets for ${{ matrix.python-version }}"
run: "python -m tox"
|
Apply tests on different os
|
Apply tests on different os
|
YAML
|
mit
|
DOV-Vlaanderen/pydov
|
da14b028567ce8ccc58f2ddcf21b4c9ad4bb4c38
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Django CI
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build docker image
run: docker build -t p2pu/learning-circles .
- name: start postgres container
run: docker run -d --name=postgres -e POSTGRES_PASSWORD=password postgres:11
- name: start selenium container
run: docker run -d --name=selenium selenium/standalone-chrome:4.0.0-20211102
- name: run tests
run: docker run --rm -i --link postgres --link selenium -e DATABASE_URL=postgres://postgres:password@postgres/lc -e SECRET_KEY=abc -e ADMIN_EMAIL=admin@localhost -e RECAPTCHA_SITE_KEY=6Le0DW8bAAAAAJUHXcKkkASxZWMIwDypy1DiBBEX p2pu/learning-circles dockerize -wait tcp://postgres:5432 /opt/django-venv/bin/python /opt/app/manage.py test
|
name: Django CI
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build docker image
run: docker build -t p2pu/learning-circles .
- name: start postgres container
run: docker run -d --name=postgres -e POSTGRES_PASSWORD=password postgres:11
- name: start selenium container
run: docker run -d --name=selenium --shm-size="2g" selenium/standalone-chrome:4.0.0-20211102
- name: run tests
run: docker run --rm -i --link postgres --link selenium -e DATABASE_URL=postgres://postgres:password@postgres/lc -e SECRET_KEY=abc -e ADMIN_EMAIL=admin@localhost -e RECAPTCHA_SITE_KEY=6Le0DW8bAAAAAJUHXcKkkASxZWMIwDypy1DiBBEX p2pu/learning-circles dockerize -wait tcp://postgres:5432 /opt/django-venv/bin/python /opt/app/manage.py test
|
Add --shm-size="2g" to see if it improves things
|
Add --shm-size="2g" to see if it improves things
|
YAML
|
mit
|
p2pu/learning-circles,p2pu/learning-circles,p2pu/learning-circles,p2pu/learning-circles
|
0be1fb1235006936a9d1d9cd45f91f1e5ec6019a
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Node.js CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
AUTH0_DOMAIN: fake-domain.auth0.com
SENDGRID_API_KEY: SG.TEST_KEY
SESSION_SECRET: test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '14.X'
- name: Cache NPM
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run heroku-postbuild
- name: Install MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: '4.2'
- name: Test
run: npm run test
- name: E2E Test
uses: cypress-io/github-action@v2
env:
MONGODB_URI: 'mongodb://localhost/buddyduel-e2e'
PORT: 3000
with:
start: npm start
|
name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
AUTH0_DOMAIN: fake-domain.auth0.com
SENDGRID_API_KEY: SG.TEST_KEY
SESSION_SECRET: test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '14.X'
- name: Cache NPM
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run heroku-postbuild
- name: Install MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: '4.2'
- name: Test
run: npm run test
- name: E2E Test
uses: cypress-io/github-action@v2
env:
MONGODB_URI: 'mongodb://localhost/buddyduel-e2e'
PORT: 3000
with:
start: npm start
|
Update GH action workflow to use main branch
|
Update GH action workflow to use main branch
|
YAML
|
mit
|
lentz/buddyduel,lentz/buddyduel,lentz/buddyduel
|
defe0ad214f6ee7b324c8e2b1c0e88deb2e93b50
|
.github/workflows/go.yml
|
.github/workflows/go.yml
|
name: Go
on: [push]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Allocation test fails on 1.15, but works on 1.16. Disabling 1.15 for
# now.
go_version: ["1.14", "1.16"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: |
go test
|
name: Go
on: [push]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Allocation test fails on 1.15, but works on 1.16. Disabling 1.15 for
# now.
go_version: ["1.14", "1.16", "1.17"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: |
go test
|
Add Go 1.17 to test workflow
|
Add Go 1.17 to test workflow
|
YAML
|
apache-2.0
|
shabbyrobe/xmlwriter,shabbyrobe/xmlwriter
|
3f3d0a1e9e377db39550eeb88db0bce9eed2a6e4
|
update_kb_usa_wmapache.yml
|
update_kb_usa_wmapache.yml
|
---
- hosts: localhost
roles:
# Enable or disable to suit your needs
# This role automatically send logs to central server each time the device gets an Internet connection
- logs
- role: zim_install
zim_name: "wikipedia.en gutenberg.en wiktionary.en"
- role: kalite
version: "0.15.0"
lang: "fr"
|
---
- hosts: localhost
roles:
# Enable or disable to suit your needs
# This role automatically send logs to central server each time the device gets an Internet connection
- logs
- role: zim_install
zim_name: "wikipedia.en gutenberg.en wiktionary.en"
- role: kalite
version: "0.15.0"
lang: "en"
|
Switch Kalite language to english
|
Switch Kalite language to english
|
YAML
|
mit
|
ideascube/ansiblecube,ideascube/ansiblecube
|
c47357c32f58fdbbd66713272a409805f1cb0c3b
|
roles/common/tasks/pkg_install_debian.yml
|
roles/common/tasks/pkg_install_debian.yml
|
---
- name: install pip
sudo: yes
shell: "wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py && python /tmp/get-pip.py"
tags:
- bootstrap
- name: add openjdk ppa
sudo : yes
apt_repository: repo='ppa:openjdk-r/ppa'
tags:
- bootstrap
- name: install system pkgs
sudo: yes
apt: "pkg={{ item }} state=present update_cache=yes cache_valid_time=3600"
with_items: system_pkgs_debian
tags:
- bootstrap
|
---
- name: install pip
sudo: yes
shell: "wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py && python /tmp/get-pip.py"
tags:
- bootstrap
- name: add openjdk ppa
sudo : yes
apt_repository: repo='ppa:openjdk-r/ppa'
tags:
- bootstrap
- name: install system pkgs
sudo: yes
apt: "pkg={{ item }} state=present update_cache=yes cache_valid_time=3600"
with_items: system_pkgs_debian
tags:
- bootstrap
# Setup correct java version
- name: correct java version selected
alternatives:
name: java
path: "/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java"
|
Set java version to 8.
|
Set java version to 8.
|
YAML
|
apache-2.0
|
wangqiang8511/customized_mantl,wangqiang8511/customized_mantl
|
d8218896a52f11ce08b277e85fc88605930f6e82
|
roles/extras/tasks/environment-script.yml
|
roles/extras/tasks/environment-script.yml
|
---
- name: Install environment script at {{ bioansible_basepath }}/bioansible_env.sh
tags: environment
template:
src: bioansible_env.sh.j2
dest: "{{ modules_dir }}/bioansible_env.sh"
owner: "{{ main_guy }}"
mode: 0644
|
---
- name: Install environment script at {{ bioansible_basepath }}/bioansible_env.sh
tags: environment
template:
src: bioansible_env.sh.j2
dest: "{{ bioansible_basepath }}/bioansible_env.sh"
owner: "{{ main_guy }}"
mode: 0644
|
Fix install path for enviroment script.
|
Fix install path for enviroment script.
|
YAML
|
apache-2.0
|
MonashBioinformaticsPlatform/bio-ansible,MonashBioinformaticsPlatform/bio-ansible,MonashBioinformaticsPlatform/bio-ansible,MonashBioinformaticsPlatform/bio-ansible,MonashBioinformaticsPlatform/bio-ansible
|
72fc9b1852b1470fde95ff31eb2ec09891cfe41c
|
main.yml
|
main.yml
|
---
- hosts: all
connection: local
vars_files:
- default.config.yml
pre_tasks:
- include_vars: "{{ item }}"
with_fileglob:
- ../config.yml
roles:
- geerlingguy.homebrew
- geerlingguy.dotfiles
- name: geerlingguy.mas
when: mas_installed_apps
tasks:
- include: tasks/ansible-setup.yml
- include: tasks/sudoers.yml
when: configure_sudoers
- include: tasks/terminal.yml
when: configure_terminal
- include: tasks/osx.yml
when: configure_osx
|
---
- hosts: all
connection: local
vars_files:
- default.config.yml
pre_tasks:
- include_vars: "{{ item }}"
with_fileglob:
- ../config.yml
tags: ['always']
roles:
- role: geerlingguy.homebrew
tags: ['homebrew']
- role: geerlingguy.dotfiles
tags: ['dotfiles']
- role: geerlingguy.mas
when: mas_installed_apps
tags: ['mas']
tasks:
- include: tasks/ansible-setup.yml
- include: tasks/sudoers.yml
when: configure_sudoers
- include: tasks/terminal.yml
when: configure_terminal
- include: tasks/osx.yml
when: configure_osx
tags: ['osx']
|
Add ansible tags for the commonly ran tasks
|
Add ansible tags for the commonly ran tasks
|
YAML
|
mit
|
toby-griffiths/mac-dev-playbook,annikaC/mac-dev-playbook
|
f27d67449a90882d9dcbcb073eb47fc5b891795c
|
metadata/com.nazmar.dicegainz.yml
|
metadata/com.nazmar.dicegainz.yml
|
Categories:
- Sports & Health
License: GPL-3.0-or-later
SourceCode: https://github.com/ramzan/dicegainz
IssueTracker: https://github.com/ramzan/dicegainz/issues
AutoName: Dice Gainz
RepoType: git
Repo: https://github.com/ramzan/dicegainz
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0
subdir: app
gradle:
- yes
MaintainerNotes: |-
Summary and Description are maintained by upstream using
fastlane in the source repo
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.0
CurrentVersionCode: 1
|
Categories:
- Sports & Health
License: GPL-3.0-or-later
SourceCode: https://github.com/ramzan/dicegainz
IssueTracker: https://github.com/ramzan/dicegainz/issues
AutoName: Dice Gainz
RepoType: git
Repo: https://github.com/ramzan/dicegainz
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.0.1
versionCode: 2
commit: v1.0.1
subdir: app
gradle:
- yes
MaintainerNotes: |-
Summary and Description are maintained by upstream using
fastlane in the source repo
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.1
CurrentVersionCode: 2
|
Update Dice Gainz to 1.0.1 (2)
|
Update Dice Gainz to 1.0.1 (2)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
a6154ab47d0bba47020ad0488c770097494f93a2
|
metadata/net.xisberto.timerpx.yml
|
metadata/net.xisberto.timerpx.yml
|
Categories:
- Time
License: Apache-2.0
AuthorName: Humberto Fraga
AuthorEmail: [email protected]
SourceCode: https://gitlab.com/humbertofraga/timerx
IssueTracker: https://gitlab.com/humbertofraga/timerx/issues
AutoName: Timer +X
RepoType: git
Repo: https://gitlab.com/humbertofraga/timerx.git
Builds:
- versionName: '1.1'
versionCode: 3
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 4
commit: 8238cde46915f24636c2dddf9dda9fd06d0ede28
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.2'
CurrentVersionCode: 4
|
Categories:
- Time
License: Apache-2.0
AuthorName: Humberto Fraga
AuthorEmail: [email protected]
SourceCode: https://gitlab.com/humbertofraga/timerx
IssueTracker: https://gitlab.com/humbertofraga/timerx/issues
AutoName: Timer +X
RepoType: git
Repo: https://gitlab.com/humbertofraga/timerx.git
Builds:
- versionName: '1.1'
versionCode: 3
commit: v1.1
subdir: app
gradle:
- yes
- versionName: '1.2'
versionCode: 4
commit: 8238cde46915f24636c2dddf9dda9fd06d0ede28
subdir: app
gradle:
- yes
- versionName: 1.2.1
versionCode: 5
commit: b92b15d92200bc472fc99b901e3aeb467bb1cd24
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.2.1
CurrentVersionCode: 5
|
Update Timer +X to 1.2.1 (5)
|
Update Timer +X to 1.2.1 (5)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
b497d03ba846d3697c9c152e7b915be7e08e3f4b
|
metadata/timur.webcall.callee.yml
|
metadata/timur.webcall.callee.yml
|
Categories:
- Internet
License: GPL-3.0-only
AuthorName: Timur
AuthorEmail: [email protected]
AuthorWebSite: https://timur.mobi
SourceCode: https://github.com/mehrvarz/webcall-android
IssueTracker: https://github.com/mehrvarz/webcall-android/issues
AutoName: WebCall
RepoType: git
Repo: https://github.com/mehrvarz/webcall-android.git
Builds:
- versionName: 0.9.71
versionCode: 71
commit: 217e7dce805007a284995d5c63548ac1d3bf060a
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 0.9.71
CurrentVersionCode: 71
|
Categories:
- Internet
License: GPL-3.0-only
AuthorName: Timur
AuthorEmail: [email protected]
AuthorWebSite: https://timur.mobi
SourceCode: https://github.com/mehrvarz/webcall-android
IssueTracker: https://github.com/mehrvarz/webcall-android/issues
AutoName: WebCall
RepoType: git
Repo: https://github.com/mehrvarz/webcall-android.git
Builds:
- versionName: 0.9.71
versionCode: 71
commit: 217e7dce805007a284995d5c63548ac1d3bf060a
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
- versionName: 0.9.72
versionCode: 72
commit: 6aebd97b27280e98ee558d7669615edbdd851550
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 0.9.72
CurrentVersionCode: 72
|
Update WebCall to 0.9.72 (72)
|
Update WebCall to 0.9.72 (72)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
28aad80fa4402aa26e9b6bb4974f4794da848da5
|
docker-compose.yml
|
docker-compose.yml
|
db:
image: mongo:latest
web:
build: .
command: node app.js
volumes:
- .:/code
ports:
- "3000:3000"
links:
- db
environment:
PORT: 3000
DB_PORT: 27017
JWT_SECRET: ba7PXbg6Us7IWf3KhVst0eDz66Typwlz0d13vW2xmRuZuiWYVky6jwInLQPk6vl
CRYPTO_SALT: FeHuvKs1iMlMJSjC5PUVtk8Sy/ThNeHB64EJKivxmFyophIgNM1Ly8JwltBXB6ZEUgfC0dfKMTqpxAb3JHU+yFqdKaROR7b9WuiSHZIkQ/4NzaHu6ue8+P0x+iY9D1m7Z+bm3m6nsruerFfoKlWemwo1Zn9ENOAXOpwEddHY0LA=
CRYPTO_ITER: 12
|
db:
image: mongo:latest
web:
build: .
command: node app.js
volumes:
- .:/code
ports:
- "3000:3000"
links:
- db
environment:
PORT: 3000
DB_PORT: 27017
JWT_SECRET: ba7PXbg6Us7IWf3KhVst0eDz66Typwlz0d13vW2xmRuZuiWYVky6jwInLQPk6vl
CRYPTO_SALT: FeHuvKs1iMlMJSjC5PUVtk8Sy/ThNeHB64EJKivxmFyophIgNM1Ly8JwltBXB6ZEUgfC0dfKMTqpxAb3JHU+yFqdKaROR7b9WuiSHZIkQ/4NzaHu6ue8+P0x+iY9D1m7Z+bm3m6nsruerFfoKlWemwo1Zn9ENOAXOpwEddHY0LA=
CRYPTO_ITER: 100000
|
Add more hash iterations for the crypto.
|
Add more hash iterations for the crypto.
|
YAML
|
mit
|
garzdin/Assignment-2
|
f0ea285e7651d7eba9e5d1c9a23011374ab9da2e
|
docker-compose.yml
|
docker-compose.yml
|
version: "2"
services:
app:
build: .
image: keboola/elastic-writer
tty: true
stdin_open: true
app-tests:
image: keboola/elastic-writer
entrypoint: sh
command: -c 'sleep 10 && ./phpunit.sh'
tty: true
stdin_open: true
links:
- elasticsearch13
- elasticsearch22
elasticsearch13:
image: elasticsearch:1.3
command: elasticsearch -Des.cluster.name="SAPI-Testing-13"
elasticsearch22:
image: elasticsearch:2.2
command: elasticsearch -Des.cluster.name="SAPI-Testing-22"
|
version: "2"
services:
app:
build: .
image: keboola/elastic-writer
tty: true
stdin_open: true
volumes:
- ./:/code
links:
- elasticsearch13
- elasticsearch22
entrypoint: bash
app-tests:
image: keboola/elastic-writer
entrypoint: sh
command: -c 'sleep 10 && ./phpunit.sh'
tty: true
stdin_open: true
links:
- elasticsearch13
- elasticsearch22
elasticsearch13:
image: elasticsearch:1.3
command: elasticsearch -Des.cluster.name="SAPI-Testing-13"
elasticsearch22:
image: elasticsearch:2.2
command: elasticsearch -Des.cluster.name="SAPI-Testing-22"
|
Fix basic docker service (for development)
|
Fix basic docker service (for development)
[ci skip]
|
YAML
|
mit
|
keboola/elastic-writer,keboola/elastic-writer
|
bc75ca11f2cbb8789a30157124291dfa890d6f62
|
docker-compose.yml
|
docker-compose.yml
|
version: "3"
services:
facebox:
container_name: voldemort_facebox
image: machinebox/facebox
ports:
- 8080:8080
env_file: .env
postgres:
container_name: voldemort_postgres
image: postgres:9.6-alpine
ports:
- 5432:5432
|
version: "3"
services:
facebox:
container_name: voldemort_facebox
image: machinebox/facebox
ports:
- 8080:8080
env_file: .env
# postgres:
# container_name: voldemort_postgres
# image: postgres:9.6-alpine
# ports:
# - 5432:5432
|
Comment out Postgres container for now
|
Comment out Postgres container for now
|
YAML
|
apache-2.0
|
uncompiled/voldemort,uncompiled/voldemort
|
ebdc123d1bfecd4bbc52d38c71509d2a4bb6538d
|
docker-compose.yml
|
docker-compose.yml
|
ie:
build: .
ports:
- "3001"
links:
- mongodb:mongo
command: /go/src/github.com/intervention-engine/ie/server -huddle /go/src/github.com/intervention-engine/ie/configs/multifactor_huddle_config.json
endpoint:
build: ../ie-ccda-endpoint
ports:
- "3000:3000"
links:
- ie
mongodb:
image: mongo
volumes:
- /data/db:/data/db
ports:
- "27017"
multifactorriskservice:
build: ../multifactorriskservice
ports:
- "9000"
links:
- mongodb:mongo
- ie
command: /go/src/github.com/intervention-engine/multifactorriskservice/multifactorriskservice -redcap https://your_redcap_server/redcap/api -token your_redcap_api_token -fhir http://ie:3001
nginx:
build: ../nginx
ports:
- "443:443"
links:
- ie
command: /bin/bash -c "envsubst < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf '$$IE_PORT_3001_TCP_ADDR:$$IE_PORT_3001_TCP_PORT' && nginx -g 'daemon off;'"
|
ie:
build: .
ports:
- "3001"
links:
- mongodb:mongo
command: ./server -huddle ./configs/multifactor_huddle_config.json
endpoint:
build: ../ie-ccda-endpoint
ports:
- "3000:3000"
links:
- ie
mongodb:
image: mongo
volumes:
- /data/db:/data/db
ports:
- "27017"
multifactorriskservice:
build: ../multifactorriskservice
ports:
- "9000"
links:
- mongodb:mongo
- ie
command: ./multifactorriskservice -redcap https://your_redcap_server/redcap/api -token your_redcap_api_token -fhir http://ie:3001
nginx:
build: ../nginx
ports:
- "443:443"
links:
- ie
command: /bin/bash -c "envsubst < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf '$$IE_PORT_3001_TCP_ADDR:$$IE_PORT_3001_TCP_PORT' && nginx -g 'daemon off;'"
|
Fix docker compose command paths
|
Fix docker compose command paths
|
YAML
|
apache-2.0
|
intervention-engine/ie
|
b062ea2a16c452264b0f21003d9af1db2ac9293a
|
docker-compose.yml
|
docker-compose.yml
|
version: '2'
services:
server:
image: valiro21/fasttrainservice
ports:
- 8181:8181
links:
- db:db
db:
image: neo4j:3.0
ports:
- 7474:7474
- 7687:7687
volumes:
- ./database-data:/data
- ./database-logs:/logs
|
version: '2'
services:
server:
image: quay.io/valiro21/fasttrainservice
ports:
- 8181:8181
links:
- db:db
db:
image: quay.io/valiro21/fasttraindatabase
ports:
- 7474:7474
- 7687:7687
volumes:
- ./database-data:/data
- ./database-logs:/logs
|
Use quay.io images instead of old ones
|
Use quay.io images instead of old ones
Signed-off-by: Valentin Rosca <[email protected]>
|
YAML
|
apache-2.0
|
valiro21/FastTrainService,valiro21/FastTrainService
|
3c71dbabd71d6719047004aef3ce80efcc7577a6
|
packages/da/damnpacket.yaml
|
packages/da/damnpacket.yaml
|
homepage: ''
changelog-type: markdown
hash: 07fd567681ed53238fa040a46c771803a571cb701d23f839821a063c9861a867
test-bench-deps:
bytestring: -any
base: -any
hspec: -any
HUnit: -any
QuickCheck: -any
damnpacket: -any
maintainer: [email protected]
synopsis: Parsing dAmn messages
changelog: ! '# Revision history for damn
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
bytestring: -any
fail: -any
base: ==4.*
html-entities: -any
text: -any
th-lift-instances: -any
attoparsec: -any
template-haskell: -any
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
author: Jude Taylor
latest: '1.0.2'
description-type: haddock
description: This module provides a datatype and convenience functions for parsing,
manipulating, and rendering deviantART Message Network messages.
license-name: MIT
|
homepage: ''
changelog-type: markdown
hash: a9ebdda9e4a247ba6376acb0566742cb225b156c2712315bd281121e04ab50e5
test-bench-deps:
bytestring: -any
base: -any
hspec: -any
HUnit: -any
QuickCheck: -any
damnpacket: -any
maintainer: [email protected]
synopsis: Parsing dAmn messages
changelog: ! '# Revision history for damn
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
bytestring: -any
fail: -any
base: ==4.*
html-entities: -any
text: -any
th-lift-instances: -any
attoparsec: -any
template-haskell: -any
all-versions:
- '1.0.0'
- '1.0.1'
- '1.0.2'
- '1.1.0'
author: Jude Taylor
latest: '1.1.0'
description-type: haddock
description: This module provides a datatype and convenience functions for parsing,
manipulating, and rendering deviantART Message Network messages.
license-name: MIT
|
Update from Hackage at 2017-01-07T21:46:20Z
|
Update from Hackage at 2017-01-07T21:46:20Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
42a2f1f86c262594fc707bea6c6b906a9d03a3e1
|
stack.yaml
|
stack.yaml
|
extra-deps:
- aeson-1.0.2.1
- binary-0.8.4.1
- cryptohash-sha256-0.11.100.1
- echo-0.1.3
- ed25519-0.0.5.0
- mintty-0.1.1
- mmorph-1.0.9
- optparse-applicative-0.13.0.0
- git: https://github.com/rahulmutt/hpp.git
commit: be10dddb8011640be44dfcad99e523a957fa77be
- tar-0.5.0.3
- text-1.2.2.1
- turtle-1.3.0
- unix-compat-0.4.3.1
- zip-0.1.8
resolver: lts-6.27
flags:
mintty:
win32-2-5: false
extra-package-dbs: []
packages:
- '.'
# - '../hpp' # Used for local development
- codec-jvm
- libraries/eta-boot
- libraries/eta-boot-th
- utils/eta-pkg
- etlas/etlas
- etlas/etlas-cabal
- etlas/hackage-security/hackage-security
- shake
|
extra-deps:
- aeson-1.0.2.1
- binary-0.8.4.1
- cryptohash-sha256-0.11.100.1
- echo-0.1.3
- ed25519-0.0.5.0
- mintty-0.1.1
- mmorph-1.0.9
- optparse-applicative-0.13.0.0
- git: https://github.com/rahulmutt/hpp.git
commit: ad564c915f4b2ef1c07d884c1ddfbc37d385ea42
- tar-0.5.0.3
- text-1.2.2.1
- turtle-1.3.0
- unix-compat-0.4.3.1
- zip-0.1.8
resolver: lts-6.27
flags:
mintty:
win32-2-5: false
extra-package-dbs: []
packages:
- '.'
# - '../hpp' # Used for local development
- codec-jvm
- libraries/eta-boot
- libraries/eta-boot-th
- utils/eta-pkg
- etlas/etlas
- etlas/etlas-cabal
- etlas/hackage-security/hackage-security
- shake
|
Bump hpp commit to fix a bug with character literal handling
|
Bump hpp commit to fix a bug with character literal handling
|
YAML
|
bsd-3-clause
|
rahulmutt/ghcvm,rahulmutt/ghcvm,rahulmutt/ghcvm,rahulmutt/ghcvm,rahulmutt/ghcvm
|
86e81c135e42e11daa15730901aa9dfb6edd14b4
|
stack.yaml
|
stack.yaml
|
resolver: lts-6.2
extra-deps:
- Ranged-sets-0.3.0
- bytestring-tree-builder-0.2.7
- hasql-0.19.12
- hasql-pool-0.4.1
- hasql-transaction-0.4.5
- jwt-0.7.2
- postgresql-binary-0.9.0.1
- binary-parser-0.5.2
- contravariant-extras-0.3.2
- placeholders-0.1
- postgresql-error-codes-1
- success-0.2.6
- tuple-th-0.2.5
- wai-cors-0.2.5
- cryptohash-sha256-0.11.100.0
- hackage-security-0.5.2.1
- unordered-containers-0.2.7.1
- insert-ordered-containers-0.1.0.1
- swagger2-2.1
# - hjsonschema-0.10.0.2
- hjsonpointer-0.3.0.1
ghc-options:
postgrest: -O2 -Werror -Wall -fwarn-identities
packages:
- .
- location:
git: https://github.com/hudayou/hjsonschema.git
commit: 2dccf1b738920e4b1bea50804d2f1d546ab1b210
extra-dep: true
|
resolver: lts-6.2
extra-deps:
- Ranged-sets-0.3.0
- bytestring-tree-builder-0.2.7
- hasql-0.19.12
- hasql-pool-0.4.1
- hasql-transaction-0.4.5
- jwt-0.7.2
- postgresql-binary-0.9.0.1
- binary-parser-0.5.2
- contravariant-extras-0.3.2
- placeholders-0.1
- postgresql-error-codes-1
- success-0.2.6
- tuple-th-0.2.5
- wai-cors-0.2.5
- cryptohash-sha256-0.11.100.0
- hackage-security-0.5.2.1
- unordered-containers-0.2.7.1
- insert-ordered-containers-0.1.0.1
- swagger2-2.1
# - hjsonschema-0.10.0.2
- hjsonpointer-0.3.0.1
ghc-options:
postgrest: -O2 -Werror -Wall -fwarn-identities
packages:
- .
- location:
git: https://github.com/seagreen/hjsonschema
commit: 075da33626d9d5cf20645a998b86518222d6b2d6
extra-dep: true
|
Use hjsonschema from the develop branch
|
Use hjsonschema from the develop branch
|
YAML
|
mit
|
begriffs/postgrest,Skyfold/postgrest,diogob/postgrest,steve-chavez/postgrest,ruslantalpa/postgrest,steve-chavez/postgrest,NotBrianZach/postgrest
|
1c87c2c01057fc272fe44a8a779a8f56486d8937
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Python ${{ matrix.version }}
strategy:
matrix:
version: [2.7, 3.6, 3.8]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pytest mock pytest-cov
pytest --cov=./ --cov-report=xml
python setup.py install
- name: Run Tests
run: |
python -m pytest -v
- name: upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
fail_ci_if_error: true
verbose: true
|
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Python ${{ matrix.version }}
strategy:
matrix:
version: [2.7, 3.6, 3.8]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pytest mock pytest-cov
pytest --cov=./ --cov-report=xml
python setup.py install
- name: Run Tests
run: python -m pytest -v
- name: upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
# fail_ci_if_error: true
verbose: true
|
Comment out fail_ci_if_error for now
|
Comment out fail_ci_if_error for now
|
YAML
|
mit
|
Shopify/shopify_python_api
|
8f39fb49ce4aca1cdba3e7850d1b0b678ca923c8
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
# -----------------------------------------------------------------------------
# - invoked on push, pull_request, or manual trigger
# - test under 3 versions of python
# -----------------------------------------------------------------------------
name: build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Print environment values
run: |
cat $GITHUB_ENV
- name: Update pip
run: |
python -m pip install --upgrade pip
- name: Install dependencies
run: |
pip install .[dev]
- name: Test
run: |
pytest ./tests
- name: Doc build
run: |
make html -C docs/ SPHINXOPTS="-W --keep-going -n"
- name: Doctest
run: |
make doctest -C docs/
- name: Lint
run: |
pip install black==22.1.0 isort
black . --check -v
isort . --check -v
|
# -----------------------------------------------------------------------------
# - invoked on push, pull_request, or manual trigger
# - test under 3 versions of python
# -----------------------------------------------------------------------------
name: build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Print environment values
run: |
cat $GITHUB_ENV
- name: Update pip
run: |
python -m pip install --upgrade pip
- name: Install dependencies
run: |
pip install .[dev]
- name: Test
run: |
pytest ./tests
- name: Doc build
run: |
make html -C docs/ SPHINXOPTS="-W --keep-going -n"
- name: Doctest
run: |
make doctest -C docs/
- name: Lint
run: |
pip install black==22.1.0 isort
black . --check --diff
isort . --check --verbose --only-modified --diff
|
Update output options for black and isort
|
Update output options for black and isort
|
YAML
|
bsd-3-clause
|
ihmeuw/vivarium
|
88dbef45ae9d14a8139ee87e4cbc41b364b70e74
|
.github/workflows/maven.yml
|
.github/workflows/maven.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.
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 14 ]
steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml
|
# 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.
name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 14, 15-ea, 16-ea ]
steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml
|
Add early access builds to GitHub builds.
|
Add early access builds to GitHub builds.
|
YAML
|
apache-2.0
|
apache/commons-lang,apache/commons-lang,MarkDacek/commons-lang,britter/commons-lang,britter/commons-lang,MarkDacek/commons-lang,apache/commons-lang,MarkDacek/commons-lang,britter/commons-lang
|
143b607d072e4a4db71c83d4e8fba7b9d999171a
|
kbase.yml
|
kbase.yml
|
module-name:
kb_uploadmethods
module-description:
Import objects from staging area or web source.
service-language:
python
module-version:
1.0.16
owners:
[tgu2, jjeffryes, umaganapathyswork]
|
module-name:
kb_uploadmethods
module-description:
Import objects from staging area or web source.
service-language:
python
module-version:
1.0.17
owners:
[tgu2, jjeffryes, umaganapathyswork]
|
Revert "change all the staging file inputs to dynamic_dropdown type"
|
Revert "change all the staging file inputs to dynamic_dropdown type"
This reverts commit e2e2d6d89c4796573d08e802cd0871459d4743e9.
|
YAML
|
mit
|
Tianhao-Gu/kb_uploadmethods,Tianhao-Gu/kb_uploadmethods,Tianhao-Gu/kb_uploadmethods,Tianhao-Gu/kb_uploadmethods,kbaseapps/kb_uploadmethods,kbaseapps/kb_uploadmethods,kbaseapps/kb_uploadmethods,kbaseapps/kb_uploadmethods
|
6a2e06cffa26aade846769d160d86b3e190cde88
|
.github/workflows/tests.yml
|
.github/workflows/tests.yml
|
name: Tests
on:
pull_request:
branches:
- master
- release/*
push:
branches:
- master
- release/*
jobs:
mocha:
runs-on: ${{ matrix.os }}
name: Node.js ${{ matrix.node }}
strategy:
matrix:
os:
- windows-latest
- ubuntu-18.04
node:
- "10"
- "12"
steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: "Install Node.js"
uses: actions/setup-node@v1
with:
node-version: "${{ matrix.node }}"
- name: "Install dependencies"
run: npm ci
- name: "Run tests"
run: "npm run test"
- name: "Run tests"
run: "npm run test"
coverage:
name: "Upload coverage"
runs-on: ubuntu-latest
needs:
- "mocha"
steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: "Install Node.js"
uses: actions/setup-node@v1
with:
node-version: "12"
- name: "Install dependencies"
run: npm ci
- name: "Run tests"
run: "npm run test-coverage"
- name: "Upload to Coveralls"
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
|
name: Tests
on:
pull_request:
branches:
- master
- release/*
push:
branches:
- master
- release/*
jobs:
mocha:
runs-on: ${{ matrix.os }}
name: Node.js ${{ matrix.node }} on ${{ matrix.os }}
strategy:
matrix:
os:
- windows-latest
- ubuntu-18.04
node:
- "10"
- "12"
steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: "Install Node.js"
uses: actions/setup-node@v1
with:
node-version: "${{ matrix.node }}"
- name: "Install dependencies"
run: npm ci
- name: "Run tests"
run: "npm run test"
- name: "Run tests"
run: "npm run test"
coverage:
name: "Upload coverage"
runs-on: ubuntu-latest
needs:
- "mocha"
steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: "Install Node.js"
uses: actions/setup-node@v1
with:
node-version: "12"
- name: "Install dependencies"
run: npm ci
- name: "Run tests"
run: "npm run test-coverage"
- name: "Upload to Coveralls"
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
|
Add OS in build name
|
Add OS in build name
|
YAML
|
mit
|
elastic-coders/serverless-webpack,serverless-heaven/serverless-webpack
|
1c591fe7d9eb10fa207d0a318a86f9fc771bb9aa
|
Configuration/Settings.yaml
|
Configuration/Settings.yaml
|
TYPO3:
Flow:
security:
authentication:
providers:
'SomeAuthenticationProvider':
provider: 'PersistedUsernamePasswordProvider'
entryPoint: 'WebRedirect'
entryPointOptions:
routeValues:
'@package': 'SquadIT.WebApp'
'@controller': 'Authentication'
'@action': 'login'
|
TYPO3:
Flow:
security:
authentication:
providers:
'DefaultProvider':
provider: 'PersistedUsernamePasswordProvider'
entryPoint: 'WebRedirect'
entryPointOptions:
routeValues:
'@package': 'SquadIT.WebApp'
'@controller': 'Authentication'
'@action': 'login'
|
Rename authentication provider to `DefaultProvider`
|
TASK: Rename authentication provider to `DefaultProvider`
|
YAML
|
mit
|
PalatinCoder/SquadIT.WebApp,PalatinCoder/SquadIT.WebApp
|
c80c623140825e83da06220586af7a845bc339d5
|
update_kb_bsfcampus_cmr.yml
|
update_kb_bsfcampus_cmr.yml
|
---
# Ansible playbook for BSF Campus Cameroun
#It will be always localhost
- hosts: localhost
roles:
# # Can be enable/disable on demand but affect all devices
- { role: upgradeIdc, when: ansible_hostname == 'kb-bsfcampus-cmr-232' }
- tinc-static
# Start. has to be always enable
- logs
# Stop. has to be always enable
|
---
# Ansible playbook for BSF Campus Cameroun
#It will be always localhost
- hosts: localhost
roles:
# # Can be enable/disable on demand but affect all devices
- { role: upgradeIdc, when: ansible_hostname == 'kb-bsfcampus-cmr-232' }
- { role: updateMook, when: ansible_hostname == 'kb-bsfcampus-cmr-232' }
- tinc-static
# Start. has to be always enable
- logs
# Stop. has to be always enable
|
Enable updateMook role for test
|
Enable updateMook role for test
|
YAML
|
mit
|
ideascube/ansiblecube,ideascube/ansiblecube
|
1222e35f785ec809b9f820a5a818edbf0c9ea5a8
|
stacks/container-apps/scheduled-task.yml
|
stacks/container-apps/scheduled-task.yml
|
# stacks/container-apps/scheduled-task.yml
AWSTemplateFormatVersion: "2010-09-09"
Description: >
Creates a scheduled task based on a passed in ECS task definition
Parameters:
# ECS Cluster ################################################################
ECSClusterArn:
Type: String
ECSServiceIAMRoleArn:
Type: String
# Scheduling #################################################################
ScheduleCommand:
Type: String
Default: run-scheduled
ScheduleExpression:
Type: String
ScheduleTaskDefinitionName:
Type: String
ScheduleTaskDefinitionArn:
Type: String
Resources:
ScheduledRule:
Type: "AWS::Events::Rule"
Properties:
Description: Schedule the execution of the ECS task
ScheduleExpression: !Ref ScheduleExpression
State: "ENABLED"
Targets:
- Id: "ScheduledWorkerTaskDefinitionTarget"
Input: !Sub '{ "containerOverrides": [ { "name": "${ScheduleTaskDefinitionName}", "command": ${ScheduleCommand} } ] }'
RoleArn: !Ref ECSServiceIAMRoleArn
Arn: !Ref ECSClusterArn
EcsParameters:
TaskCount: 1
TaskDefinitionArn: !Ref ScheduleTaskDefinitionArn
|
# stacks/container-apps/scheduled-task.yml
AWSTemplateFormatVersion: "2010-09-09"
Description: >
Creates a scheduled task based on a passed in ECS task definition
Parameters:
# ECS Cluster ################################################################
ECSClusterArn:
Type: String
ECSServiceIAMRoleArn:
Type: String
# Scheduling #################################################################
ScheduleCommand:
Type: String
Default: run-scheduled
ScheduleExpression:
Type: String
ScheduleTaskDefinitionName:
Type: String
ScheduleTaskDefinitionArn:
Type: String
Resources:
EventsIAMRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Principal:
Service:
- "events.amazonaws.com"
Action:
- "sts:AssumeRole"
Path: "/"
ManagedPolicyArns:
- "arn:aws:iam::aws:policy/service-role/AmazonEC2ContainerServiceEventsRole"
ScheduledRule:
Type: "AWS::Events::Rule"
Properties:
Description: Schedule the execution of the ECS task
ScheduleExpression: !Ref ScheduleExpression
State: "ENABLED"
Targets:
- Id: "ScheduledWorkerTaskDefinitionTarget"
Input: !Sub '{ "containerOverrides": [ { "name": "${ScheduleTaskDefinitionName}", "command": ${ScheduleCommand} } ] }'
RoleArn: !GetAtt EventsIAMRole.Arn
Arn: !Ref ECSClusterArn
EcsParameters:
TaskCount: 1
TaskDefinitionArn: !Ref ScheduleTaskDefinitionArn
|
Add role for events to invike ecs tasks
|
Add role for events to invike ecs tasks
|
YAML
|
mit
|
PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure
|
55f79699edca3bbd03ecf557a6ee2f31b451d7b8
|
.github/workflows/publish.yml
|
.github/workflows/publish.yml
|
name: Publish
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
env:
MAILOSAUR_BASE_URL: https://mailosaur.com/
MAILOSAUR_SMTP_HOST: mailosaur.io
MAILOSAUR_SMTP_PORT: 2525
MAILOSAUR_API_KEY: ${{ secrets.MAILOSAUR_API_KEY }}
MAILOSAUR_SERVER: ${{ secrets.MAILOSAUR_SERVER }}
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 1.8
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Version
run: |
version=`git describe --abbrev=0 --tags` &&
sed -i s/\[0-9]\.\[0-9]\.\[0-9]/$version/ src/main/java/com/mailosaur/MailosaurClient.java &&
mvn versions:set -DnewVersion=$version
- name: Publish
run: mvn -B deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
|
name: Publish
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
env:
MAILOSAUR_BASE_URL: https://mailosaur.com/
MAILOSAUR_SMTP_HOST: mailosaur.io
MAILOSAUR_SMTP_PORT: 2525
MAILOSAUR_API_KEY: ${{ secrets.MAILOSAUR_API_KEY }}
MAILOSAUR_SERVER: ${{ secrets.MAILOSAUR_SERVER }}
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 1.8
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: Version
run: |
version=`git describe --abbrev=0 --tags` &&
sed -i s/\[0-9]\.\[0-9]\.\[0-9]/$version/ src/main/java/com/mailosaur/MailosaurClient.java &&
mvn versions:set -DnewVersion=$version
- name: Publish
run: mvn -B deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.OSSRH_TOKEN }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
|
Add central maven distribution support
|
Add central maven distribution support
|
YAML
|
mit
|
mailosaur/mailosaur-java,mailosaur/mailosaur-java
|
beeb6f75792337c13725ea638d37a5ba6365e155
|
.github/workflows/release.yml
|
.github/workflows/release.yml
|
name: Release
on:
push:
tags:
- dropwizard-kafka-*
jobs:
release:
runs-on: 'ubuntu-latest'
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
- uses: actions/[email protected]
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
server-id: ossrh
server-username: CI_DEPLOY_USERNAME
server-password: CI_DEPLOY_PASSWORD
gpg-passphrase: GPG_PASSPHRASE
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
- uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build and Deploy
run: ./mvnw -B -V -ntp -Prelease deploy
env:
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
name: Release
on:
push:
tags:
- dropwizard-kafka-*
jobs:
release:
runs-on: 'ubuntu-latest'
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
- uses: actions/[email protected]
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
server-id: ossrh
server-username: CI_DEPLOY_USERNAME
server-password: CI_DEPLOY_PASSWORD
gpg-passphrase: GPG_PASSPHRASE
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
- uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build and Deploy
run: ./mvnw -B -V -ntp -DperformRelease=true deploy
env:
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
Fix Maven profile in Release workflow
|
Fix Maven profile in Release workflow
|
YAML
|
apache-2.0
|
dropwizard/dropwizard-discovery
|
ea2172465a72f904246b6ac9a04b25b6bb96f075
|
.github/workflows/release.yml
|
.github/workflows/release.yml
|
name: Release
on:
push:
branches:
- master
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install build dependencies
run: pip install -U setuptools wheel build
- name: Build
run: python -m build .
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip_existing: true
password: ${{ secrets.pypi_password }}
|
name: Release
on:
push:
branches:
- main
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install build dependencies
run: pip install -U setuptools wheel build
- name: Build
run: python -m build .
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip_existing: true
password: ${{ secrets.pypi_password }}
|
Use main for default branch name
|
Use main for default branch name
|
YAML
|
apache-2.0
|
pypa/readme_renderer
|
ba9da86656c02f8b03eb9efc85048150f847b608
|
templates/diego-docker-registry-stub.yml
|
templates/diego-docker-registry-stub.yml
|
properties:
diego:
stager:
docker_registry_url: "http://docker_registry.service.consul:8080"
garden-linux:
insecure_docker_registry_list: ["10.244.2.6:8080"]
executor:
allow_privileged: true
|
properties:
diego:
stager:
docker_registry_url: "http://docker_registry.service.consul:8080"
garden-linux:
insecure_docker_registry_list: ["10.244.2.6:8080"]
executor:
allow_privileged: true
consul:
domain: consul
|
Add consul domain to registry stub
|
Add consul domain to registry stub
Signed-off-by: Georgi Sabev <[email protected]>
|
YAML
|
apache-2.0
|
cloudfoundry-incubator/diego-docker-cache-release,cloudfoundry-incubator/diego-docker-cache-release,cloudfoundry-incubator/docker-registry-release,cloudfoundry-incubator/diego-docker-cache-release,cloudfoundry-incubator/docker-registry-release,cloudfoundry-incubator/docker-registry-release
|
9252b7d0fd5136f7353604d45871e554cb213151
|
.github/workflows/release.yml
|
.github/workflows/release.yml
|
name: release
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Fetch all tags
run: git fetch --force --tags
-
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '^1.18.1'
run: go version
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
name: release
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Fetch all tags
run: git fetch --force --tags
-
name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '^1.18.1'
- run: go version
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Fix GitHub action running go version
|
Fix GitHub action running go version
|
YAML
|
mit
|
nstratos/mdt
|
9d4b12e054475be856fc62938369c5ad8b404faa
|
.github/workflows/website.yml
|
.github/workflows/website.yml
|
name: Website
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: setup Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: install dependencies
run: npm ci
- name: Run tests
run: npm test
|
name: Website
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: setup Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: install dependencies
run: npm ci
- name: Run tests
run: npm test
|
Update node version for GH Action
|
Update node version for GH Action
|
YAML
|
mit
|
oliworx/oliworx.github.com,oliworx/oliworx.github.com,oliworx/oliworx.github.com,oliworx/oliworx.github.com
|
660997944dc6ccf109e79f3a9b3033342b6dbeb2
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "2.7"
- "3.4"
cache: pip
env:
- DJANGO_VERSION=1.5.2
- DJANGO_VERSION=1.6.5
- DJANGO_VERSION=1.7.0
- DJANGO_VERSION=1.8.0
- DJANGO_VERSION=1.8.6
- DJANGO_VERSION=1.9.1
install:
- pip install -q Django==$DJANGO_VERSION
- pip install coveralls
- pip install mock
- pip install south
- pip install nose
- pip install testfixtures
script:
- python setup.py build
- PYTHONHASHSEED=0 python setup.py nosetests --verbosity 2 --with-coverage --cover-tests --cover-erase
after_success:
- coveralls
|
sudo: false
language: python
python:
- "2.7"
- "3.4"
cache: pip
env:
- DJANGO_VERSION=1.5.2
- DJANGO_VERSION=1.6.5
- DJANGO_VERSION=1.7.0
- DJANGO_VERSION=1.8.0
- DJANGO_VERSION=1.8.6
- DJANGO_VERSION=1.9.4
install:
- pip install -q Django==$DJANGO_VERSION
- pip install coveralls
- pip install mock
- pip install south
- pip install nose
- pip install testfixtures
script:
- python setup.py build
- PYTHONHASHSEED=0 python setup.py nosetests --verbosity 2 --with-coverage --cover-tests --cover-erase
after_success:
- coveralls
|
Test for last Django version
|
Test for last Django version
|
YAML
|
mit
|
jazzband/django-embed-video,yetty/django-embed-video,jazzband/django-embed-video,yetty/django-embed-video
|
691ea54b577c443d066e3cc4845b1537ea5a31a7
|
.travis.yml
|
.travis.yml
|
language: c
os:
- linux
- osx
matrix:
include:
- os: osx
env: TARGET_MACHINE=i3osx
- os: osx
env: TARGET_MACHINE=ti3osx
- os: osx
env: TARGET_MACHINE=a6osx
- os: osx
env: TARGET_MACHINE=ta6osx
- os: linux
env: TARGET_MACHINE=i3le
- os: linux
env: TARGET_MACHINE=ti3le
- os: linux
env: TARGET_MACHINE=a6le
- os: linux
env: TARGET_MACHINE=ta6le
script:
- ./configure $TARGET_MACHINE && make && make test 2>&1 | tee Make.out | grep '^matting '
|
language: c
matrix:
include:
- os: osx
env: TARGET_MACHINE=i3osx
- os: osx
env: TARGET_MACHINE=ti3osx
- os: osx
env: TARGET_MACHINE=a6osx
- os: osx
env: TARGET_MACHINE=ta6osx
- os: linux
env: TARGET_MACHINE=i3le
- os: linux
env: TARGET_MACHINE=ti3le
- os: linux
env: TARGET_MACHINE=a6le
- os: linux
env: TARGET_MACHINE=ta6le
script:
- ./configure -m=$TARGET_MACHINE && make && make test 2>&1 | tee Make.out | grep '^matting '
|
Change to (hopefully) eliminate extraneous configurations.
|
Change to (hopefully) eliminate extraneous configurations.
|
YAML
|
apache-2.0
|
mflatt/ChezScheme,mflatt/ChezScheme,mflatt/ChezScheme
|
4dd0707e944fb0ee0150e9de9e81983019007356
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.6
- 3.5
- 2.7
script: make test
notifications:
email: false
env:
global:
- DATABASE_URL='postgres://postgres@localhost/incuna_auth'
matrix:
- DJANGO='django>=1.10,<1.11'
- DJANGO='django>=1.11,<2.0'
- DJANGO='django>=2.0,<2.1'
- DJANGO='django>=2.1,<2.2'
matrix:
exclude:
- env: DJANGO='django>=2.0,<2.1'
python: 2.7
- env: DJANGO='django>=2.1,<2.2'
python: 2.7
services:
- postgresql
addons:
postgresql: "9.4"
before_script:
- psql -c 'CREATE DATABASE incuna_auth' -U postgres;
install:
- pip install $DJANGO
- pip install -r requirements.txt
|
language: python
python:
- 3.6
- 3.5
- 2.7
script: make test
notifications:
email: false
env:
global:
- DATABASE_URL='postgres://postgres@localhost/incuna_auth'
matrix:
- DJANGO='django>=1.11,<2.0'
- DJANGO='django>=2.0,<2.1'
- DJANGO='django>=2.1,<2.2'
matrix:
exclude:
- env: DJANGO='django>=2.0,<2.1'
python: 2.7
- env: DJANGO='django>=2.1,<2.2'
python: 2.7
services:
- postgresql
addons:
postgresql: "9.4"
before_script:
- psql -c 'CREATE DATABASE incuna_auth' -U postgres;
install:
- pip install $DJANGO
- pip install -r requirements.txt
|
Drop support for Django < 1.11
|
Drop support for Django < 1.11
|
YAML
|
bsd-2-clause
|
incuna/incuna-auth,incuna/incuna-auth
|
44eb95fd81d57441b4dead8f832fdbfd93a0fbe2
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
env:
matrix:
- DB=MYSQL CORE_RELEASE=3.1
- DB=MYSQL CORE_RELEASE=master
before_script:
- phpenv rehash
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
script:
- phpunit yepnopesilverstripe/tests/
|
language: php
php:
- 5.4
env:
matrix:
- DB=MYSQL CORE_RELEASE=3.1
- DB=MYSQL CORE_RELEASE=3
before_script:
- phpenv rehash
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
script:
- phpunit yepnopesilverstripe/tests/
|
Build against 3 branch of framework, not master
|
Build against 3 branch of framework, not master
|
YAML
|
bsd-3-clause
|
kinglozzer/YepnopeSilverStripe,kinglozzer/YepnopeSilverStripe
|
910d613ec3d09d5e4d2b0cc3bc3e2344991abcdd
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
php: 7.1
env:
global:
- PATH="$TRAVIS_BUILD_DIR/vendor/bin:$PATH"
before_install:
- |
# Remove Xdebug for a huge performance increase:
if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then
phpenv config-rm xdebug.ini
else
echo "xdebug.ini does not exist"
fi
install:
- composer install
before_script:
- composer validate
- ./ci/prepare.sh
jobs:
include:
- stage: deploy
env: DEPLOY_BRANCH=release/v4
script: ./ci/deploy.sh
cache:
directories:
- $HOME/.composer/cache
branches:
only:
- develop-v4
- release/v4
notifications:
email:
on_success: never
on_failure: change
|
sudo: false
language: php
php: 7.1
env:
global:
- PATH="$TRAVIS_BUILD_DIR/vendor/bin:$PATH"
before_install:
- |
# Remove Xdebug for a huge performance increase:
if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then
phpenv config-rm xdebug.ini
else
echo "xdebug.ini does not exist"
fi
install:
- composer install --no-interaction
before_script:
- composer validate
- ./ci/prepare.sh
jobs:
include:
- stage: deploy
env: DEPLOY_BRANCH=release/v4
script: ./ci/deploy.sh
cache:
directories:
- $HOME/.composer/cache
branches:
only:
- develop-v4
- release/v4
notifications:
email:
on_success: never
on_failure: change
|
Add no-interaction flag in composer install
|
Add no-interaction flag in composer install
|
YAML
|
mit
|
rtCamp/easyengine,rtCamp/easyengine,EasyEngine/easyengine,rtCamp/easyengine,EasyEngine/easyengine
|
e6f36a65335fbd8b400bca4e0037047c14990876
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- '7.1'
env:
- NO_INTERACTION=1
before_script:
- phpize
- ./configure --enable-sha3
- make
script: make test
|
language: php
php:
- '5.6'
- '7.0'
- '7.1'
env:
- NO_INTERACTION=1
before_script:
- phpize
- ./configure --enable-sha3
- make
script: make test
|
Remove unsupported version of PHP from Travis
|
Remove unsupported version of PHP from Travis
|
YAML
|
mit
|
strawbrary/php-sha3,strawbrary/php-sha3,strawbrary/php-sha3
|
1ee4ecf421e7cdb37bd01ba034f793d05cfe7da0
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
matrix:
allow_failures:
- rvm: jruby-head
fast_finish: true
include:
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.10
gemfile: Gemfile
- rvm: 2.2.6
gemfile: Gemfile
- rvm: 2.3.3
gemfile: Gemfile
- rvm: 2.4.0
gemfile: Gemfile
- rvm: jruby-head
gemfile: Gemfile
script: bundle exec rake travis:ci
notifications:
email:
- [email protected]
addons:
code_climate:
repo_token: 44bcd04b60228fc94f2be3a5e0346441b5ea156e94e89a17fc24c5d3de483721
|
language: ruby
sudo: false
matrix:
allow_failures:
- rvm: jruby-head
fast_finish: true
include:
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.10
gemfile: Gemfile
- rvm: 2.2.6
gemfile: Gemfile
- rvm: 2.3.3
gemfile: Gemfile
- rvm: 2.4.0
gemfile: Gemfile
- rvm: jruby-head
gemfile: Gemfile
script: bundle exec rake travis:ci
notifications:
email:
- [email protected]
|
Remove code climate from repo
|
Remove code climate from repo
|
YAML
|
mit
|
jrgarcia/fog-vsphere,fog/fog-vsphere
|
31f8ac275b56a8268c57bf09a1e6bbf54c26a692
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
|
language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
script: bundle exec rspec spec
notifications:
email:
- [email protected]
|
Add RSpec script to Travis script, and update notification emails
|
Add RSpec script to Travis script, and update notification emails
|
YAML
|
mit
|
wazery/norby,wazery/norby
|
cd97c53cc236bc6aecbf8da4c57329ed54d6cca5
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
- oraclejdk7
install: mvn install -Dgpg.skip=true -DskipTests=true -Dmaven.javadoc.skip=true -B -V
before_script: export TESTNG_VERSION=$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.4.0:exec)
script: mvn -f pom-test.xml test -B
|
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
install: mvn install -Dgpg.skip=true -DskipTests=true -Dmaven.javadoc.skip=true -B -V
before_script: export TESTNG_VERSION=$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.4.0:exec)
script: mvn -f pom-test.xml test -B
|
Revert "Don't test on OpenJDK"
|
Revert "Don't test on OpenJDK"
This reverts commit 72328b13c9520ceee61cdabe2ff6b26a965c9896.
|
YAML
|
apache-2.0
|
6ft-invsbl-rbbt/testng,juherr/testng,VikingDen/testng,JeshRJ/myRepRJ,VikingDen/testng,aledsage/testng,missedone/testng,JeshRJ/myRepRJ,jaypal/testng,bmlct/testng,missedone/testng,rschmitt/testng,6ft-invsbl-rbbt/testng,bmlct/testng,jerome-jacob/testng,tobecrazy/testng,msebire/testng,scr/testng,s2oBCN/testng,krmahadevan/testng,akozlova/testng,krmahadevan/testng,cbeust/testng,VladRassokhin/testng,aledsage/testng,meeroslaph/testng,AJ-72/testng,jerome-jacob/testng,bmlct/testng,VikingDen/testng,s2oBCN/testng,AJ-72/testng,cbeust/testng,krmahadevan/testng,aledsage/testng,gjuillot/testng,emopers/testng,raindev/testng,scr/testng,tobecrazy/testng,scr/testng,msebire/testng,jaypal/testng,bmlct/testng,gjuillot/testng,raindev/testng,jaypal/testng,rschmitt/testng,jaypal/testng,jerome-jacob/testng,msebire/testng,VladRassokhin/testng,cbeust/testng,tobecrazy/testng,jaypal/testng,rschmitt/testng,VladRassokhin/testng,emopers/testng,missedone/testng,jerome-jacob/testng,scr/testng,meeroslaph/testng,juherr/testng,smaudet/testng,smaudet/testng,JeshRJ/myRepRJ,VladRassokhin/testng,meeroslaph/testng,tobecrazy/testng,smaudet/testng,juherr/testng,VladRassokhin/testng,akozlova/testng,JeshRJ/myRepRJ,aledsage/testng,gjuillot/testng,krmahadevan/testng,juherr/testng,akozlova/testng,gjuillot/testng,VikingDen/testng,missedone/testng,raindev/testng,cbeust/testng,scr/testng,cbeust/testng,AJ-72/testng,AJ-72/testng,aledsage/testng,juherr/testng,msebire/testng,meeroslaph/testng,akozlova/testng,s2oBCN/testng,missedone/testng,tobecrazy/testng,rschmitt/testng,bmlct/testng,6ft-invsbl-rbbt/testng,VladRassokhin/testng,emopers/testng,emopers/testng,smaudet/testng,6ft-invsbl-rbbt/testng,rschmitt/testng,gjuillot/testng,raindev/testng,raindev/testng,s2oBCN/testng,raindev/testng,6ft-invsbl-rbbt/testng,akozlova/testng,aledsage/testng,JeshRJ/myRepRJ,jerome-jacob/testng,VikingDen/testng,emopers/testng,AJ-72/testng,msebire/testng,meeroslaph/testng,s2oBCN/testng,AJ-72/testng,krmahadevan/testng,smaudet/testng
|
c2338f9eb0143cf78909b2afe8ae8a06d8975b0a
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.6
install:
- pip install -r requirements.txt
script:
- python -m unittest calibrate.py
|
language: python
python:
- 3.6
install:
- pip install -r requirements.txt
- pip install pycodestyle
script:
- python -m unittest calibrate.py
- pycodestyle .
|
Add pycodestyle to Travis test
|
Add pycodestyle to Travis test
|
YAML
|
mit
|
1024jp/LensCalibrator
|
933d11caef491dd8155e4f33ceefdd0d81b165e2
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-py3.txt; else pip install -r requirements-py2.txt; fi
# command to run tests
script: nosetests tests
sudo: false
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
# command to install dependencies
install:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-py3.txt; else pip install -r requirements-py2.txt; fi
# command to run tests
script: nosetests tests
sudo: false
|
Add pypy to Travis tests.
|
Add pypy to Travis tests.
|
YAML
|
mit
|
onyxfish/journalism,onyxfish/agate,wireservice/agate
|
97c8385ca14aa39ed925334ee629a5f853d5d11c
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
addons:
chrome: stable
dist: trusty
sudo: required
matrix:
fast_finish: true
allow_failures:
- env: TEST_TYPE=examples CAPA="browserName:chrome,platform:Windows 7,screenResolution:1680x1050"
env:
- TEST_TYPE=acceptance-test
- TEST_TYPE=examples CAPA="browserName:chrome,platform:Windows 7,screenResolution:1680x1050"
cache:
directories:
- $HOME/.m2
script:
- travis_wait 60 ./travis_build_and_test.sh
after_success:
- "[[ \"${TRAVIS_PULL_REQUEST}\" == \"false\" && \"${TRAVIS_BRANCH}\" == \"master\" && \"${TEST_TYPE}\" == \"acceptance-test\" ]] && { ./travis_publish_results.sh target/*.zip hsac-fitnesse-fixtures-snapshot-standalone.zip; python travis_add_server.py; mvn -DskipTests deploy --settings ~/.m2/mySettings.xml; };"
|
language: java
jdk:
- oraclejdk8
addons:
chrome: stable
dist: trusty
sudo: required
matrix:
fast_finish: true
allow_failures:
- env: TEST_TYPE=examples CAPA="browserName:chrome,platform:Windows 10,screenResolution:1680x1050"
env:
- TEST_TYPE=acceptance-test
- TEST_TYPE=examples CAPA="browserName:chrome,platform:Windows 10,screenResolution:1680x1050"
cache:
directories:
- $HOME/.m2
script:
- travis_wait 60 ./travis_build_and_test.sh
after_success:
- "[[ \"${TRAVIS_PULL_REQUEST}\" == \"false\" && \"${TRAVIS_BRANCH}\" == \"master\" && \"${TEST_TYPE}\" == \"acceptance-test\" ]] && { ./travis_publish_results.sh target/*.zip hsac-fitnesse-fixtures-snapshot-standalone.zip; python travis_add_server.py; mvn -DskipTests deploy --settings ~/.m2/mySettings.xml; };"
|
Switch sample tests to Windows 10
|
Switch sample tests to Windows 10
|
YAML
|
apache-2.0
|
fhoeben/hsac-fitnesse-fixtures,fhoeben/hsac-fitnesse-fixtures,fhoeben/hsac-fitnesse-fixtures,fhoeben/hsac-fitnesse-fixtures
|
fb961f0c0d3ac111ecc75ff2cdc93eaf3b3be080
|
.travis.yml
|
.travis.yml
|
language: python
python:
- '2.7'
- '3.4'
# whitelist
branches:
only:
- master
before_install:
- pip install biopython
- pip install dendropy
script:
py.test --cov=pandascharm.py
after_success:
- codecov
|
language: python
python:
- '2.7'
- '3.4'
# whitelist
branches:
only:
- master
before_install:
- pip install codecov
- pip install pytest pytest-cov
- pip install biopython
- pip install dendropy
script:
py.test --cov=pandascharm.py
after_success:
- codecov
|
Add codecov, pytest, and pytest-cov
|
Add codecov, pytest, and pytest-cov
|
YAML
|
mit
|
jmenglund/pandas-charm
|
c936bc1bbc48ce134e76b5944354762a41fe513c
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
cache:
directories:
- "$HOME/.pip-cache/"
install:
- "pip install flake8"
- "pip install coverage"
- "pip install pytest-cov"
- "pip install coveralls"
before_script:
- "flake8 --max-line-length=140"
script:
- "py.test --cov=."
after_success:
- "coveralls"
|
language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 || $TRAVIS_PYTHON_VERSION == 3.2 || $TRAVIS_PYTHON_VERSION == 3.3 ]]; then
- pip install flake8==2.6.0
- else
- pip install flake8
- fi
- pip install coverage
- pip install pytest-cov
- pip install coveralls
before_script:
- flake8 --max-line-length=140
script:
- py.test --cov=.
after_success:
- coveralls
|
Remove some python versions and try conditional flake8 installs
|
Remove some python versions and try conditional flake8 installs
|
YAML
|
bsd-3-clause
|
Remolten/galena
|
ab24bb6a0ba763cc131539c32c25a7c27c3a0c45
|
.travis.yml
|
.travis.yml
|
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
# - "3.5" # NOTE an issue with pathlib.resolve breaks our tests on 3.5
- "3.6"
install:
- bash -ex libs/travis-conda-scripts/scripts/travis_install.sh
script:
- source libs/travis-conda-scripts/scripts/config.sh
- bash -ex libs/travis-conda-scripts/scripts/build.sh
deploy:
- provider: script
skip_cleanup: true
script: bash -ex libs/travis-conda-scripts/scripts/upload.sh cinpla main
on:
tags: true
- provider: script
skip_cleanup: true
script: bash -ex libs/travis-conda-scripts/scripts/upload.sh cinpla dev
on:
branch: dev
|
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
# - "3.5" # NOTE an issue with pathlib.resolve breaks our tests on 3.5
- "3.6"
- "3.7"
install:
- bash -ex libs/travis-conda-scripts/scripts/travis_install.sh
script:
- source libs/travis-conda-scripts/scripts/config.sh
- bash -ex libs/travis-conda-scripts/scripts/build.sh
deploy:
- provider: script
skip_cleanup: true
script: bash -ex libs/travis-conda-scripts/scripts/upload.sh cinpla main
on:
tags: true
- provider: script
skip_cleanup: true
script: bash -ex libs/travis-conda-scripts/scripts/upload.sh cinpla dev
on:
branch: dev
|
Add Python 3.7 to build
|
Add Python 3.7 to build
|
YAML
|
mit
|
CINPLA/exdir,CINPLA/exdir,CINPLA/exdir
|
3f9a0c21755b5e3f370e573a87264883a910165b
|
.travis.yml
|
.travis.yml
|
language: python
cache: pip
dist: xenial
python:
- 3.6
- 3.7
- 3.8
env:
- DJANGO_VERSION=1.11.20
- DJANGO_VERSION=2.1.8
- DJANGO_VERSION=2.2
- DJANGO_VERSION=1.11.20 DRF_VERSION=3.9.2
- DJANGO_VERSION=2.1.8 DRF_VERSION=3.9.2
- DJANGO_VERSION=2.2 DRF_VERSION=3.9.2
install:
- pip install -r .travis/requirements.txt
- pip install --upgrade "Django==${DJANGO_VERSION}"
- if [[ $DRF_VERSION ]]; then pip install --upgrade djangorestframework==${DRF_VERSION}; fi
script: python runtests.py
|
language: python
cache: pip
dist: xenial
python:
- 3.6
- 3.7
- 3.8
env:
- DJANGO_VERSION=1.11.26
- DJANGO_VERSION=2.2.8
- DJANGO_VERSION=3.0
- DJANGO_VERSION=1.11.26 DRF_VERSION=3.9.2
- DJANGO_VERSION=2.2.8 DRF_VERSION=3.9.2
- DJANGO_VERSION=3.0 DRF_VERSION=3.9.2
install:
- pip install -r .travis/requirements.txt
- pip install --upgrade "Django==${DJANGO_VERSION}"
- if [[ $DRF_VERSION ]]; then pip install --upgrade djangorestframework==${DRF_VERSION}; fi
script: python runtests.py
|
Add django 3, update versions
|
Add django 3, update versions
|
YAML
|
mit
|
nshafer/django-hashid-field,nshafer/django-hashid-field
|
48c086445020a12814e5be57a8fa258ca2d81a92
|
updates/version.yaml
|
updates/version.yaml
|
1.0.0:
- 'Initialize plugin.'
- builder_table_create_vdomah_roles_roles.php
- builder_table_create_vdomah_roles_permissions.php
- users_add_role_id_column.php
1.0.1:
- 'Permission name transaltable. Readme update. Move static methods to Helper'
1.0.2:
- 'Soft implementation of RainLab.Translate'
1.0.3:
- 'SimpleTree trait implemented, fixed roles dropdown in user form'
1.0.4:
- 'Replaced hardcoded backend urls with dynamic links in view (thanks to Damian Verhaar)'
1.0.5:
- 'Replaced hardcoded backend urls with dynamic links in controller (thanks to Damian Verhaar)'
1.1.0:
- 'CMS Pages access managment by assigning roles and permissions'
1.1.1:
- 'CMS Pages access managment moved to separate tab'
1.1.2:
- 'Fixed bug wich prevented returning the whole ancestor tree in a role (thanks Daniel Tamas). En translations updated'
1.1.3:
- '"Logged only" CMS page parameter added'
1.2.0:
- 'Lovata.Buddies plugin integration'
- buddies_add_role_id_column.php
1.2.1:
- 'Add fillable to Role model'
|
1.0.0:
- 'Initialize plugin.'
- builder_table_create_vdomah_roles_roles.php
- builder_table_create_vdomah_roles_permissions.php
- users_add_role_id_column.php
1.0.1:
- 'Permission name transaltable. Readme update. Move static methods to Helper'
1.0.2:
- 'Soft implementation of RainLab.Translate'
1.0.3:
- 'SimpleTree trait implemented, fixed roles dropdown in user form'
1.0.4:
- 'Replaced hardcoded backend urls with dynamic links in view (thanks to Damian Verhaar)'
1.0.5:
- 'Replaced hardcoded backend urls with dynamic links in controller (thanks to Damian Verhaar)'
1.1.0:
- 'CMS Pages access managment by assigning roles and permissions'
1.1.1:
- 'CMS Pages access managment moved to separate tab'
1.1.2:
- 'Fixed bug wich prevented returning the whole ancestor tree in a role (thanks Daniel Tamas). En translations updated'
1.1.3:
- '"Logged only" CMS page parameter added'
1.2.0:
- 'Lovata.Buddies plugin integration'
1.2.1:
- 'Check if users table exists in migrations before altering it'
- buddies_add_role_id_column.php
1.2.2:
- 'Add fillable to Role model'
|
Add fillable to Role model
|
Add fillable to Role model
|
YAML
|
mit
|
vdomah/octoroles,vdomah/octoroles
|
6a2960b47a1c6ed432b6b3462ae4a3d2eb543c78
|
metadata/org.bombusmod.yml
|
metadata/org.bombusmod.yml
|
Categories:
- Internet
License: GPL-2.0-only
SourceCode: https://github.com/BombusMod/BombusMod
IssueTracker: https://github.com/BombusMod/BombusMod/issues
AutoName: BombusMod
Description: |-
Full-featured XMPP client based on a J2ME app. Website and source code docs are
in Russian.
RepoType: git
Repo: https://github.com/BombusMod/BombusMod
Builds:
- versionName: 0.8.1304
versionCode: 1304
commit: '1304'
subdir: android
forceversion: true
forcevercode: true
extlibs:
- antenna/antenna-bin-1.2.1-beta.jar
prebuild:
- mv libs/antenna*.jar .
- ant antenna-preprocess
- sed -i 's/${bombus.raw-revision}/-/g' AndroidManifest.xml
- versionName: 0.9.1415
versionCode: 1416
commit: 0.9.1416
submodules: true
gradle:
- yes
scanignore:
- src/main/assets/smiles/animate.bin
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 0.9.1415
CurrentVersionCode: 1416
|
Categories:
- Internet
License: GPL-2.0-only
SourceCode: https://github.com/BombusMod/BombusMod
IssueTracker: https://github.com/BombusMod/BombusMod/issues
AutoName: BombusMod
Description: |-
Full-featured XMPP client based on a J2ME app. Website and source code docs are
in Russian.
RepoType: git
Repo: https://github.com/BombusMod/BombusMod
Builds:
- versionName: 0.8.1304
versionCode: 1304
commit: '1304'
subdir: android
forceversion: true
forcevercode: true
extlibs:
- antenna/antenna-bin-1.2.1-beta.jar
prebuild:
- mv libs/antenna*.jar .
- ant antenna-preprocess
- sed -i 's/${bombus.raw-revision}/-/g' AndroidManifest.xml
- versionName: 0.9.1415
versionCode: 1416
commit: 0.9.1416
submodules: true
gradle:
- yes
scanignore:
- src/main/assets/smiles/animate.bin
- versionName: 0.9.1418
versionCode: 1418
commit: 0.9.1418
submodules: true
gradle:
- yes
scanignore:
- src/main/assets/smiles/animate.bin
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: 0.9.1418
CurrentVersionCode: 1418
|
Update BombusMod to 0.9.1418 (1418)
|
Update BombusMod to 0.9.1418 (1418)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
a31b24a3f4e2dccdbfdd304ca3225688a4dfc66a
|
.github/actions/docker-install-macos/action.yml
|
.github/actions/docker-install-macos/action.yml
|
---
name: "Install Docker on macOS"
description: "Performs an unattended install of Docker Desktop for MacOS"
runs:
using: "composite"
steps:
# From https://github.com/docker/for-mac/issues/2359#issuecomment-943131345
# Install from the command line is officially supported since Docker Desktop 4.7.0:
# https://docs.docker.com/desktop/mac/install/#install-from-the-command-line
- run: |
brew install --cask docker
sudo /Applications/Docker.app/Contents/MacOS/Docker --unattended --install-privileged-components
open -a /Applications/Docker.app --args --unattended --accept-license
while ! /Applications/Docker.app/Contents/Resources/bin/docker info &>/dev/null; do sleep 1; done
shell: bash
branding:
icon: "tag"
color: "blue"
...
|
---
name: "Install Docker on macOS"
description: "Performs an unattended install of Docker Desktop for MacOS"
# Deprecated: Colima will be pre-installed: https://github.com/actions/runner-images/pull/6285
runs:
using: "composite"
steps:
- run: brew install docker colima
shell: bash
- run: colima start
shell: bash
# Deprecated: we're now using Colima https://github.com/abiosoft/colima
#runs:
# using: "composite"
# steps:
# # From https://github.com/docker/for-mac/issues/2359#issuecomment-943131345
# - run: |
# brew install --cask docker
# sudo /Applications/Docker.app/Contents/MacOS/Docker --unattended --install-privileged-components
# open -a /Applications/Docker.app --args --unattended --accept-license
# while ! /Applications/Docker.app/Contents/Resources/bin/docker info &>/dev/null; do sleep 1; done
# shell: bash
branding:
icon: "tag"
color: "blue"
...
|
Replace Docker for macOS with abiosoft/colima
|
Replace Docker for macOS with abiosoft/colima
|
YAML
|
mit
|
docker-client/docker-filesocket,docker-client/docker-filesocket
|
430155a46e14dd28979b6996bc6e96efe6789e6c
|
.github/workflows/gradle-wrapper-validation.yml
|
.github/workflows/gradle-wrapper-validation.yml
|
name: "Validate Gradle Wrapper"
on:
push:
branches:
- main
- release-*
pull_request:
jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: gradle/wrapper-validation-action@v1
|
name: "Validate Gradle Wrapper"
on:
push:
branches:
- main
- release-*
pull_request:
jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: gradle/[email protected]
|
Bump gradle/wrapper-validation-action from 1 to 1.0.3
|
Bump gradle/wrapper-validation-action from 1 to 1.0.3
Bumps [gradle/wrapper-validation-action](https://github.com/gradle/wrapper-validation-action) from 1 to 1.0.3.
- [Release notes](https://github.com/gradle/wrapper-validation-action/releases)
- [Commits](https://github.com/gradle/wrapper-validation-action/compare/v1...v1.0.3)
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Peter Gafert <[email protected]>
|
YAML
|
apache-2.0
|
TNG/ArchUnit,TNG/ArchUnit
|
b77e3bc2906b12a12e801735aa97514580a2c7f9
|
.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 }}
- 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 }}
- 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 PyPI install on schedule
|
Put PyPI install on schedule
|
YAML
|
agpl-3.0
|
openclimatedata/pymagicc,openclimatedata/pymagicc
|
76f9a51171fc1b7c17d334953b240019dc3d4f6d
|
packages/cl/clist.yaml
|
packages/cl/clist.yaml
|
homepage: https://github.com/strake/clist.hs
changelog-type: ''
hash: f6af52ebb3268323778c3d27f5779adcf85bf5651ec5b59f37e1779f5fe262a1
test-bench-deps: {}
maintainer: [email protected]
synopsis: Counted list
changelog: ''
basic-deps:
base-unicode-symbols: -any
peano: -any
base: ! '>=4.8 && <4.9'
all-versions:
- '0.1.0.0'
author: M Farkas-Dyck
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: OtherLicense
|
homepage: https://github.com/strake/clist.hs
changelog-type: ''
hash: 5508b5f87701885103461d4e1b28594051e698fd6f09254cddd4b37676809d02
test-bench-deps: {}
maintainer: [email protected]
synopsis: Counted list
changelog: ''
basic-deps:
base-unicode-symbols: -any
peano: -any
base: ! '>=4.8 && <5'
all-versions:
- '0.1.0.0'
author: M Farkas-Dyck
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: OtherLicense
|
Update from Hackage at 2017-03-12T23:38:15Z
|
Update from Hackage at 2017-03-12T23:38:15Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
9e4186cb2b4ed7fd88683b74f81cf0df2e7fd575
|
pyall/lmfit-0.9.3/meta.yaml
|
pyall/lmfit-0.9.3/meta.yaml
|
{% set version = "0.9.3" %}
package:
name: lmfit
version: {{ version }}
source:
git_url: https://github.com/lmfit/lmfit-py
git_rev: {{ version }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- numpy
- scipy
run:
# - emcee
- ipython
- ipywidgets
- matplotlib
- numpy
- pandas
- python
- scipy
test:
requires:
- nose
commands:
- nosetests -sv {{ environ.SRC_DIR }}
imports:
- lmfit
about:
home: http://lmfit.github.io/lmfit-py/
license: BSD
summary: >
Non-Linear Least Squares Minimization, with flexible Parameter
settings, based on scipy.optimize.leastsq, and with many additional
classes and methods for curve fitting http:/lmfit.github.io/lmfit-py/
extra:
recipe-maintainers:
- ericdill
- tacaswell
- licode
|
{% set version = "0.9.3" %}
package:
name: lmfit
version: {{ version }}
source:
url: https://github.com/lmfit/lmfit-py/archive/{{ version }}.tar.gz
fn: lmfit-{{ version }}.tar.gz
sha256: e15c629b30cd70da525db6e66e3532d923a95e7a5f183906c83badf22c6be70c
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- numpy
- scipy
run:
- emcee
- ipython
- ipywidgets
- matplotlib
- numpy
- pandas
- python
- scipy
test:
requires:
- nose
commands:
- nosetests -sv {{ environ.SRC_DIR }}
imports:
- lmfit
about:
home: http://lmfit.github.io/lmfit-py/
license: BSD
summary: >
Non-Linear Least Squares Minimization, with flexible Parameter
settings, based on scipy.optimize.leastsq, and with many additional
classes and methods for curve fitting http:/lmfit.github.io/lmfit-py/
extra:
recipe-maintainers:
- ericdill
- tacaswell
- licode
|
Revert "Use git repo instead of archive due to ssl issue"
|
Revert "Use git repo instead of archive due to ssl issue"
This reverts commit 457ee80fb2b18246052e2b6a95d2bc3220955c41.
|
YAML
|
bsd-3-clause
|
NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes
|
dc4107b633bebebb32979af93eb6d166ffe8d7b8
|
packages/de/deque.yaml
|
packages/de/deque.yaml
|
homepage: https://github.com/nikita-volkov/deque
changelog-type: ''
hash: 8549033cc1f992c71a893a8e81f9459272581b10329fe2310a0a7ffb81612abe
test-bench-deps: {}
maintainer: Nikita Volkov <[email protected]>
synopsis: Double-ended queue
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
semigroups: ! '>=0.11 && <0.19'
all-versions:
- '0.1'
- '0.2'
- '0.2.1'
- '0.2.2'
- '0.2.3'
- '0.2.4'
author: Nikita Volkov <[email protected]>
latest: '0.2.4'
description-type: haddock
description: ! 'An implementation of Double-Ended Queue (aka Dequeue or Deque)
based on the head-tail linked list.'
license-name: MIT
|
homepage: https://github.com/nikita-volkov/deque
changelog-type: ''
hash: ce0b23603b9fb80215bb1e3935d90a0bf90b71a0fc74df0f8cbebccf8f0d19d5
test-bench-deps: {}
maintainer: Nikita Volkov <[email protected]>
synopsis: Double-ended queue
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
all-versions:
- '0.1'
- '0.2'
- '0.2.1'
- '0.2.2'
- '0.2.3'
- '0.2.4'
- '0.2.5'
author: Nikita Volkov <[email protected]>
latest: '0.2.5'
description-type: haddock
description: ! 'An implementation of Double-Ended Queue (aka Dequeue or Deque)
based on the head-tail linked list.'
license-name: MIT
|
Update from Hackage at 2018-12-03T22:21:23Z
|
Update from Hackage at 2018-12-03T22:21:23Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
2c2d0311fa9860203765492bd90bdeb5694958f3
|
packages/hg/hgeos.yaml
|
packages/hg/hgeos.yaml
|
homepage: https://github.com/rcook/hgeos#readme
changelog-type: ''
hash: 77e899776670396075c165720d1c7217a0cb3278c8a75a9affe3858ba9bad42b
test-bench-deps:
MissingH: -any
base: ! '>=4.7 && <5'
hgeos: -any
maintainer: Richard Cook <[email protected]>
synopsis: Simple Haskell bindings to GEOS C API
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
author: Richard Cook <[email protected]>
latest: '0.1.3.0'
description-type: haddock
description: ! 'Simple Haskell bindings to the <https://trac.osgeo.org/geos/ GEOS>
<http://geos.osgeo.org/doxygen/geos__c_8h_source.html C API> heavily inspired
by <https://github.com/django/django/tree/master/django/contrib/gis/geos Django
GEOS bindings>'
license-name: MIT
|
homepage: https://github.com/rcook/hgeos#readme
changelog-type: ''
hash: 90ee703e563ec6190d426d0bc3133c49f0318275140edbd67dc5aa3aa5bc8551
test-bench-deps:
MissingH: -any
base: ! '>=4.7 && <5'
mtl: -any
transformers: -any
hgeos: -any
maintainer: Richard Cook <[email protected]>
synopsis: Simple Haskell bindings to GEOS C API
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
transformers: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
- '0.1.4.0'
author: Richard Cook <[email protected]>
latest: '0.1.4.0'
description-type: haddock
description: ! 'Simple Haskell bindings to the <https://trac.osgeo.org/geos/ GEOS>
<http://geos.osgeo.org/doxygen/geos__c_8h_source.html C API> heavily inspired
by <https://github.com/django/django/tree/master/django/contrib/gis/geos Django
GEOS bindings>'
license-name: MIT
|
Update from Hackage at 2016-07-26T06:27:03+0000
|
Update from Hackage at 2016-07-26T06:27:03+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
e6f558b51ffd89e0443608a819514ff292763d4e
|
packages/mt/mtl-c.yaml
|
packages/mt/mtl-c.yaml
|
homepage: https://github.com/fumieval/mtl-c
changelog-type: ''
hash: 4e27fc9bda0f2159c96f8d2494b754cb506f269109e39e96fc26db95c41043c4
test-bench-deps: {}
maintainer: Fumiaki Kinoshita <[email protected]>
synopsis: Very strict CPS'd transformers
changelog: ''
basic-deps:
base: ==4.*
mtl: ==2.*
all-versions:
- '0'
- '0.1'
author: Fumiaki Kinoshita
latest: '0.1'
description-type: haddock
description: Monad transformers in CPS
license-name: BSD3
|
homepage: https://github.com/fumieval/mtl-c
changelog-type: ''
hash: e9434a5ff5dd191215072ddec5bd4928b0219d302fe35605f21ab35c4072e15e
test-bench-deps: {}
maintainer: Fumiaki Kinoshita <[email protected]>
synopsis: Very strict CPS'd transformers
changelog: ''
basic-deps:
base: ==4.*
mtl: ==2.*
transformers: -any
all-versions:
- '0'
- '0.1'
- '0.1.1'
author: Fumiaki Kinoshita
latest: '0.1.1'
description-type: haddock
description: Monad transformers in CPS
license-name: BSD3
|
Update from Hackage at 2016-11-11T02:20:43Z
|
Update from Hackage at 2016-11-11T02:20:43Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
345bd8687105b445d20d68bd1c215dac5eed3a7f
|
packages/sa/salak.yaml
|
packages/sa/salak.yaml
|
homepage: https://github.com/leptonyu/salak#readme
changelog-type: ''
hash: 8d1913c43fd81c82dca60d7a183f17a8ad6b03ccb04a08b139c6c67cf4fec43c
test-bench-deps:
split: -any
base: ! '>=4.7 && <5'
unordered-containers: -any
hspec: ==2.*
text: -any
filepath: -any
scientific: -any
QuickCheck: -any
aeson: -any
yaml: -any
vector: -any
directory: -any
maintainer: Daniel YU <[email protected]>
synopsis: Configuration Loader
changelog: ''
basic-deps:
split: -any
base: ! '>=4.7 && <5'
unordered-containers: -any
text: -any
filepath: -any
scientific: -any
aeson: -any
yaml: -any
vector: -any
directory: -any
all-versions:
- '0.1.2'
author: Daniel YU
latest: '0.1.2'
description-type: markdown
description: ! '# salak
[](https://hackage.haskell.org/package/salak)
Configuration Loader for Production in Haskell.'
license-name: BSD3
|
homepage: https://github.com/leptonyu/salak#readme
changelog-type: ''
hash: f6ab4af725407afbc89f7fbff0c21f1db2818e4b97648eda5d91857633701d0e
test-bench-deps:
bytestring: -any
base: ! '>=4.7 && <5'
aeson-pretty: -any
unordered-containers: -any
hspec: ==2.*
text: -any
filepath: -any
scientific: -any
QuickCheck: -any
aeson: -any
yaml: -any
vector: -any
directory: -any
maintainer: Daniel YU <[email protected]>
synopsis: Configuration Loader
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
unordered-containers: -any
text: -any
filepath: -any
scientific: -any
aeson: -any
yaml: -any
vector: -any
directory: -any
all-versions:
- '0.1.2'
- '0.1.3'
author: Daniel YU
latest: '0.1.3'
description-type: markdown
description: ! '# salak
[](https://hackage.haskell.org/package/salak)
Configuration Loader for Production in Haskell.'
license-name: BSD3
|
Update from Hackage at 2018-08-31T09:07:19Z
|
Update from Hackage at 2018-08-31T09:07:19Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
855b10d84289b558d26ad79e3f2cfa6ca72aa460
|
.styleci.yml
|
.styleci.yml
|
preset: recommended
enabled:
- long_array_syntax
- concat_with_spaces
- no_blank_lines_before_namespace
- not_operator_with_space
disabled:
- short_array_syntax
- concat_without_spaces
- single_blank_line_before_namespace
|
preset: recommended
enabled:
- long_array_syntax
- concat_with_spaces
- no_blank_lines_before_namespace
- not_operator_with_space
disabled:
- short_array_syntax
- concat_without_spaces
- single_blank_line_before_namespace
- self_accessor
|
Disable a StyleCI fixer rule
|
Disable a StyleCI fixer rule
(cherry picked from commit 3573ee9)
|
YAML
|
mit
|
rock-symphony/container
|
b7b8a9bd30e143514b61a694c7d37155733adea1
|
.expeditor/verify.pipeline.yml
|
.expeditor/verify.pipeline.yml
|
steps:
- label: run-packer-validate
command:
- bundle install
- wget https://releases.hashicorp.com/packer/1.6.0/packer_1.6.0_linux_amd64.zip
- unzip -d /usr/local/bin packer_1.6.0_linux_amd64.zip
- rake validate
expeditor:
executor:
docker:
image: ruby:2.6-stretch
- label: windows-build-cookbook-cookstyle
command:
- bundle install
- bundle exec cookstyle packer_templates/windows/cookbooks
expeditor:
executor:
docker:
image: ruby:2.6-stretch
|
steps:
- label: run-packer-validate
command:
- bundle install
- wget https://releases.hashicorp.com/packer/1.6.1/packer_1.6.1_linux_amd64.zip
- unzip -d /usr/local/bin packer_1.6.1_linux_amd64.zip
- rake validate
expeditor:
executor:
docker:
image: ruby:2.7-buster
- label: windows-build-cookbook-cookstyle
command:
- bundle install
- bundle exec cookstyle packer_templates/windows/cookbooks
expeditor:
executor:
docker:
image: ruby:2.7-buster
|
Update tests to use the latest packer
|
Update tests to use the latest packer
Signed-off-by: Tim Smith <[email protected]>
|
YAML
|
apache-2.0
|
chef/bento,norcams/bento,chef/bento,norcams/bento,chef/bento,norcams/bento
|
1af12eceaa035df9503fb46f7cc95a9b56360881
|
.github/workflows/gh-pages.yml
|
.github/workflows/gh-pages.yml
|
name: Build and Deploy to Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16"
cache: npm
- name: Restore cache
uses: actions/cache@v3
with:
path: |
_site
key: ${{ runner.os }}-eleventy-build-${{ hashFiles('_site') }}
restore-keys: |
${{ runner.os }}-eleventy-build-
- name: Install dependencies
run: npm ci
- name: Static HTML export with Eleventy
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
|
name: Build and Deploy to Pages
on:
push:
branches: [$default-branch]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16"
cache: npm
- name: Restore cache
uses: actions/cache@v3
with:
path: |
_site
key: ${{ runner.os }}-eleventy-build-${{ hashFiles('_site') }}
restore-keys: |
${{ runner.os }}-eleventy-build-
- name: Install dependencies
run: npm ci
- name: Static HTML export with Eleventy
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
|
Update branches from `main` to `$default-branch`
|
Update branches from `main` to `$default-branch`
|
YAML
|
mit
|
thinkverse/thinkverse.github.io
|
3ee247cbf0bdd7b1bb35d8121fd7cf750b781328
|
.github/workflows/maven-v2.yml
|
.github/workflows/maven-v2.yml
|
name: Java CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn clean package
- name: Commit to builds repo
uses: seanmiddleditch/gha-publish-to-git@master
with:
repository: mbennett-uoe/datavault-builds
branch: master
github_token: '${{ secrets.GITHUB_TOKEN }}'
github_pat: '${{ secrets.GH_PAT }}'
source_folder: datavault-assembly/target/datavault-assembly-1.0-SNAPSHOT-assembly/datavault-home/
commit_message: 'Automatic DataVault CI build from commit ${{ GITHUB_SHA }}'
if: success() && github.event == 'push'
|
name: Java CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn clean package
- name: Commit to builds repo
uses: seanmiddleditch/gha-publish-to-git@master
with:
repository: mbennett-uoe/datavault-builds
branch: master
github_token: '${{ secrets.GITHUB_TOKEN }}'
github_pat: '${{ secrets.GH_PAT }}'
source_folder: datavault-assembly/target/datavault-assembly-1.0-SNAPSHOT-assembly/datavault-home/
commit_message: 'Automatic DataVault CI build from commit ${{ github.sha }}'
if: success() && github.event == 'push'
|
Fix environment variable for commit messages
|
Fix environment variable for commit messages
|
YAML
|
mit
|
DataVault/datavault,DataVault/datavault,DataVault/datavault,DataVault/datavault,DataVault/datavault
|
9933021f5a5c16553d203ac938e9d859ec0253f0
|
.github/workflows/standard.yml
|
.github/workflows/standard.yml
|
name: Standard checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly
steps:
- uses: actions/[email protected]
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: actions-rs/[email protected]
with:
command: build
- uses: actions-rs/[email protected]
with:
command: build
args: --all-features
- uses: actions-rs/[email protected]
with:
command: test
- uses: actions-rs/[email protected]
with:
command: fmt
args: --all -- --check
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
|
name: Standard checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly
steps:
- uses: actions/[email protected]
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
target: aarch64-unknown-linux-gnu
- uses: actions-rs/[email protected]
with:
command: build
- uses: actions-rs/[email protected]
with:
command: build
args: --all-features
- name: Build on target without native cpuid
uses: actions-rs/[email protected]
with:
command: build
args: --target aarch64-unknown-linux-gnu
- uses: actions-rs/[email protected]
with:
command: test
- uses: actions-rs/[email protected]
with:
command: fmt
args: --all -- --check
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
|
Add action build for target without native cpuid
|
Add action build for target without native cpuid
|
YAML
|
mit
|
gz/rust-cpuid
|
b701967c90fc8c8e97dfce28c06ec8e45a3bcbc2
|
packages/io/io-choice.yaml
|
packages/io/io-choice.yaml
|
homepage: ''
changelog-type: ''
hash: 7f9d3bfc8fb7348a01942c5fe932115accd6bf0106ca07f0ae487fd59097cc1a
test-bench-deps:
base: ! '>=4 && <5'
hspec: -any
io-choice: -any
monad-control: -any
lifted-base: -any
transformers: -any
maintainer: Kazu Yamamoto <[email protected]>
synopsis: Choice for IO and lifted IO
changelog: ''
basic-deps:
base: ! '>=4 && <5'
monad-control: -any
lifted-base: -any
transformers-base: -any
transformers: -any
template-haskell: -any
all-versions:
- '0.0.0'
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
author: Kazu Yamamoto <[email protected]>
latest: '0.0.6'
description-type: haddock
description: Choice for IO and lifted IO
license-name: BSD3
|
homepage: ''
changelog-type: ''
hash: ef00c3c92eb024200a471e3d3f261653e9958fc6b4777662e46418a1abb1065d
test-bench-deps:
base: ! '>=4 && <5'
hspec: -any
io-choice: -any
monad-control: -any
lifted-base: -any
transformers: -any
maintainer: Kazu Yamamoto <[email protected]>
synopsis: Choice for IO and lifted IO
changelog: ''
basic-deps:
base: ! '>=4 && <5'
monad-control: -any
lifted-base: -any
transformers-base: -any
transformers: -any
template-haskell: -any
all-versions:
- '0.0.0'
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
- '0.0.7'
author: Kazu Yamamoto <[email protected]>
latest: '0.0.7'
description-type: haddock
description: Providing choice features for IO and lifted IO
license-name: BSD3
|
Update from Hackage at 2018-12-11T08:49:48Z
|
Update from Hackage at 2018-12-11T08:49:48Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
da60fd361ddaa77ba181c64340ba15bbf257499d
|
packages/mo/monadacme.yaml
|
packages/mo/monadacme.yaml
|
homepage: ''
changelog-type: ''
hash: 39da851ab04615ba9b17cd465ac8311f3be3c4bd8b14008ef3c22eff5c7209c4
test-bench-deps: {}
maintainer: [email protected]
synopsis: The Acme and AcmeT monads.
changelog: ''
basic-deps:
base: ! '>=3 && <5'
all-versions:
- 0.0.1
- 0.0.2
author: Thomas Eding
latest: 0.0.2
description-type: haddock
description: The Acme and AcmeT monads.
license-name: BSD-3-Clause
|
homepage: https://github.com/thomaseding/monadacme
changelog-type: ''
hash: 785379d3e57eff894e459e798313881231d647a28a3be0347b3522d860fdaa55
test-bench-deps: {}
maintainer: Thomas Eding
synopsis: The Acme and AcmeT monads
changelog: ''
basic-deps:
base: ^>=4.12.0.0
transformers: ^>=0.5.5.0
all-versions:
- 0.0.1
- 0.0.2
- 0.1.0.0
author: Thomas Eding
latest: 0.1.0.0
description-type: markdown
description: "After years in the making, Acme Corporation proudly presents the Acme
and AcmeT monads!\r\n"
license-name: BSD-3-Clause
|
Update from Hackage at 2019-03-26T07:54:51Z
|
Update from Hackage at 2019-03-26T07:54:51Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
24a5656e679f5005bb0e092fcdce07cfbebe7894
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
script:
- bundle exec rspec
notifications:
slack: chrislopresto:Wcyh6s99BFhKyKiDFm8WyQfF
|
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
script:
- bundle exec rspec
notifications:
slack:
secure: ddL7QCUthbvN/5PAiDICAqBSW3hbg+mlGHjT1eJ8/pLddHmJD1YoTBUQj3O9tZyHKUlHtSqJBWX1/CcYCvPkPkGIKkr4CA07TxNCxfygUfHJx5zfx+bcS3CkZ4rWSbqQfBNr++oiiN52yWt0fUU+lmn9hxFCgEf8jSUe9zf9thc=
|
Add Slack integration (for real)
|
Add Slack integration (for real)
|
YAML
|
mit
|
K-and-R/guard-scss-lint,chrislopresto/guard-scss-lint
|
79c07de3bc55d470d58339bcb3ca4c547b43b8a9
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
script:
- coverage run setup.py test --addopts --live
before_install:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
after_success:
- coveralls
|
language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
script:
- coverage run setup.py test --addopts --destructive
before_install:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
after_success:
- coveralls
|
Allow Travis to run destructive tests
|
Allow Travis to run destructive tests
|
YAML
|
mit
|
Artanicus/python-cozify,Artanicus/python-cozify
|
c6cb1f26c9a30bb307f32b5e469feebb4da398cc
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
# - INSTANCE=default-debian-7 # fails due to missing /var/run/sshd in docker
- INSTANCE=default-debian-8
- INSTANCE=default-debian-9
- INSTANCE=default-fedora-latest
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-opensuse-leap
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
|
sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
# - INSTANCE=default-debian-7 # fails due to missing /var/run/sshd in docker
- INSTANCE=default-debian-8
- INSTANCE=default-debian-9
# - INSTANCE=default-fedora-latest needs keys generated first in docker
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-opensuse-leap
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
|
Disable fedora in Travis again
|
Disable fedora in Travis again
Signed-off-by: Tim Smith <[email protected]>
|
YAML
|
apache-2.0
|
opscode-cookbooks/openssh,chef-cookbooks/openssh,opscode-cookbooks/openssh,chef-cookbooks/openssh
|
e8b9fc8e2a1d5babb5e00d3ab457fbd991ca25e4
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1.*
- 2.2.*
- '2.3'
- '2.4'
gemfile:
- gemfiles/Gemfile.fluentd.0.14
- gemfiles/Gemfile.fluentd.0.12
- gemfiles/Gemfile.fluentd.0.10
- gemfiles/Gemfile.fluentd.0.10.45
matrix:
exclude:
- rvm: '2.4'
gemfile: gemfiles/Gemfile.fluentd.0.10
- rvm: '2.4'
gemfile: gemfiles/Gemfile.fluentd.0.10.45
|
language: ruby
rvm:
- 2.1.*
- 2.2.*
- '2.3'
- '2.4'
- '2.5'
- '2.6'
gemfile:
- gemfiles/Gemfile.fluentd.0.14
- gemfiles/Gemfile.fluentd.0.12
- gemfiles/Gemfile.fluentd.0.10
- gemfiles/Gemfile.fluentd.0.10.45
matrix:
exclude:
- rvm: '2.4'
gemfile: gemfiles/Gemfile.fluentd.0.10
- rvm: '2.4'
gemfile: gemfiles/Gemfile.fluentd.0.10.45
- rvm: '2.5'
gemfile: gemfiles/Gemfile.fluentd.0.10
- rvm: '2.5'
gemfile: gemfiles/Gemfile.fluentd.0.10.45
- rvm: '2.6'
gemfile: gemfiles/Gemfile.fluentd.0.10
- rvm: '2.6'
gemfile: gemfiles/Gemfile.fluentd.0.10.45
|
Add ruby 2.5, 2.6 for tests
|
Add ruby 2.5, 2.6 for tests
|
YAML
|
mit
|
civitaspo/fluent-plugin-cat-sweep
|
275d8f6e43e4cf71419953b3ba3c17eb3d914ca1
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
- "0.10"
- iojs-v1.7.0
script: "npm test-travis"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
|
language: node_js
node_js:
- "0.12"
- "0.10"
- iojs-v1.7.1
script: "npm run test-travis"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
|
Fix Travis CI can't run
|
Fix Travis CI can't run
|
YAML
|
mit
|
chrisyip/requere
|
86753dcc67c58e3d491b651a03421730596c9bf9
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-18mode
- jruby-19mode
|
Remove Ruby 1.8.7 and rbx from Travis builds
|
Remove Ruby 1.8.7 and rbx from Travis builds
|
YAML
|
mit
|
mbklein/equivalent-xml
|
bdcb196f7ee567dfc386b7b428171a04fc3e05e0
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.7
script:
- pep8 warehouse
- pylint --rcfile .pylintrc -r y warehouse
- py.test
install:
- pip install "file://$PWD#egg=warehouse[tests]"
|
language: python
python:
- 2.7
script:
- pep8 warehouse
- pylint --rcfile .pylintrc -r y warehouse
- py.test
install:
- pip install -q "file://$PWD#egg=warehouse[tests]"
|
Revert "Don't be quiet on pip installs"
|
Revert "Don't be quiet on pip installs"
This reverts commit 176a69acc69f7a65e8677c32c4ab0d7dcd916f1e.
|
YAML
|
bsd-2-clause
|
davidfischer/warehouse
|
f188c10c214333c87cb21b3c01fc48fb6b682a86
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Update Travis config to latest. Update Travis config to latest.
|
Update Travis config to latest. Update Travis config to latest.
|
YAML
|
mit
|
cliffano/pkjutil
|
e1173121cb5a4d902ccde808775f97f578bfe155
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
|
language: php
php:
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
|
Support for PHP 5.5 removed.
|
Support for PHP 5.5 removed.
|
YAML
|
mit
|
olssonm/l5-very-basic-auth
|
17cb093c1791c1ccb11292085e9d663d2e84a0f0
|
.travis.yml
|
.travis.yml
|
language: python
cache: pip
python:
- "3.4"
- "3.5"
- "3.6"
env:
# the Django version from requirements.txt is used
- $DENV=""
# the latest Django development version is used
- $DENV="pip install --upgrade --pre Django"
# allow the Django pre version to fail without failing the entire build
matrix:
fast_finish: true
allow_failures:
- env: $DENV="pip install --upgrade --pre Django"
install:
- pip install -U pip wheel
- pip install -r requirements.txt
- $DENV
- pip install coveralls
script:
- export PYTHONWARNINGS=all
- python src/manage.py check
- python src/manage.py test feedback
- coverage run --omit="*/migrations*" --source="." src/manage.py test feedback
after_success:
coveralls
|
language: python
cache: pip
python:
- "3.5"
- "3.6"
env:
# the Django version from requirements.txt is used
- $DENV=""
# the latest Django development version is used
- $DENV="pip install --upgrade --pre Django"
# allow the Django pre version to fail without failing the entire build
matrix:
fast_finish: true
allow_failures:
- env: $DENV="pip install --upgrade --pre Django"
install:
- pip install -U pip wheel
- pip install -r requirements.txt
- $DENV
- pip install coveralls
script:
- export PYTHONWARNINGS=all
- python src/manage.py check
- python src/manage.py test feedback
- coverage run --omit="*/migrations*" --source="." src/manage.py test feedback
after_success:
coveralls
|
Remove python 3.4 from testing ci
|
Remove python 3.4 from testing ci
|
YAML
|
agpl-3.0
|
d120/pyfeedback,d120/pyfeedback,d120/pyfeedback,d120/pyfeedback
|
dbd1eb5c818777278b305eb7cf874df7199ef030
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode9.4
script:
- set -o pipefail
- bundle exec danger || echo "Danger failed, moving on"
- xcodebuild test -project FontAwesome.xcodeproj -scheme FontAwesome -destination 'platform=iOS Simulator,name=iPhone 7' | bundle exec xcpretty -c
- xcodebuild -project FontAwesome.xcodeproj -scheme FontAwesome-watchOS -destination 'OS=4.0,name=Apple Watch - 42mm' | bundle exec xcpretty -c
before_deploy:
- carthage build --no-skip-current
- carthage archive FontAwesome
deploy:
provider: releases
api_key:
secure: cas9AI0zCDIumfTKk79sazU6PLuVXICET6eIjqivntG1Qs1g9yvmsI3JbBMLPyZqDl0w+uDHhki7cBeO3tDXJ8cxIErj8xYwtX4TMnA916QWqo7DVkGjkqAxosWWBGBgx6VbcSw0WSnPYrlo41c5yKssuDal+CZjoTeadJqB8Rg=
file: FontAwesome.framework.zip
skip_cleanup: true
on:
tags: true
repo: thii/FontAwesome.swift
notifications:
email: false
|
language: objective-c
osx_image: xcode10
script:
- set -o pipefail
- bundle exec danger || echo "Danger failed, moving on"
- xcodebuild test -project FontAwesome.xcodeproj -scheme FontAwesome -destination 'platform=iOS Simulator,name=iPhone 7' | bundle exec xcpretty -c
- xcodebuild -project FontAwesome.xcodeproj -scheme FontAwesome-watchOS -destination 'OS=4.0,name=Apple Watch - 42mm' | bundle exec xcpretty -c
before_deploy:
- carthage build --no-skip-current
- carthage archive FontAwesome
deploy:
provider: releases
api_key:
secure: cas9AI0zCDIumfTKk79sazU6PLuVXICET6eIjqivntG1Qs1g9yvmsI3JbBMLPyZqDl0w+uDHhki7cBeO3tDXJ8cxIErj8xYwtX4TMnA916QWqo7DVkGjkqAxosWWBGBgx6VbcSw0WSnPYrlo41c5yKssuDal+CZjoTeadJqB8Rg=
file: FontAwesome.framework.zip
skip_cleanup: true
on:
tags: true
repo: thii/FontAwesome.swift
notifications:
email: false
|
Use Xcode 10 on Travis
|
Use Xcode 10 on Travis
|
YAML
|
mit
|
thii/FontAwesome.swift,thii/FontAwesome.swift
|
a5c6cad1b747a7934e15215a3350c9d32a5b12e6
|
.travis.yml
|
.travis.yml
|
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '7'
- '6'
- '4'
before_script:
- npm prune
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
|
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '8'
before_script:
- npm prune
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
|
Use node 8 only for CI
|
build: Use node 8 only for CI
|
YAML
|
mit
|
okonet/react-scroll-sync
|
4a8511895be3b97b2e2fd32a5d7778fdc7bcffa4
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.10
env:
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
- BROWSER=firefox BVER=stable
- BROWSER=firefox BVER=beta
- BROWSER=firefox BVER=aurora
before_install:
- mkdir -p .travis
- curl -s https://codeload.github.com/DamonOehlman/webrtc-testing-on-travis/tar.gz/master | tar -xz --strip-components=1 --directory .travis
- ./.travis/setup.sh
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_failure:
- for file in *.log; do echo $file; echo "======================"; cat $file; done || true
notifications:
email:
- [email protected]
irc: irc.freenode.org#rtc.io
|
language: node_js
node_js:
- 0.10
env:
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
- BROWSER=firefox BVER=stable
- BROWSER=firefox BVER=beta
- BROWSER=firefox BVER=aurora
before_install:
- mkdir -p .travis
- curl -s https://codeload.github.com/rtc-io/webrtc-testing-on-travis/tar.gz/master | tar -xz --strip-components=1 --directory .travis
- ./.travis/setup.sh
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_failure:
- for file in *.log; do echo $file; echo "======================"; cat $file; done || true
notifications:
email:
- [email protected]
irc: irc.freenode.org#rtc.io
|
Use rtc-io for testing resources
|
Use rtc-io for testing resources
|
YAML
|
apache-2.0
|
rtc-io/rtc-quickconnect,rtc-io/rtc-quickconnect
|
be651bcf517728f9329d07f7062854c3d97ba62c
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '6'
- '4'
before_script:
- npm install -g gulp
- gulp lint
after_success: npm run coveralls
# whitelist
branches:
only:
- master
notifications:
email:
- [email protected]
|
sudo: false
language: node_js
node_js:
- '8'
- '6'
- '4'
before_script:
- npm install -g gulp
- gulp lint
after_success: npm run coveralls
# whitelist
branches:
only:
- master
notifications:
email:
- [email protected]
|
Update node versions for CI.
|
Update node versions for CI.
|
YAML
|
mit
|
jonkemp/useref,jonkemp/useref
|
4f321be3aa5e8737410c6f112bd8c2c2dceeeb04
|
.travis.yml
|
.travis.yml
|
language: rust
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=phi/index.html>' > target/doc/index.html &&
sudo pip install ghp-import &&
ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
- secure: RVNfwKeMxkzra+btEFqMzrw61Uih/gWvhtmKUp7qYTdWEyn6KIvnpsDdte/fBUOYt/tktz3upDb11DyMFugPYRMIHJSQyXprLGRy6kAebGaJR0FIWpFgp0sXccmO9eJYuIZMt5C1Rpy3pgCsvCdG9K3HiFYpXJeqLOczWplNHH0=
|
language: rust
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=phi/index.html>' > target/doc/index.html &&
pip install ghp-import --user $USER &&
$HOME/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
global:
secure: RVNfwKeMxkzra+btEFqMzrw61Uih/gWvhtmKUp7qYTdWEyn6KIvnpsDdte/fBUOYt/tktz3upDb11DyMFugPYRMIHJSQyXprLGRy6kAebGaJR0FIWpFgp0sXccmO9eJYuIZMt5C1Rpy3pgCsvCdG9K3HiFYpXJeqLOczWplNHH0=
|
Build script with no sudo, based on rustc-serialize.
|
Build script with no sudo, based on rustc-serialize.
|
YAML
|
mpl-2.0
|
jansegre/phi
|
9d64e7b56394072078e3417e52cf02a9d80885cc
|
.travis.yml
|
.travis.yml
|
language: node_js
before_install:
- npm i -g grunt-cli
- export DISPLAY=:90.0
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_90.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :90 -ac -screen 0 1280x1024x16"
node_js:
- "0.10"
env:
- BROWSER=firefox
|
language: node_js
before_install:
- npm i -g grunt-cli
- sudo apt-get install fluxbox
- export DISPLAY=:90.0
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_90.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :90 -ac -screen 0 1280x1024x16"
node_js:
- "0.10"
env:
- BROWSER=firefox
|
Install fluxbox - a lightweight window manager
|
Install fluxbox - a lightweight window manager
|
YAML
|
mit
|
surevine/webdriverjs-helper
|
313ca1ccb227674d464380f479a022a681713450
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python:
- pypy
- pypy3
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- ACCELERATED=0
- ACCELERATED=1
install: travis_retry .travis/install.sh
script: tox
after_success:
- coveralls
notifications:
irc:
channels:
- 'irc.freenode.org#webcore'
use_notice: true
skip_join: true
|
language: python
sudo: false
python:
- pypy
- pypy3
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- ACCELERATED=0
- ACCELERATED=1
install: travis_retry .travis/install.sh
script: tox
notifications:
irc:
channels:
- 'irc.freenode.org#webcore'
use_notice: true
skip_join: true
|
Remove coveralls again. This is getting tedious.
|
Remove coveralls again. This is getting tedious.
|
YAML
|
mit
|
marrow/cinje
|
dfe5f92f302124d9db2fd6aa0febecbeee23f337
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0
- 2.1.2
- 2.2.0
- 2.3.0
before_install:
- 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc'
- gem install bundler
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rspec spec
gemfile:
- gemfiles/activesupport_3.gemfile
- gemfiles/activesupport_4.gemfileset
|
language: ruby
rvm:
- 2.0.0
- 2.1.2
- 2.2.0
- 2.3.0
before_install:
- 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc'
- gem install bundler
- bundle install --path vendor/bundle
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rspec spec
gemfile:
- gemfiles/activesupport_3.gemfile
- gemfiles/activesupport_4.gemfileset
|
Install the gems via bundler
|
Install the gems via bundler
|
YAML
|
mit
|
adomokos/light-service,adomokos/light-service
|
76eb7d3aa854d8c95001bf9044f6bca3bc0b3050
|
.travis.yml
|
.travis.yml
|
sudo: false
language: c
install:
- git clone https://github.com/feeley/gambit.git
- cd gambit
- git checkout a831c124d16a3e6496f481b68be180335978e30c
- ./configure --prefix=$HOME/gambit
- make from-scratch
- make install
- cd ..
- git clone https://github.com/fourthbit/ssrun.git
- cd ssrun
- PATH="$HOME/gambit/bin/:$PATH" ./install.sh
- cd ..
- wget https://raw.githubusercontent.com/fourthbit/spheres/master/.gambini -O ~/.gambini
script:
- export PATH="$HOME/gambit/bin/:$HOME/ssrun/:$PATH"
- cd spheres/gambit
- ./compile-scsc.sh
- cd ../..
- ssrun
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/99342bd5365e2eb4774e
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
sudo: false
language: c
install:
- git clone https://github.com/feeley/gambit.git
- cd gambit
- ./configure --prefix=$HOME/gambit
- make from-scratch
- make install
- cd ..
- git clone https://github.com/fourthbit/ssrun.git
- cd ssrun
- PATH="$HOME/gambit/bin/:$PATH" ./install.sh
- cd ..
- wget https://raw.githubusercontent.com/fourthbit/spheres/master/.gambini -O ~/.gambini
script:
- export PATH="$HOME/gambit/bin/:$HOME/ssrun/:$PATH"
- cd spheres/gambit
- ./compile-scsc.sh
- cd ../..
- ssrun
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/99342bd5365e2eb4774e
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Make sure latest Gambit is used in TravisCI
|
Make sure latest Gambit is used in TravisCI
|
YAML
|
mit
|
fourthbit/spheres
|
b64e97c19a58d2f2eac106be25a0cc12781abe67
|
.travis.yml
|
.travis.yml
|
---
language: ruby
rvm:
- 1.9.3
branches:
except:
- master
notifications:
email: false
|
---
language: ruby
rvm:
- 1.9.3
notifications:
email: false
|
Enable TravisCI for our master branch
|
Enable TravisCI for our master branch
Same as alphagov/vcloud-core@b476daf to ensure that pull requests from forks
are built.
|
YAML
|
mit
|
gds-operations/vcloud-launcher,UKHomeOffice/vcloud-launcher,gds-operations/vcloud-launcher,gds-operations/vcloud-launcher,UKHomeOffice/vcloud-launcher,UKHomeOffice/vcloud-launcher
|
041d32d0e11cb23a2a8fc58ccb5eefb6358526fc
|
.travis.yml
|
.travis.yml
|
# define liblouis so that Travis CI service can build and test it
language: c
compiler:
- gcc
# make sure we have texinfo
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y texinfo
# in fact make sure we have texinfo 5.0 or higher. Travis currently
# runs the old Ubuntu LTS which has an old version of texinfo, so we
# need to install from source
install:
- wget http://ftp.gnu.org/gnu/texinfo/texinfo-5.2.tar.xz
- tar -xJvf texinfo-5.2.tar.xz
- cd texinfo-5.2 && ./configure --prefix=/usr && make && sudo make install && cd ..
# let's have two parallel builds. One with ucs4 disabled and the other
# enabling it
env:
- ENABLE_UCS4=
- ENABLE_UCS4=--enable-ucs4
script: "./autogen.sh && ./configure $ENABLE_UCS4 && make && make check"
# tell the irc channel about the results of the build
notifications:
irc: "irc.oftc.net#liblouis"
# do not build on the following branches
branches:
except:
- ikiwiki_ctl
- website
- formal_braille_spec
|
# define liblouis so that Travis CI service can build and test it
language: c
compiler:
- gcc
# make sure we have texinfo in fact make sure we have texinfo 5.0 or
# higher. Travis currently runs the old Ubuntu LTS which has an old
# version of texinfo, so we need to install from a ppa
before_install:
- sudo add-apt-repository ppa:marutter/texlive.backport
- sudo apt-get update -qq
- sudo apt-get install -y texinfo
# let's have two parallel builds. One with ucs4 disabled and the other
# enabling it
env:
- ENABLE_UCS4=
- ENABLE_UCS4=--enable-ucs4
script: "./autogen.sh && ./configure $ENABLE_UCS4 && make && make check"
# tell the irc channel about the results of the build
notifications:
irc: "irc.oftc.net#liblouis"
# do not build on the following branches
branches:
except:
- ikiwiki_ctl
- website
|
Use a ppa to fetch a modern texinfo instead of building it from source
|
Use a ppa to fetch a modern texinfo instead of building it from source
|
YAML
|
lgpl-2.1
|
liblouis/liblouis,hammera/liblouis,hammera/liblouis,hammera/liblouis,IndexBraille/liblouis,BueVest/liblouis,liblouis/liblouis,IndexBraille/liblouis,vsmontalvao/liblouis,liblouis/liblouis,hammera/liblouis,BueVest/liblouis,BueVest/liblouis,vsmontalvao/liblouis,IndexBraille/liblouis,IndexBraille/liblouis,BueVest/liblouis,BueVest/liblouis,liblouis/liblouis,liblouis/liblouis,vsmontalvao/liblouis,vsmontalvao/liblouis,hammera/liblouis,IndexBraille/liblouis,hammera/liblouis,BueVest/liblouis,liblouis/liblouis,vsmontalvao/liblouis
|
4c0cdf3347fc55cc45e6262f44575960380367cb
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- 2.6
- 2.7
- pypy
install:
- make redis
- pip install redis --use-mirrors
env:
- REDIS_VERSION=3.0.7
- REDIS_VERSION=3.2.8
script: make test
|
sudo: false
language: python
python:
- 2.6
- 2.7
- pypy
install:
- make redis
- pip install redis
env:
- REDIS_VERSION=3.0.7
- REDIS_VERSION=3.2.8
script: make test
|
Drop no longer supported --use-mirrors flag.
|
Drop no longer supported --use-mirrors flag.
|
YAML
|
mit
|
seomoz/qless-core,seomoz/qless-core
|
0494fdeabdff4b19d59c5b17d9fa401674e9a82c
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "stable"
install:
- npm install
script:
- npm run lint
- npm test
- npm run style
- npm run build
- node ./demo/demo1.js
- node ./demo/demo2.js
- node ./demo/demo3.js
- node ./demo/demo4.js
- node ./demo/demo5.js
- node ./demo/demo6.js
- node ./demo/demo7.js
after_failure:
- "cat /home/travis/builds/dolanmiu/docx/npm-debug.log"
after_success:
- npm run typedoc
- echo "janchi.co.uk" > docs/.nojekyll
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
keep-history: true
local-dir: docs
on:
branch: master
|
language: node_js
node_js:
- "stable"
install:
- npm install
script:
- npm run lint
- npm test
- npm run style
- npm run build
- node ./demo/demo1.js
- node ./demo/demo2.js
- node ./demo/demo3.js
- node ./demo/demo4.js
- node ./demo/demo5.js
- node ./demo/demo6.js
- node ./demo/demo7.js
- node ./demo/demo8.js
- node ./demo/demo9.js
- node ./demo/demo10.js
- node ./demo/demo11.js
- node ./demo/demo12.js
after_failure:
- "cat /home/travis/builds/dolanmiu/docx/npm-debug.log"
after_success:
- npm run typedoc
- echo "janchi.co.uk" > docs/.nojekyll
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
keep-history: true
local-dir: docs
on:
branch: master
|
Add other demo scripts as part of build
|
Add other demo scripts as part of build
|
YAML
|
mit
|
dolanmiu/docx,dolanmiu/docx,dolanmiu/docx
|
5e453075f3a3577d2531b44603dd313cdaaa6ab4
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nigthly
|
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
|
Fix rust-nightly checking on Travis
|
Fix rust-nightly checking on Travis
|
YAML
|
unlicense
|
pjohansson/grafen
|
9a81fc16c7a261b817fddafe1f5c6a65c4fdf3c5
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit
- tests/lint.sh
jobs:
include:
- stage: coverage
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
- bash <(curl -s https://codecov.io/bash)
git:
depth: 5
dist: trusty
sudo: false
|
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit
- tests/lint.sh
jobs:
include:
- stage: coverage
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
- bash <(curl -s https://codecov.io/bash)
git:
depth: 5
group: travis_latest
|
Remove the deprecated sudo option and run on the latest version
|
Remove the deprecated sudo option and run on the latest version
|
YAML
|
apache-2.0
|
duncan3dc/dates,duncan3dc/dates
|
4198f090fefb1b462b0379d7c9d60090a80f0b37
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode8.1
sudo: false # Enable container-based builds
env:
matrix:
- SCHEME="SwiftGit2-OSX"
- SCHEME="SwiftGit2-iOS"
matrix:
fast_finish: true
before_install:
- gem update bundler # https://github.com/bundler/bundler/pull/4981
- gem install xcpretty
- gem install xcpretty-travis-formatter
install: script/bootstrap
script: script/cibuild
branches:
only: # whitelist
- master
notifications:
email: false
|
language: objective-c
osx_image: xcode8.2
sudo: false # Enable container-based builds
env:
matrix:
- SCHEME="SwiftGit2-OSX"
- SCHEME="SwiftGit2-iOS"
matrix:
fast_finish: true
before_install:
- gem update bundler # https://github.com/bundler/bundler/pull/4981
- gem install xcpretty
- gem install xcpretty-travis-formatter
install: script/bootstrap
script: script/cibuild
branches:
only: # whitelist
- master
notifications:
email: false
|
Configure Travis to build with Xcode 8.2
|
Configure Travis to build with Xcode 8.2
|
YAML
|
mit
|
SwiftGit2/SwiftGit2,SwiftGit2/SwiftGit2,mattrubin/SwiftGit2,mattrubin/SwiftGit2
|
22576a539b9c60f014463fefa7dda17259eee507
|
.travis.yml
|
.travis.yml
|
language: php
php:
- "5.5"
- "5.4"
- "5.3"
install: composer install
|
language: php
php:
- "5.3"
- "5.4"
- "5.5"
- "5.6"
install: composer install
|
Add PHP5.6 to Travis test environments
|
Add PHP5.6 to Travis test environments
|
YAML
|
mit
|
gapple/drupalreleasedate,gapple/drupalreleasedate,gapple/drupalreleasedate
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.