Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add tests to Pipeline configuration | # PHP
# Test and package your PHP project.
# Add steps that run tests, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/php
trigger:
- master
pool:
vmImage: 'Ubuntu-16.04'
variables:
phpVersion: 7.2
steps:
- script: |
sudo update-alternatives --set php /usr/bin/php$(phpVersion)
sudo update-alternatives --set phar /usr/bin/phar$(phpVersion)
sudo update-alternatives --set phpdbg /usr/bin/phpdbg$(phpVersion)
sudo update-alternatives --set php-cgi /usr/bin/php-cgi$(phpVersion)
sudo update-alternatives --set phar.phar /usr/bin/phar.phar$(phpVersion)
php -version
displayName: 'Use PHP version $(phpVersion)'
- script: composer install --no-interaction --prefer-dist
displayName: 'composer install'
| # PHP
# Test and package your PHP project.
# Add steps that run tests, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/php
trigger:
- master
pool:
vmImage: 'Ubuntu-16.04'
variables:
phpVersion: 7.2
steps:
- script: |
sudo update-alternatives --set php /usr/bin/php$(phpVersion)
sudo update-alternatives --set phar /usr/bin/phar$(phpVersion)
sudo update-alternatives --set phpdbg /usr/bin/phpdbg$(phpVersion)
sudo update-alternatives --set php-cgi /usr/bin/php-cgi$(phpVersion)
sudo update-alternatives --set phar.phar /usr/bin/phar.phar$(phpVersion)
php -version
displayName: 'Use PHP version $(phpVersion)'
- script: composer install --no-interaction --prefer-dist
displayName: 'composer install'
- script: vendor/bin/simple-phpunit -c phpunit.xml.dist
displayName: 'Run tests with phpunit' |
Remove providers tag from config map | apiVersion: v1
kind: ConfigMap
metadata:
name: {{template "fullname" . }}
provider: devopskube
data:
# modify this to specify your address
lego.email: " {{ .Values.email }}"
# configure letencrypt's production api
lego.url: "{{ .Values.lego_url }}"
| apiVersion: v1
kind: ConfigMap
metadata:
name: {{template "fullname" . }}
data:
# modify this to specify your address
lego.email: " {{ .Values.email }}"
# configure letencrypt's production api
lego.url: "{{ .Values.lego_url }}"
|
Add @bgruening as a maintainer | {% set name = "toposort" %}
{% set version = "1.5" %}
{% set sha256 = "dba5ae845296e3bf37b042c640870ffebcdeb8cd4df45adaa01d8c5476c557dd" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- toposort
about:
home: https://bitbucket.org/ericvsmith/toposort
license: Apache 2.0
license_file: LICENSE.txt
license_family: APACHE
summary: 'Implements a topological sort algorithm.'
extra:
recipe-maintainers:
- jakirkham
| {% set name = "toposort" %}
{% set version = "1.5" %}
{% set sha256 = "dba5ae845296e3bf37b042c640870ffebcdeb8cd4df45adaa01d8c5476c557dd" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- toposort
about:
home: https://bitbucket.org/ericvsmith/toposort
license: Apache 2.0
license_file: LICENSE.txt
license_family: APACHE
summary: 'Implements a topological sort algorithm.'
extra:
recipe-maintainers:
- bgruening
- jakirkham
|
Add production.rb in container volumes. | version: '2'
services:
wrapper:
build:
context: ..
dockerfile: docker/Dockerfile
image: mapotempo/optimizer-api:latest
links:
- redis-cache
external_links:
- router_wrapper_1:router
resque-small:
build:
context: ..
dockerfile: docker/Dockerfile
image: mapotempo/optimizer-api:latest
links:
- redis-cache
command: /bin/bash -c "cd /srv/app && APP_ENV=production COUNT=5 QUEUE=SMALL /usr/bin/bundle exec rake resque:workers"
resque-large:
build:
context: ..
dockerfile: docker/Dockerfile
image: mapotempo/optimizer-api:latest
links:
- redis-cache
command: /bin/bash -c "cd /srv/app && APP_ENV=production COUNT=5 QUEUE=LARGE /usr/bin/bundle exec rake resque:workers"
redis-cache:
image: redis:alpine
| version: '2'
services:
wrapper:
build:
context: ..
dockerfile: docker/Dockerfile
image: mapotempo/optimizer-api:latest
volumes:
- ./production.rb:/srv/app/config/environments/production.rb
links:
- redis-cache
external_links:
- router_wrapper_1:router
resque-small:
build:
context: ..
dockerfile: docker/Dockerfile
image: mapotempo/optimizer-api:latest
volumes:
- ./production.rb:/srv/app/config/environments/production.rb
links:
- redis-cache
command: /bin/bash -c "cd /srv/app && APP_ENV=production COUNT=5 QUEUE=SMALL /usr/bin/bundle exec rake resque:workers"
resque-large:
build:
context: ..
dockerfile: docker/Dockerfile
image: mapotempo/optimizer-api:latest
volumes:
- ./production.rb:/srv/app/config/environments/production.rb
links:
- redis-cache
command: /bin/bash -c "cd /srv/app && APP_ENV=production COUNT=5 QUEUE=LARGE /usr/bin/bundle exec rake resque:workers"
redis-cache:
image: redis:alpine
|
Reduce the frequency of email sent from Travis CI | language: python
sudo: false
python:
- '3.4'
addons:
postgresql: "9.4"
before_script:
- psql -c "CREATE DATABASE wye" -U postgres
install:
- pip install --upgrade pip
- pip install -r requirements/dev.txt
- pip install python-coveralls
script:
- flake8
- py.test --cov --fail-on-template-vars --splinter-webdriver=phantomjs -v --tb=native
after_script:
- coveralls
| language: python
sudo: false
python:
- '3.4'
addons:
postgresql: "9.4"
before_script:
- psql -c "CREATE DATABASE wye" -U postgres
install:
- pip install --upgrade pip
- pip install -r requirements/dev.txt
- pip install python-coveralls
script:
- flake8
- py.test --cov --fail-on-template-vars --splinter-webdriver=phantomjs -v --tb=native
after_script:
- coveralls
notifications:
email:
on_success: change # [always|never|change]
on_failure: always # [always|never|change]
|
FIX CircleCI Update to go 1.5 | machine:
pre:
- curl -o go.tar.gz -sL https://golang.org/dl/go1.4.linux-amd64.tar.gz
- sudo rm -rf /usr/local/go
- sudo tar -C /usr/local -xzf go.tar.gz
- sudo chmod a+w /usr/local/go/src/
services:
- docker
dependencies:
post:
- go get github.com/golang/glog
- go get github.com/constabulary/gb/...
- go get github.com/golang/lint/golint
- go get github.com/kisielk/errcheck
test:
pre:
- go version
override:
- make build
- make test
- make lint
- make vet
- make coverage
| machine:
pre:
- curl -o go.tar.gz -sL https://golang.org/dl/go1.5.linux-amd64.tar.gz
- sudo rm -rf /usr/local/go
- sudo tar -C /usr/local -xzf go.tar.gz
- sudo chmod a+w /usr/local/go/src/
services:
- docker
dependencies:
post:
- go get github.com/golang/glog
- go get github.com/constabulary/gb/...
- go get github.com/golang/lint/golint
- go get github.com/kisielk/errcheck
test:
pre:
- go version
override:
- make build
- make test
- make lint
- make vet
- make coverage
|
Add map extensions to point of interest map page | ---
Name: mappable
After: 'framework/*','cms/*'
---
PointOfInterest:
extensions:
- MapExtension
DataObject:
extensions:
- MappableData
DataList:
extensions:
- MappableDataObjectSet
ArrayList:
extensions:
- MappableDataObjectSet
# allow geographical format files to be uploaded
File:
$allowed_extensions: ['gpx', 'kml']
| ---
Name: mappable
After: 'framework/*','cms/*'
---
PointOfInterest:
extensions:
- MapExtension
DataObject:
extensions:
- MappableData
DataList:
extensions:
- MappableDataObjectSet
ArrayList:
extensions:
- MappableDataObjectSet
POIMapPage:
extensions:
['PointsOfInterestLayerExtension','MapExtension']
# allow geographical format files to be uploaded
File:
$allowed_extensions: ['gpx', 'kml']
|
Bump actions/checkout from v2.3.0 to v2.3.1 | name: Jekyll site CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.0
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
| name: Jekyll site CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.1
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
|
Make composer available to robo | name: Build&Deploy
on:
push:
branches: [ main ]
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
- name: Create stacks directory
run: mkdir stacks
- name: Install dependencies in default stack
uses: Accelys/action-robo@master
env:
PHPMAE_SHARED_SECRET: ${{ secrets.PHPMAE_SHARED_SECRET }}
with:
task: 'install:stack coid://phpmae.cloudobjects.io/DefaultStack'
- name: Deploy with fly
uses: superfly/flyctl-actions@1.1
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
with:
args: deploy
| name: Build&Deploy
on:
push:
branches: [ main ]
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
- name: Create stacks directory
run: mkdir stacks
- name: Make composer available to robo
run: cp `which composer` ./composer.phar
- name: Install dependencies in default stack
uses: Accelys/action-robo@master
env:
PHPMAE_SHARED_SECRET: ${{ secrets.PHPMAE_SHARED_SECRET }}
with:
task: 'install:stack coid://phpmae.cloudobjects.io/DefaultStack'
- name: Deploy with fly
uses: superfly/flyctl-actions@1.1
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
with:
args: deploy
|
Update from Hackage at 2017-12-26T02:00:58Z | homepage: https://github.com/mtth/more-containers#readme
changelog-type: ''
hash: dad83d31c183d18b74e8aa5bd5209d6a81101fdc89f53bc4dba54b39b57e3d06
test-bench-deps:
more-containers: -any
base: ! '>=4.9 && <5'
hspec: ! '>=2.4 && <2.5'
containers: ! '>=0.5 && <0.6'
maintainer: matthieu.monsch@gmail.com
synopsis: A few more collections
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
containers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Matthieu Monsch
latest: '0.1.0.2'
description-type: markdown
description: ! '# More containers
+ Multisets
+ Multimaps (generic, and versions specialized to sets and sequences)
'
license-name: MIT
| homepage: https://github.com/mtth/more-containers#readme
changelog-type: ''
hash: 3b495045b77944f19abc061ea21d9e97bb11c1807e598ff7c746ba154985198f
test-bench-deps:
more-containers: -any
base: ! '>=4.9 && <5'
hspec: ! '>=2.4 && <2.5'
containers: ! '>=0.5 && <0.6'
maintainer: matthieu.monsch@gmail.com
synopsis: A few more collections
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
containers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
author: Matthieu Monsch
latest: '0.1.0.3'
description-type: markdown
description: ! '# More containers
+ Multisets
+ Multimaps (generic, and versions specialized to sets and sequences)
'
license-name: MIT
|
Update platforms in Test Kitchen | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt::default]
- name: ubuntu-14.04
run_list:
- recipe[apt::default]
- name: ubuntu-15.04
run_list:
- recipe[apt::default]
suites:
- name: disable
run_list:
- recipe[apparmor::default]
attributes:
apparmor:
disable: true
- name: add
run_list:
- recipe[apparmor::default]
- recipe[apparmor_test::add]
- name: remove
run_list:
- recipe[apparmor::default]
- recipe[apparmor_test::remove]
| driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt::default]
- name: ubuntu-14.04
run_list:
- recipe[apt::default]
- name: ubuntu-16.04
run_list:
- recipe[apt::default]
suites:
- name: disable
run_list:
- recipe[apparmor::default]
attributes:
apparmor:
disable: true
- name: add
run_list:
- recipe[apparmor::default]
- recipe[apparmor_test::add]
- name: remove
run_list:
- recipe[apparmor::default]
- recipe[apparmor_test::remove]
|
Use Fedora Rawhide branch for new releases. | specfile_path: libxcrypt.spec
synced_files:
- libxcrypt.spec
- .packit.yaml
upstream_package_name: libxcrypt
upstream_project_url: https://github.com/besser82/libxcrypt
upstream_tag_template: v{version}
downstream_package_name: libxcrypt
dist_git_namespace: rpms
create_pr: True
actions:
post-upstream-clone: "wget https://src.fedoraproject.org/rpms/libxcrypt/raw/main/f/libxcrypt.spec -O libxcrypt.spec"
jobs:
- job: copr_build
trigger: pull_request
metadata:
list_on_homepage: False
targets:
- fedora-all-aarch64
- fedora-all-i386
- fedora-all-x86_64
- fedora-development-s390x
- job: copr_build
trigger: commit
metadata:
branch: develop
list_on_homepage: False
targets:
- fedora-all-aarch64
- fedora-all-i386
- fedora-all-x86_64
- fedora-development-s390x
- job: propose_downstream
trigger: release
metadata:
dist_git_branches:
- main
| specfile_path: libxcrypt.spec
synced_files:
- libxcrypt.spec
- .packit.yaml
upstream_package_name: libxcrypt
upstream_project_url: https://github.com/besser82/libxcrypt
upstream_tag_template: v{version}
downstream_package_name: libxcrypt
dist_git_namespace: rpms
create_pr: True
actions:
post-upstream-clone: "wget https://src.fedoraproject.org/rpms/libxcrypt/raw/main/f/libxcrypt.spec -O libxcrypt.spec"
jobs:
- job: copr_build
trigger: pull_request
metadata:
list_on_homepage: False
targets:
- fedora-all-aarch64
- fedora-all-i386
- fedora-all-x86_64
- fedora-development-s390x
- job: copr_build
trigger: commit
metadata:
branch: develop
list_on_homepage: False
targets:
- fedora-all-aarch64
- fedora-all-i386
- fedora-all-x86_64
- fedora-development-s390x
- job: propose_downstream
trigger: release
metadata:
dist_git_branches:
- rawhide
|
Fix specifier of version 3.10 | name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, pypy2, pypy3]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python --version
pip install -U pip
pip install --upgrade coveralls asttokens pytest setuptools setuptools_scm pep517
pip install .
- name: Test
run: |
python -m unittest tests.test_main
python -m pytest tests/test_pytest.py
| name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10-dev, pypy2, pypy3]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python --version
pip install -U pip
pip install --upgrade coveralls asttokens pytest setuptools setuptools_scm pep517
pip install .
- name: Test
run: |
python -m unittest tests.test_main
python -m pytest tests/test_pytest.py
|
Add team prop1 and meetup linkage | blog: http://kocsen-hfoss.blogspot.com
feed: http://kocsen-hfoss.blogspot.com/feeds/posts/default?alt=rss
forges:
- https://github.com/kocsenc
irc: Kocsen
name: Kocsen Chung
rit_dce: kxc4519
hw:
litreview1: http://kocsen-hfoss.blogspot.com/2014/09/lit-review-webers-open-source.html
quiz1: http://kocsen-hfoss.blogspot.com/2014/09/quiz-1-tosw.html
bugfix: http://kocsen-hfoss.blogspot.com/2014/09/diving-into-open-source-my-first-bug-fix.html
| blog: http://kocsen-hfoss.blogspot.com
feed: http://kocsen-hfoss.blogspot.com/feeds/posts/default?alt=rss
forges:
- https://github.com/kocsenc
irc: Kocsen
name: Kocsen Chung
rit_dce: kxc4519
hw:
litreview1: http://kocsen-hfoss.blogspot.com/2014/09/lit-review-webers-open-source.html
quiz1: http://kocsen-hfoss.blogspot.com/2014/09/quiz-1-tosw.html
bugfix: http://kocsen-hfoss.blogspot.com/2014/09/diving-into-open-source-my-first-bug-fix.html
meetup1: http://kocsen-hfoss.blogspot.com/2014/09/friendly-visit-to-rocpy.html
teamprop1: http://kocsen-hfoss.blogspot.com/2014/09/team-proposal-for-comarch.html
|
Add support for php 8 | name: tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
| name: tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/phpunit --verbose
|
Include docker as deployment service | machine:
node:
version: v4.1.2
deployment:
production:
owner: jeffcharles
branch: master
commands:
- ./deploy.sh
| machine:
node:
version: v4.1.2
services:
- docker
deployment:
production:
owner: jeffcharles
branch: master
commands:
- ./deploy.sh
|
Set Node.js version to 5.7.0. | general:
artifacts:
- "dist"
| general:
artifacts:
- "dist"
machine:
node:
version: 5.7.0
dependencies:
override:
- npm install --dev
|
Revert "Removed Acme demo paths." | _welcome:
pattern: /
defaults: { _controller: AcmeDemoBundle:Welcome:index }
_demo_secured:
resource: "@AcmeDemoBundle/Controller/SecuredController.php"
type: annotation
_demo:
resource: "@AcmeDemoBundle/Controller/DemoController.php"
type: annotation
prefix: /demo
_assetic:
resource: .
type: assetic
_wdt:
resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml"
prefix: /_wdt
_profiler:
resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml"
prefix: /_profiler
_configurator:
resource: "@SensioDistributionBundle/Resources/config/routing/webconfigurator.xml"
prefix: /_configurator
_main:
resource: routing.yml
| _assetic:
resource: .
type: assetic
_wdt:
resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml"
prefix: /_wdt
_profiler:
resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml"
prefix: /_profiler
_configurator:
resource: "@SensioDistributionBundle/Resources/config/routing/webconfigurator.xml"
prefix: /_configurator
_main:
resource: routing.yml
|
Fix tracker bot tmux config | name: tracker_bot
root: ~/Projects/tracker_bot
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window: rbenv shell 2.0.0-p247
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
# startup_window: logs
windows:
- editor:
layout: 6705,238x58,0,0{180x58,0,0,0,57x58,181,0,3}
panes:
- vim
- dev:
layout: main-vertical
panes:
- iex -S mix phoenix.server
- misc:
layout: main-vertical
panes:
- tree -L 2
- caffeinate -u -t 547584758 &
| name: tracker_bot
root: ~/Projects/tracker_bot
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window: rbenv shell 2.0.0-p247
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
# startup_window: logs
windows:
- editor:
layout: 6705,238x58,0,0{180x58,0,0,0,57x58,181,0,3}
panes:
- vim
- dev:
layout: main-vertical
panes:
- iex -S mix
- misc:
layout: main-vertical
panes:
- tree -L 2
- caffeinate -u -t 547584758 &
|
Update AndTTT to 0.6.4 (64) | Categories:
- Games
License: MIT
SourceCode: https://github.com/dawidd6/andttt
IssueTracker: https://github.com/dawidd6/andttt/issues
Changelog: https://gitlab.com/dawidd6/andttt/releases
AutoName: AndTTT
Description: Tic-tac-toe game with various game modes. It includes animations and
night-mode.
RepoType: git
Repo: https://github.com/dawidd6/andttt
Builds:
- versionName: 0.6.2
versionCode: 62
commit: v0.6.2
subdir: app
gradle:
- yes
- versionName: 0.6.3
versionCode: 63
commit: v0.6.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.6.3
CurrentVersionCode: 63
| Categories:
- Games
License: MIT
SourceCode: https://github.com/dawidd6/andttt
IssueTracker: https://github.com/dawidd6/andttt/issues
Changelog: https://gitlab.com/dawidd6/andttt/releases
AutoName: AndTTT
Description: Tic-tac-toe game with various game modes. It includes animations and
night-mode.
RepoType: git
Repo: https://github.com/dawidd6/andttt
Builds:
- versionName: 0.6.2
versionCode: 62
commit: v0.6.2
subdir: app
gradle:
- yes
- versionName: 0.6.3
versionCode: 63
commit: v0.6.3
subdir: app
gradle:
- yes
- versionName: 0.6.4
versionCode: 64
commit: v0.6.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.6.4
CurrentVersionCode: 64
|
Update ADBio to 1.0c1 (3) | Categories:
- System
License: GPL-3.0-only
AuthorEmail: yoshi1@tutanota.com
SourceCode: https://github.com/yoshi1123/adbio
IssueTracker: https://github.com/yoshi1123/adbio/issues
AutoName: ADBio
RequiresRoot: 'yes'
RepoType: git
Repo: https://github.com/yoshi1123/adbio.git
Builds:
- versionName: '0.1'
versionCode: 1
commit: v0.1
gradle:
- yes
- versionName: '0.2'
versionCode: 2
disable: tag removed
commit: v0.2
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '0.2'
CurrentVersionCode: 2
| Categories:
- System
License: GPL-3.0-only
AuthorEmail: yoshi1@tutanota.com
SourceCode: https://github.com/yoshi1123/adbio
IssueTracker: https://github.com/yoshi1123/adbio/issues
AutoName: ADBio
RequiresRoot: 'yes'
RepoType: git
Repo: https://github.com/yoshi1123/adbio.git
Builds:
- versionName: '0.1'
versionCode: 1
commit: v0.1
gradle:
- yes
- versionName: '0.2'
versionCode: 2
disable: tag removed
commit: v0.2
gradle:
- yes
- versionName: 1.0c1
versionCode: 3
commit: 45bacd64788da0c3bf95462835e636727a4232fb
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0c1
CurrentVersionCode: 3
|
Update Travis settings for new repo endpoint | language: python
python:
- "2.7"
addons:
postgresql: "9.3"
env:
- SECRET_KEY=test DB_NAME=dbtest DB_USER=test DB_PASS=test
before_install:
- export DJANGO_SETTINGS_MODULE=openprescribing.settings.local
- export PYTHONPATH=$HOME/builds/annapowellsmith/openprescribing
install:
- pip install -r requirements.txt
- pip install -r requirements/local.txt
before_script:
- psql -U postgres -c 'CREATE DATABASE dbtest;'
- psql -U postgres -c "CREATE EXTENSION postgis" -d dbtest
- psql -U postgres -c "CREATE EXTENSION postgis_topology" -d dbtest
- psql -U postgres -c "CREATE USER test WITH CREATEUSER PASSWORD 'test';"
- psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE dbtest to test;"
- psql -U postgres -c "ALTER USER test CREATEDB;"
- cd openprescribing && python manage.py migrate
script:
- python manage.py test
| language: python
python:
- "2.7"
addons:
postgresql: "9.4"
env:
- SECRET_KEY=test DB_NAME=dbtest DB_USER=test DB_PASS=test
before_install:
- export DJANGO_SETTINGS_MODULE=openprescribing.settings.local
- export PYTHONPATH=$HOME/builds/annapowellsmith/openpresc
install:
- pip install -r requirements.txt
- pip install -r requirements/local.txt
before_script:
- psql -U postgres -c 'CREATE DATABASE dbtest;'
- psql -U postgres -c "CREATE EXTENSION postgis" -d dbtest
- psql -U postgres -c "CREATE EXTENSION postgis_topology" -d dbtest
- psql -U postgres -c "CREATE USER test WITH CREATEUSER PASSWORD 'test';"
- psql -U postgres -c "GRANT ALL PRIVILEGES ON DATABASE dbtest to test;"
- psql -U postgres -c "ALTER USER test CREATEDB;"
- cd openprescribing && python manage.py migrate
script:
- python manage.py test
|
Revert "Changed Travis config, to run tests with Python 3.7." | dist: xenial # required for Python >= 3.7
language: python
#sudo: required
services:
- cassandra
- redis-server
- mysql
- postgresql
python:
- "3.6"
- "3.7"
- "3.7-dev" # 3.7 development branch
# - "3.8-dev" # 3.8 development branch
- "pypy3.5"
before_install:
- mysql -e 'CREATE DATABASE eventsourcing;'
before_script:
- psql -c 'create database eventsourcing;' -U postgres
install:
- pip install -U pip wheel
- CASS_DRIVER_NO_CYTHON=1 pip install -e .[testing]
- pip install pymysql
- pip install mysql-connector-python-rf
- pip install python-coveralls
env:
global:
- CASSANDRA_HOSTS=127.0.0.1
- MYSQL_USER=travis
- POSTGRES_USER=postgres
script:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
coverage run --concurrency=multiprocessing -m unittest discover eventsourcing.tests -v;
fi
- if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then
python -m unittest discover eventsourcing.tests -v;
fi
after_success:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
coverage combine;
coveralls;
fi
| language: python
sudo: required
services:
- cassandra
- redis-server
- mysql
- postgresql
dist: xenial # required for Python >= 3.7
python:
- "3.6"
- "3.7"
- "3.7-dev" # 3.7 development branch
- "3.8-dev" # 3.8 development branch
- "pypy3.5"
before_install:
- mysql -e 'CREATE DATABASE eventsourcing;'
before_script:
- psql -c 'create database eventsourcing;' -U postgres
install:
- pip install -U pip wheel
- CASS_DRIVER_NO_CYTHON=1 pip install -e .[testing]
- pip install pymysql
- pip install mysql-connector-python-rf
- pip install python-coveralls
env:
global:
- CASSANDRA_HOSTS=127.0.0.1
- MYSQL_USER=travis
- POSTGRES_USER=postgres
script:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
coverage run --concurrency=multiprocessing -m unittest discover eventsourcing.tests -v;
fi
- if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then
python -m unittest discover eventsourcing.tests -v;
fi
after_success:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
coverage combine;
coveralls;
fi
|
Break powershell script on first error | version: 1.0.{build}
build:
verbosity: minimal
build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- powershell -NoProfile -ExecutionPolicy Bypass "& ""install\bootstrap-win-dev-utils.ps1"""
| version: 1.0.{build}
build:
verbosity: minimal
build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- powershell -NoProfile -ErrorAction Stop -ExecutionPolicy Bypass "& ""install\bootstrap-win-dev-utils.ps1"""
|
Add server 2019 to CI tests | version: "1.0.{build}"
stack: go 1.14
clone_folder: c:\gopath\src\github.com\capnspacehook\taskmaster
environment:
GOPATH: c:\gopath
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GOARCH: 386
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GOARCH: amd64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GOARCH: 386
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GOARCH: amd64
platform:
- x64
build_script:
- cd c:\gopath\src\github.com\capnspacehook\taskmaster
- go get -d -v ./...
- go build
test_script:
- cd c:\gopath\src\github.com\capnspacehook\taskmaster
- go test -cover
| version: "1.0.{build}"
stack: go 1.14
clone_folder: c:\gopath\src\github.com\capnspacehook\taskmaster
environment:
GOPATH: c:\gopath
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
GOARCH: 386
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
GOARCH: amd64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GOARCH: 386
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GOARCH: amd64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GOARCH: 386
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GOARCH: amd64
platform:
- x64
build_script:
- cd c:\gopath\src\github.com\capnspacehook\taskmaster
- go get -d -v ./...
- go build
test_script:
- cd c:\gopath\src\github.com\capnspacehook\taskmaster
- go test -cover
|
Add missing tests on rvm 2.2 | language: ruby
rvm: 2.2.7
sudo: false
matrix:
include:
- rvm: 2.3.4
- rvm: 2.4.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
fast_finish: true
os:
- linux
services:
- postgresql
- mysql
- redis-server
before_install:
- gem install bundler
- psql -c 'create database travis_ci_test;' -U postgres
- mysql -e 'create database if not exists travis_ci_test;'
script:
- gem list -l
- bundle exec rake
- bundle exec codeclimate-test-reporter
- gem build ./em-midori.gemspec
bundler_args: --jobs 1 --retry 3
notifications:
email: false
| language: ruby
rvm: 2.2.7
sudo: false
matrix:
include:
- rvm: 2.2.7
- rvm: 2.3.4
- rvm: 2.4.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
fast_finish: true
os:
- linux
services:
- postgresql
- mysql
- redis-server
before_install:
- gem install bundler
- psql -c 'create database travis_ci_test;' -U postgres
- mysql -e 'create database if not exists travis_ci_test;'
script:
- gem list -l
- bundle exec rake
- bundle exec codeclimate-test-reporter
- gem build ./em-midori.gemspec
bundler_args: --jobs 1 --retry 3
notifications:
email: false
|
Add an npm install step so that local grunt gets found | language: node_js
node_js:
0.12.7
before_script:
- npm install -g grunt-cli
script:
grunt default
| language: node_js
node_js:
0.12.7
before_script:
- npm install -g grunt-cli
- npm install
script:
grunt default
|
Add Node.js 9 to AppVeyor | environment:
matrix:
- nodejs_version: "8"
- nodejs_version: "6"
- nodejs_version: "4"
install:
- ps: Install-Product node $env:nodejs_version
- YARN_IGNORE_ENGINES=true yarn install
test_script:
- yarn test
cache:
- node_modules
- "%LOCALAPPDATA%/Yarn"
build: off
deploy: off
| environment:
matrix:
- nodejs_version: "9"
- nodejs_version: "8"
- nodejs_version: "6"
- nodejs_version: "4"
install:
- ps: Install-Product node $env:nodejs_version
- YARN_IGNORE_ENGINES=true yarn install
test_script:
- yarn test
cache:
- node_modules
- "%LOCALAPPDATA%/Yarn"
build: off
deploy: off
|
Update to the latest Ruby patch levels. | language: ruby
cache: bundler
script: bundle exec rspec
sudo: false
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
matrix:
exclude:
- rvm: 2.0.0
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails_5.1.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails_5.2.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.1.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.2.gemfile
| language: ruby
cache: bundler
script: bundle exec rspec
sudo: false
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
rvm:
- 2.0.0
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
matrix:
exclude:
- rvm: 2.0.0
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails_5.1.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails_5.2.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.0.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.1.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.2.gemfile
|
Copy dll to folder above and make sure we're in the root project folder | version: '{build}'
# Build worker image (VM template)
image: Visual Studio 2015
platform:
- Win32
configuration:
- Debug
- Release
before_build:
- if not exist build mkdir build
- cd build
- cmake --version
- cmake ..
build:
project: build\CactusJumpTests.sln
parallel: true
verbosity: minimal
after_build:
- 7z a tests.zip %APPVEYOR_BUILD_FOLDER%\build\%CONFIGURATION%\*.exe %APPVEYOR_BUILD_FOLDER%\build\lib\%CONFIGURATION%\*.dll
- echo %cd%
- dir
artifacts:
- path: tests.zip
| version: '{build}'
# Build worker image (VM template)
image: Visual Studio 2015
platform:
- Win32
configuration:
- Debug
- Release
before_build:
- if not exist build mkdir build
- cd build
- cmake --version
- cmake ..
- cd %APPVEYOR_BUILD_FOLDER%
build:
project: build\CactusJumpTests.sln
parallel: true
verbosity: minimal
after_build:
- copy build\lib\%CONFIGURATION%\*.dll build\%CONFIGURATION%
- 7z a tests.zip %APPVEYOR_BUILD_FOLDER%\build\%CONFIGURATION%\*.exe %APPVEYOR_BUILD_FOLDER%\build\%CONFIGURATION%\*.dll
- echo %cd%
- dir
artifacts:
- path: tests.zip
|
Switch to x64 testing on Windows | build: false
environment:
matrix:
- PYTHON: "C:\\Python27"
PyQt: "http://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.11.4/PyQt4-4.11.4-gpl-Py2.7-Qt4.8.7-x32.exe"
init:
- ECHO %PYTHON%
- SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
install:
# Install PySide
- python -m pip install nose nosepipe PySide
# Install PyQt4
# miniconda (provided by AppVeyor) prevents PyQt installer
# to run because of a registry key. So the line below overwrite
# the registry key.
- REG ADD HKCU\Software\Python\PythonCore\2.7\InstallPath /f /ve /t REG_SZ /d %PYTHON%
- ps: (new-object net.webclient).DownloadFile($env:PyQT, "C:\install-PyQt4.exe")
- ps: Start-Process -FilePath C:\install-PyQt4.exe -ArgumentList "/S" -Wait -Passthru
# Test install
- python -c "from PyQt4 import QtGui"
- python -c "from PySide import QtGui"
test_script:
- python build_caveats_tests.py
- nosetests --verbose --with-doctest --with-process-isolation --exe
| build: false
environment:
matrix:
- PYTHON: "C:\\Python27-x64"
PyQt: "http://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.11.4/PyQt4-4.11.4-gpl-Py2.7-Qt4.8.7-x64.exe"
init:
- ECHO %PYTHON%
- SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
install:
# Install PySide
- python -m pip install nose nosepipe PySide
# Install PyQt4
# miniconda (provided by AppVeyor) prevents PyQt installer
# to run because of a registry key. So the line below overwrite
# the registry key.
- REG ADD HKCU\Software\Python\PythonCore\2.7\InstallPath /f /ve /t REG_SZ /d %PYTHON%
- ps: (new-object net.webclient).DownloadFile($env:PyQT, "C:\install-PyQt4.exe")
- ps: Start-Process -FilePath C:\install-PyQt4.exe -ArgumentList "/S" -Wait -Passthru
# Test install
- python -c "from PyQt4 import QtGui"
- python -c "from PySide import QtGui"
test_script:
- python build_caveats_tests.py
- nosetests --verbose --with-doctest --with-process-isolation --exe
|
Change the image to use Visual Studio 2017 on AppVeyor so that .NET Framework 4.7 will be available |
# version format
version: 1.0.{build}
# Maximum number of concurrent jobs for the project
max_jobs: 1
services:
- mssql2014 # start SQL Server 2014 Express
build:
parallel: true # enable MSBuild parallel builds
project: src\bar-mgmt.sln # path to Visual Studio solution or project
# MSBuild verbosity level
verbosity: normal
| # image to use
image: Visual Studio 2017
# version format
version: 1.0.{build}
# Maximum number of concurrent jobs for the project
max_jobs: 1
services:
- mssql2014 # start SQL Server 2014 Express
build:
parallel: true # enable MSBuild parallel builds
project: src\bar-mgmt.sln # path to Visual Studio solution or project
# MSBuild verbosity level
verbosity: normal
|
Use Python 3.6 (!3.3) on AppVeyor | environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
build: false
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- pip install -r requirements.txt
build_script:
- python setup.py install
test_script:
- nosetests
| environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
build: false
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- pip install -r requirements.txt
build_script:
- python setup.py install
test_script:
- nosetests
|
Move MySQL image to test | version: 2
jobs:
build:
docker:
- image: circleci/php:7.2
- image: circleci/mysql:8.0.4
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=true
- MYSQL_ROOT_PASSWORD=
- MYSQL_DATABASE=graphp
steps:
- checkout
test:
docker:
- image: circleci/php:7.2
steps:
- checkout
- run:
name: "Pull Submodules"
command: |
git submodule init
git submodule update --remote
- run:
name: "Update composer"
command: |
cd third_party
php composer.phar update
- run: graphp/tests/run_tests.sh
workflows:
version: 2
build_and_test:
jobs:
- build
- test
| version: 2
jobs:
build:
docker:
- image: circleci/php:7.2
steps:
- checkout
test:
docker:
- image: circleci/php:7.2
- image: circleci/mysql:8.0.4
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=true
- MYSQL_ROOT_PASSWORD=
- MYSQL_DATABASE=graphp
steps:
- checkout
- run:
name: "Pull Submodules"
command: |
git submodule init
git submodule update --remote
- run:
name: "Update composer"
command: |
cd third_party
php composer.phar update
- run: graphp/tests/run_tests.sh
workflows:
version: 2
build_and_test:
jobs:
- build
- test
|
Use ubuntu 16.04 image for CircleCI | version: 2
jobs:
build:
machine:
image: circleci/classic:latest
steps:
- checkout
- run:
name: Install build tools
command: sudo apt-get update && sudo apt-get install build-essential cpio squashfs-tools debootstrap realpath
- run:
name: Prepare branches
command: cp .circleci/branches.yaml platform/upload/branches.yaml && echo "ci" >platform/upload/BRANCH_NAME
- run:
name: Construct build chroot
command: HOMEWORLD_CHROOT="$HOME/autobuild-chroot" USER="circleci" ./build-chroot/create.sh
- run:
name: Import gpg key
command: echo "gpg --batch --no-tty --yes --import /homeworld/.circleci/ci-key-private.asc" | HOMEWORLD_CHROOT="$HOME/autobuild-chroot" USER="circleci" ./build-chroot/enter-ci.sh
- run:
name: Check gpg key presence
command: echo "gpg --list-secret-keys" | HOMEWORLD_CHROOT="$HOME/autobuild-chroot" USER="circleci" ./build-chroot/enter-ci.sh
- run:
name: Launch build with bazel
command: echo "bazel build //upload --verbose_failures" | HOMEWORLD_CHROOT="$HOME/autobuild-chroot" USER="circleci" ./build-chroot/enter-ci.sh
| version: 2
jobs:
build:
machine:
image: ubuntu-1604:201903-01
steps:
- checkout
- run:
name: Install build tools
command: sudo apt-get update && sudo apt-get install build-essential cpio squashfs-tools debootstrap realpath
- run:
name: Prepare branches
command: cp .circleci/branches.yaml platform/upload/branches.yaml && echo "ci" >platform/upload/BRANCH_NAME
- run:
name: Construct build chroot
command: HOMEWORLD_CHROOT="$HOME/autobuild-chroot" USER="circleci" ./build-chroot/create.sh
- run:
name: Import gpg key
command: echo "gpg --batch --no-tty --yes --import /homeworld/.circleci/ci-key-private.asc" | HOMEWORLD_CHROOT="$HOME/autobuild-chroot" USER="circleci" ./build-chroot/enter-ci.sh
- run:
name: Check gpg key presence
command: echo "gpg --list-secret-keys" | HOMEWORLD_CHROOT="$HOME/autobuild-chroot" USER="circleci" ./build-chroot/enter-ci.sh
- run:
name: Launch build with bazel
command: echo "bazel build //upload --verbose_failures" | HOMEWORLD_CHROOT="$HOME/autobuild-chroot" USER="circleci" ./build-chroot/enter-ci.sh
|
Update from Hackage at 2017-02-25T23:38:29Z | homepage: http://github.com/TheBizzle
changelog-type: ''
hash: 1d31f20836e3ba6f618f7d2f04f7fe91b831878eb02b35e58da408f88d30c026
test-bench-deps:
base: ! '>=4.6 && <5'
containers: ! '>=0.5'
tasty-hunit: ! '>=0.9'
tasty: ! '>=0.10'
lame-tester: ! '>=1.1'
maintainer: jason.bertsche@gmail.com
synopsis: A strange and unnecessary selective test-running library
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
semigroups: ! '>=0.9'
containers: ! '>=0.5'
bifunctors: ! '>=4.1'
validation: ! '>=0.3'
all-versions:
- '1.1'
- '1.2'
author: Jason Bertsche
latest: '1.2'
description-type: haddock
description: A strange and unnecessary selective test-running library
license-name: BSD3
| homepage: http://github.com/TheBizzle
changelog-type: ''
hash: f1e55c60160e3a2d9b11e11370eb4c5a90608209e20128b23cf9ffb06444bf6b
test-bench-deps:
base: ! '>=4.6 && <5'
containers: ! '>=0.5'
tasty-hunit: ! '>=0.9'
tasty: ! '>=0.10'
lame-tester: ! '>=1.2'
maintainer: jason.bertsche@gmail.com
synopsis: A strange and unnecessary selective test-running library
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
semigroups: ! '>=0.9'
containers: ! '>=0.5'
bifunctors: ! '>=4.1'
validation: ! '>=0.3'
all-versions:
- '1.1'
- '1.2'
- '1.2.1'
author: Jason Bertsche
latest: '1.2.1'
description-type: haddock
description: A strange and unnecessary selective test-running library
license-name: BSD3
|
Move CI to macOS 12 / Xcode 14.1 | name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
macos:
name: Tests
runs-on: macos-11
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.app/Contents/Developer
steps:
- uses: actions/checkout@v2
- name: Tests
run: xcodebuild build test -project TMLPersistentContainer.xcodeproj -scheme TMLPersistentContainer-macOS -enableCodeCoverage YES
- name: Generate coverage
uses: sersoft-gmbh/swift-coverage-action@v2
with:
format: lcov
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
files: .swiftcov/TMLPersistentContainer.framework.coverage.lcov
| name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
macos:
name: Tests
runs-on: macos-12
env:
DEVELOPER_DIR: /Applications/Xcode_14.1.app/Contents/Developer
steps:
- uses: actions/checkout@v2
- name: Tests
run: xcodebuild build test -project TMLPersistentContainer.xcodeproj -scheme TMLPersistentContainer-macOS -enableCodeCoverage YES
- name: Generate coverage
uses: sersoft-gmbh/swift-coverage-action@v2
with:
format: lcov
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
files: .swiftcov/TMLPersistentContainer.framework.coverage.lcov
|
Move node version to 0.10.22 | api:
type: custom
buildscript: config/builder
ports:
www: http
process: node src/server.js --expose-gc --trace-gc
approot: .
node_version: v0.10.21
| api:
type: custom
buildscript: config/builder
ports:
www: http
process: node src/server.js --expose-gc --trace-gc
approot: .
node_version: v0.10.22
|
Set journal folder as a shared folder in ufs | - hosts: TachyonMaster
tasks:
- include: roles/zookeeper/tasks/main.yml
when: tachyon_masters > 1
- hosts: TachyonMaster*
tasks:
- name: set master address to own hostname
shell: sed -i "s/export TACHYON_MASTER_ADDRESS=.*/export TACHYON_MASTER_ADDRESS=$(hostname -A | cut -d' ' -f1)/g" /tachyon/conf/tachyon-env.sh
- include: roles/tachyon/tasks/start_master.yml
- hosts: all
tasks:
- include: roles/tachyon/tasks/start_worker.yml
| - hosts: TachyonMaster
tasks:
- include: roles/zookeeper/tasks/main.yml
when: tachyon_masters > 1
- hosts: TachyonMaster*
tasks:
- name: set master address to own hostname
shell: sed -i "s/export TACHYON_MASTER_ADDRESS=.*/export TACHYON_MASTER_ADDRESS=$(hostname -A | cut -d' ' -f1)/g" /tachyon/conf/tachyon-env.sh
- name: set journal folder as a shared undered folder in underfs
shell: echo 'tachyon.master.journal.folder=${tachyon.underfs.address}/tachyon/journal/' >> /tachyon/conf/tachyon-site.properties
- include: roles/tachyon/tasks/start_master.yml
- hosts: all
tasks:
- include: roles/tachyon/tasks/start_worker.yml
|
Upgrade Ruby and Ubuntu to latest in GH action | # This workflow integrates Brakeman with GitHub's Code Scanning feature
# Brakeman is a static analysis security vulnerability scanner for Ruby on Rails applications
name: Brakeman Scan
# This section configures the trigger for the workflow. Feel free to customize depending on your convention
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
brakeman-scan:
name: Brakeman Scan
runs-on: ubuntu-18.04
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v2
# Customize the ruby version depending on your needs
- name: Setup Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: '2.4'
- name: Setup Brakeman
env:
BRAKEMAN_VERSION: '4.10' # SARIF support is provided in Brakeman version 4.10+
run: |
gem install brakeman --version $BRAKEMAN_VERSION
# Execute Brakeman CLI and generate a SARIF output with the security issues identified during the analysis
- name: Scan
continue-on-error: true
run: |
brakeman -f sarif -o output.sarif.json .
# Upload the SARIF file generated in the previous step
- name: Upload SARIF
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: output.sarif.json
| # This workflow integrates Brakeman with GitHub's Code Scanning feature
# Brakeman is a static analysis security vulnerability scanner for Ruby on Rails applications
name: Brakeman Scan
# This section configures the trigger for the workflow. Feel free to customize depending on your convention
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
brakeman-scan:
name: Brakeman Scan
runs-on: ubuntu-latest
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v2
# Customize the ruby version depending on your needs
- name: Setup Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: '2.7'
- name: Setup Brakeman
env:
BRAKEMAN_VERSION: '4.10' # SARIF support is provided in Brakeman version 4.10+
run: |
gem install brakeman --version $BRAKEMAN_VERSION
# Execute Brakeman CLI and generate a SARIF output with the security issues identified during the analysis
- name: Scan
continue-on-error: true
run: |
brakeman -f sarif -o output.sarif.json .
# Upload the SARIF file generated in the previous step
- name: Upload SARIF
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: output.sarif.json
|
Add pre-commit file exclusions to the import sorting hook | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: trailing-whitespace
exclude: grammars
- id: check-merge-conflict
- repo: https://github.com/PyCQA/flake8
rev: 3.8.4
hooks:
- id: flake8
name: Check project styling
exclude: grammars
args:
- --ignore=F403,F405
- --max-line-length=160
- repo: https://github.com/PyCQA/isort
rev: 5.7.0
hooks:
- id: isort
name: Sort python imports (shows diff)
args: ["-c", "--diff"]
- id: isort
name: Sort python imports (fixes files)
| repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: trailing-whitespace
exclude: grammars
- id: check-merge-conflict
- repo: https://github.com/PyCQA/flake8
rev: 3.8.4
hooks:
- id: flake8
name: Check project styling
exclude: grammars
args:
- --ignore=F403,F405
- --max-line-length=160
- repo: https://github.com/PyCQA/isort
rev: 5.7.0
hooks:
- id: isort
name: Sort python imports (shows diff)
exclude: grammars
args: ["-c", "--diff"]
- id: isort
name: Sort python imports (fixes files)
exclude: grammars
|
Add VS2019 configuration to Github CI | name: CI
on:
push:
branches: [ feature/github-actions-for-windows-compilers ]
pull_request:
branches: [ master ]
jobs:
build-windows-vs2019:
name: Windows VS2019 Debug
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build
run: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/MSBuild/Current/Bin/MSBuild.exe test/vs2019/etl.sln /p:Configuration=Debug /p:Platform=x86"
- name: Run tests
run: ./test/etl_tests
| name: CI
on:
push:
branches: [ feature/github-actions-for-windows-compilers ]
pull_request:
branches: [ master ]
jobs:
build-windows-vs2019:
name: Windows VS2019 Debug
runs-on: [windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.1
- name: Build
run: MSBuild.exe test/vs2019/etl.sln /p:Configuration=Debug /p:Platform=x86
- name: Run tests
run: ./test/etl_tests
|
Improve GitHub Actions to better emulate real usage | name: "Install and Start WordPressify"
env:
WPFY_GH_REPO: ${{ github.repository }}
WPFY_GH_REF: ${{ github.ref }}
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci --no-audit
- run: ./installer/index.js -y
| name: "Install and Start WordPressify"
env:
WPFY_GH_REPO: ${{ github.repository }}
WPFY_GH_REF: ${{ github.ref }}
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci --no-audit
- run: |
mkdir wpfy_global;
cd wpfy_global;
npm init -y;
npm install ../;
mkdir test;
cd test;
../node_modules/.bin/wordpressify -y;
for container in $( docker-compose ps -q ); do
docker exec $container echo "Hi!";
done;
|
Update ci config, trying to pass ci | language: node_js
node_js:
- "6"
- "node"
install:
- npm install
- npm install -g babel-cli
script:
- npm run test
| language: node_js
node_js:
- "6"
- "node"
install:
- npm install -g babel-cli
- npm install
script:
- npm run test
|
Test on modern node.js versions | sudo: false
language: node_js
node_js:
- 6
- 8
- 10
| sudo: false
language: node_js
node_js:
- 8
- 10
- 12
- 13
|
Add PHP 5.5 and 5.4 to build configuration | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover | language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover |
Upgrade to Laravel 7: Trying to install zip extension with pecl for Travis CI | sudo: required
language: php
dist: trusty
php:
- 7.4
install:
- cp .env.example .env
- travis_retry composer install --no-interaction
- php artisan dusk:chrome-driver 71
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- ./vendor/laravel/dusk/bin/chromedriver-linux &
- php artisan key:generate
- touch database/database.sqlite
- php artisan serve &
- chmod -R 0755 vendor/laravel/dusk/bin/
script:
- vendor/bin/phpunit
# - php artisan dusk
| sudo: required
language: php
dist: trusty
php:
- 7.4
install:
- pecl install zip
- cp .env.example .env
- travis_retry composer install --no-interaction
- php artisan dusk:chrome-driver 71
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- ./vendor/laravel/dusk/bin/chromedriver-linux &
- php artisan key:generate
- touch database/database.sqlite
- php artisan serve &
- chmod -R 0755 vendor/laravel/dusk/bin/
script:
- vendor/bin/phpunit
# - php artisan dusk
|
Add Nodejs 12 (LTS) to test matrix | addons:
browserstack:
username: ${BROWSERSTACK_USERNAME}
access_key: ${BROWSERSTACK_ACCESS_KEY}
forcelocal: true
language: node_js
node_js:
- '8'
- '10'
cache:
directories:
- node_modules
stages:
- test
- name: browserstack
if: env(BROWSERSTACK_USERNAME) IS present
jobs:
include:
- stage: browserstack
node_js: '10'
script: grunt browserstack
| addons:
browserstack:
username: ${BROWSERSTACK_USERNAME}
access_key: ${BROWSERSTACK_ACCESS_KEY}
forcelocal: true
language: node_js
node_js:
- '8'
- '10'
- '12'
cache:
directories:
- node_modules
stages:
- test
- name: browserstack
if: env(BROWSERSTACK_USERNAME) IS present
jobs:
include:
- stage: browserstack
node_js: '12'
script: grunt browserstack
|
Fix that coverage report is uploaded even if it is disabled | language:
- cpp
sudo:
- false
dist:
- trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- g++-6
- valgrind
cache:
directories:
- deps
matrix:
include:
- os: osx
osx_image: xcode9
env: PLATFORM=mac COVERAGE=ON
- os: osx
osx_image: xcode8.3
env: PLATFORM=mac COVERAGE=ON
- os: osx
osx_image: xcode9
env: PLATFORM=ios MATRIX_EVAL="CXX=clang++ CC=clang"
- os: osx
osx_image: xcode8.3
env: PLATFORM=ios MATRIC_EVAL="CXX=clang++ CC=clang"
- os: linux
env: PLATFORM=linux COVERAGE=ON MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
- os: linux
env: PLATFORM=linux COVERAGE=ON MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
before_install:
- eval "${MATRIX_EVAL}"
install:
- pip install --user plumbum clint requests
before_script:
- scripts/travis_check_deps.sh
script:
- set -e
- scripts/travis.sh
after_success:
- if [ -n "$COVERAGE" ]; then bash <(curl -s https://codecov.io/bash); fi
| language:
- cpp
sudo:
- false
dist:
- trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- g++-6
- valgrind
cache:
directories:
- deps
matrix:
include:
- os: osx
osx_image: xcode9
env: PLATFORM=mac COVERAGE=ON
- os: osx
osx_image: xcode8.3
env: PLATFORM=mac COVERAGE=ON
- os: osx
osx_image: xcode9
env: PLATFORM=ios MATRIX_EVAL="CXX=clang++ CC=clang"
- os: osx
osx_image: xcode8.3
env: PLATFORM=ios MATRIC_EVAL="CXX=clang++ CC=clang"
- os: linux
env: PLATFORM=linux COVERAGE=ON MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
- os: linux
env: PLATFORM=linux COVERAGE=ON MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
before_install:
- eval "${MATRIX_EVAL}"
install:
- pip install --user plumbum clint requests
before_script:
- scripts/travis_check_deps.sh
script:
- set -e
- scripts/travis.sh
after_success:
- if [ "$COVERAGE" == "ON ]; then bash <(curl -s https://codecov.io/bash); fi
|
Stop testing on Node 8 | language: node_js
node_js:
- "0.10"
- "0.8"
before_install:
- npm install -g grunt-cli
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- grunt ci
| language: node_js
node_js:
- "0.10"
- "0.11"
before_install:
- npm install -g grunt-cli
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- grunt ci
|
Test commit for gcov and codecov | language: cpp
compiler:
- gcc
branches:
only:
- master
addons:
apt:
packages:
- kcov
before_script:
- mkdir build
- cd build
- cmake ..
script: make && make CTEST_OUTPUT_ON_FAILURE=1 test
after_success:
- mkdir coverage
- ls -laR
#- cd coverage
#- gcov
#- bash <(curl -s https://codecov.io/bash)
notifications:
email:
on_success: change
on_failure: change
| language: cpp
compiler:
- gcc
branches:
only:
- master
before_script:
- mkdir build
- cd build
- cmake ..
script: make && make CTEST_OUTPUT_ON_FAILURE=1 test
after_success:
- mkdir ../coverage
- cd ../coverage
- gcov ../src/*.cpp -o ../build/src/CMakeFiles/src.dir
- bash <(curl -s https://codecov.io/bash) -X gcov
notifications:
email:
on_success: change
on_failure: change
|
Test against 2.1 and 2.2 | language: ruby
rvm:
- 2.0.0
- 1.9.3
- 2.1.0
- rbx-2 | language: ruby
rvm:
- 2.1.0
- 2.2.0 |
Use the simulator SDK so we can run tests. | language: objective-c
xcode_project: TPDWeakProxy.xcodeproj
xcode_scheme: TPDWeakProxy
env:
global:
- LC_ALL="en_US.UTF-8"
| language: objective-c
xcode_project: TPDWeakProxy.xcodeproj
xcode_scheme: TPDWeakProxy
xcode_sdk: iphonesimulator8.0
env:
global:
- LC_ALL="en_US.UTF-8"
|
Stop testing in 5.5, and start testing (but allow failures) in php nightly. Also update composer itself before starting. | language: php
php:
- '5.5'
- '5.6'
- '7.0'
- hhvm
install: composer install --dev
script: phpunit
| language: php
php:
- '5.6'
- '7.0'
- hhvm
matrix:
allow_failures:
- php: 'nightly'
before_script: composer self-update
install: composer install --dev
script: phpunit
|
Fix up Travis CI configuration | language: node_js
node_js:
- "0.12"
- "iojs"
before_install:
# - sudo apt-get update
# - sudo apt-get install python-software-properties
# Setup for installing LLVM
- sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main' >> /etc/apt/sources.list"
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
install:
- sudo apt-get update
# Install LLVM
- sudo apt-get install -y llvm-3.5 llvm-3.5-dev
script: "npm run test"
| language: node_js
node_js:
- "0.12"
# - "iojs"
before_install:
# - sudo apt-get update
# - sudo apt-get install python-software-properties
# Setup for installing LLVM
- sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main' >> /etc/apt/sources.list"
- sudo sh -c "echo 'deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu precise main' >> /etc/apt/sources.list"
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
install:
- sudo apt-get update
- sudo apt-get install -y --force-yes libstdc++6
# Install LLVM
- sudo apt-get install -y llvm-3.5 llvm-3.5-dev llvm-3.5-runtime libllvm3.5 libllvm3.5-dbg
- npm install
before_script:
- export LD_LIBRARY_PATH=/usr/lib/llvm-3.5/lib:$LD_LIBRARY_PATH
script: "npm run test"
|
Make sure old and unstable nodes don't break Travis | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "0.4"
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.6"
- node_js: "0.4"
|
Fix Travis-CI coverage report uploading | sudo: false
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- pypy
- pypy3
install:
- pip install flake8
- pip install --upgrade pytest # needed for cases where there is already an old pytest installed
script:
- flake8 $(git ls-files mechanicalsoup/'*.py') example.py
- python setup.py test
after_success:
- bash <(curl -s https://codecov.io/bash) || echo 'Codecov failed to upload'
| sudo: false
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- pypy
- pypy3
install:
- pip install flake8
- pip install --upgrade pytest # needed for cases where there is already an old pytest installed
- pip install pytest-cov # needed for the codecov uploader
script:
- flake8 $(git ls-files mechanicalsoup/'*.py') example.py
- python setup.py test
after_success:
- bash <(curl -s https://codecov.io/bash) || echo 'Codecov failed to upload'
|
Tweak Travis CI notification settings | rvm:
- 1.8.7
- 1.9.2
- ree
- ruby-head
- rbx-2.0
| rvm:
- 1.8.7
- 1.9.2
- ree
- ruby-head
- rbx-2.0
notifications:
# overriding this so that TST Media's email account doesn't get spammed
# feel free to add yourselves if you want in on this action
email:
- patrick.byrne@tstmedia.com
|
Remove unsupported Go version 1.3 from Travis CI | language: go
go:
- 1.0
- 1.1
- 1.2
- 1.3
script: go test
| language: go
go:
- 1.0
- 1.1
- 1.2
script: go test
|
Use saner build version defaults | rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- rbx
cache: bundler
| rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
cache: bundler
|
Update Travis to Puppet 3.6.1 | rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.8.7
notifications:
email:
- carlos@apache.org
- tim@github.com
env:
- PUPPET_VERSION=3.6.0.rc1
- PUPPET_VERSION=3.5.1
- PUPPET_VERSION=3.4.3
- PUPPET_VERSION=3.3.2
- PUPPET_VERSION=3.2.4
- PUPPET_VERSION=3.1.1
- PUPPET_VERSION=3.0.2
- PUPPET_VERSION=2.7.25
before_script:
- puppet --version
matrix:
# Puppet < 3.5.0 is broken under ruby 2.1 https://tickets.puppetlabs.com/browse/PUP-1243
exclude:
- rvm: 2.1.0
env: PUPPET_VERSION=2.7.25
- rvm: 2.1.0
env: PUPPET_VERSION=3.0.2
- rvm: 2.1.0
env: PUPPET_VERSION=3.1.1
- rvm: 2.1.0
env: PUPPET_VERSION=3.2.4
- rvm: 2.1.0
env: PUPPET_VERSION=3.3.2
- rvm: 2.1.0
env: PUPPET_VERSION=3.4.3
| rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.8.7
notifications:
email:
- carlos@apache.org
- tim@github.com
env:
- PUPPET_VERSION=3.6.1
- PUPPET_VERSION=3.5.1
- PUPPET_VERSION=3.4.3
- PUPPET_VERSION=3.3.2
- PUPPET_VERSION=3.2.4
- PUPPET_VERSION=3.1.1
- PUPPET_VERSION=3.0.2
- PUPPET_VERSION=2.7.25
before_script:
- puppet --version
matrix:
# Puppet < 3.5.0 is broken under ruby 2.1 https://tickets.puppetlabs.com/browse/PUP-1243
exclude:
- rvm: 2.1.0
env: PUPPET_VERSION=2.7.25
- rvm: 2.1.0
env: PUPPET_VERSION=3.0.2
- rvm: 2.1.0
env: PUPPET_VERSION=3.1.1
- rvm: 2.1.0
env: PUPPET_VERSION=3.2.4
- rvm: 2.1.0
env: PUPPET_VERSION=3.3.2
- rvm: 2.1.0
env: PUPPET_VERSION=3.4.3
|
Update patch versions for 2.3 and 2.4 | language: ruby
rvm:
- 2.5.1
- 2.4.3
- 2.3.6
env:
global:
- secure: n0mxwnyjuXI4mJO4mp++2TnsPJ+XgCF/J1U2L5piE5j3xMhSU+5V0JrA1uFlS0Pemb44M7BjgmF9S4G35BwyAQpctpCYhqy9tFa6+Y6nxEv5hCv2cZz7BSAZM6eb+zq20409hxTHRaQOr1DBeE4R5S2PrmOXRqvYfTRv3LNSLFk=
matrix:
- OJ=0
- OJ=1
branches:
only:
- master
before_script:
- if [[ $OJ -eq 1 ]]; then gem install oj; fi
notifications:
slack:
secure: iTI8zpxXQJqf5e9ix4buLRsGlf9lJRZqA9Fawdqm41msBrC0Zsp31XzBS7ZPiTcdHhImtOC4lccTCW2C8kR6waaG5VOF0U2BwyKaNFKsXMaVk6yrNhYkvJ9YVicuU9hL+JKLyBrSDYQ7+vXcHqaz4H4dYpPThrv6sfq4jBOp+eM=
| language: ruby
rvm:
- 2.5.1
- 2.4.4
- 2.3.7
env:
global:
- secure: n0mxwnyjuXI4mJO4mp++2TnsPJ+XgCF/J1U2L5piE5j3xMhSU+5V0JrA1uFlS0Pemb44M7BjgmF9S4G35BwyAQpctpCYhqy9tFa6+Y6nxEv5hCv2cZz7BSAZM6eb+zq20409hxTHRaQOr1DBeE4R5S2PrmOXRqvYfTRv3LNSLFk=
matrix:
- OJ=0
- OJ=1
branches:
only:
- master
before_script:
- if [[ $OJ -eq 1 ]]; then gem install oj; fi
notifications:
slack:
secure: iTI8zpxXQJqf5e9ix4buLRsGlf9lJRZqA9Fawdqm41msBrC0Zsp31XzBS7ZPiTcdHhImtOC4lccTCW2C8kR6waaG5VOF0U2BwyKaNFKsXMaVk6yrNhYkvJ9YVicuU9hL+JKLyBrSDYQ7+vXcHqaz4H4dYpPThrv6sfq4jBOp+eM=
|
Update Travis CI to ensure OracleJDK 8 | language: java
branches:
only:
- master
before_install: bash etc/travis-setup.sh
install: true
script: eval $TEST_CMD
after_script: heroku keys:remove $USER@`hostname`
env:
global:
- IS_RUNNING_ON_TRAVIS=true
- HATCHET_RETRIES=3
- HATCHET_DEPLOY_STRATEGY=git
- HATCHET_BUILDPACK_BASE="https://github.com/heroku/heroku-buildpack-java.git"
- HATCHET_APP_LIMIT=20
- SHUNIT_HOME="/tmp/shunit2-2.1.6"
matrix:
- TEST_CMD='if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then ./mvnw verify; else echo "Skipping hatchet tests for third-party PR"; fi'
- TEST_CMD="/tmp/testrunner/bin/run -c ."
| language: java
jdk:
- oraclejdk8
branches:
only:
- master
before_install: bash etc/travis-setup.sh
install: true
script: eval $TEST_CMD
after_script: heroku keys:remove $USER@`hostname`
env:
global:
- IS_RUNNING_ON_TRAVIS=true
- HATCHET_RETRIES=3
- HATCHET_DEPLOY_STRATEGY=git
- HATCHET_BUILDPACK_BASE="https://github.com/heroku/heroku-buildpack-java.git"
- HATCHET_APP_LIMIT=20
- SHUNIT_HOME="/tmp/shunit2-2.1.6"
matrix:
- TEST_CMD='if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then ./mvnw verify; else echo "Skipping hatchet tests for third-party PR"; fi'
- TEST_CMD="/tmp/testrunner/bin/run -c ."
|
Fix pytest and see if we have node available | language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
install: "cd python && pip install -r requirements.txt"
# command to run tests
script: "cd python && pytest"
| language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
install: "cd python && pip install -r requirements.txt"
# command to run tests
script: "pytest && node --version"
|
Change AWS account and S3 bucket for deployment (fix encrypted secret key) | language: java
jdk:
- oraclejdk7
script: mvn install
install:
- wget https://s3-us-west-2.amazonaws.com/indeedeng-imhotep-build/install-imhotep-maven-local.sh
- bash install-imhotep-maven-local.sh
before_deploy:
- mkdir deploy
- cp */target/*builder*.* deploy/
- cp pom.xml deploy/imhotep-tsv-converter.pom
- cp index-builder-util/pom.xml deploy/index-builder-util.pom
- cp tsv-converter/pom.xml deploy/tsv-converter.pom
deploy:
provider: s3
access_key_id: AKIAJVZNZT5TTB2Y4BNA
secret_access_key:
secure: FLV4Zf11wjfEIMgVjiIvx8Q0IUZqxLspcwAZRu9tROby79vs8mKC/eEfgq+VIGKaLTL+U6bA6i9Dp6NJ4r+8JLCNRez4AEYHbTPDnJ+m6FcvVuBSamDHN1bEey1PTkhXsJ3hTBrBA4msZ7VFkfiiqYuyGbMcwGazEq3UcHevo0M=
bucket: indeedeng-imhotep-build
local-dir: deploy
skip_cleanup: true
region: us-west-2
| language: java
jdk:
- oraclejdk7
script: mvn install
install:
- wget https://s3-us-west-2.amazonaws.com/indeedeng-imhotep-build/install-imhotep-maven-local.sh
- bash install-imhotep-maven-local.sh
before_deploy:
- mkdir deploy
- cp */target/*builder*.* deploy/
- cp pom.xml deploy/imhotep-tsv-converter.pom
- cp index-builder-util/pom.xml deploy/index-builder-util.pom
- cp tsv-converter/pom.xml deploy/tsv-converter.pom
deploy:
provider: s3
access_key_id: AKIAJVZNZT5TTB2Y4BNA
secret_access_key:
secure: INvYKFi4Y6bILOL/myDzUC3cL4S/COisntrAirrpVG1Mw8+YawaYDErtJO6VZ7/zK2VyWV//WAJ8c1uq4T7Kq2U+FNTcn7NY5azDEb5BWS7dB4HWxvAI8gxCJcW4fGaEdG8C9FGty41GeDGDO8W5IoE3tHCPkWJfLGmnJC/4pEs=
bucket: indeedeng-imhotep-build
local-dir: deploy
skip_cleanup: true
region: us-west-2
|
Remove nightly from test matrix | language: php
php:
- 7.1
- 7.2
- 7.3
- nightly
matrix:
include:
- php: 7.1
env: dependencies=lowest
dist: precise
- php: 7.3
env: dependencies=highest
fast_finish: true
cache:
directories:
- $HOME/.composer/cache/files
install:
- if [ -z "$dependencies" ]; then travis_retry composer install --no-interaction; fi;
- if [ "$dependencies" = "lowest" ]; then travis_retry composer update --prefer-lowest --no-interaction; fi;
- if [ "$dependencies" = "highest" ]; then travis_retry composer update --no-interaction; fi;
- composer show
script:
- ./vendor/bin/phpunit -v --coverage-text --coverage-clover=./build/logs/clover.xml
after_success:
- if [ -f ./build/logs/clover.xml ]; then wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.1.0/coveralls.phar; fi
- if [ -f ./build/logs/clover.xml ]; then php ./coveralls.phar -v; fi
| language: php
php:
- 7.1
- 7.2
- 7.3
matrix:
include:
- php: 7.1
env: dependencies=lowest
dist: precise
- php: 7.3
env: dependencies=highest
fast_finish: true
cache:
directories:
- $HOME/.composer/cache/files
install:
- if [ -z "$dependencies" ]; then travis_retry composer install --no-interaction; fi;
- if [ "$dependencies" = "lowest" ]; then travis_retry composer update --prefer-lowest --no-interaction; fi;
- if [ "$dependencies" = "highest" ]; then travis_retry composer update --no-interaction; fi;
- composer show
script:
- ./vendor/bin/phpunit -v --coverage-text --coverage-clover=./build/logs/clover.xml
after_success:
- if [ -f ./build/logs/clover.xml ]; then wget https://github.com/php-coveralls/php-coveralls/releases/download/v1.1.0/coveralls.phar; fi
- if [ -f ./build/logs/clover.xml ]; then php ./coveralls.phar -v; fi
|
Support does not yet exist for Postgres 10.1 | language: python
python:
- "3.6.3"
#Django & Database
addons:
postgresql: "9.4"
sudo: false
env:
-DJANGO=1.10 DB=mysql
-DJANGO=1.10 DB=sqlite3
-DJANGO=1.10 DB=postgresql
install:
- pip install -r requirements.txt
- pip install coveralls
#mysql db creation
before_script:
- sleep 15
- psql -c 'create database test;' -U postgres
# command to run tests
script:
- python test_runner.py test
- coverage run --source=django_blog_it.posts,django_blog_it.django_blog_it test_runner.py test
after_success:
coveralls
| language: python
python:
- "3.6.3"
#Django & Database
addons:
#Travis CI does not yet support Postgres 10.1
#See https://github.com/travis-ci/travis-ci/issues/8537
#postgresql: "10.1"
postgresql: "9.4"
sudo: false
env:
-DJANGO=1.10 DB=mysql
-DJANGO=1.10 DB=sqlite3
-DJANGO=1.10 DB=postgresql
install:
- pip install -r requirements.txt
- pip install coveralls
#mysql db creation
before_script:
- sleep 15
- psql -c 'create database test;' -U postgres
# command to run tests
script:
- python test_runner.py test
- coverage run --source=django_blog_it.posts,django_blog_it.django_blog_it test_runner.py test
after_success:
coveralls
|
Add latest stable Node version (0.12) to Travis-CI build | language: node_js
node_js:
- '0.10'
before_install:
- npm update -g npm
after_script:
- npm run coveralls
after_failure:
- tar -cjf "svg-sprite_travis_${TRAVIS_BUILD_NUMBER}.tar.bz2" tmp && curl --ftp-create-dirs -T "svg-sprite_travis_${TRAVIS_BUILD_NUMBER}.tar.bz2" -u $FTP_USER:$FTP_PASSWORD "ftp://jkphl.is/${TRAVIS_REPO_SLUG}/svg-sprite_travis_${TRAVIS_BUILD_NUMBER}.tar.bz2" | language: node_js
node_js:
- '0.10'
- '0.12'
before_install:
- npm update -g npm
after_script:
- npm run coveralls
after_failure:
- tar -cjf "svg-sprite_travis_${TRAVIS_BUILD_NUMBER}.tar.bz2" tmp && curl --ftp-create-dirs -T "svg-sprite_travis_${TRAVIS_BUILD_NUMBER}.tar.bz2" -u $FTP_USER:$FTP_PASSWORD "ftp://jkphl.is/${TRAVIS_REPO_SLUG}/svg-sprite_travis_${TRAVIS_BUILD_NUMBER}.tar.bz2" |
Uninstall xctool on Travis before installing it again | language: objective-c
before_install:
- brew update
- brew install xctool
script: xctool test
| language: objective-c
before_install:
- brew update
- brew uninstall xctool && brew install xctool
script: xctool test
|
Set connection timeout for feign client | pollingInterval: 5
metricsDatasourceName: 'WSO2_METRICS_DB'
dashboardDatasourceName: 'WSO2_STATUS_DASHBOARD_DB'
workerAccessCredentials:
username: 'admin'
password: 'admin'
workerConnectionConfigurations:
clientConnectionTimeOut: 120000
clientReadTimeOut: 120000
| pollingInterval: 5
metricsDatasourceName: 'WSO2_METRICS_DB'
dashboardDatasourceName: 'WSO2_STATUS_DASHBOARD_DB'
workerAccessCredentials:
username: 'admin'
password: 'admin'
workerConnectionConfigurations:
clientConnectionTimeOut: 15000
clientReadTimeOut: 15000
|
Add the rouge theme back to the optional area | # REQUIRED CHANGES
# Edit next line to provide your own name.
title: Molly Maluhia | Professional Portfolio
# Edit next line, replacing 'techfolios' with your github username
url: "https://techfolios.github.io"
# Edit next line so that baseurl is "" if your repo is <username>.github.io
baseurl: "/template"
# OPTIONAL CHANGES
## Specify the theme using any of the css files in css/techfolio-theme
techfolio-theme: default.css
# DON'T CHANGE THE FOLLOWING (unless you know what you're doing)
rouge-theme: github.css
markdown: kramdown
kramdown:
hard_wrap: false
input: GFM
syntax_highlighter: rouge
strict_front_matter: true
mathjax: true
exclude:
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
include:
- .nojekyll
- _data
plugins:
- jekyll-gist
| # REQUIRED CHANGES
# Edit next line to provide your own name.
title: Molly Maluhia | Professional Portfolio
# Edit next line, replacing 'techfolios' with your github username
url: "https://techfolios.github.io"
# Edit next line so that baseurl is "" if your repo is <username>.github.io
baseurl: "/template"
# OPTIONAL CHANGES
## Specify the theme using any of the css files in css/techfolio-theme
techfolio-theme: default.css
## Specify the formatting for triple backquote code sections.
rouge-theme: github.css
# DON'T CHANGE THE FOLLOWING (unless you know what you're doing)
markdown: kramdown
kramdown:
hard_wrap: false
input: GFM
syntax_highlighter: rouge
strict_front_matter: true
mathjax: true
exclude:
- Gemfile
- Gemfile.lock
- LICENSE
- README.md
include:
- .nojekyll
- _data
plugins:
- jekyll-gist
|
Fix og:url and up the pagination. | # Site settings
title: Benjamin Guillet
email: contact@benjaminguillet.com
author: Benjamin Guillet
description: "Benjamin Guillet, Software Engineer. Between France and USA!."
baseurl: ""
url: "/"
# Google analytics
google_analytics: UA-28793596-2
# Optional features
animated: false
show_related_posts: false
show_post_footers: false
# Social icons
show_social_icons: true
github_username: benjamin-guillet
twitter_username: ben_guillet
google_plus_id:
linkedin_username: benjaminguillet/en
bitcoin_url:
paypal_url:
flattr_button:
# Build settings
markdown: kramdown
permalink: pretty
paginate: 6
sass:
compressed: true
| # Site settings
title: Benjamin Guillet
email: contact@benjaminguillet.com
author: Benjamin Guillet
description: "Benjamin Guillet, Software Engineer. Between France and USA!."
baseurl: ""
url: "http://www.benjaminguillet.com"
# Google analytics
google_analytics: UA-28793596-2
# Optional features
animated: false
show_related_posts: false
show_post_footers: false
# Social icons
show_social_icons: true
github_username: benjamin-guillet
twitter_username: ben_guillet
google_plus_id:
linkedin_username: benjaminguillet/en
bitcoin_url:
paypal_url:
flattr_button:
# Build settings
markdown: kramdown
permalink: pretty
paginate: 5
sass:
compressed: true
|
Add space after equals sign | ---
platform: linux
image: docker:///cloudfoundry/cli-ci
params:
CF_API:
CF_USERNAME:
CF_PASSWORD:
CF_ORGANIZATION:
CF_SPACE:
inputs:
- name: cli-ci
- name: edge-linux-binary-64
run:
path: bash
args:
- -c
- |
set -ex
tar -zxf edge-linux-binary-64/*.tgz
LATEST_VERSION=$(cat cli-ci/ci/VERSION)
./cf login -a $CF_API -u "$CF_USERNAME" -p "$CF_PASSWORD" -o "$CF_ORGANIZATION" -s "$CF_SPACE"
CURRENT_VERSIONS=$(./cf env claw | grep AVAILABLE_VERSIONS | awk '{print $2}')
if [[ $CURRENT_VERSIONS ==*${LATEST_VERSION}* ]]; then
exit
fi
./cf set-env claw AVAILABLE_VERSIONS "${CURRENT_VERSIONS},${LATEST_VERSION}"
./cf restage claw
| ---
platform: linux
image: docker:///cloudfoundry/cli-ci
params:
CF_API:
CF_USERNAME:
CF_PASSWORD:
CF_ORGANIZATION:
CF_SPACE:
inputs:
- name: cli-ci
- name: edge-linux-binary-64
run:
path: bash
args:
- -c
- |
set -ex
tar -zxf edge-linux-binary-64/*.tgz
LATEST_VERSION=$(cat cli-ci/ci/VERSION)
./cf login -a $CF_API -u "$CF_USERNAME" -p "$CF_PASSWORD" -o "$CF_ORGANIZATION" -s "$CF_SPACE"
CURRENT_VERSIONS=$(./cf env claw | grep AVAILABLE_VERSIONS | awk '{print $2}')
if [[ $CURRENT_VERSIONS == *${LATEST_VERSION}* ]]; then
exit
fi
./cf set-env claw AVAILABLE_VERSIONS "${CURRENT_VERSIONS},${LATEST_VERSION}"
./cf restage claw
|
Add hiera java version back | ---
# See https://github.com/boxen/puppet-ruby for docs
ruby::global::version: "2.1.0"
git::version: "2.4.0"
| ---
# See https://github.com/boxen/puppet-ruby for docs
ruby::global::version: "2.1.0"
# See https://github.com/boxen/puppet-java for docs
java::update_version: 79
git::version: "2.4.0"
|
Use plain characters as exec arguments | application:
name: helloworld
image: giantswarm/helloworld
type: docker
ports:
- 8000
args:
- sh
- "-c"
- "echo \"Hello world\" \u003e index.html \u0026\u0026 exec python3 -m http.server"
instancegroup-size: 1
instructions:
- sleep: 1
- start:
max: 1
interval: 100
- sleep: 200
- stop: stop-all
| application:
name: helloworld
image: giantswarm/helloworld
type: docker
ports:
- 8000
args:
- sh
- "-c"
- "echo \"Hello world\" > index.html && exec python3 -m http.server"
instancegroup-size: 1
instructions:
- sleep: 1
- start:
max: 1
interval: 100
- sleep: 200
- stop: stop-all
|
Add ci test with node 19.x | # GitHub actions
# https://docs.github.com/en/free-pro-team@latest/actions
name: ci-test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node_version: [14.x, 15.x, 16.x, 17.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: setup Node.js v${{ matrix.node_version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
- name: run npm scripts
run: |
npm i -g standard
npm install
npm run lint
npm run build --if-present
npm run test
- name: sync to coveralls
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
| # GitHub actions
# https://docs.github.com/en/free-pro-team@latest/actions
name: ci-test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
node_version: [14.x, 15.x, 16.x, 17.x, 18.x, 19.x]
steps:
- uses: actions/checkout@v2
- name: setup Node.js v${{ matrix.node_version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
- name: run npm scripts
run: |
npm install
npm run lint
npm run build --if-present
npm run test
- name: sync to coveralls
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: cache node modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
|
Comment additionnal addons in playbook | ---
- hosts: downloader
sudo: no
roles:
- { role: download, tags: download }
- hosts: k8s-cluster
roles:
- { role: etcd, tags: etcd }
- { role: docker, tags: docker }
- { role: overlay_network, tags: ['calico', 'flannel', 'network'] }
- { role: dnsmasq, tags: dnsmasq }
- hosts: kube-master
roles:
- { role: kubernetes/master, tags: master }
- { role: k8s-kube-ui, tags: kube-ui }
# Addons to be installed
# - { role: k8s-skydns, tags: skydns }
- hosts: kube-node
roles:
- { role: kubernetes/node, tags: node }
| ---
- hosts: downloader
sudo: no
roles:
- { role: download, tags: download }
- hosts: k8s-cluster
roles:
- { role: etcd, tags: etcd }
- { role: docker, tags: docker }
- { role: overlay_network, tags: ['calico', 'flannel', 'network'] }
- { role: dnsmasq, tags: dnsmasq }
- hosts: kube-master
roles:
- { role: kubernetes/master, tags: master }
# Addons to be installed
# - { role: k8s-kube-ui, tags: kube-ui }
# - { role: k8s-skydns, tags: skydns }
- hosts: kube-node
roles:
- { role: kubernetes/node, tags: node }
|
Replace "KAFUKO FLORENCE's" text on Beads Page | title: Kafuko Florence
thumbnail: '/assets/images/beads/Kafuko_Florence_photo.jpg'
description: Hi, my name is Kafuko Florence. I am 48 years old. I am currently living in Nakakulwe and speak the languages of Lusoga and Ludama. Ever since I have been working for WOCAP I have been able to pay my children's school fees and also been able to pay rent land to dig on.
| title: Kafuko Florence
thumbnail: '/assets/images/beads/Kafuko_Florence_photo.jpg'
description: Hi, my name is Kafuko Florence. I am 48 years old. I am currently living in Nakakulwe and speak the languages of Lusoga and Ludama. Ever since I have been working for WOCAP I have been able to pay my children's school fees and pay rent for land to farm.
|
Correct kubeVersion to work with GKE versions | apiVersion: v2
name: pachyderm
description: A Helm chart for Kubernetes
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be
# packaged into versioned archives to be deployed.
#
# Library charts provide useful utilities or functions for the chart
# developer. They're included as a dependency of application charts to
# inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore
# cannot be deployed.
type: application
# This is the chart version. This version number should be incremented
# each time you make changes to the chart and its templates, including
# the app version. Versions are expected to follow Semantic
# Versioning (https://semver.org/)
version: 0.2.0
# This is the version number of the application being deployed. This
# version number should be incremented each time you make changes to
# the application. Versions are not expected to follow Semantic
# Versioning. They should reflect the version the application is
# using.
appVersion: 1.12.4
kubeVersion: ">= 1.16"
icon: https://www.pachyderm.com/favicons/favicon-32x32.png | apiVersion: v2
name: pachyderm
description: A Helm chart for Kubernetes
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be
# packaged into versioned archives to be deployed.
#
# Library charts provide useful utilities or functions for the chart
# developer. They're included as a dependency of application charts to
# inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore
# cannot be deployed.
type: application
# This is the chart version. This version number should be incremented
# each time you make changes to the chart and its templates, including
# the app version. Versions are expected to follow Semantic
# Versioning (https://semver.org/)
version: 0.2.0
# This is the version number of the application being deployed. This
# version number should be incremented each time you make changes to
# the application. Versions are not expected to follow Semantic
# Versioning. They should reflect the version the application is
# using.
appVersion: 1.12.4
kubeVersion: ">= 1.16.0-0"
icon: https://www.pachyderm.com/favicons/favicon-32x32.png
|
Update from Hackage at 2016-07-31T08:45:32+0000 | homepage: http://haskell.org/haskellwiki/LLVM
changelog-type: ''
hash: 2765f1b53295074ead7770cd5d1b3236d307a7ca75874340c28461beeb8fceff
test-bench-deps: {}
maintainer: Henning Thielemann <llvm@henning-thielemann.de>
synopsis: FFI bindings to the LLVM compiler toolkit.
changelog: ''
basic-deps:
base: ! '>=3 && <5'
all-versions:
- '3.0.0'
- '3.0.0.1'
author: Henning Thielemann, Bryan O'Sullivan, Lennart Augustsson
latest: '3.0.0.1'
description-type: haddock
description: ! 'FFI bindings to the LLVM compiler toolkit.
Installation is based on @pkg-config@
since this is best supported by Cabal.
This requires an @llvm.pc@ file
which unfortunately is not generated by the LLVM source package.
You may be lucky that your distribution package includes that file.
If not, you can generate it yourself
using the @llvm-pkg-config@ package.
We try to stay up to date with LLVM releases.
The current version of this package is compatible with LLVM 3.0.
Please understand that the package may or may not work
against older LLVM releases.
We don''t have the time or resources to test across multiple releases.'
license-name: BSD3
| homepage: http://haskell.org/haskellwiki/LLVM
changelog-type: ''
hash: de9006c8dc4229bdca3a5290446d29281773995d88afeec43408d4594a76eb0f
test-bench-deps: {}
maintainer: Henning Thielemann <llvm@henning-thielemann.de>
synopsis: FFI bindings to the LLVM compiler toolkit.
changelog: ''
basic-deps:
base: ! '>=3 && <5'
all-versions:
- '3.0.0'
- '3.0.0.1'
- '3.0.0.2'
author: Henning Thielemann, Bryan O'Sullivan, Lennart Augustsson
latest: '3.0.0.2'
description-type: haddock
description: ! 'FFI bindings to the LLVM compiler toolkit.
Installation is based on @pkg-config@
since this is best supported by Cabal.
This requires an @llvm.pc@ file
which unfortunately is not generated by the LLVM source package.
You may be lucky that your distribution package includes that file.
If not, you can generate it yourself
using the @llvm-pkg-config@ package.
We try to stay up to date with LLVM releases.
The current version of this package is compatible with LLVM 3.0.
Please understand that the package may or may not work
against older LLVM releases.
We don''t have the time or resources to test across multiple releases.'
license-name: BSD3
|
Add NOTICE to license files. | {% set name = "apache-airflow-providers-influxdb" %}
{% set version = "1.1.3" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/apache-airflow-providers-influxdb-{{ version }}.tar.gz
sha256: de9db24d26c6cd7645abd317806c0ed916dd90656d27d8fc29a0c0a248114ffc
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
host:
- python >=3.7
- pip
- setuptools
run:
- python >=3.7
- influxdb-client >=1.19.0
- pandas >=0.17.1
test:
imports:
- airflow.providers.influxdb
- airflow.providers.influxdb.example_dags
commands:
- pip check
requires:
- pip
about:
home: https://airflow.apache.org/
summary: Provider for Apache Airflow. Implements apache-airflow-providers-influxdb package
license: Apache-2.0
license_file: LICENSE
license_family: Apache
doc_url: https://airflow.apache.org/docs/{{ name }}/stable/index.html
dev_url: https://github.com/apache/airflow/
extra:
recipe-maintainers:
- xylar
| {% set name = "apache-airflow-providers-influxdb" %}
{% set version = "1.1.3" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/apache-airflow-providers-influxdb-{{ version }}.tar.gz
sha256: de9db24d26c6cd7645abd317806c0ed916dd90656d27d8fc29a0c0a248114ffc
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
host:
- python >=3.7
- pip
- setuptools
run:
- python >=3.7
- influxdb-client >=1.19.0
- pandas >=0.17.1
test:
imports:
- airflow.providers.influxdb
- airflow.providers.influxdb.example_dags
commands:
- pip check
requires:
- pip
about:
home: https://airflow.apache.org/
summary: Provider for Apache Airflow. Implements apache-airflow-providers-influxdb package
license: Apache-2.0
license_file:
- LICENSE
- NOTICE
license_family: Apache
doc_url: https://airflow.apache.org/docs/{{ name }}/stable/index.html
dev_url: https://github.com/apache/airflow/
extra:
recipe-maintainers:
- xylar
|
Update from Hackage at 2022-02-19T20:35:52Z | homepage: https://hackage.haskell.org/package/algorithmic-composition-overtones
changelog-type: markdown
hash: c307c9b4a3d9377e238dc9f7203abf082cba0170daa0fda701093335c559a1f6
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Some variants of the overtones functions to generate a timbre.
changelog: |
# Revision history for algorithmic-composition-overtones
## 0.1.0.0 -- 2021-03-07
* First version. Released on an unsuspecting world.
basic-deps:
algorithmic-composition-basic: '>=0.2.2 && <1'
base: '>=4.8 && <4.15'
all-versions:
- 0.1.0.0
author: OleksandrZhabenko
latest: 0.1.0.0
description-type: haddock
description: Can be used with the Composition.Sound.Functional.Basics.overSoXSynthGG
function or some other way.
license-name: MIT
| homepage: https://hackage.haskell.org/package/algorithmic-composition-overtones
changelog-type: markdown
hash: 379387965035f24559097c86e7dd5d39470f33c2f88b7e8ddf4b1466fb47f6de
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: Some variants of the overtones functions to generate a timbre.
changelog: |
# Revision history for algorithmic-composition-overtones
## 0.1.0.0 -- 2021-03-07
* First version. Released on an unsuspecting world.
## 0.1.1.0 -- 2022-02-19
* First version revised A. Updated the dependencies. No code revision is done.
basic-deps:
algorithmic-composition-basic: '>=0.5 && <1'
base: '>=4.8 && <5'
all-versions:
- 0.1.0.0
- 0.1.1.0
author: OleksandrZhabenko
latest: 0.1.1.0
description-type: haddock
description: Can be used with the Composition.Sound.Functional.Basics.overSoXSynthGG
function or some other way.
license-name: MIT
|
Switch back the docs version | name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: '1.22'
nav:
- modules/ROOT/nav.adoc
| name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: 'master'
nav:
- modules/ROOT/nav.adoc
|
Change image tag in docker run | #Run jekyll2cms in a Docker container to convert the new blogpost into XML
name: convert-blogpost-to-xml
on:
push:
branches:
- master
jobs:
pull-and-run-jekyll2cms-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Pull Docker image
run: docker pull jekyll2cms/jekyll2cms:latest
- name: Run Docker image
run: docker run --env JEKYLL_START_NOTIFICATION=yes --env REPOSITORY_REMOTE_URL=https://github.com/s-gbz/devblog --env REPOSITORY_LOCAL_USER_NAME=${{ secrets.REPOSITORY_LOCAL_USER_NAME }} --env REPOSITORY_LOCAL_USER_MAIL=${{ secrets.REPOSITORY_LOCAL_USER_MAIL }} --env REPOSITORY_LOCAL_USER_PASSWORD=${{ secrets.REPOSITORY_LOCAL_USER_PASSWORD }} jekyll2cms/jekyll2cms:latest
| #Run jekyll2cms in a Docker container to convert the new blogpost into XML
name: convert-blogpost-to-xml
on:
push:
branches:
- master
jobs:
pull-and-run-jekyll2cms-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Pull Docker image
run: docker pull jekyll2cms/jekyll2cms:latest
- name: Run Docker image
run: docker run --env JEKYLL_START_NOTIFICATION=yes --env REPOSITORY_REMOTE_URL=https://github.com/s-gbz/devblog --env REPOSITORY_LOCAL_USER_NAME=${{ secrets.REPOSITORY_LOCAL_USER_NAME }} --env REPOSITORY_LOCAL_USER_MAIL=${{ secrets.REPOSITORY_LOCAL_USER_MAIL }} --env REPOSITORY_LOCAL_USER_PASSWORD=${{ secrets.REPOSITORY_LOCAL_USER_PASSWORD }} jekyll2cms:latest
|
Update GH actions to always run | name: API Continuous Integration
on:
push:
branches:
- master
jobs:
build:
name: Sanitize & Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- run: yarn lint
- run: yarn test
| name: API Continuous Integration
on: [push, pull_request]
jobs:
build:
name: Sanitize & Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- run: yarn lint
- run: yarn test
|
Add error support to remove python packages | - name: Purge python packages via apt
package:
name={{ item }} state=absent
with_items: "{{ purge_packages }}"
become: True
- name: Remove python packages via pip
pip:
name: "{{ item }}"
state: absent
executable: pip3
with_items: "{{ purge_pip_packages }}"
become: True
- name: Install python packages via apt
package:
name={{ item }} state=present
with_items: "{{ packages }}"
ignore_errors: True
become: True
- name: Install python packages via pip
pip:
name={{ item }} state=latest executable=pip3
with_items: "{{ pip_packages }}"
become: True
ignore_errors: True
- name: Ensure ptpython folder exists
file:
dest={{ ansible_env.HOME }}/.ptpython/
state=directory
become: False
- name: Ptipython config file
file:
dest={{ ansible_env.HOME }}/.ptpython/config.py
state=absent
become: False
| - name: Purge python packages via apt
package:
name={{ item }} state=absent
with_items: "{{ purge_packages }}"
ignore_errors: True
become: True
- name: Remove python packages via pip
pip:
name: "{{ item }}"
state: absent
executable: pip3
with_items: "{{ purge_pip_packages }}"
ignore_errors: True
become: True
- name: Install python packages via apt
package:
name={{ item }} state=present
with_items: "{{ packages }}"
ignore_errors: True
become: True
- name: Install python packages via pip
pip:
name={{ item }} state=latest executable=pip3
with_items: "{{ pip_packages }}"
become: True
ignore_errors: True
- name: Ensure ptpython folder exists
file:
dest={{ ansible_env.HOME }}/.ptpython/
state=directory
become: False
- name: Ptipython config file
file:
dest={{ ansible_env.HOME }}/.ptpython/config.py
state=absent
become: False
|
Update from Hackage at 2018-08-31T09:36:48Z | 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 <leptonyu@gmail.com>
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.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
| homepage: https://github.com/leptonyu/salak#readme
changelog-type: ''
hash: 65ae44990d5ad1fcd2e3be09b1709146eba8052c0f3497c054bef28230df272c
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 <leptonyu@gmail.com>
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.4'
author: Daniel YU
latest: '0.1.4'
description-type: markdown
description: ! '# salak
[](https://hackage.haskell.org/package/salak)
Configuration Loader for Production in Haskell.'
license-name: BSD3
|
Update laminas/laminas-ci-matrix-action action to v1.21.0 | # See https://github.com/laminas/laminas-continuous-integration-action
# Generates a job matrix based on current dependencies and supported version
# ranges, then runs all those jobs
name: "Continuous Integration"
on:
pull_request:
push:
jobs:
matrix:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@1.20.0
qa:
name: QA Checks
needs: [ matrix ]
runs-on: ${{ matrix.operatingSystem }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@1.30.0
env:
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }}
"INFECTION_DASHBOARD_API_KEY": ${{ secrets.INFECTION_DASHBOARD_API_KEY }}
"STRYKER_DASHBOARD_API_KEY": ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
with:
job: ${{ matrix.job }}
| # See https://github.com/laminas/laminas-continuous-integration-action
# Generates a job matrix based on current dependencies and supported version
# ranges, then runs all those jobs
name: "Continuous Integration"
on:
pull_request:
push:
jobs:
matrix:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@1.21.0
qa:
name: QA Checks
needs: [ matrix ]
runs-on: ${{ matrix.operatingSystem }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@1.30.0
env:
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }}
"INFECTION_DASHBOARD_API_KEY": ${{ secrets.INFECTION_DASHBOARD_API_KEY }}
"STRYKER_DASHBOARD_API_KEY": ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
with:
job: ${{ matrix.job }}
|
Update from Hackage at 2018-01-28T03:38:16Z | homepage: ''
changelog-type: ''
hash: 16ef23eccb3b453351c68d79a4165b5d0bd352bbf60ba4ea33ba410e0b3409e4
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: ATS scripts for Cabal builds
changelog: ''
basic-deps:
http-client: -any
Cabal: ! '>=2.0'
base: ! '>=4.8 && <5'
tar: -any
http-client-tls: -any
zlib: -any
parallel-io: -any
directory: -any
all-versions:
- '0.1.0.0'
author: Vanessa McHale
latest: '0.1.0.0'
description-type: markdown
description: ! '# ats-setup
## Installation
## Configuration
'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 987d20f059c6f0cd62dfe314923b75e0b1a7417358c5785ff84d8d7fdc781c0e
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: ATS scripts for Cabal builds
changelog: ''
basic-deps:
http-client: -any
Cabal: ! '>=2.0'
base: ! '>=4.8 && <5'
tar: -any
http-client-tls: -any
zlib: -any
parallel-io: -any
directory: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Vanessa McHale
latest: '0.1.0.1'
description-type: markdown
description: ! '# ats-setup
## Installation
## Configuration
'
license-name: BSD3
|
Update node-versions used for the build-workflow |
name: jovo-framework workflow
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [10.x, 12.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run prettier
- run: npm run eslint
- run: npm run build
- run: npm run test
|
name: jovo-framework workflow
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [12.x, 14.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run prettier
- run: npm run eslint
- run: npm run build
- run: npm run test
|
Test with Node 6 & latest | language: node_js
matrix:
include:
- node_js: '0.10'
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
env: COVERALLS=1
after_success:
- '[[ "$COVERALLS" ]] && gulp coveralls'
| language: node_js
matrix:
include:
- node_js: '0.10'
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
env: COVERALLS=1
after_success:
- '[[ "$COVERALLS" ]] && gulp coveralls'
|
Add store_artifacts step to store test reports. | # Java Gradle CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- m2-dependencies-{{ checksum "build.gradle" }}
# fallback to using the latest cache if no exact match is found
- m2-dependencies-
- run: gradle dependencies
- save_cache:
paths:
- ~/.m2
key: m2-dependencies-{{ checksum "build.gradle" }}
# run tests!
- run: gradle clean test
- run: gradle :camflake:sendCoverageToCodacy
- store_test_results:
path: camflake/build/test-results/test
| # Java Gradle CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-java/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- m2-dependencies-{{ checksum "build.gradle" }}
# fallback to using the latest cache if no exact match is found
- m2-dependencies-
- run: gradle dependencies
- save_cache:
paths:
- ~/.m2
key: m2-dependencies-{{ checksum "build.gradle" }}
# run tests!
- run: gradle clean test
- run: gradle :camflake:sendCoverageToCodacy
- store_test_results:
path: camflake/build/test-results/test
- store_artifacts:
path: camflake/build/reports/tests/test
- store_artifacts:
path: camflake/build/reports/jacoco/test/html
|
Rework CI build with more parts from robot-api | version: 2
jobs:
build:
docker:
# While we're actually running on stretch (with Python 3.5.3), this is the
# closest matching docker image available in CircleCI. The stretch images
# all have Python 3.6, which has some syntactic changes.
- image: python:3.5.4
steps:
- checkout
- run: python3 -m venv venv
- run: venv/bin/pip install git+https://github.com/sourcebots/sb-vision
- run: venv/bin/pip install -e .
- run: venv/bin/python3 -m unittest
- run: venv/bin/pip install -r script/linting/requirements.txt
- run:
command: script/linting/lint
environment:
FLAKE8: venv/bin/flake8
| version: 2
jobs:
build:
docker:
# While we're actually running on stretch (with Python 3.5.3), this is the
# closest matching docker image available in CircleCI. The stretch images
# all have Python 3.6, which has some syntactic changes.
- image: python:3.5.4
steps:
- checkout
- run: python3 -m venv venv
- run:
name: install sb-vision
command: |
apt-get update -y
apt-get install -y libcv-dev libopencv-photo-dev libopencv-contrib-dev libusb-1.0.0-dev
venv/bin/pip install git+https://github.com/sourcebots/sb-vision
- run:
name: install ourselves
command: venv/bin/pip install -e .
- run: venv/bin/python3 -m unittest
- run: venv/bin/pip install -r script/linting/requirements.txt
- run:
command: script/linting/lint
environment:
FLAKE8: venv/bin/flake8
|
Add joid defaults to clean openstack | fuel:
images: ['TestVM']
networks: ['net04', 'net04_ext']
routers: ['router04']
security_groups: ['default']
tenants: ['admin', 'services']
users: ['heat', 'heat-cfn', 'cinder', 'nova', 'swift', 'glance', 'neutron', 'admin', 'fuel_stats_user']
apex:
images: []
networks: ['internal', 'external']
routers: []
security_groups: ['default']
tenants: ['admin', 'services']
users: ['heat', 'heat-cfn', 'cinder', 'nova', 'swift', 'glance', 'neutron', 'admin']
compass:
images: []
networks: ['ext-net']
routers: []
security_groups: ['default']
tenants: ['admin', 'service', 'demo']
users: ['heat', 'cinder', 'nova', 'glance', 'neutron', 'admin', 'ceilometer', 'demo', 'keystone']
joid:
images: []
networks: []
routers: []
security_groups: []
tenants: []
users: ['admin', 'glance', 'nova', 'quantum', 'heat-cfn_heat', 'ceilometer', 'cinder_cinderv2']
common:
networks: ['functest-net']
routers: ['functest-router']
| fuel:
images: ['TestVM']
networks: ['net04', 'net04_ext']
routers: ['router04']
security_groups: ['default']
tenants: ['admin', 'services']
users: ['heat', 'heat-cfn', 'cinder', 'nova', 'swift', 'glance', 'neutron', 'admin', 'fuel_stats_user']
apex:
images: []
networks: ['internal', 'external']
routers: []
security_groups: ['default']
tenants: ['admin', 'services']
users: ['heat', 'heat-cfn', 'cinder', 'nova', 'swift', 'glance', 'neutron', 'admin']
compass:
images: []
networks: ['ext-net']
routers: []
security_groups: ['default']
tenants: ['admin', 'service', 'demo']
users: ['heat', 'cinder', 'nova', 'glance', 'neutron', 'admin', 'ceilometer', 'demo', 'keystone']
joid:
images: []
networks: []
routers: []
security_groups: ['default']
tenants: ['admin', 'service']
users: ['admin', 'glance', 'nova', 'quantum', 'heat-cfn_heat', 'ceilometer', 'cinder_cinderv2', 'swift']
common:
networks: ['functest-net']
routers: ['functest-router']
|
Update from Hackage at 2017-01-16T08:15:32Z | homepage: https://github.com/data61/papa-base-implement
changelog-type: text
hash: f047c8faa8e51e274ca74b4d2fc1e5e56a4e36052f38dab9dbc150572b449db0
test-bench-deps:
base: <5 && >=3
filepath: ! '>=1.3'
doctest: ! '>=0.9.7'
QuickCheck: ! '>=2.0'
template-haskell: ! '>=2.8'
directory: ! '>=1.1'
maintainer: Tony Morris
synopsis: Useful base functions reimplemented
changelog: ! '0.2.0
* Initial release.
'
basic-deps:
base: ! '>=4.8 && <5'
all-versions:
- '0.2.0'
author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
latest: '0.2.0'
description-type: haddock
description: Useful base functions reimplemented
license-name: BSD3
| homepage: https://github.com/data61/papa-base-implement
changelog-type: text
hash: e0bce83e04d2258364585033821dea273ea72e873cd362107444bdec505d66e5
test-bench-deps:
base: <5 && >=3
filepath: ! '>=1.3'
doctest: ! '>=0.9.7'
QuickCheck: ! '>=2.0'
template-haskell: ! '>=2.8'
directory: ! '>=1.1'
maintainer: Tony Morris
synopsis: Useful base functions reimplemented
changelog: ! '0.2.0
* Initial release.
'
basic-deps:
base: ! '>=4.9 && <5'
all-versions:
- '0.2.0'
author: Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
latest: '0.2.0'
description-type: haddock
description: Useful base functions reimplemented
license-name: BSD3
|
Install developer tools for CI | name: Run tests
on: [pull_request]
jobs:
unit_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup Python cache
uses: actions/cache@v2
with:
path: venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}
- name: Install dependencies
run: make requirements-dev
- name: Run Python tests
run: make test
terraform_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install tfenv
run: |
git clone https://github.com/tfutils/tfenv.git ~/.tfenv
echo "$HOME/.tfenv/bin" >> $GITHUB_PATH
- name: Install Terraform
run: tfenv install
- name: Setup Terraform cache
uses: actions/cache@v2
with:
path: "**/.terraform"
key: terraform-${{ runner.os }}-${{ hashFiles('**/.terraform-version') }}
- name: Validate terraform
run: |
make terraformatest
make test-terraform
| name: Run tests
on: [pull_request]
jobs:
unit_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup Python cache
uses: actions/cache@v2
with:
path: venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}
- name: Install developer tools
run: make bootstrap
- name: Install dependencies
run: make requirements-dev
- name: Run Python tests
run: make test
terraform_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install tfenv
run: |
git clone https://github.com/tfutils/tfenv.git ~/.tfenv
echo "$HOME/.tfenv/bin" >> $GITHUB_PATH
- name: Install Terraform
run: tfenv install
- name: Setup Terraform cache
uses: actions/cache@v2
with:
path: "**/.terraform"
key: terraform-${{ runner.os }}-${{ hashFiles('**/.terraform-version') }}
- name: Validate terraform
run: |
make terraformatest
make test-terraform
|
Use gid as arg name | ---
# vars file for add-user
add_user_homedir_arg: '{% if add_user_homedir is defined %}--home {{add_user_homedir}}{% endif %}'
add_user_uid_arg: '{% if add_user_uid is defined %}--uid {{add_user_uid}}{% endif %}'
add_user_gid_arg: '{% if add_user_gid is defined %}-g {{add_user_gid}}{% endif %}'
add_user_gecos_arg: '{% if add_user_gecos is defined %}--gecos "{{add_user_gecos}}"{% endif %}'
add_user_command: adduser {{add_user_homedir_arg}} {{add_user_uid_arg}} {{add_user_gid_arg}} {{add_user_disabled_password_arg | default('')}} {{add_user_gecos_arg}} {{add_user_username | default('foo')}}
| ---
# vars file for add-user
add_user_homedir_arg: '{% if add_user_homedir is defined %}--home {{add_user_homedir}}{% endif %}'
add_user_uid_arg: '{% if add_user_uid is defined %}--uid {{add_user_uid}}{% endif %}'
add_user_gid_arg: '{% if add_user_gid is defined %}--gid {{add_user_gid}}{% endif %}'
add_user_gecos_arg: '{% if add_user_gecos is defined %}--gecos "{{add_user_gecos}}"{% endif %}'
add_user_command: adduser {{add_user_homedir_arg}} {{add_user_uid_arg}} {{add_user_gid_arg}} {{add_user_disabled_password_arg | default('')}} {{add_user_gecos_arg}} {{add_user_username | default('foo')}}
|
Remove Python 2 target, change max line length to 80 | doc-warnings: true
test-warnings: true
strictness: veryhigh
max-line-length: 120
autodetect: true
python-targets:
- 2
- 3
pep8:
full: true
| doc-warnings: true
test-warnings: true
strictness: veryhigh
max-line-length: 80
autodetect: true
python-targets:
- 3
pep8:
full: true
|
Remove conditional_binding_cascade rule from SwiftLint config | excluded: # paths to ignore during linting. overridden by `included`.
- Carthage
- Pods
disabled_rules: # rule identifiers to exclude from running
- force_cast
- conditional_binding_cascade
| excluded: # paths to ignore during linting. overridden by `included`.
- Carthage
- Pods
disabled_rules: # rule identifiers to exclude from running
- force_cast
|
Make Java builds sequential, to prevent client tests from failing when using the API at the same time. | # This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17' ]
steps:
- uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew
| # This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17' ]
max-parallel: 1
steps:
- uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.