Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
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: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.1
- name: Build
run: |
cmake -G "Visual Studio 16 2019" -D BUILD_TESTS=ON ./
MSBuild.exe etl.sln
- name: Run tests
run: |
ls *.exe
./etl_tests.exe
| 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: |
cmake -G "Visual Studio 16 2019" -D BUILD_TESTS=ON ./
MSBuild.exe etl.sln
- name: Run tests
run: |
ls *.exe
etl_tests.exe
|
Update lein docker image, back to Java 8 | version: 2
jobs:
build:
docker:
- image: clojure:lein-2.9.1
steps:
- add_ssh_keys:
fingerprints:
- "a6:08:d9:a8:b8:92:c3:d2:19:f4:0b:af:a6:8b:2b:7c"
- checkout
- restore_cache:
key: << checksum "project.clj" >>
- run: lein test-all
- save_cache:
paths:
- $HOME/.m2
- $HOME/.lein
key: << checksum "project.clj" >>
| version: 2
jobs:
build:
docker:
- image: clojure:openjdk-8-lein-2.9.1
steps:
- add_ssh_keys:
fingerprints:
- "a6:08:d9:a8:b8:92:c3:d2:19:f4:0b:af:a6:8b:2b:7c"
- checkout
- restore_cache:
key: << checksum "project.clj" >>
- run: lein test-all
- save_cache:
paths:
- $HOME/.m2
- $HOME/.lein
key: << checksum "project.clj" >>
|
Add jobs for windows and macos for good measure | name: Maven Verify
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
| name: Maven Verify
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
|
Set env vars in GitHub Actions | name: Test
on:
push:
branches:
- main
pull_request:
branches:
- "*"
# Enable triggering CI runs manually.
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
ruby:
- '2.7'
- '3.1'
env:
- ACTION_MAILER_VERSION=5
- ACTION_MAILER_VERSION=6
- ACTION_MAILER_VERSION=7
experimental:
- false
include:
- ruby: head
env: ACTION_MAILER_VERSION=head
experimental: true
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake
| name: Test
on:
push:
branches:
- main
pull_request:
branches:
- "*"
# Enable triggering CI runs manually.
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
ruby:
- '2.7'
- '3.1'
env:
- ACTION_MAILER_VERSION=5
- ACTION_MAILER_VERSION=6
- ACTION_MAILER_VERSION=7
experimental:
- false
exclude:
- ruby: '3.1'
env: ACTION_MAILER_VERSION=5
include:
- ruby: head
env: ACTION_MAILER_VERSION=head
experimental: true
steps:
- uses: actions/checkout@v3
- name: Set env vars
run: echo "${{ matrix.env }}" >> $GITHUB_ENV
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake
|
Update De-Bloater to v0.10 (10) | Categories:
- System
License: GPL-3.0-or-later
AuthorName: sunilpaulmathew
AuthorEmail: sunil.kde@gmail.com
AuthorWebSite: https://smartpack.github.io/
SourceCode: https://github.com/sunilpaulmathew/De-Bloater
IssueTracker: https://github.com/sunilpaulmathew/De-Bloater/issues
Changelog: https://github.com/sunilpaulmathew/De-Bloater/releases
Donate: https://www.paypal.me/menacherry/
AutoName: De-Bloater
RepoType: git
Repo: https://github.com/sunilpaulmathew/De-Bloater
Builds:
- versionName: v0.8
versionCode: 8
commit: v0.8
subdir: app
gradle:
- yes
- versionName: v0.9
versionCode: 9
commit: v0.9
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: v0.9
CurrentVersionCode: 9
| Categories:
- System
License: GPL-3.0-or-later
AuthorName: sunilpaulmathew
AuthorEmail: sunil.kde@gmail.com
AuthorWebSite: https://smartpack.github.io/
SourceCode: https://github.com/sunilpaulmathew/De-Bloater
IssueTracker: https://github.com/sunilpaulmathew/De-Bloater/issues
Changelog: https://github.com/sunilpaulmathew/De-Bloater/releases
Donate: https://www.paypal.me/menacherry/
AutoName: De-Bloater
RepoType: git
Repo: https://github.com/sunilpaulmathew/De-Bloater
Builds:
- versionName: v0.8
versionCode: 8
commit: v0.8
subdir: app
gradle:
- yes
- versionName: v0.9
versionCode: 9
commit: v0.9
subdir: app
gradle:
- yes
- versionName: v0.10
versionCode: 10
commit: v0.10
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: v0.10
CurrentVersionCode: 10
|
Update from Hackage at 2018-10-03T05:28:30Z | homepage: https://github.com/arbor/antiope#readme
changelog-type: markdown
hash: 647b12ea003ae8cfc7faf9326ab6c8e14bdedb76446c06700b40df489ee99ca7
test-bench-deps:
amazonka: -any
base: ! '>=4.7 && <5'
text: -any
amazonka-athena: -any
lens: -any
unliftio-core: -any
amazonka-core: -any
antiope-athena: -any
resourcet: -any
maintainer: mayhem@arbor.net
synopsis: ''
changelog: ! '# Changelog for antiope-athena
## Unreleased changes
'
basic-deps:
amazonka: -any
base: ! '>=4.7 && <5'
text: -any
amazonka-athena: -any
lens: -any
unliftio-core: -any
amazonka-core: -any
resourcet: -any
all-versions:
- '1.0.0'
- '5.0.0'
- '5.0.1'
- '6.0.0'
- '6.0.1'
- '6.0.2'
- '6.0.3'
- '6.0.4'
author: Arbor Networks
latest: '6.0.4'
description-type: markdown
description: ! '# antiope-athena
'
license-name: MIT
| homepage: https://github.com/arbor/antiope#readme
changelog-type: markdown
hash: 906fc4669b091ac963235eb94fc2ccbd3fbb98a98562a6bedc999a67809ae6fe
test-bench-deps:
amazonka: -any
base: ! '>=4.7 && <5'
text: -any
amazonka-athena: -any
lens: -any
unliftio-core: -any
amazonka-core: -any
antiope-athena: -any
resourcet: -any
maintainer: mayhem@arbor.net
synopsis: ''
changelog: ! '# Changelog for antiope-athena
## Unreleased changes
'
basic-deps:
amazonka: -any
base: ! '>=4.7 && <5'
text: -any
amazonka-athena: -any
lens: -any
unliftio-core: -any
amazonka-core: -any
resourcet: -any
all-versions:
- '1.0.0'
- '5.0.0'
- '5.0.1'
- '6.0.0'
- '6.0.1'
- '6.0.2'
- '6.0.3'
- '6.0.4'
- '6.0.5'
author: Arbor Networks
latest: '6.0.5'
description-type: markdown
description: ! '# antiope-athena
'
license-name: MIT
|
Change default font to FiraMono | font:
size: 11
# Colors (Blood Moon)
# from: https://github.com/rajasegar/alacritty-themes/blob/v2.0.2/themes/Blood-Moon.yml
colors:
# Default colors
primary:
background: '0x10100E'
foreground: '0xC6C6C4'
# Normal colors
normal:
black: '0x10100E'
red: '0xC40233'
green: '0x009F6B'
yellow: '0xFFD700'
blue: '0x0087BD'
magenta: '0x9A4EAE'
cyan: '0x20B2AA'
white: '0xC6C6C4'
# Bright colors
bright:
black: '0x696969'
red: '0xFF2400'
green: '0x03C03C'
yellow: '0xFDFF00'
blue: '0x007FFF'
magenta: '0xFF1493'
cyan: '0x00CCCC'
white: '0xFFFAFA'
| font:
size: 13
normal:
# from: https://github.com/ryanoasis/nerd-fonts
family: FiraMono
# Colors (Blood Moon)
# from: https://github.com/rajasegar/alacritty-themes/blob/v2.0.2/themes/Blood-Moon.yml
colors:
# Default colors
primary:
background: '0x10100E'
foreground: '0xC6C6C4'
# Normal colors
normal:
black: '0x10100E'
red: '0xC40233'
green: '0x009F6B'
yellow: '0xFFD700'
blue: '0x0087BD'
magenta: '0x9A4EAE'
cyan: '0x20B2AA'
white: '0xC6C6C4'
# Bright colors
bright:
black: '0x696969'
red: '0xFF2400'
green: '0x03C03C'
yellow: '0xFDFF00'
blue: '0x007FFF'
magenta: '0xFF1493'
cyan: '0x00CCCC'
white: '0xFFFAFA'
|
Add missing translation for the Debian package build trigger | trigger:mender-dist-packages:
stage: trigger:packages
needs: []
rules:
- if: $BUILD_MENDER_DIST_PACKAGES == "true"
variables:
# Mender release tagged versions:
MENDER_VERSION: $MENDER_REV
MENDER_CONNECT_VERSION: $MENDER_CONNECT_REV
MENDER_MONITOR_VERSION: $MONITOR_CLIENT_REV
MENDER_CONFIGURE_VERSION: $MENDER_CONFIGURE_MODULE_REV
# Mode: "build and publish" or "build and test"
TEST_MENDER_DIST_PACKAGES: $TEST_MENDER_DIST_PACKAGES
PUBLISH_MENDER_DIST_PACKAGES_AUTOMATIC: $PUBLISH_RELEASE_AUTOMATIC
trigger:
project: Northern.tech/Mender/mender-dist-packages
branch: $MENDER_DIST_PACKAGES_REV
strategy: depend
| trigger:mender-dist-packages:
stage: trigger:packages
needs: []
rules:
- if: $BUILD_MENDER_DIST_PACKAGES == "true"
variables:
# Mender release tagged versions:
MENDER_VERSION: $MENDER_REV
MENDER_CONNECT_VERSION: $MENDER_CONNECT_REV
MENDER_MONITOR_VERSION: $MONITOR_CLIENT_REV
MENDER_CONFIGURE_VERSION: $MENDER_CONFIGURE_MODULE_REV
MENDER_GATEWAY_VERSION: $MENDER_GATEWAY_REV
# Mode: "build and publish" or "build and test"
TEST_MENDER_DIST_PACKAGES: $TEST_MENDER_DIST_PACKAGES
PUBLISH_MENDER_DIST_PACKAGES_AUTOMATIC: $PUBLISH_RELEASE_AUTOMATIC
trigger:
project: Northern.tech/Mender/mender-dist-packages
branch: $MENDER_DIST_PACKAGES_REV
strategy: depend
|
Remove composer template exclude comment | syncs:
d4d-unison-sync:
src: './'
dest: '/var/www/html'
sync_args: '-prefer newer'
sync_user: 'www-data'
sync_userid: '82'
sync_host_port: '10871'
sync_strategy: 'unison'
sync_excludes: ['.gitignore', '.git/', '.idea/']
# sync_excludes: ['vendor/', '.gitignore', '.git/', '.idea/'] # When the project is composer based
| syncs:
d4d-unison-sync:
src: './'
dest: '/var/www/html'
sync_args: '-prefer newer'
sync_user: 'www-data'
sync_userid: '82'
sync_host_port: '10871'
sync_strategy: 'unison'
sync_excludes: ['.gitignore', '.git/', '.idea/']
|
Enable SSH access to Jenkins master for sdimitro | ---
- name: create user group
group:
name: ubuntu
system: no
- name: create user
user:
name: ubuntu
group: ubuntu
shell: /bin/bash
home: /home/ubuntu
system: no
- name: set home directory permissions
file:
path: /home/ubuntu
state: directory
owner: ubuntu
group: ubuntu
mode: 0755
- name: configure authorized_key
authorized_key:
user: ubuntu
key: "{{ item }}"
with_items:
- https://github.com/prakashsurya.keys
- https://github.com/ahrens.keys
- https://github.com/jwk404.keys
- https://github.com/pzakha.keys
| ---
- name: create user group
group:
name: ubuntu
system: no
- name: create user
user:
name: ubuntu
group: ubuntu
shell: /bin/bash
home: /home/ubuntu
system: no
- name: set home directory permissions
file:
path: /home/ubuntu
state: directory
owner: ubuntu
group: ubuntu
mode: 0755
- name: configure authorized_key
authorized_key:
user: ubuntu
key: "{{ item }}"
with_items:
- https://github.com/prakashsurya.keys
- https://github.com/ahrens.keys
- https://github.com/jwk404.keys
- https://github.com/pzakha.keys
- https://github.com/sdimitro.keys
|
Create ip route on nodes before joining cluster to reduce pod restarts | ---
- name: join nodes
command: "/usr/bin/kubeadm join --discovery-token-unsafe-skip-ca-verification --token={{ hostvars[groups['master'][0]].kubeadm_token }} {{ hostvars[groups['master'][0]]['ansible_' + kubernetes_interface].ipv4.address }}:6443"
# this should only be needed on vagrant boxes
- name: setup route
command: "route add 10.96.0.1 gw {{ hostvars[groups['master'][0]]['ansible_' + kubernetes_interface].ipv4.address }}"
| ---
# this should only be needed on vagrant boxes
- name: setup route
command: "route add 10.96.0.1 gw {{ hostvars[groups['master'][0]]['ansible_' + kubernetes_interface].ipv4.address }}"
- name: join nodes
command: "/usr/bin/kubeadm join --discovery-token-unsafe-skip-ca-verification --token={{ hostvars[groups['master'][0]].kubeadm_token }} {{ hostvars[groups['master'][0]]['ansible_' + kubernetes_interface].ipv4.address }}:6443"
|
Test multiple ruby versions (2.3 and 2.4) | image: 'ruby:2.3'
.test_job: &test_job
environment: testing
cache:
paths:
- cache/bundler
before_script:
- bundle install --without development -j $(nproc) --path=cache/bundler
tags:
- ruby
test:rubocop:
<<: *test_job
script: bundle exec rubocop
only:
- dev
test:rspec:
<<: *test_job
script: bundle exec rspec
artifacts:
paths:
- coverage/
pages:
stage: deploy
dependencies:
- test:rspec
script:
- mv coverage/ public/
artifacts:
paths:
- public
expire_in: 30 days
only:
- master
deploy:rubygems:
stage: deploy
dependencies:
- test:rspec
before_script:
- gem install dpl
script:
- dpl --provider=rubygems --api-key=$RUBYGEMS_API_KEY
only:
- tag
| .test_job: &test_job
environment: testing
cache:
paths:
- cache/bundler
before_script:
- bundle install --without development -j $(nproc) --path=cache/bundler
tags:
- ruby
.test_job_2_3: &test_job_2_3
image: 'ruby:2.3'
.test_job_2_4: &test_job_2_4
image: 'ruby:2.4'
test:rubocop_2_3:
<<: *test_job_2_3
script: bundle exec rubocop
only:
- dev
test:rubocop_2_4:
<<: *test_job_2_4
script: bundle exec rubocop
only:
- dev
test:rspec_2_3:
<<: *test_job_2_3
script: bundle exec rspec
artifacts:
paths:
- coverage/
test:rspec_2_4:
<<: *test_job_2_4
script: bundle exec rspec
artifacts:
paths:
- coverage/
pages:
stage: deploy
dependencies:
- test:rspec_2_4
script:
- mv coverage/ public/
artifacts:
paths:
- public
expire_in: 30 days
only:
- master
deploy:rubygems:
stage: deploy
dependencies:
- test:rspec_2_4
before_script:
- gem install dpl
script:
- dpl --provider=rubygems --api-key=$RUBYGEMS_API_KEY
only:
- tag
|
Make possible to execute additional expensive checks on GitLab | image: fedora:latest
before_script:
- dnf install 'dnf-command(copr)' git libtool make libasan -y
- dnf copr enable @spice/nightly -y
- dnf builddep spice -y
makecheck:
script:
- >
CFLAGS='-O2 -pipe -g -fsanitize=address -fno-omit-frame-pointer'
LDFLAGS='-fsanitize=address -lasan'
./autogen.sh
- make
- make -C server check || (cat server/tests/test-suite.log && exit 1)
statistics:
script:
- ./autogen.sh --enable-statistics
- make
- make -C server check || (cat server/tests/test-suite.log && exit 1)
check-valgrind:
script:
- dnf debuginfo-install spice-server -y
- dnf install valgrind -y
- ./autogen.sh --enable-valgrind
- make
- make check-valgrind || (cat server/tests/test-suite-memcheck.log && exit 1)
syntax-check:
script:
- ./autogen.sh
- make syntax-check
| image: fedora:latest
before_script:
- dnf install 'dnf-command(copr)' git libtool make libasan -y
- dnf copr enable @spice/nightly -y
- dnf builddep spice -y
makecheck:
script:
- >
CFLAGS='-O2 -pipe -g -fsanitize=address -fno-omit-frame-pointer'
LDFLAGS='-fsanitize=address -lasan'
./autogen.sh
- make
- make -C server check || (cat server/tests/test-suite.log && exit 1)
statistics:
script:
- ./autogen.sh --enable-statistics
- make
- make -C server check || (cat server/tests/test-suite.log && exit 1)
check-valgrind:
script:
- dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm -y
- dnf debuginfo-install spice-server -y
- >
dnf install valgrind
gstreamer1-libav gstreamer1-plugins-ugly gstreamer1-plugins-good gstreamer1-plugins-bad-free
-y
- ./autogen.sh --enable-valgrind --enable-extra-checks
- make
- make check-valgrind || (cat server/tests/test-suite-memcheck.log && exit 1)
syntax-check:
script:
- ./autogen.sh
- make syntax-check
|
Comment on use of --security-opt flag in Docker Compose file | version: '2'
services:
dtk_dev:
image: dalg24/dtk-stack:latest
volumes:
- ..:/scratch/source/trilinos/12.8.1/DataTransferKit
environment:
- TRILINOS_DIR=/scratch/source/trilinos/12.8.1
container_name: dtk_dev
command: tail -f /dev/null
security_opt:
- seccomp:unconfined
| version: '2'
services:
dtk_dev:
image: dalg24/dtk-stack:latest
volumes:
- ..:/scratch/source/trilinos/12.8.1/DataTransferKit
environment:
- TRILINOS_DIR=/scratch/source/trilinos/12.8.1
container_name: dtk_dev
command: tail -f /dev/null
# Turn off seccomp confinement to work with gdb.
#
# Without passing the `--security-option` flag to docker, running gdb would
# yield this:
# warning: Error disabling address space randomization: Operation not permitted
#
# NOTE: At this time not sure if it wouldn't be possible to alter the
# default seccomp security profile for Docker rather than fully turning it
# off. See https://github.com/docker/docker/blob/master/docs/security/seccomp.md
# for reference.
security_opt:
- seccomp:unconfined
|
Tweak order of elements on menu | layout: sidebar
style: dark
full_name: "Rick Sear"
plugins:
- jekyll-octicons
- jekyll-github-metadata
- jemoji
permalink: /:title/
res_updated: "June 23, 2020"
hire: "Seeking employment starting May 2021"
collections:
about:
output: true
defaults:
-
scope:
path: "" # an empty string here means all files in the project
values:
layout: "post"
projects:
sort_by: pushed
# sort_by options:
# - pushed
# - stars
limit: 3
exclude:
archived: false
forks: false
projects:
# - repo-name
social_media:
facebook: TheRealRickSear
instagram: _searri
linkedin: richard-sear
topics:
- name: CSS
web_url: https://github.com/topics/css
image_url: https://raw.githubusercontent.com/github/explore/6c6508f34230f0ac0d49e847a326429eefbfc030/topics/css/css.png
- name: Web design
- name: Sass
web_url: https://github.com/topics/sass
image_url: https://raw.githubusercontent.com/github/explore/6c6508f34230f0ac0d49e847a326429eefbfc030/topics/sass/sass.png
| layout: sidebar
style: dark
full_name: "Rick Sear"
plugins:
- jekyll-octicons
- jekyll-github-metadata
- jemoji
permalink: /:title/
res_updated: "June 23, 2020"
hire: "Seeking employment starting May 2021"
collections:
about:
output: true
defaults:
-
scope:
path: "" # an empty string here means all files in the project
values:
layout: "post"
projects:
sort_by: pushed
# sort_by options:
# - pushed
# - stars
limit: 6
exclude:
archived: false
forks: false
projects:
# - repo-name
social_media:
linkedin: richard-sear
facebook: TheRealRickSear
instagram: _searri
topics:
- name: CSS
web_url: https://github.com/topics/css
image_url: https://raw.githubusercontent.com/github/explore/6c6508f34230f0ac0d49e847a326429eefbfc030/topics/css/css.png
- name: Web design
- name: Sass
web_url: https://github.com/topics/sass
image_url: https://raw.githubusercontent.com/github/explore/6c6508f34230f0ac0d49e847a326429eefbfc030/topics/sass/sass.png
|
Remove from number from api service env | redis:
image: 'redis:latest'
api:
image: 'craftship/phonebox-api:latest'
links:
- redis
ports:
- '80:8080'
volumes:
- /usr/src/app
environment:
- TWILIO_FROM_NUMBER
workers:
image: 'craftship/phonebox-workers:latest'
links:
- redis
volumes:
- /usr/src/app
environment:
- TWILIO_SID=
- TWILIO_TOKEN=
- TWILIO_FROM_NUMBER=
| redis:
image: 'redis:latest'
api:
image: 'craftship/phonebox-api:latest'
links:
- redis
ports:
- '80:8080'
volumes:
- /usr/src/app
workers:
image: 'craftship/phonebox-workers:latest'
links:
- redis
volumes:
- /usr/src/app
environment:
- TWILIO_SID=
- TWILIO_TOKEN=
- TWILIO_FROM_NUMBER=
|
Install [dev] requirements for testing. | name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Run weekly (* is a special character in YAML, so quote the string)
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install .
- name: Lint
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test
run: python -m unittest discover tests -v
| name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Run weekly (* is a special character in YAML, so quote the string)
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install .
pip install .[dev]
- name: Lint
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test
run: python -m unittest discover tests -v
|
Allow connmon to run out of box, by adding task to start connmond in screen session. | ---
#
# Connmon Install
#
- name: Install pip
easy_install: name=pip
when: connmon
- name: Install connmon
pip: name=connmon
when: connmon
#
# Connmon Setup
#
- name: Configure Connmon Host IP Address
template:
src=connmon.cfg.j2
dest=/etc/connmon.cfg
owner=root
group=root
mode=0644
with_items:
- ip_address: "{{ connmon_host }}"
when: connmon
| ---
#
# Connmon Install
#
- name: Install pip
easy_install: name=pip
when: connmon
- name: Install connmon
pip: name=connmon
when: connmon
#
# Connmon Setup
#
- name: Configure Connmon Host IP Address
template:
src=connmon.cfg.j2
dest=/etc/connmon.cfg
owner=root
group=root
mode=0644
with_items:
- ip_address: "{{ connmon_host }}"
when: connmon
# To remove the screen session: screen -X -S connmond kill
- name: Run connmond in screen session on director
command: screen -d -S connmond -m connmond
when: connmon and director
|
Add command to refresh cmd environment in ms build | install:
- ps: iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
- choco install rust-ms
- cargo -V
build: none
test_script:
- cargo build --release
- cargo test --verbose
| install:
- ps: iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
- choco install rust-ms
- refreshenv
- cargo -V
build: none
test_script:
- cargo build --release
- cargo test --verbose
|
Update Conda for 3.2.2 release [skip test] | package:
name: "spark-nlp"
version: 3.2.1
app:
entry: spark-nlp
summary: Natural Language Understanding Library for Apache Spark.
source:
fn: spark-nlp-3.2.1.tar.gz
url: https://files.pythonhosted.org/packages/8b/3f/71f761eb088436dc67ca988d8dedaef07bad73c2d89d3825786a52df219a/spark-nlp-3.2.1.tar.gz
sha256: 0ffc2ff4afe9d97dc79ab05ad69a6d5b945159785a59cf89b547271dcc515304
build:
noarch: generic
number: 0
script: "python -m pip install . --no-deps -vv"
requirements:
build:
- python
run:
- python
about:
home: https://github.com/JohnSnowLabs/spark-nlp/
license: Apache License 2.0
license_family: APACHE
license_url: https://github.com/JohnSnowLabs/spark-nlp/blob/master/LICENSE
description: John Snow Labs Spark-NLP is a natural language processing library built on top of Apache Spark ML. It provides simple, performant & accurate NLP annotations for machine learning pipelines, that scale easily in a distributed environment.
summary: Natural Language Understanding Library for Apache Spark.
| package:
name: "spark-nlp"
version: 3.2.2
app:
entry: spark-nlp
summary: Natural Language Understanding Library for Apache Spark.
source:
fn: spark-nlp-3.2.2.tar.gz
url: https://files.pythonhosted.org/packages/5c/de/f84429f443655613f24c4bdc036d5ff531220dae89a79cab7d22c2892808/spark-nlp-3.2.2.tar.gz
sha256: 6f584afe10e9518b3d6bd2c3af156ecd84f3f2ed71b574adfbe802ec02f541b8
build:
noarch: generic
number: 0
script: "python -m pip install . --no-deps -vv"
requirements:
build:
- python
run:
- python
about:
home: https://github.com/JohnSnowLabs/spark-nlp/
license: Apache License 2.0
license_family: APACHE
license_url: https://github.com/JohnSnowLabs/spark-nlp/blob/master/LICENSE
description: John Snow Labs Spark-NLP is a natural language processing library built on top of Apache Spark ML. It provides simple, performant & accurate NLP annotations for machine learning pipelines, that scale easily in a distributed environment.
summary: Natural Language Understanding Library for Apache Spark.
|
Add Ruby 2.4 to AppVeyor build | environment:
matrix:
- RUBY_VERSION: 23-x64
- RUBY_VERSION: 22-x64
- RUBY_VERSION: 21-x64
- RUBY_VERSION: 200-x64
install:
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
- bundle install
build: off
before_test:
- ruby -v
- gem -v
- bundle -v
test_script:
- bundle exec rake appveyor:build
notifications:
- provider: Slack
auth_token:
secure: 9YGsB9d3wrST/m6Ep87bIQf+Y7i874+swA51IsTSn7GN0JkNo34tFy9vRTq/921h3cffqNnO8VAnvj41gqXH+iFXz4FNxxvBciWcOW37C8E=
channel: gcloud
| environment:
matrix:
- RUBY_VERSION: 24-x64
- RUBY_VERSION: 23-x64
- RUBY_VERSION: 22-x64
- RUBY_VERSION: 21-x64
- RUBY_VERSION: 200-x64
install:
- set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
- bundle install
build: off
before_test:
- ruby -v
- gem -v
- bundle -v
test_script:
- bundle exec rake appveyor:build
notifications:
- provider: Slack
auth_token:
secure: 9YGsB9d3wrST/m6Ep87bIQf+Y7i874+swA51IsTSn7GN0JkNo34tFy9vRTq/921h3cffqNnO8VAnvj41gqXH+iFXz4FNxxvBciWcOW37C8E=
channel: gcloud
|
Update kernel version for binder to 0.7.2 | name: kotlin-jupyter
dependencies:
- kotlin-jupyter-kernel>=0.7.1
- python=3.6
channels:
- jetbrains
| name: kotlin-jupyter
dependencies:
- kotlin-jupyter-kernel>=0.7.2
- python=3.6
channels:
- jetbrains
|
Update the com.google.code.findbugs dependency coordinates. | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_annotation: com.google.code.findbugs:jsr305:jar:3.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
javax_validation: javax.validation:validation-api:jar:1.0.0.GA
javax_validation_sources: javax.validation:validation-api:jar:sources:1.0.0.GA
| repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_annotation: org.realityforge.javax.annotation:javax.annotation:jar:1.0.0
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
javax_validation: javax.validation:validation-api:jar:1.0.0.GA
javax_validation_sources: javax.validation:validation-api:jar:sources:1.0.0.GA
|
Add deploy methode and skip tests | machine:
node:
version: 8.1.3
| machine:
node:
version: 8.1.3
deployment:
production:
branch: master
commands:
- ssh uhrwerk@88.99.218.142 -p 4800 'cd /home/uhrwerk/Software/Clockwork-API && git pull'
test:
override:
- "true"
|
Add master to build to hockey | dependencies:
pre:
- "[[ ! -s \"$(git rev-parse --git-dir)/shallow\" ]] || git fetch --unshallow"
machine:
xcode:
version: "7.3.1"
test:
override:
- bundle exec fastlane test
deployment:
integration:
branch: [develop]
commands:
- bundle exec fastlane develop
sprint:
tag: /sprint-.*/
commands:
- bundle exec fastlane sprint
| dependencies:
pre:
- "[[ ! -s \"$(git rev-parse --git-dir)/shallow\" ]] || git fetch --unshallow"
machine:
xcode:
version: "7.3.1"
test:
override:
- bundle exec fastlane test
deployment:
integration:
branch: [master, develop]
commands:
- bundle exec fastlane develop
sprint:
tag: /sprint-.*/
commands:
- bundle exec fastlane sprint
|
Update CI with new Docker image | shellcheck:
image: debian:latest
before_script:
# install bats
- apt-get update && apt-get install -y git curl xz-utils file
- git clone https://github.com/basherpm/basher ~/.basher
- export PATH="$HOME/.basher/bin:$PATH"
- eval "$(basher init - bash)"
- basher install bats-core/bats-core
# install shellcheck
- curl -Ls https://storage.googleapis.com/shellcheck/shellcheck-stable.linux.x86_64.tar.xz | tar xvJ
- mv shellcheck-stable/shellcheck /usr/bin/shellcheck
script:
- bats tests/test_shellcheck.bats
| shellcheck:
image: shellm/ci:latest
script:
- bats tests/test_shellcheck.bats
|
Use concrete branch name for Actions workflow | name: Build
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: node-${{ hashFiles('**/package-lock.json') }}
restore-keys:
node-
- name: Install dependencies
run: npm install
- name: Test and build
run: npm run build:all
| name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: node-${{ hashFiles('**/package-lock.json') }}
restore-keys:
node-
- name: Install dependencies
run: npm install
- name: Test and build
run: npm run build:all
|
Remove obsolete setup for ruby action | name: rspec
on:
[push]
env:
RACK_ENV: test
POSTGRES_USERNAME: sequent
POSTGRES_PASSWORD: sequent
POSTGRES_DB: sequent_spec_db
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- ruby-version: 3.0.0
active-star-version: '< 6.0.4'
- ruby-version: 2.7
active-star-version: '< 6.0.3'
services:
postgres:
image: postgres:12
env:
POSTGRES_USER: sequent
POSTGRES_PASSWORD: sequent
POSTGRES_DB: sequent_spec_db
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install bundler
run: |
gem install bundler
- name: Install ruby dependencies
env:
ACTIVE_STAR_VERSION: ${{ matrix.active-star-version }}
run: |
bundle config path vendor/bundle
bundle install --jobs 4
- name: Setup database
run: |
bundle exec rake db:create
- name: Run tests
run: bundle exec rspec
| name: rspec
on:
[push]
env:
RACK_ENV: test
POSTGRES_USERNAME: sequent
POSTGRES_PASSWORD: sequent
POSTGRES_DB: sequent_spec_db
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- ruby-version: 3.0.0
active-star-version: '< 6.0.4'
- ruby-version: 2.7
active-star-version: '< 6.0.3'
services:
postgres:
image: postgres:12
env:
POSTGRES_USER: sequent
POSTGRES_PASSWORD: sequent
POSTGRES_DB: sequent_spec_db
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Setup database
run: |
bundle exec rake db:create
- name: Run tests
run: bundle exec rspec
|
Add telegram platform and notifier | ---
notify:
- name: pushover
platform: pushover
api_key: !secret pushover_api_key
user_key: !secret pushover_user_key
- name: admin
platform: group
services:
- service: mobile_app_pontius
- name: all
platform: group
services:
- service: admin
- service: robert
- service: living_tv
automation:
- alias: Persistente meldingen doorsturen naar beheerder
id: 7319632e-f122-4a54-a81c-569d5601446a
description: Doorsturen persistente meldingen naar beheerder
trigger:
- event_data:
domain: persistent_notification
service: create
event_type: call_service
platform: event
action:
- data:
message: >
{% set message = trigger.event.data.service_data.message %}
{% if 'login attempt' in message|lower %}
{{ message }}:
http://www.ip-tracker.org/locator/ip-lookup.php?ip={{
message.split('from ')[1] }}
{% else %}
{{ message }}
{% endif %}
service: notify.admin
mode: single
| ---
################################################################################
# Notify
################################################################################
notify:
- name: pushover
platform: pushover
api_key: !secret pushover_api_key
user_key: !secret pushover_user_key
- name: telegram
platform: telegram
chat_id: !secret telegram_bot_chat_id_robert
- name: admin
platform: group
services:
- service: mobile_app_pontius
- name: all
platform: group
services:
- service: admin
- service: robert
- service: living_tv
################################################################################
# Telegram Bot
################################################################################
telegram_bot:
- platform: polling
api_key: !secret telegram_bot_api_key
allowed_chat_ids:
- !secret telegram_bot_chat_id_robert
################################################################################
# Automation
################################################################################
automation:
- alias: Persistente meldingen doorsturen naar beheerder
id: 7319632e-f122-4a54-a81c-569d5601446a
description: Doorsturen persistente meldingen naar beheerder
trigger:
- event_data:
domain: persistent_notification
service: create
event_type: call_service
platform: event
action:
- data:
message: >
{% set message = trigger.event.data.service_data.message %}
{% if 'login attempt' in message|lower %}
{{ message }}:
http://www.ip-tracker.org/locator/ip-lookup.php?ip={{
message.split('from ')[1] }}
{% else %}
{{ message }}
{% endif %}
service: notify.admin
mode: single
|
Update from Hackage at 2017-08-01T17:21:25Z | homepage: https://github.com/jtdaugherty/word-wrap/
changelog-type: markdown
hash: 58d6124f6f9e20ad648e2191a587f341bcb355ca4b7a5d5bae9418c97293aba7
test-bench-deps:
base: <5
hspec: ! '>=2.4'
word-wrap: -any
maintainer: cygnus@foobox.com
synopsis: A library for word-wrapping
changelog: ! '
0.1
===
* First version.
'
basic-deps:
base: <5
text: -any
all-versions:
- '0.1'
author: Jonathan Daugherty
latest: '0.1'
description-type: markdown
description: ! 'word-wrap
=========
This library provides text-wrapping functionality.
'
license-name: BSD3
| homepage: https://github.com/jtdaugherty/word-wrap/
changelog-type: markdown
hash: eac3af18691daaaa8c7c72a19753a5c8aa863824bf2e927bb52e181d05294d1a
test-bench-deps:
base: <5
hspec: ! '>=2.4'
word-wrap: -any
maintainer: cygnus@foobox.com
synopsis: A library for word-wrapping
changelog: ! "\n0.1.1\n=====\n\nPackage changes:\n * Removed a duplicate mention of
the changelog file in the cabal\n package description that used the wrong filename
case (#1)\n\n0.1\n===\n\n* First version.\n"
basic-deps:
base: <5
text: -any
all-versions:
- '0.1'
- '0.1.1'
author: Jonathan Daugherty
latest: '0.1.1'
description-type: markdown
description: ! 'word-wrap
=========
This library provides text-wrapping functionality.
'
license-name: BSD3
|
Remove JRuby testing as it doesn't like sqlite native extension | language: ruby
cache: bundler
rvm:
- 2.1.0
- 1.9.3
- jruby-19mode
| language: ruby
cache: bundler
rvm:
- 2.1.0
- 1.9.3
# - jruby-19mode # chokes on sqlite
|
Allow a more complex check as all the code is in the main function | AllCops:
NewCops: enable
Style/FrozenStringLiteralComment:
Enabled: false
Metrics/BlockLength:
Max: 30
ExcludedMethods: [ 'describe' ]
Metrics/MethodLength:
Max: 30
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: 'comma'
Layout/HashAlignment:
EnforcedColonStyle: table
Metrics/AbcSize:
Max: 20
| AllCops:
NewCops: enable
Style/FrozenStringLiteralComment:
Enabled: false
Metrics/BlockLength:
Max: 30
ExcludedMethods: [ 'describe' ]
Metrics/MethodLength:
Max: 30
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: 'comma'
Layout/HashAlignment:
EnforcedColonStyle: table
Metrics/AbcSize:
Max: 30
|
Test gtabview_cli to fix failing test on linux64 | {% set name = "gtabview" %}
{% set version = "0.10" %}
{% set sha256 = "f791b0a103c9eeb9aa7c76c47c85f16d682d77c07a6f433a0d8a50bd9e7df7e1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
noarch: python
script: "{{ PYTHON }} setup.py install"
requirements:
host:
- python
- setuptools
run:
- python >=2.7
- pyqt
test:
requires:
- pyqt
imports:
- gtabview
about:
home: https://github.com/TabViewer/gtabview/
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: 'Simple graphical tabular data viewer'
description: |
Simple tabular data viewer that can be used both stand-alone and as a
Python module for various files and Python/Pandas/NumPy data structures.
extra:
recipe-maintainers:
- wavexx
| {% set name = "gtabview" %}
{% set version = "0.10" %}
{% set sha256 = "f791b0a103c9eeb9aa7c76c47c85f16d682d77c07a6f433a0d8a50bd9e7df7e1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
noarch: python
script: "{{ PYTHON }} setup.py install"
requirements:
host:
- python
- setuptools
run:
- python >=2.7
- pyqt
test:
imports:
# The following fails on linux64 due to
# https://github.com/ContinuumIO/docker-images/issues/49#issuecomment-311556456
# - gtabview
- gtabview_cli
about:
home: https://github.com/TabViewer/gtabview/
license: MIT
license_family: MIT
license_file: LICENSE.txt
summary: 'Simple graphical tabular data viewer'
description: |
Simple tabular data viewer that can be used both stand-alone and as a
Python module for various files and Python/Pandas/NumPy data structures.
extra:
recipe-maintainers:
- wavexx
|
Add Python3 yoga unit tests | - project:
templates:
- check-requirements
- openstack-python3-xena-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
- openstack-cover-jobs | - project:
templates:
- check-requirements
- openstack-python3-yoga-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
- openstack-cover-jobs |
Enable SQA for FSI-only documentation | Content:
- framework/doc/content
- modules/fsi/doc/content
- modules/tensor_mechanics/doc/content
- modules/fluid_properties/doc/content
- modules/navier_stokes/doc/content
- modules/heat_conduction/doc/content
- modules/ray_tracing/doc/content
Renderer:
type: MooseDocs.base.MaterializeRenderer
Extensions:
MooseDocs.extensions.navigation:
name: fsi
repo: https://github.com/idaholab/moose
home: /modules/fsi/index.md
MooseDocs.extensions.appsyntax:
executable: ${MOOSE_DIR}/modules/fsi
remove:
framework: !include framework/doc/remove.yml
unregister:
framework: !include framework/doc/unregister.yml
includes:
- framework/include
- modules/fsi/include
- modules/tensor_mechanics/include
MooseDocs.extensions.common:
shortcuts: !include framework/doc/globals.yml
MooseDocs.extensions.acronym:
acronyms: !include framework/doc/acronyms.yml
MooseDocs.extensions.sqa: disable
| Content:
- framework/doc/content
- modules/fsi/doc/content
- modules/tensor_mechanics/doc/content
- modules/fluid_properties/doc/content
- modules/navier_stokes/doc/content
- modules/heat_conduction/doc/content
- modules/ray_tracing/doc/content
Renderer:
type: MooseDocs.base.MaterializeRenderer
Extensions:
MooseDocs.extensions.navigation:
name: fsi
repo: https://github.com/idaholab/moose
home: /modules/fsi/index.md
MooseDocs.extensions.appsyntax:
executable: ${MOOSE_DIR}/modules/fsi
remove:
framework: !include framework/doc/remove.yml
unregister:
framework: !include framework/doc/unregister.yml
includes:
- framework/include
- modules/fsi/include
- modules/tensor_mechanics/include
MooseDocs.extensions.common:
shortcuts: !include framework/doc/globals.yml
MooseDocs.extensions.acronym:
acronyms: !include framework/doc/acronyms.yml
MooseDocs.extensions.sqa:
active: True
reports: !include modules/stochastic_tools/doc/sqa_reports.yml
categories:
framework: !include framework/doc/sqa_framework.yml
fsi: !include modules/fsi/doc/sqa_fsi.yml
tensor_mechanics: !include modules/tensor_mechanics/doc/sqa_tensor_mechanics.yml
fluid_properties: !include modules/fluid_properties/doc/sqa_fluid_properties.yml
navier_stokes: !include modules/navier_stokes/doc/sqa_navier_stokes.yml
heat_conduction: !include modules/heat_conduction/doc/sqa_heat_conduction.yml
ray_tracing: !include modules/ray_tracing/doc/sqa_ray_tracing.yml
|
Update from Hackage at 2017-09-24T17:31:59Z | homepage: ''
changelog-type: ''
hash: 3e77584b71661fb2f4f7e70d5c34dbb2e79018a93f42aaf2d565bc85955f382d
test-bench-deps:
colorless: -any
base: ! '>=4.7 && <5'
hspec: -any
text: -any
containers: -any
scientific: -any
aeson: -any
vector: -any
maintainer: Joe Vargas
synopsis: Colorless
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
base: ! '>=4.7 && <5'
unordered-containers: -any
text: -any
monad-control: -any
containers: -any
mtl: -any
lifted-async: -any
monad-logger: -any
random: -any
errors: -any
scientific: -any
aeson: -any
vector: -any
all-versions:
- '0.0.0'
- '0.0.1'
author: ''
latest: '0.0.1'
description-type: markdown
description: ! '# colorless-haskell'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 3c308cb53550cc6ecffffd67689c3a862ec22d52318af2a6a55bd5a1f44c2e91
test-bench-deps:
colorless: -any
base: ! '>=4.7 && <5'
hspec: -any
text: -any
containers: -any
scientific: -any
aeson: -any
vector: -any
maintainer: Joe Vargas
synopsis: Colorless
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
base: ! '>=4.7 && <5'
unordered-containers: -any
text: -any
monad-control: -any
containers: -any
mtl: -any
lifted-async: -any
monad-logger: -any
random: -any
errors: -any
scientific: -any
aeson: -any
vector: -any
all-versions:
- '0.0.0'
- '0.0.1'
- '0.0.2'
author: ''
latest: '0.0.2'
description-type: markdown
description: ! '# colorless-haskell'
license-name: BSD3
|
Add default value for interval | ---
- stream:
name: openstack
module: rallyci.streams.gerrit
fake-stream: resources/gerrit-sample-stream.json
- service:
name: http_status
module: rallyci.services.status
stats-interval: 2
listen: ["localhost", 8080]
interval: 60
- job:
name: noop
env:
key: val
runner:
module: rallyci.runners.fake
sleep-run: [1, 2]
- project:
name: openstack-dev/ci-sandbox
jobs:
- noop
- project:
name: openstack/rally
jobs:
- noop
- logging:
debug: /var/log/rally-ci/debug.log
info: /var/log/rally-ci/rally-ci.log
error: /var/log/rally-ci/error.log
| ---
- stream:
name: openstack
module: rallyci.streams.gerrit
fake-stream: resources/gerrit-sample-stream.json
- service:
name: http_status
module: rallyci.services.status
stats-interval: 2
listen: ["localhost", 8080]
- job:
name: noop
env:
key: val
runner:
module: rallyci.runners.fake
sleep-run: [1, 2]
- project:
name: openstack-dev/ci-sandbox
jobs:
- noop
- project:
name: openstack/rally
jobs:
- noop
- logging:
debug: /var/log/rally-ci/debug.log
info: /var/log/rally-ci/rally-ci.log
error: /var/log/rally-ci/error.log
|
Use meta-action for extracting version | ---
name: Docker
on:
push:
branches:
- eodatasets3
paths:
- "**"
release:
types: [created, edited, published]
env:
IMAGE_NAME: opendatacube/eo-datasets
jobs:
docker:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/eodatasets3' || github.event_name == 'release'
steps:
- name: Checkout git
uses: actions/checkout@v2
- name: Get version number
run: >
echo "TAGGED_VERSION=$(git describe --tags | sed 's/eodatasets3-//')" >> $GITHUB_ENV
- name: Log the version
run: echo $TAGGED_VERSION
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: gadockersvc
password: ${{ secrets.GADOCKERSVC_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ env.IMAGE_NAME }}:latest,${{ env.IMAGE_NAME }}:${{ env.TAGGED_VERSION }}
build-args: |
ENVIRONMENT=deployment
| ---
name: Docker
on:
push:
branches:
- eodatasets3
paths:
- "**"
pull_request:
branches:
- eodatasets3
release:
types: [created, edited, published]
env:
IMAGE_NAME: opendatacube/eo-datasets
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout git
uses: actions/checkout@v2
- name: Deterimine docker tags from repo
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.IMAGE_NAME }}
- name: Log the labels
run: echo '${{ steps.meta.outputs.labels }}'
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
username: gadockersvc
password: ${{ secrets.GADOCKERSVC_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
builder: ${{ steps.buildx.outputs.name }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
ENVIRONMENT=deployment
|
Build Java 1.8 and 11. |
on: [push, pull_request]
jobs:
build:
name: Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 1.8, 11 ]
steps:
- uses: actions/checkout@master
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
run: ./gradlew
|
on: [push, pull_request]
jobs:
build:
name: Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 1.8, 11 ]
steps:
- uses: actions/checkout@master
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
run: ./gradlew
|
Add tap sanemat/font to install Ricty | homebrew_taps:
- homebrew/binary
- homebrew/versions
- homebrew/dupes
- caskroom/cask
- caskroom/versions
- caskroom/fonts
homebrew_packages:
- { name: readline }
- { name: openssl }
- { name: openssl, state: linked, install_options: force }
- { name: bash }
- { name: git }
- { name: cowsay }
- { name: docker }
- { name: docker-machine }
- { name: doxygen }
- { name: apple-gcc42 }
- { name: gnu-sed }
- { name: graphviz }
- { name: jq }
- { name: mecab }
- { name: mecab-ipadic }
- { name: nkf }
- { name: nmap }
- { name: packer }
- { name: sqlite }
- { name: tree }
- { name: unrar }
- { name: vim }
- { name: wget }
- { name: coreutils }
- { name: bash-completion }
- { name: argon/mas/mas }
| homebrew_taps:
- homebrew/binary
- homebrew/versions
- homebrew/dupes
- caskroom/cask
- caskroom/versions
- caskroom/fonts
- sanemat/font
homebrew_packages:
- { name: readline }
- { name: openssl }
- { name: openssl, state: linked, install_options: force }
- { name: bash }
- { name: git }
- { name: cowsay }
- { name: docker }
- { name: docker-machine }
- { name: doxygen }
- { name: apple-gcc42 }
- { name: gnu-sed }
- { name: graphviz }
- { name: jq }
- { name: mecab }
- { name: mecab-ipadic }
- { name: nkf }
- { name: nmap }
- { name: packer }
- { name: sqlite }
- { name: tree }
- { name: unrar }
- { name: vim }
- { name: wget }
- { name: coreutils }
- { name: bash-completion }
- { name: argon/mas/mas }
|
Use new RPM for vault installation. | ---
- name: install vault
sudo: yes
yum:
name: "https://bintray.com/artifact/download/stevendborrelli/rpm/vault-0.1.0-1.el7.centos.x86_64.rpm"
state: present
tags:
- vault
- bootstrap
- name: configure vault service
sudo: yes
copy:
src: vault.service
dest: /usr/lib/systemd/system/vault.service
notify:
- restart vault
tags:
- vault
- name: create vault directories
sudo: yes
file:
path: /etc/vault
state: directory
tags:
- vault
- name: create consul acl for vault
sudo: yes
run_once: yes
command: consul-cli acl-update --token={{ consul_acl_master_token }} --name="Vault ACL token" --rule='key:vault:write' --rule='key:core:write' {{ consul_acl_vault_token }}
tags:
- vault
- name: configure vault
sudo: yes
template:
src: vault.config.j2
dest: /etc/vault/vault.config
tags:
- vault
- name: enable vault
sudo: yes
service:
name: vault
enabled: yes
state: started
tags:
- vault
- name: wait for vault port
wait_for:
port: 8200
tags:
- vault
- include: bootstrap.yml
- include: distributive.yml
| ---
- name: install vault
sudo: yes
yum:
name: "https://bintray.com/artifact/download/chrisaubuchon/rpm/vault-0.4.0-1.x86_64.rpm"
state: present
tags:
- vault
- bootstrap
- name: configure vault
sudo: yes
template:
src: vault.hcl.j2
dest: /etc/vault/vault.hcl
tags:
- vault
- name: enable vault
sudo: yes
service:
name: vault
enabled: yes
state: started
tags:
- vault
- name: wait for vault port
wait_for:
port: 8200
tags:
- vault
- include: bootstrap.yml
- include: distributive.yml
|
Update solvation toolkit recipe for new release | package:
name: solvationtoolkit
version: 0.4.2
source:
git_url: https://github.com/MobleyLab/SolvationToolkit.git
git_tag: v0.4.2
build:
preserve_egg_dir: True
number: 0
skip: True # [win]
requirements:
build:
- python
- setuptools
- numpy
- numpydoc
- scipy
- ambermini
- parmed
- openmoltools
- mdtraj
- packmol
- netcdf4
- pandas
- openmm
- pytables
run:
- python
- setuptools
- numpy
- numpydoc
- scipy
- ambermini
- parmed
- libgfortran 1.* # [linux and np == 19]
- openmoltools
- mdtraj
- packmol
- netcdf4
- pandas
- openmm
- pytables
test:
requires:
- nose
- openmmtools
# imports:
# - solvationtoolkit
# - openmoltools
# commands:
# - nosetests solvationtoolkit -v
about:
home: https://github.com/mobleylab/solvationtoolkit
license: MIT
| package:
name: solvationtoolkit
version: 0.4.3
source:
git_url: https://github.com/MobleyLab/SolvationToolkit.git
git_tag: v0.4.3
build:
preserve_egg_dir: True
number: 0
skip: True # [win]
requirements:
build:
- python
- setuptools
- numpy
- numpydoc
- scipy
- ambermini
- parmed
- openmoltools
- mdtraj
- packmol
- netcdf4
- pandas
- openmm
- pytables
run:
- python
- setuptools
- numpy
- numpydoc
- scipy
- ambermini
- parmed
- openmoltools
- mdtraj
- packmol
- netcdf4
- pandas
- openmm
- pytables
test:
requires:
- nose
- openmmtools
# imports:
# - solvationtoolkit
# - openmoltools
# commands:
# - nosetests solvationtoolkit -v
about:
home: https://github.com/mobleylab/solvationtoolkit
license: MIT
|
Update from Forestry.io Jessica Temporal deleted _posts/estou-usando-um-cms-e-você-deveria-também.md | ---
label: colinha
hide_body: false
is_partial: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: post
- name: title
label: Title
type: text
hidden: false
default: Título
- name: date
label: Date
type: datetime
hidden: false
default: 2019-02-21 03:00:00 +0000
- name: img
label: Img
type: file
hidden: false
default: "/images/colinha.png"
- name: comments
label: Comments
type: boolean
hidden: false
default: true
- name: tags
label: Tags
type: tag_list
hidden: false
default:
- colinha
pages:
- _drafts/servidores-http-com-python.md
- _posts/estou-usando-um-cms-e-você-deveria-também.md
- _posts/estou-usando-um-cms-e-você-deveria-também.md
| ---
label: colinha
hide_body: false
is_partial: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: post
- name: title
label: Title
type: text
hidden: false
default: Título
- name: date
label: Date
type: datetime
hidden: false
default: 2019-02-21 03:00:00 +0000
- name: img
label: Img
type: file
hidden: false
default: "/images/colinha.png"
- name: comments
label: Comments
type: boolean
hidden: false
default: true
- name: tags
label: Tags
type: tag_list
hidden: false
default:
- colinha
pages:
- _drafts/servidores-http-com-python.md
- _posts/estou-usando-um-cms-e-você-deveria-também.md
|
Add myself as a maintainer | package:
name: librdmacm-devel-cos6-x86_64
version: 1.0.21
source:
- url: http://mirror.centos.org/centos/6.10/os/x86_64/Packages/librdmacm-devel-1.0.21-0.el6.x86_64.rpm
sha256: 148612941150432c14b6492c4a0f66c012a79bf6f70dc68bfce63e017e1e3bc8
folder: binary
build:
number: 0
noarch: generic
missing_dso_whitelist:
- '*'
requirements:
build:
- librdmacm-cos6-x86_64 ==1.0.21
run:
- librdmacm-cos6-x86_64 ==1.0.21
test:
commands:
- test -d "${PREFIX}/x86_64-conda_cos6-linux-gnu/sysroot"
requires:
- zlib
about:
home: http://www.openfabrics.org/
license: GPLv2 or BSD
license_family: GPL2
summary: "(CDT) Development files for the librdmacm library"
description: |
Development files for the librdmacm library.
| package:
name: librdmacm-devel-cos6-x86_64
version: 1.0.21
source:
- url: http://mirror.centos.org/centos/6.10/os/x86_64/Packages/librdmacm-devel-1.0.21-0.el6.x86_64.rpm
sha256: 148612941150432c14b6492c4a0f66c012a79bf6f70dc68bfce63e017e1e3bc8
folder: binary
build:
number: 0
noarch: generic
missing_dso_whitelist:
- '*'
requirements:
build:
- librdmacm-cos6-x86_64 ==1.0.21
run:
- librdmacm-cos6-x86_64 ==1.0.21
test:
commands:
- test -d "${PREFIX}/x86_64-conda_cos6-linux-gnu/sysroot"
requires:
- zlib
about:
home: http://www.openfabrics.org/
license: GPLv2 or BSD
license_family: GPL2
summary: "(CDT) Development files for the librdmacm library"
description: |
Development files for the librdmacm library.
extra:
recipe-maintainers:
- jakirkham
|
Revert Travis config back to npm | sudo: required
dist: trusty
language: node_js
node_js:
- "4"
env:
global:
- GITHUB_OAUTH_KEY=003a44d58f12089d0c0261338298af3813330949
branches:
except:
- /^greenkeeper-.+$/
cache:
yarn: true
directories:
- node_modules
addons:
firefox: "latest"
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
install:
- npm i -g yarn
- yarn global add bower
- yarn
- bower install
before_script:
- yarn add --force node-sass # temporary, workaround for https://github.com/yarnpkg/yarn/issues/1981
- export DISPLAY=:99; sh -e /etc/init.d/xvfb start; sleep 3;
script:
- COVERAGE=true npm test
after_success:
- npm run coverage
| sudo: required
dist: trusty
language: node_js
node_js:
- "4"
env:
global:
- GITHUB_OAUTH_KEY=003a44d58f12089d0c0261338298af3813330949
branches:
except:
- /^greenkeeper-.+$/
cache:
directories:
- node_modules
addons:
firefox: "latest"
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- npm config --global set spin false
- npm install -g npm@^2
install:
- npm install -g bower
- npm install
- bower install
before_script:
- export DISPLAY=:99; sh -e /etc/init.d/xvfb start; sleep 3;
script:
- COVERAGE=true npm test
after_success:
- npm run coverage
|
Install prebuilt phantomjs from npm | language: node_js
node_js:
- 6
sudo: false
cache: yarn
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.27.5
- export PATH="$HOME/.yarn/bin:$PATH"
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
- tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs
- export PATH=$PWD/travis-phantomjs:$PATH
env:
global:
- SAUCE_USERNAME=htmlbars-ci
- SAUCE_ACCESS_KEY=71947947-f373-4e9c-9166-23038df7ddf2
matrix:
- TEST_NODE=1 TEST_BROWSERS=1
matrix:
fast_finish: true
before_script:
- yarn run sauce:connect
script:
- yarn run problems
- yarn run test:ci
- yarn run build
- yarn run eslint
after_script:
- sleep 10
- yarn run sauce:disconnect
| language: node_js
node_js:
- 6
sudo: false
cache: yarn
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.27.5
- export PATH="$HOME/.yarn/bin:$PATH"
- npm install -g phantomjs-prebuilt
env:
global:
- SAUCE_USERNAME=htmlbars-ci
- SAUCE_ACCESS_KEY=71947947-f373-4e9c-9166-23038df7ddf2
matrix:
- TEST_NODE=1 TEST_BROWSERS=1
matrix:
fast_finish: true
before_script:
- yarn run sauce:connect
script:
- yarn run problems
- yarn run test:ci
- yarn run build
- yarn run eslint
after_script:
- sleep 10
- yarn run sauce:disconnect
|
Test against Rubinius in both Ruby 1.8 and 1.9 mode | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx
- rbx-2.0
- ree
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx-18mode
- rbx-19mode
- ree
|
Fix typo in the Travis configuration. | language: java
install: mvn install
deploy:
edge: true
provider: cloudfoundry
username: terentich@bk.ru
password: secure: "test"
api: https://api.run.pivotal.io
organization: terentich-org
space: development | language: java
install: mvn install
deploy:
edge: true
provider: cloudfoundry
username: terentich@bk.ru
password: secure: "test"
api: https://api.run.pivotal.io
organization: terentich-org
space: development |
Remove MRI 1.9.2 testing from Travis | language: ruby
rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
- jruby-19mode
- ruby-head
- 2.0.0
services:
- mongodb
| language: ruby
rvm:
- 1.9.3
- rbx-19mode
- jruby-19mode
- ruby-head
- 2.0.0
services:
- mongodb
|
Patch to install matplotlib 1.3.1 with pip 1.5.x | language: python
python:
- "2.7"
- "3.3"
env:
- NUMPY_VERSION=1.8.0
- NUMPY_VERSION=1.7.1
- NUMPY_VERSION=1.6.2
matrix:
exclude:
- python: "3.3"
env: NUMPY_VERSION=1.6.2
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-dev liblapack-dev gfortran
- pip install pip --upgrade
- pip install setuptools --upgrade
- pip install pytest --upgrade
install:
- pip install numpy==$NUMPY_VERSION
- pip install scipy==0.13
- pip install matplotlib==1.3.1
script:
- python setup.py install
- py.test | language: python
python:
- "2.7"
- "3.3"
env:
- NUMPY_VERSION=1.8.0
- NUMPY_VERSION=1.7.1
- NUMPY_VERSION=1.6.2
matrix:
exclude:
- python: "3.3"
env: NUMPY_VERSION=1.6.2
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-dev liblapack-dev gfortran
- pip install pip --upgrade
- pip install setuptools --upgrade
- pip install pytest --upgrade
install:
- pip install numpy==$NUMPY_VERSION
- pip install scipy==0.13
- pip install matplotlib==1.3.1 --allow-external matplotlib --allow-unverified matplotlib
script:
- python setup.py install
- py.test |
Install vault; replace old docker-toolbox with straight-up docker. | ---
osx:
brew:
taps:
- homebrew/cask-fonts
packages:
- ack
- ansible
- autojump
- awscli
- cowsay
- elixir
- fish
- fortune
- gpg2
- jq
- kops
- kubectl
- nvm
- rbenv
- reattach-to-user-namespace
- ripgrep
- ruby-build
- macvim
- pinentry-mac
- terminal-notifier
- terraform
- tmux
- watch
casks:
- 1password
- 1password-cli
- alfred
- aws-vault
- dash
- docker-toolbox
- fantastical
- firefox
- font-meslo-for-powerline
- front
- google-chrome
- karabiner-elements
- marked
- minikube
- postman
- robo-3t
- slack
- spotify
- transmission
- vagrant
- virtualbox
- vlc
dotfiles:
links:
- src: tmux/tmux.conf
dest: ~/.tmux.conf
- src: fish
dest: ~/.config/fish
- src: git/gitconfig
dest: ~/.gitconfig
- src: git/gitignore
dest: ~/.gitignore
- src: pry/pryrc
dest: ~/.pryrc
- src: ripgrep/ripgreprc
dest: ~/.ripgreprc
| ---
osx:
brew:
taps:
- homebrew/cask-fonts
packages:
- ack
- ansible
- autojump
- awscli
- cowsay
- elixir
- fish
- fortune
- gpg2
- jq
- kops
- kubectl
- nvm
- rbenv
- reattach-to-user-namespace
- ripgrep
- ruby-build
- macvim
- pinentry-mac
- terminal-notifier
- terraform
- tmux
- vault
- watch
casks:
- 1password
- 1password-cli
- alfred
- aws-vault
- dash
- docker
- fantastical
- firefox
- font-meslo-for-powerline
- front
- google-chrome
- karabiner-elements
- marked
- minikube
- postman
- robo-3t
- slack
- spotify
- transmission
- vagrant
- virtualbox
- vlc
dotfiles:
links:
- src: tmux/tmux.conf
dest: ~/.tmux.conf
- src: fish
dest: ~/.config/fish
- src: git/gitconfig
dest: ~/.gitconfig
- src: git/gitignore
dest: ~/.gitignore
- src: pry/pryrc
dest: ~/.pryrc
- src: ripgrep/ripgreprc
dest: ~/.ripgreprc
|
Add JRuby to Travis builds. | language: ruby
rvm:
- 1.9.3
- 1.9.2
- 2.0.0
- rbx-19mode
- ruby-head
| language: ruby
rvm:
- 1.9.3
- 1.9.2
- 2.0.0
- rbx-19mode
- ruby-head
- jruby-19mode
|
Remove HHVM from Travis matrix | language: php
php:
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
before_script:
- travis_retry composer self-update
- travis_retry composer update --no-interaction --prefer-source
script:
- vendor/bin/phpcs -p --warning-severity=0 src/ tests/
- vendor/bin/phpunit --coverage-clover=./tests/report/coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover ./tests/report/coverage.clover
| language: php
php:
- 5.6
- 7.0
matrix:
allow_failures:
- php: 7.0
before_script:
- travis_retry composer self-update
- travis_retry composer update --no-interaction --prefer-source
script:
- vendor/bin/phpcs -p --warning-severity=0 src/ tests/
- vendor/bin/phpunit --coverage-clover=./tests/report/coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover ./tests/report/coverage.clover
|
Switch to Firefox 54 Beta on Travis | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="50.1.0"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2esr" ]; then
wget -O tarball "https://archive.mozilla.org/pub/firefox/releases/45.0.2esr/linux-x86_64/en-US/firefox-45.0.2esr.tar.bz2";
fi
- if [ $FX_VERSION = "50.1.0" ]; then
wget -O tarball "http://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-release-linux64-add-on-devel/1481240107/firefox-50.1.0.en-US.linux-x86_64-add-on-devel.tar.bz2";
fi
- tar xf tarball
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm i
- node_modules/.bin/gulp build
script:
- test/runtests.sh -x firefox/firefox
| sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="54.0b"
- FX_VERSION="45.0.2esr"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "45.0.2esr" ]; then
wget -O tarball "https://archive.mozilla.org/pub/firefox/releases/45.0.2esr/linux-x86_64/en-US/firefox-45.0.2esr.tar.bz2";
fi
- if [ $FX_VERSION = "54.0b9" ]; then
wget -O tarball "https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-beta-linux64-add-on-devel/1496339244/firefox-54.0.en-US.linux-x86_64-add-on-devel.tar.bz2";
fi
- tar xf tarball
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm i
- node_modules/.bin/gulp build
script:
- test/runtests.sh -x firefox/firefox
|
Update Ruby version and add 2.7.1. | language: ruby
sudo: false
cache: bundler
before_install:
- gem update --system
- gem install bundler -v '< 2'
rvm:
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
| language: ruby
sudo: false
cache: bundler
before_install:
- gem update --system
- gem install bundler -v '< 2'
rvm:
- 2.3.8
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.1
|
Use latest Firefox to avoid ES6-related errors | sudo: false
language: "node_js"
node_js:
- node
- 7
services:
- mongodb
install: yarn && jspm i
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_success: gulp coveralls
addons:
apt:
sources:
- mongodb-upstart
- mongodb-3.2-precise
packages:
- mongodb-org-server
- mongodb-org-shell
| sudo: false
language: "node_js"
node_js:
- node
- 7
services:
- mongodb
install: yarn && jspm i
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_success: gulp coveralls
addons:
firefox: 'latest'
apt:
sources:
- mongodb-upstart
- mongodb-3.2-precise
packages:
- mongodb-org-server
- mongodb-org-shell
|
Remove building on 3.7 ; add nightly | language: python
python:
# - "2.6"
# - "2.7"
# - "3.2"
# - "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
# - "3.5-dev" # 3.5 development branch
# - "3.6-dev" # 3.6 development branch
# - "nightly" # currently points to 3.7-dev
# command to install dependencies
install: "pip install -r requirements.txt"
# # command to run tests
script: nosetests
| language: python
python:
# - "2.6"
# - "2.7"
# - "3.2"
# - "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
# - "3.5-dev" # 3.5 development branch
# - "3.6-dev" # 3.6 development branch
# - "nightly" # currently points to 3.7-dev
# command to install dependencies
install: "pip install -r requirements.txt"
# # command to run tests
script: nosetests
|
Install my pyeasyga fork on Travis CI | language: python
python:
- 3.4
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels yasserglez
- conda update -q conda
- conda create -q -n test-env python=$TRAVIS_PYTHON_VERSION pip
- source activate test-env
- pip install -r tests/requirements.txt
install:
- conda install -n test-env "numpy >= 1.9.1"
- conda install -n test-env "scipy >= 0.14.0"
- conda install -n test-env "python-igraph >= 0.7.1"
- conda install -n test-env "fann2"
- conda install -n test-env "fim"
- pip install https://github.com/sawcordwell/pymdptoolbox/zipball/master
- pip install https://github.com/pybrain/pybrain/zipball/master
- pip install -e .
script:
- py.test --verbose
| language: python
python:
- 3.4
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels yasserglez
- conda update -q conda
- conda create -q -n test-env python=$TRAVIS_PYTHON_VERSION pip
- source activate test-env
- pip install -r tests/requirements.txt
install:
- conda install -n test-env "numpy >= 1.9.1"
- conda install -n test-env "scipy >= 0.14.0"
- conda install -n test-env "python-igraph >= 0.7.1"
- conda install -n test-env "fann2"
- conda install -n test-env "fim"
- pip install git+https://github.com/yasserglez/pyeasyga.git@py34-support
- pip install https://github.com/sawcordwell/pymdptoolbox/zipball/master
- pip install https://github.com/pybrain/pybrain/zipball/master
- pip install -e .
script:
- py.test --verbose
|
Update Travis config to latest. | sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Revert "update Travis config to test on OSX" | language: node_js
node_js:
- "node"
- "5.0"
- "4.2"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
os:
- linux
- osx
| language: node_js
node_js:
- "node"
- "5.0"
- "4.2"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs" |
Use MySQL setup SQL script in Travis-CI | language: python
python:
- "2.7"
env:
- USE_MYSQL=true
- USE_MYSQL=
services:
- mysql
install:
# Install coveralls to test code coverage
- sudo pip install coveralls
# Copy libz.so into the virtualenv so that PIL can build PNG support
- sudo cp /usr/lib/*/libz.so $VIRTUAL_ENV/lib
# command to run tests
script: coverage run --source="mysite" manage.py test
# Get development headers for PIL
before_install:
- deactivate # We are having problems with using Pillow in a virtualenv
- sudo apt-get update -qq
- sudo apt-get build-dep -qq python-imaging
- sudo apt-get install libjpeg-dev python-mysqldb
- git config --global user.name TravisDummy
- git config --global user.email dummy@travis-ci.orgo
before_script:
- mysql -e 'create database oh_milestone_a'
after_success: coveralls
| language: python
python:
- "2.7"
env:
- USE_MYSQL=true
- USE_MYSQL=
services:
- mysql
install:
# Install coveralls to test code coverage
- sudo pip install coveralls
# Copy libz.so into the virtualenv so that PIL can build PNG support
- sudo cp /usr/lib/*/libz.so $VIRTUAL_ENV/lib
# command to run tests
script: coverage run --source="mysite" manage.py test
# Get development headers for PIL
before_install:
- deactivate # We are having problems with using Pillow in a virtualenv
- sudo apt-get update -qq
- sudo apt-get build-dep -qq python-imaging
- sudo apt-get install libjpeg-dev python-mysqldb
- git config --global user.name TravisDummy
- git config --global user.email dummy@travis-ci.orgo
before_script:
- mysql -uroot < ./mysite/scripts/database_01_create.sql
after_success: coveralls
|
Test against Node.js version 8 at Travis CI | sudo: false
language: node_js
node_js:
- "7"
- "6"
script:
- npm run lint
- npm test
cache:
directories:
- node_modules
matrix:
fast_finish: true
| sudo: false
language: node_js
node_js:
- "8"
- "6"
script:
- npm run lint
- npm test
cache:
directories:
- node_modules
matrix:
fast_finish: true
|
Use an existing scheme in Travis | osx_image: xcode9.1
language: objective-c
xcode_project: RAMAnimatedTabBarDemo/RAMAnimatedTabBarDemo.xcodeproj
xcode_scheme: AnimatedTabBar
xcode_sdk: iphonesimulator
| osx_image: xcode9.1
language: objective-c
xcode_project: RAMAnimatedTabBarDemo/RAMAnimatedTabBarDemo.xcodeproj
xcode_scheme: RAMAnimatedTabBarController
xcode_sdk: iphonesimulator
|
Remove PHP 5.6 and add 7.2 to Travis | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpcs --standard=psr2 src/
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- |
if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover coverage.clover
fi | language: php
php:
- 7.0
- 7.1
- 7.2
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpcs --standard=psr2 src/
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
|
Add Ruby 2.3, 2.4 and jruby-9.1.9.0 to build matrix | language: ruby
sudo: false
rvm:
- '2.3.0'
- '2.2'
- '2.1'
- '2.0'
- '1.9.3'
- jruby-9.0.0.0.pre1
- jruby-1.7
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
addons:
code_climate:
repo_token:
secure: DNXX6vrtb1D1NSxA22LTgHAnIEiRt5OJ6sYeakj3tdtOwclA9/dT+mYA8zI+l8uI7d0ojdWGlWWoJKbLsVvebDaoYSVm7ekLBMS3dhQ/gvd5RIZ0Eo6xadB0QMfsTXIhCkFt8CNlL0YI89abyhLSX2Vn8QFN7K5ihbkKatR+2JY=
| language: ruby
sudo: false
rvm:
- '2.4'
- '2.3'
- '2.2'
- '2.1'
- '2.0'
- '1.9.3'
- jruby-9.1.9.0
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token:
secure: DNXX6vrtb1D1NSxA22LTgHAnIEiRt5OJ6sYeakj3tdtOwclA9/dT+mYA8zI+l8uI7d0ojdWGlWWoJKbLsVvebDaoYSVm7ekLBMS3dhQ/gvd5RIZ0Eo6xadB0QMfsTXIhCkFt8CNlL0YI89abyhLSX2Vn8QFN7K5ihbkKatR+2JY=
|
Enable code coverage on Travis | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COMPOSER_FLAGS="--prefer-lowest --prefer-stable"
- COVERAGE=true
install:
- if [[ "$TRAVIS_PHP_VERSION" == "hhvm" ]]; then composer require mongofill/mongofill=dev-master --no-update; fi
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
script:
- vendor/bin/phpunit
- vendor/bin/phpspec run
after_script:
- if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COMPOSER_FLAGS="--prefer-lowest --prefer-stable"
- COVERAGE=true
- PHPUNIT_FLAGS="--coverage-clover=coverage.clover"
install:
- if [[ "$TRAVIS_PHP_VERSION" == "hhvm" ]]; then composer require mongofill/mongofill=dev-master --no-update; fi
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
script:
- vendor/bin/phpunit ${PHPUNIT_FLAGS}
- vendor/bin/phpspec run
after_script:
- if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
|
Add go 1.10.x to TravisCI | sudo: false
language: go
go:
- 1.9.x
- tip
script:
- make build
- make gometalinter
| sudo: false
language: go
go:
- 1.9.x
- 1.10.x
- tip
script:
- make build
- make gometalinter
|
Install the Runkit PHP extension before building. | language: php
php:
- 5.3
- 5.4
before_script:
- pear config-set auto_discover 1
- pear channel-discover pear.phpspec.net
- pear install phpspec/PHPSpec
- phpenv rehash
script: phpspec src/spec --bootstrap src/spec/bootstrap.php
| language: php
php:
- 5.3
- 5.4
before_script:
# Runkit
- git clone https://github.com/zenovich/runkit.git
- sh -c "cd runkit && phpize && ./configure && make && sudo make install"
- echo "extension=runkit.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
# PHPSpec
- pear config-set auto_discover 1
- pear channel-discover pear.phpspec.net
- pear install phpspec/PHPSpec
- phpenv rehash
script: phpspec src/spec --bootstrap src/spec/bootstrap.php
|
Add codecov.io support to repo | language: python
python: "3.6"
services: mongodb
cache: pip
install: "pip install -r requirements.txt"
script: pytest | language: python
python: "3.6"
services: mongodb
cache: pip
sudo: false
install: "pip install --user -r requirements.txt"
script: pytest
before_install:
- "pip install --user codecov"
after_success:
- "codecov" |
Update Travis CI with new packages git-cohttp & git-cohttp-unix | language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- PINS="carton.dev:. carton-lwt.dev:. carton-git.dev:. nss.dev:. git.dev:. git-unix.dev:."
matrix:
- OCAML_VERSION=4.08 PACKAGE="git.dev"
- OCAML_VERSION=4.09 PACKAGE="git.dev"
- OCAML_VERSION=4.10 PACKAGE="git.dev"
- OCAML_VERSION=4.08 PACKAGE="git-unix.dev"
- OCAML_VERSION=4.08 PACKAGE="git-unix.dev"
- OCAML_VERSION=4.08 PACKAGE="git.dev" REVDEPS=*
| language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- PINS="carton.dev:. carton-lwt.dev:. carton-git.dev:. nss.dev:. git.dev:. git-unix.dev:. git-cohttp.dev:. git-cohttp-unix.dev:."
matrix:
- OCAML_VERSION=4.08 PACKAGE="git.dev"
- OCAML_VERSION=4.09 PACKAGE="git.dev"
- OCAML_VERSION=4.10 PACKAGE="git.dev"
- OCAML_VERSION=4.08 PACKAGE="git-unix.dev"
- OCAML_VERSION=4.08 PACKAGE="git-unix.dev"
- OCAML_VERSION=4.08 PACKAGE="git.dev" REVDEPS=*
|
Install ant-optional for JUnit support | language: java
sudo: false
jdk:
- oraclejdk8
install:
- |
export ECLIPSE_TAR=eclipse.tar.gz
export ECLIPSE_URL=http://archive.eclipse.org/eclipse/downloads/drops4/R-4.6.3-201703010400/eclipse-SDK-4.6.3-linux-gtk-x86_64.tar.gz
wget ${ECLIPSE_URL} -O ${ECLIPSE_TAR}
tar -C ${TRAVIS_BUILD_DIR}/.. -xzf ${ECLIPSE_TAR}
export ECLIPSE_EXE=${TRAVIS_BUILD_DIR}/../eclipse/eclipse
script:
- ant test
- ant eclipseformat
- ant checkstyle
| language: java
sudo: false
jdk:
- oraclejdk8
addons:
apt:
packages:
- ant-optional
install:
- |
export ECLIPSE_TAR=eclipse.tar.gz
export ECLIPSE_URL=http://archive.eclipse.org/eclipse/downloads/drops4/R-4.6.3-201703010400/eclipse-SDK-4.6.3-linux-gtk-x86_64.tar.gz
wget ${ECLIPSE_URL} -O ${ECLIPSE_TAR}
tar -C ${TRAVIS_BUILD_DIR}/.. -xzf ${ECLIPSE_TAR}
export ECLIPSE_EXE=${TRAVIS_BUILD_DIR}/../eclipse/eclipse
script:
- ant test
- ant eclipseformat
- ant checkstyle
|
Change to drop Ruby 2.0 | ---
language: ruby
sudo: false
before_install: "gem install bundler -v '< 2.0'"
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
env:
global:
- JRUBY_OPTS="-Xcli.debug=true --debug"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
fast_finish: true
branches:
only: master
notifications:
email: false
| ---
language: ruby
sudo: false
before_install: "gem install bundler -v '< 2.0'"
script: "bundle exec rake ci"
rvm:
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
env:
global:
- JRUBY_OPTS="-Xcli.debug=true --debug"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
fast_finish: true
branches:
only: master
notifications:
email: false
|
Use newest version of bundler | language: ruby
rvm:
- 2.1
- 2.2
services:
- redis-server
| language: ruby
rvm:
- 2.1
- 2.2
services:
- redis-server
before_install: gem update bundler
|
Drop support for Node 0.10 and io.js | language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
after_script:
- npm run coveralls
| language: node_js
node_js:
- "0.12"
after_script:
- npm run coveralls
|
Update test matrix for Travis CI (drop testing for Python 3.5 and NumPy <1.14) | language: python
dist: xenial
sudo: false
matrix:
include:
- python: "3.5"
env: NUMPY_VERSION="1.11.3"
- python: "3.5"
env: NUMPY_VERSION="1.18.3"
- python: "3.6"
env: NUMPY_VERSION="1.12.1"
- python: "3.6"
env: NUMPY_VERSION="1.18.3"
- python: "3.7"
env: NUMPY_VERSION="1.14.5"
- python: "3.7"
env: NUMPY_VERSION="1.15.4"
- python: "3.7"
env: NUMPY_VERSION="1.16.6"
- python: "3.7"
env: NUMPY_VERSION="1.17.5"
- python: "3.7"
env: NUMPY_VERSION="1.18.3"
- python: "3.8"
env: NUMPY_VERSION="1.18.3"
# command to install dependencies
before_install:
- pip install "numpy==$NUMPY_VERSION"
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install .
- pip install pillow
# command to run tests, e.g. python setup.py test
script:
nosetests --with-coverage --cover-package=neo
| language: python
dist: xenial
sudo: false
matrix:
include:
- python: "3.6"
env: NUMPY_VERSION="1.14.6"
- python: "3.6"
env: NUMPY_VERSION="1.18.3"
- python: "3.7"
env: NUMPY_VERSION="1.14.6"
- python: "3.7"
env: NUMPY_VERSION="1.19.2"
- python: "3.8"
env: NUMPY_VERSION="1.14.6"
- python: "3.8"
env: NUMPY_VERSION="1.15.4"
- python: "3.8"
env: NUMPY_VERSION="1.16.6"
- python: "3.8"
env: NUMPY_VERSION="1.17.5"
- python: "3.8"
env: NUMPY_VERSION="1.18.5"
- python: "3.8"
env: NUMPY_VERSION="1.19.2"
# command to install dependencies
before_install:
- pip install "numpy==$NUMPY_VERSION"
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install .
- pip install pillow
# command to run tests, e.g. python setup.py test
script:
nosetests --with-coverage --cover-package=neo
|
Remove go versions < 1.10.x | language: go
sudo: false
go:
- 1.7.1
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
before_install:
- go get github.com/mattn/goveralls
- go get github.com/prometheus/client_golang/prometheus
script:
- $HOME/gopath/bin/goveralls -service=travis-ci -ignore cmd/pingpong/pingpong.go
| language: go
sudo: false
go:
- 1.10.x
- 1.11.x
before_install:
- go get github.com/mattn/goveralls
- go get github.com/prometheus/client_golang/prometheus
script:
- $HOME/gopath/bin/goveralls -service=travis-ci -ignore cmd/pingpong/pingpong.go
|
Use Elasticsearch 5.5 as default for tests | sudo: false
language: ruby
rvm: 2.3.1
services:
- mongodb
- redis-server
before_install:
- ./test/ci/before_install.sh
script: bundle exec rake test
before_script:
- psql -c 'create database searchkick_test;' -U postgres
notifications:
email:
on_success: never
on_failure: change
gemfile:
- Gemfile
- test/gemfiles/activerecord50.gemfile
- test/gemfiles/activerecord42.gemfile
- test/gemfiles/mongoid5.gemfile
- test/gemfiles/mongoid6.gemfile
env:
- ELASTICSEARCH_VERSION=5.4.0
jdk: oraclejdk8
matrix:
include:
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=2.0.0
jdk: oraclejdk7
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=2.4.3
jdk: oraclejdk7
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=5.0.1
jdk: oraclejdk8
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=6.0.0-alpha2
jdk: oraclejdk8
| sudo: false
language: ruby
rvm: 2.3.1
services:
- mongodb
- redis-server
before_install:
- ./test/ci/before_install.sh
script: bundle exec rake test
before_script:
- psql -c 'create database searchkick_test;' -U postgres
notifications:
email:
on_success: never
on_failure: change
gemfile:
- Gemfile
- test/gemfiles/activerecord50.gemfile
- test/gemfiles/activerecord42.gemfile
- test/gemfiles/mongoid5.gemfile
- test/gemfiles/mongoid6.gemfile
env:
- ELASTICSEARCH_VERSION=5.5.0
jdk: oraclejdk8
matrix:
include:
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=2.0.0
jdk: oraclejdk7
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=2.4.3
jdk: oraclejdk7
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=5.0.1
jdk: oraclejdk8
- gemfile: Gemfile
env: ELASTICSEARCH_VERSION=6.0.0-alpha2
jdk: oraclejdk8
|
Allow php nightly to fail, apparently composer is having a bit of an issue installing | language: php
php:
- 5.5
- 5.6
- nightly
sudo: required
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq beanstalkd
- sudo beanstalkd -d -l 127.0.0.1 -p 11300
before_script: mkdir -p build/logs
install: composer install --no-interaction
after_script: if [ $(phpenv version-name) = "5.6" ]; then php vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml; fi
| language: php
php:
- 5.5
- 5.6
- nightly
matrix:
allow_failures:
- php: nightly
sudo: required
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq beanstalkd
- sudo beanstalkd -d -l 127.0.0.1 -p 11300
before_script: mkdir -p build/logs
install: composer install --no-interaction
after_script: if [ $(phpenv version-name) = "5.6" ]; then php vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml; fi
|
Update from Hackage at 2016-01-28T08:21:24+0000 | homepage: http://rwd.rdockins.name/edison/home/
changelog-type: ''
hash: b23397a1a70b874b061f1a2a2021805fe96f036d1bd7e21da3513c97225216e8
test-bench-deps: {}
maintainer: robdockins AT fastmail DOT fm
synopsis: A library of efficent, purely-functional data structures (Core Implementations)
changelog: ''
basic-deps:
EdisonAPI: -any
base: ==4.*
array: -any
containers: -any
mtl: -any
QuickCheck: ! '>=2.8.2 && <3'
all-versions:
- '1.2.1'
- '1.2.1.1'
- '1.2.1.2'
- '1.2.1.3'
- '1.2.2'
- '1.2.2.1'
- '1.3'
- '1.3.1'
author: Chris Okasaki
latest: '1.3.1'
description-type: haddock
description: ! 'This package provides the core Edison data structure implementations,
including multiple sequence, set, bag, and finite map concrete
implementations with various performance characteristics. The
implementations in this package have no dependencies other than those
commonly bundled with Haskell compilers.'
license-name: OtherLicense
| homepage: http://rwd.rdockins.name/edison/home/
changelog-type: ''
hash: 7ba620202975772967209b4a5e2cd918ad0cc5bc96fa470db0f7378378c84a6c
test-bench-deps: {}
maintainer: robdockins AT fastmail DOT fm
synopsis: A library of efficent, purely-functional data structures (Core Implementations)
changelog: ''
basic-deps:
EdisonAPI: ==1.3.*
base: ==4.*
array: -any
containers: -any
mtl: -any
QuickCheck: ! '>=2.8.2 && <3'
all-versions:
- '1.2.1'
- '1.2.1.1'
- '1.2.1.2'
- '1.2.1.3'
- '1.2.2'
- '1.2.2.1'
- '1.3'
- '1.3.1'
- '1.3.1.1'
author: Chris Okasaki
latest: '1.3.1.1'
description-type: haddock
description: ! 'This package provides the core Edison data structure implementations,
including multiple sequence, set, bag, and finite map concrete
implementations with various performance characteristics. The
implementations in this package have no dependencies other than those
commonly bundled with Haskell compilers.'
license-name: OtherLicense
|
Update from Hackage at 2021-10-06T16:29:11Z | homepage: http://tidal.lurk.org/
changelog-type: ''
hash: d2ea5991698ce3ec213140383305db8898ad4612051f4d53c0540a9940929387
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -any
tidal: ! '>=0.9.9'
PortMidi: ! '>=0.1.6.0 && <0.2'
transformers: -any
all-versions:
- 0.0.1
- 0.0.2
- '0.1'
- '0.6'
- '0.8'
- 0.8.2
- '0.9'
- 0.9.1
- 0.9.2
- 0.9.3
- 0.9.4
- 0.9.5.2
- 0.9.9
- 0.9.10
author: Alex McLean
latest: 0.9.10
description-type: haddock
description: MIDI support for Tidal. Supports Volca Keys, Bass and Beats and other
synths. Interface is likely to change significantly.
license-name: GPL-3.0-only
| homepage: http://tidal.lurk.org/
changelog-type: ''
hash: ee6eb143ec18b45a7b8e5c5c0ee3e430d6f0aa15b67e31b9471f375ec46485ed
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
containers: -any
tidal: '>=0.9.9 && <1'
PortMidi: '>=0.1.6.0 && <0.2'
transformers: -any
all-versions:
- 0.0.1
- 0.0.2
- '0.1'
- '0.6'
- '0.8'
- 0.8.2
- '0.9'
- 0.9.1
- 0.9.2
- 0.9.3
- 0.9.4
- 0.9.5.2
- 0.9.9
- 0.9.10
author: Alex McLean
latest: 0.9.10
description-type: haddock
description: MIDI support for Tidal. Supports Volca Keys, Bass and Beats and other
synths. Interface is likely to change significantly.
license-name: GPL-3.0-only
|
Use 0.18, test the scripts in Conda | {% set name = "cwl-utils" %}
{% set version = "0.14" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/cwl-utils-{{ version }}.tar.gz
sha256: 4ef2834aec167523c6079f78e42020aafbc88a697ca77449a3f85a6ddd243095
build:
# Copied from schema-salad
skip: true # [py2k or win]
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
host:
- pip
- python
run:
- cwl-upgrader >=1.2
- packaging
- python
- requests
- schema-salad >=8.2,<9
test:
imports:
- cwl_utils
commands:
- pip check
requires:
- pip
about:
home: https://github.com/common-workflow-language/cwl-utils
license: Apache-2.0
license_file:
- LICENSE
summary: Python utilities for CWL
dev_url: https://github.com/common-workflow-language/cwl-utils/
extra:
recipe-maintainers:
- mr-c
- kinow
| {% set name = "cwl-utils" %}
{% set version = "0.18" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/cwl-utils-{{ version }}.tar.gz
sha256: 43e57318db207310e46726df1081c55ceddebab888e09484d1175f4c9a103384
build:
# Copied from schema-salad
skip: true # [py2k or win]
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
host:
- pip
- python
run:
- cwl-upgrader >=1.2
- packaging
- python
- requests
- schema-salad >=8.2,<9
test:
imports:
- cwl_utils
commands:
- pip check
- cwl-cite-extract --help
- cwl-docker-extract --help
- cwl-expression-refactor --help
- cwl-graph-split --help
- cwl-normalizer --help
requires:
- pip
about:
home: https://github.com/common-workflow-language/cwl-utils
license: Apache-2.0
license_file:
- LICENSE
summary: Python utilities for CWL
dev_url: https://github.com/common-workflow-language/cwl-utils/
extra:
recipe-maintainers:
- mr-c
- kinow
|
Deploy only on the master branch |
machine:
node:
version: 6
dependencies:
pre:
- bundle config without development:production
- npm rebuild node-sass
cache_directories:
- "/node_modules/"
test:
pre:
- npm run build
override:
- npm run test
deployment:
library:
branch: ab/library-deploy
commands:
- npm run build-library
- scripts/deploy-library.sh 18F/cg-style
npm:
tag: /[0-9]+(\.[0-9]+)*/
owner: 18F
commands:
- echo -e "$NPM_USERNAME\n$NPM_PASSWORD\n$NPM_EMAIL" | npm login
- npm run check-publish
|
machine:
node:
version: 6
dependencies:
pre:
- bundle config without development:production
- npm rebuild node-sass
cache_directories:
- "/node_modules/"
test:
pre:
- npm run build
override:
- npm run test
deployment:
library:
branch: master
commands:
- npm run build-library
- scripts/deploy-library.sh 18F/cg-style
npm:
tag: /[0-9]+(\.[0-9]+)*/
owner: 18F
commands:
- echo -e "$NPM_USERNAME\n$NPM_PASSWORD\n$NPM_EMAIL" | npm login
- npm run check-publish
|
Copy Junit test reports to Circle CI test dir |
test:
override:
- mvn clean test jacoco:report
post:
- mvn coveralls:report -DrepoToken=$COVERALLS_REPO_TOKEN
- cp -R ./target/* $CIRCLE_ARTIFACTS/
deployment:
production:
branch: master
commands:
- mvn package
- chmod +x publish.sh
- ./publish.sh |
test:
override:
- mvn clean test jacoco:report
post:
- mvn coveralls:report -DrepoToken=$COVERALLS_REPO_TOKEN
- cp -R ./target/* $CIRCLE_ARTIFACTS/
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
deployment:
production:
branch: master
commands:
- mvn package
- chmod +x publish.sh
- ./publish.sh |
Update from Hackage at 2019-08-17T22:14:16Z | homepage: https://github.com/camfort/verifiable-expressions#readme
changelog-type: ''
hash: 218eedd89025ab8ce5152ad4f770047f7e259a1836736a5a7e6d124f9757b2bf
test-bench-deps: {}
maintainer: madgenhetic@gmail.com
synopsis: An intermediate language for Hoare logic style verification.
changelog: ''
basic-deps:
sbv: ! '>=7.0 && <8'
base: ! '>=4.9 && <5'
union: ! '>=0.1.1 && <0.2'
containers: ! '>=0.5.7 && <0.7'
vinyl: ! '>=0.8.1 && <0.9'
lens: ! '>=4.16.1 && <5'
mtl: ! '>=2.0 && <3'
transformers: ! '>=0.5 && <0.6'
all-versions:
- 0.4.0
- 0.5.0
author: Bradley Hardy
latest: 0.5.0
description-type: haddock
description: A typed intermediate language for Hoare logic style verification. It
defines the intermediate language and combinators to interact it.
license-name: Apache-2.0
| homepage: https://github.com/camfort/verifiable-expressions#readme
changelog-type: ''
hash: 5018b983d82b1f63c4e5700e4517b4698ba51e0d62a92b603093456c8f7c02eb
test-bench-deps: {}
maintainer: madgenhetic@gmail.com
synopsis: An intermediate language for Hoare logic style verification.
changelog: ''
basic-deps:
sbv: ! '>=8.0 && <9'
base: ! '>=4.9 && <5'
union: ! '>=0.1.1 && <0.2'
containers: ! '>=0.5.7 && <0.7'
vinyl: ! '>=0.8.1 && <0.9'
lens: ! '>=4.16.1 && <5'
mtl: ! '>=2.0 && <3'
transformers: ! '>=0.5 && <0.6'
all-versions:
- 0.4.0
- 0.5.0
- 0.6.0
author: Bradley Hardy
latest: 0.6.0
description-type: haddock
description: A typed intermediate language for Hoare logic style verification. It
defines the intermediate language and combinators to interact it.
license-name: Apache-2.0
|
Fix GitHub workflows to run tests on PR | name: Compile project With Maven
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'corretto'
cache: maven
- name: Compile Project With Maven
run: mvn clean test-compile | name: Compile project With Maven
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'corretto'
cache: maven
- name: Run tests
run: mvn clean test
|
Update from Hackage at 2018-02-07T11:09:55Z | homepage: https://github.com/thoughtbot/date-conversions#readme
changelog-type: ''
hash: 6cb8500823bba63d7444b49823672a5228b393c921c383271d977196287b8b32
test-bench-deps:
dates: -any
date-conversions: -any
base: -any
time: -any
hspec: -any
QuickCheck: -any
maintainer: jclayton@thoughtbot.com
synopsis: Date conversions
changelog: ''
basic-deps:
dates: -any
base: ! '>=4.7 && <5'
time: ! '>=1.5 && <2'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Josh Clayton
latest: '0.2.0.0'
description-type: haddock
description: Please see README.md
license-name: MIT
| homepage: https://github.com/thoughtbot/date-conversions#readme
changelog-type: ''
hash: 7182694e1879e378211d8381d613fa60a3b6da2a691de296dada54f552fb53f4
test-bench-deps:
dates: -any
date-conversions: -any
base: -any
time: -any
hspec: -any
QuickCheck: -any
maintainer: jclayton@thoughtbot.com
synopsis: Date conversions
changelog: ''
basic-deps:
dates: -any
base: ! '>=4.7 && <5'
time: ! '>=1.5 && <2'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.3.0.0'
author: Josh Clayton
latest: '0.3.0.0'
description-type: haddock
description: Please see README.md
license-name: MIT
|
Add pull_request to trigger events | name: tests
on: [push]
jobs:
tests:
name: Tests
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest', 'windows-latest', 'macos-latest']
php-versions: ['7.3', '7.4', '8.0']
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Install dependencies
run: composer update --prefer-stable --no-progress
- name: Run tests
run: ./vendor/bin/phpunit
code-cov:
name: Code coverage
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: latest
coverage: xdebug
- name: Install dependencies
run: composer update --prefer-stable --no-progress
- name: Run tests with code coverage
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml
- name: Upload code coverage
run: bash <(curl -s https://codecov.io/bash)
| name: tests
on: [push, pull_request]
jobs:
tests:
name: Tests
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest', 'windows-latest', 'macos-latest']
php-versions: ['7.3', '7.4', '8.0']
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Install dependencies
run: composer update --prefer-stable --no-progress
- name: Run tests
run: ./vendor/bin/phpunit
code-cov:
name: Code coverage
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: latest
coverage: xdebug
- name: Install dependencies
run: composer update --prefer-stable --no-progress
- name: Run tests with code coverage
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml
- name: Upload code coverage
run: bash <(curl -s https://codecov.io/bash)
|
Update to CodeCov action v3 | name: linux
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" -c Release
- name: Codecov
uses: codecov/codecov-action@v2.1.0
with:
fail_ci_if_error: true
verbose: true
| name: linux
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test --no-build --verbosity normal --collect:"XPlat Code Coverage" -c Release
- name: Codecov
uses: codecov/codecov-action@v3.0.0
with:
fail_ci_if_error: true
verbose: true
|
Revise GitHub Actions test config comment | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install graphviz
run: |
sudo apt-get install graphviz
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with nose2
run: |
coverage run -m nose2 tests
coverage lcov -o cover/coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
path-to-lcov: cover/coverage.lcov
github-token: ${{ secrets.GITHUB_TOKEN }}
| # This workflow will install project dependencies and run all tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install graphviz
run: |
sudo apt-get install graphviz
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with nose2
run: |
coverage run -m nose2 tests
coverage lcov -o cover/coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
path-to-lcov: cover/coverage.lcov
github-token: ${{ secrets.GITHUB_TOKEN }}
|
Update FiSSH to 4.1 (41) | Categories:
- Security
License: MIT
AuthorName: Ioan Moldovan
AuthorEmail: ioan@ioanm.ro
WebSite: https://www.ioanm.ro/
SourceCode: https://gitlab.com/ioanm/FiSSH-App
IssueTracker: https://gitlab.com/ioanm/fissh-app/issues
AutoName: FiSSH
RepoType: git
Repo: https://gitlab.com/ioanm/FiSSH-App.git
Builds:
- versionName: '4.0'
versionCode: 40
commit: '4.0'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '4.0'
CurrentVersionCode: 40
| Categories:
- Security
License: MIT
AuthorName: Ioan Moldovan
AuthorEmail: ioan@ioanm.ro
WebSite: https://www.ioanm.ro/
SourceCode: https://gitlab.com/ioanm/FiSSH-App
IssueTracker: https://gitlab.com/ioanm/fissh-app/issues
AutoName: FiSSH
RepoType: git
Repo: https://gitlab.com/ioanm/FiSSH-App.git
Builds:
- versionName: '4.0'
versionCode: 40
commit: '4.0'
subdir: app
gradle:
- yes
- versionName: '4.1'
versionCode: 41
commit: '4.1'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '4.1'
CurrentVersionCode: 41
|
Remove JRuby and MRI 1.9.3 from Travis config | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2
before_script:
- export AWS_ACCESS_KEY_ID=foo
- export AWS_SECRET_ACCESS_KEY=bar
| language: ruby
rvm:
- 2.0.0
- 2.1.0
- rbx-2
before_script:
- export AWS_ACCESS_KEY_ID=foo
- export AWS_SECRET_ACCESS_KEY=bar
|
Update Travis CI config: Drop v0.10, v0.12 & iojs, add v4 & v6 | language: node_js
node_js:
- "node"
- "iojs"
- "0.12"
- "0.10"
| language: node_js
node_js:
- "node"
- "6"
- "4"
|
Create COMPILER env variable and override it in makefile, use GCC5 | language: cpp
compiler:
- clang
- gcc
before_script:
git clone https://github.com/siquel/kaluketju
script:
- if [ "$CXX" == "clang++" ]; then make linux-clang && .build/linux64_clang/bin/unit_testDebug; fi
- if [ "$CXX" == "g++-4.8" ]; then make linux-gcc && .build/linux64_gcc/bin/unit_testDebug; fi
- $CXX --version
branches:
only:
- master
notifications:
email: false
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8 | language: cpp
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5']
env: COMPILER=g++-5
- os: linux
compiler: clang
env: COMPILER=clang++
before_script:
git clone https://github.com/siquel/kaluketju
script:
- if [ "$CXX" == "clang++" ]; then make CXX=$COMPILER linux-clang && .build/linux64_clang/bin/unit_testDebug; fi
- if [ "$CXX" == "g++" ]; then make CXX=$COMPILER linux-gcc && .build/linux64_gcc/bin/unit_testDebug; fi
- $COMPILER --version
branches:
only:
- master
notifications:
email: false |
Add fermium to node versions | language: node_js
node_js:
- node
- lts/erbium
services:
- postgresql
branches:
only:
- master
env: >
NODE_ENV=test
APP_NAME='Express API ES6 Starter'
APP_VERSION='1.0.0'
TEST_APP_PORT='9945'
TEST_DB_NAME='express_test'
TEST_DB_PASSWORD=''
TEST_DB_PORT='5432'
TEST_DB_USER='postgres'
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
before_script:
- cp .env.example .env
- psql -c 'create database express_test;' -U postgres
- yarn migrate
script:
- yarn test:coverage
after_script:
- yarn codecov
| language: node_js
node_js:
- node
- lts/fermium
- lts/erbium
services:
- postgresql
branches:
only:
- master
env: >
NODE_ENV=test
APP_NAME='Express API ES6 Starter'
APP_VERSION='1.0.0'
TEST_APP_PORT='9945'
TEST_DB_NAME='express_test'
TEST_DB_PASSWORD=''
TEST_DB_PORT='5432'
TEST_DB_USER='postgres'
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
before_script:
- cp .env.example .env
- psql -c 'create database express_test;' -U postgres
- yarn migrate
script:
- yarn test:coverage
after_script:
- yarn codecov
|
Revert "Run cucumber and rspec." | rvm:
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
before_install:
- gem update bundler
before_script:
- bundle install --gemfile=examples/rails4_root/Gemfile
- bundle install --gemfile=examples/sinatra_root/Gemfile
script:
- "bundle exec rake"
- "bundle exec spec spec"
branches:
only:
- master
| rvm:
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
before_install:
- gem update bundler
before_script:
- bundle install --gemfile=examples/rails4_root/Gemfile
- bundle install --gemfile=examples/sinatra_root/Gemfile
branches:
only:
- master
|
Add code coverage using codecov | language: python
sudo: required
python:
- "2.7"
- "3.5"
os:
- linux
env:
global:
secure: vemv2pi+y10L/3QkiDTdgbsug2Qv97OUiMjyRw9pYIjDoNhws1jzuKMFJt1YvUNZcROUA1hEkDYDDCmGTXAo7zr+pk+ru9e8h6q9LH+uPZWKgWHUzEyFlLB3wve3fCzeTIqvvSC+87bxYhJg53TrrCyRXBu3jnHoqJKr2RhWwOQ=
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- libnetcdf-dev
install:
- |
if [ ${TRAVIS_OS_NAME} == "linux" ]
then
sudo add-apt-repository --yes ppa:yjwong/cmake
sudo apt-get update
sudo apt-cache search cmake
sudo apt-get remove --yes cmake
sudo apt-get install --yes cmake
export CC=gcc-4.9
export CXX=g++-4.9
fi
script:
- cd ${TRAVIS_BUILD_DIR}
- pip install .
- cd tests
- python -m unittest discover
deploy:
provider: script
script: bash ${TRAVIS_BUILD_DIR}/recipe/deploy.sh
on:
tags: true
| language: python
sudo: required
python:
- "2.7"
- "3.5"
os:
- linux
env:
global:
secure: vemv2pi+y10L/3QkiDTdgbsug2Qv97OUiMjyRw9pYIjDoNhws1jzuKMFJt1YvUNZcROUA1hEkDYDDCmGTXAo7zr+pk+ru9e8h6q9LH+uPZWKgWHUzEyFlLB3wve3fCzeTIqvvSC+87bxYhJg53TrrCyRXBu3jnHoqJKr2RhWwOQ=
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- libnetcdf-dev
before_install:
- |
if [ ${TRAVIS_OS_NAME} == "linux" ]
then
sudo add-apt-repository --yes ppa:yjwong/cmake
sudo apt-get update
sudo apt-cache search cmake
sudo apt-get remove --yes cmake
sudo apt-get install --yes cmake
export CC=gcc-4.9
export CXX=g++-4.9
fi
- pip install codecov
install:
- cd ${TRAVIS_BUILD_DIR}
- pip install .
script:
- cd ${TRAVIS_BUILD_DIR}/tests
- coverage run --include="*chemfiles*" --omit="test*" -m unittest discover
after_success:
- codecov
deploy:
provider: script
script: bash ${TRAVIS_BUILD_DIR}/recipe/deploy.sh
on:
tags: true
|
Remove unsupported python and django version | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# PyPy versions
- "pypy" # PyPy2 2.5.0
- "pypy3" # Pypy3 2.4.0
env:
- DJANGO_VERSION=1.6
- DJANGO_VERSION=1.7
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.9
- DJANGO_VERSION=1.10
install:
- pip install -r requirements.txt
- pip install -q Django==$DJANGO_VERSION
# command to run tests
script:
- python manage.py makemigrations
- python manage.py test
| language: python
python:
- "3.4"
- "3.5"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.9
- DJANGO_VERSION=1.10
install:
- pip install -r requirements.txt
- pip install -q Django==$DJANGO_VERSION
# command to run tests
script:
- python manage.py makemigrations
- python manage.py test
|
Update from Hackage at 2021-02-04T20:47:41Z | homepage: https://www.haskus.org
changelog-type: ''
hash: 3046e9011d4e0990aa70031e50ad75acb87fc8bde975b85a482baf7ccbac5cd6
test-bench-deps:
base: ! '>=4.11 && <5'
doctest: ! '>=0.16'
maintainer: sylvain@haskus.fr
synopsis: Haskus types utility modules
changelog: ''
basic-deps:
base: ! '>=4.11 && <5'
all-versions:
- '1.0'
- '1.1'
- '1.2'
- '1.3'
- 1.3.1
- '1.4'
- 1.4.1
- '1.5'
author: Sylvain Henry
latest: '1.5'
description-type: haddock
description: Haskus types utility modules (Nat, List, etc.)
license-name: BSD-3-Clause
| homepage: https://www.haskus.org
changelog-type: ''
hash: 991c472f4e751e2f0d7aab6ad4220ef151d6160876dcf0511bbf876bbd432020
test-bench-deps:
base: '>=4.11 && <5'
doctest: '>=0.16'
maintainer: sylvain@haskus.fr
synopsis: Haskus types utility modules
changelog: ''
basic-deps:
base: '>=4.11 && <5'
all-versions:
- '1.0'
- '1.1'
- '1.2'
- '1.3'
- 1.3.1
- '1.4'
- 1.4.1
- '1.5'
- 1.5.1
author: Sylvain Henry
latest: 1.5.1
description-type: haddock
description: Haskus types utility modules (Nat, List, etc.)
license-name: BSD-3-Clause
|
Use Travis' new docker archetecture. | language: php
php:
- "hhvm"
before_script:
- composer install --prefer-source
script:
- vendor/bin/phpunit
| sudo: false
language: php
php:
- "hhvm"
before_script:
- composer install --prefer-source
script:
- vendor/bin/phpunit
|
Make sure network is created before stack build | sudo: required
services: docker
language: c
before_install:
# env vars GOOGLEUSER GOOGLEPASSWORD GOAUTHCID GOAUTHCS
- openssl aes-256-cbc -K $encrypted_089d332adc0c_key -iv $encrypted_089d332adc0c_iv
-in secret-emp-pl-site.enc -out secret-emp-pl-site -d
- unset CC
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards
--strip-components=1 -C ~/.local/bin '*/stack'
install:
- cp emp-pl-site_dev_env.sample emp-pl-site_dev_env
- cat secret-emp-pl-site >> emp-pl-site_dev_env
- cp postgres_dev_env.sample postgres_dev_env
- export PGPASS=$(head -c 20 /dev/urandom | sha1sum|head -c 40)
- echo POSTGRES_PASSWORD=$PGPASS >> postgres_dev_env
- echo PGPASS=$PGPASS >> emp-pl-site_dev_env
- stack docker pull
- stack build
- docker-compose up -d postgres selenium
script:
- bash dev-certs/genkey.sh
- stack --no-terminal --install-ghc test
| sudo: required
services: docker
language: c
before_install:
# env vars GOOGLEUSER GOOGLEPASSWORD GOAUTHCID GOAUTHCS
- openssl aes-256-cbc -K $encrypted_089d332adc0c_key -iv $encrypted_089d332adc0c_iv
-in secret-emp-pl-site.enc -out secret-emp-pl-site -d
- unset CC
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards
--strip-components=1 -C ~/.local/bin '*/stack'
install:
- cp emp-pl-site_dev_env.sample emp-pl-site_dev_env
- cat secret-emp-pl-site >> emp-pl-site_dev_env
- cp postgres_dev_env.sample postgres_dev_env
- export PGPASS=$(head -c 20 /dev/urandom | sha1sum|head -c 40)
- echo POSTGRES_PASSWORD=$PGPASS >> postgres_dev_env
- echo PGPASS=$PGPASS >> emp-pl-site_dev_env
- stack docker pull
- docker-compose up -d postgres
- stack build
- docker-compose up -d selenium
script:
- bash dev-certs/genkey.sh
- stack --no-terminal --install-ghc test
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.