Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add Node.js 0.7 to Travis-CI config. | language: node_js
node_js:
- 0.4
- 0.6
notifications:
email:
- stephan@angrybytes.com
| language: node_js
node_js:
- 0.4
- 0.6
- 0.7
notifications:
email:
- stephan@angrybytes.com
|
Remove host/run dependencies coming from the compiler | {% set name = "type_safe" %}
{% set version = "0.2.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/foonathan/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz
sha256: 34d97123fb9bca04a333565c4a2498425d602ec0c759de4be1b8cfae77d05823
build:
number: 0
requirements:
build:
- cmake
# type_safe is header-only but its cmake setup is looking for a compiler
- {{ compiler('cxx') }}
- make # [not win]
test:
commands:
- test -f $PREFIX/include/type_safe/optional.hpp # [unix]
- if not exist %LIBRARY_INC%\type_safe\optional.hpp exit 1 # [win]
about:
home: https://github.com/foonathan/type_safe
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'zero overhead abstractions that use the C++ type system to prevent bugs'
doc_url: https://type_safe.foonathan.net/
dev_url: https://github.com/foonathan/type_safe
extra:
recipe-maintainers:
- saraedum
| {% set name = "type_safe" %}
{% set version = "0.2.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/foonathan/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz
sha256: 34d97123fb9bca04a333565c4a2498425d602ec0c759de4be1b8cfae77d05823
build:
number: 0
requirements:
build:
- cmake
# type_safe is header-only but its cmake setup is looking for a compiler
- {{ compiler('cxx') }}
- make # [not win]
ignore_run_exports_from:
# Since this does not contain any compiled code, we do not need any
# compatibility with the compiler used at runtime.
- {{ compiler('cxx') }}
test:
commands:
- test -f $PREFIX/include/type_safe/optional.hpp # [unix]
- if not exist %LIBRARY_INC%\type_safe\optional.hpp exit 1 # [win]
about:
home: https://github.com/foonathan/type_safe
license: MIT
license_family: MIT
license_file: LICENSE
summary: 'zero overhead abstractions that use the C++ type system to prevent bugs'
doc_url: https://type_safe.foonathan.net/
dev_url: https://github.com/foonathan/type_safe
extra:
recipe-maintainers:
- saraedum
|
Use "dummy" email backend for CI | ---
name: Django CI
on: [push, pull_request]
defaults:
run:
working-directory: src
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: smokeyfeet
POSTGRES_USER: smokeyfeet
POSTGRES_PASSWORD: smokeyfeet
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
env:
SF_DB_URL: postgres://smokeyfeet:smokeyfeet@localhost:5432/smokeyfeet
SF_DEFAULT_FROM_EMAIL: foo@example.com
SF_SECRET_KEY: my-ci-secret-key
run: |
make test
| ---
name: Django CI
on: [push, pull_request]
defaults:
run:
working-directory: src
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: smokeyfeet
POSTGRES_USER: smokeyfeet
POSTGRES_PASSWORD: smokeyfeet
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
env:
SF_DB_URL: postgres://smokeyfeet:smokeyfeet@localhost:5432/smokeyfeet
SF_DEFAULT_FROM_EMAIL: foo@example.com
SF_EMAIL_BACKEND: django.core.mail.backends.dummy.EmailBackend
SF_SECRET_KEY: my-ci-secret-key
run: |
make test
|
Use more recent Boost on AppVeyor | # https://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: Stable
- nodejs_version: LTS
- nodejs_version: '8'
- nodejs_version: '6'
install:
# Remove large directories to stay below AppVeyor’s disk usage quota.
- rd C:\cygwin /s /q
- rd C:\Qt /s /q
# Install Node.js.
- ps: Install-Product node $env:nodejs_version x64
# Install Csound; see https://www.appveyor.com/docs/how-to/download-file.
- ps: Start-FileDownload 'https://github.com/csound/csound/releases/download/6.12.0/Csound6.12.0-Windows_x64-installer.exe'
- ps: Start-Process 'Csound6.12.0-Windows_x64-installer.exe' -ArgumentList '/verySilent', '/noRestart' -Wait
- set PATH=%PATH%;%ProgramFiles%\Csound6_x64\bin
# Install csound-api.
- set CL=/I"C:\Libraries\boost" /I"%ProgramFiles%\Csound6_x64\include"
- set LINK="%ProgramFiles%\Csound6_x64\lib\csound64.lib"
- npm install csound-api
test_script:
- npm --global install jasmine
- npm install dedent-js
- cd lib\csound-parser
- jasmine
build: off
| # https://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: Stable
- nodejs_version: LTS
- nodejs_version: '8'
- nodejs_version: '6'
install:
# Remove large directories to stay below AppVeyor’s disk usage quota.
- rd C:\cygwin /s /q
- rd C:\Qt /s /q
# Install Node.js.
- ps: Install-Product node $env:nodejs_version x64
# Install Csound; see https://www.appveyor.com/docs/how-to/download-file.
- ps: Start-FileDownload 'https://github.com/csound/csound/releases/download/6.12.0/Csound6.12.0-Windows_x64-installer.exe'
- ps: Start-Process 'Csound6.12.0-Windows_x64-installer.exe' -ArgumentList '/verySilent', '/noRestart' -Wait
- set PATH=%PATH%;%ProgramFiles%\Csound6_x64\bin
# Install csound-api.
- set CL=/I"C:\Libraries\boost_1_67_0" /I"%ProgramFiles%\Csound6_x64\include"
- set LINK="%ProgramFiles%\Csound6_x64\lib\csound64.lib"
- npm install csound-api
test_script:
- npm --global install jasmine
- npm install dedent-js
- cd lib\csound-parser
- jasmine
build: off
|
Make the cmake working directory more specific | # This is a basic workflow to help you get started with Actions
name: dkm-ci
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: [push]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
cxx: [clang++, g++]
include:
- cxx: clang++
cc: clang
- cxx: g++
cc: gcc
steps:
- name: Install dependencies
run: sudo apt-get install libopencv-dev
- name: Create build directory
run: mkdir build
- name: Configure CMake build
working-directory: build
run: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} -DCMAKE_C_COMPILER=${{ matrix.cc }} .. && make -j$(nproc --all)
- name: Run tests
run: ./build/dkm_tests
- name: Run benchmarks
run: ./build/dkm_bench
| # This is a basic workflow to help you get started with Actions
name: dkm-ci
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on: [push]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
cxx: [clang++, g++]
include:
- cxx: clang++
cc: clang
- cxx: g++
cc: gcc
steps:
- name: Install dependencies
run: sudo apt-get install libopencv-dev
- name: Create build directory
run: mkdir build
- name: Configure CMake build
working-directory: ./build
run: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} -DCMAKE_C_COMPILER=${{ matrix.cc }} .. && make -j$(nproc --all)
- name: Run tests
run: ./build/dkm_tests
- name: Run benchmarks
run: ./build/dkm_bench
|
Use system serviceAccount for kube-metrics-adapter | apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
labels:
application: kube-metrics-adapter
name: kube-metrics-adapter
namespace: kube-system
spec:
replicas: 1
selector:
matchLabels:
application: kube-metrics-adapter
template:
metadata:
annotations:
iam.amazonaws.com/role: {{ .LocalID}}-kube-metrics-adapter
labels:
application: kube-metrics-adapter
spec:
containers:
- args:
- --prometheus-server=http://prometheus.kube-system.svc.cluster.local
- --skipper-ingress-metrics
- --aws-external-metrics
env:
- name: AWS_REGION
value: eu-central-1
image: registry.opensource.zalan.do/teapot/kube-metrics-adapter:master-3
imagePullPolicy: Always
name: kube-metrics-adapter
resources:
limits:
memory: 100Mi
requests:
cpu: 100m
memory: 100Mi
| apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
labels:
application: kube-metrics-adapter
name: kube-metrics-adapter
namespace: kube-system
spec:
replicas: 1
selector:
matchLabels:
application: kube-metrics-adapter
template:
metadata:
annotations:
iam.amazonaws.com/role: {{ .LocalID}}-kube-metrics-adapter
labels:
application: kube-metrics-adapter
spec:
serviceAccountName: system
containers:
- args:
- --prometheus-server=http://prometheus.kube-system.svc.cluster.local
- --skipper-ingress-metrics
- --aws-external-metrics
env:
- name: AWS_REGION
value: eu-central-1
image: registry.opensource.zalan.do/teapot/kube-metrics-adapter:master-3
imagePullPolicy: Always
name: kube-metrics-adapter
resources:
limits:
memory: 100Mi
requests:
cpu: 100m
memory: 100Mi
|
Update rate limit to > 1 per second | - type: replace
path: /instance_groups/name=api/jobs/name=cloud_controller_ng/properties/cc/rate_limiter?
value:
enabled: true
general_limit: ((cc_hourly_rate_limit))
reset_interval_in_minutes: 60
unauthenticated_limit: 1800
| - type: replace
path: /instance_groups/name=api/jobs/name=cloud_controller_ng/properties/cc/rate_limiter?
value:
enabled: true
general_limit: ((cc_hourly_rate_limit))
reset_interval_in_minutes: 60
unauthenticated_limit: 3700
|
Update from Hackage at 2019-04-17T15:49:51Z | homepage: ''
changelog-type: ''
hash: 63cb626e0ef21f501311d147c9606381a909b06263ffaa930ed9cbce9f6155ba
test-bench-deps: {}
maintainer: ghc-devs@haskell.org
synopsis: |-
Shared functionality between GHC and the @template-haskell@
library
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.13'
all-versions:
- 8.0.1
- 8.0.2
- 8.2.1
- 8.2.2
- 8.4.1
- 8.4.2
- 8.4.3
- 8.6.1
- 8.6.4
author: ''
latest: 8.6.4
description-type: haddock
description: |-
This library contains various bits shared between the @ghc@ and
@template-haskell@ libraries.
This package exists to ensure that @template-haskell@ has a
minimal set of transitive dependencies, since it is intended to
be depended upon by user code.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: 63cb626e0ef21f501311d147c9606381a909b06263ffaa930ed9cbce9f6155ba
test-bench-deps: {}
maintainer: ghc-devs@haskell.org
synopsis: |-
Shared functionality between GHC and the @template-haskell@
library
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.13'
all-versions:
- 8.0.1
- 8.0.2
- 8.2.1
- 8.2.2
- 8.4.1
- 8.4.2
- 8.4.3
- 8.4.4
- 8.6.1
- 8.6.4
author: ''
latest: 8.6.4
description-type: haddock
description: |-
This library contains various bits shared between the @ghc@ and
@template-haskell@ libraries.
This package exists to ensure that @template-haskell@ has a
minimal set of transitive dependencies, since it is intended to
be depended upon by user code.
license-name: BSD-3-Clause
|
Build with Node.js 16 on GitHub Actions. | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,15.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install --no-package-lock
- name: npm ls
run: npm ls
- name: npm install nyc, prove, codecov
run: npm install -g nyc prove codecov
- name: npm test
run: nyc npm test
env:
CI: true
- name: generate codecov report
run: nyc report --reporter=text-lcov > coverage.lcov
- name: ship coverage to codecov
run: codecov --branch=${GITHUB_REF##*/}
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
| name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install --no-package-lock
- name: npm ls
run: npm ls
- name: npm install nyc, prove, codecov
run: npm install -g nyc prove codecov
- name: npm test
run: nyc npm test
env:
CI: true
- name: generate codecov report
run: nyc report --reporter=text-lcov > coverage.lcov
- name: ship coverage to codecov
run: codecov --branch=${GITHUB_REF##*/}
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
|
Update Save to… to 1.4 (4) | Categories:
- Navigation
License: CDDL-1.0
SourceCode: https://notabug.org/Umnik/SaveTo
IssueTracker: https://notabug.org/Umnik/SaveTo/issues
AutoName: Save to…
RepoType: git
Repo: https://notabug.org/Umnik/SaveTo.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
subdir: app
gradle:
- yes
- versionName: '1.3'
versionCode: 3
commit: '1.3'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.3'
CurrentVersionCode: 3
| Categories:
- Navigation
License: CDDL-1.0
SourceCode: https://notabug.org/Umnik/SaveTo
IssueTracker: https://notabug.org/Umnik/SaveTo/issues
AutoName: Save to…
RepoType: git
Repo: https://notabug.org/Umnik/SaveTo.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
subdir: app
gradle:
- yes
- versionName: '1.3'
versionCode: 3
commit: '1.3'
subdir: app
gradle:
- yes
- versionName: '1.4'
versionCode: 4
commit: '1.4'
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.4'
CurrentVersionCode: 4
|
Update from Hackage at 2021-03-14T21:29:28Z | homepage: http://hub.darcs.net/thielema/lapack-ffi/
changelog-type: ''
hash: 582283c5ad755287d1b81cb4b7679da03d84a3d07f0efc6974499eeb1ef4c2fd
test-bench-deps: {}
maintainer: Henning Thielemann <haskell@henning-thielemann.de>
synopsis: Auto-generated interface to Fortran LAPACK
changelog: ''
basic-deps:
netlib-ffi: ! '>=0.0 && <0.2'
base: ! '>=4.5 && <5'
all-versions:
- '0.0'
- 0.0.1
- 0.0.2
author: Henning Thielemann <haskell@henning-thielemann.de>
latest: 0.0.2
description-type: haddock
description: ! 'LAPACK is a package for efficient numerically robust linear algebra.
The original implementation is written in FORTRAN.
This is an automatically generated low-level wrapper.
We provide bindings to functions of all variants
for @Float@, @Double@, @Complex Float@ and @Complex Double@.
We do not use TemplateHaskell nor HSC nor CHS,
but instead Haskell 98 code
generated by the custom @lapack-ffi-tools@ package.'
license-name: BSD-3-Clause
| homepage: https://hub.darcs.net/thielema/lapack-ffi/
changelog-type: ''
hash: a322100844635aa93a56cff299c14abec62eb27cc6423a1761d1f558639c340b
test-bench-deps: {}
maintainer: Henning Thielemann <haskell@henning-thielemann.de>
synopsis: Auto-generated interface to Fortran LAPACK
changelog: ''
basic-deps:
netlib-ffi: '>=0.0 && <0.2'
base: '>=4.5 && <5'
all-versions:
- '0.0'
- 0.0.1
- 0.0.2
- 0.0.3
author: Henning Thielemann <haskell@henning-thielemann.de>
latest: 0.0.3
description-type: haddock
description: |-
LAPACK is a package for efficient numerically robust linear algebra.
The original implementation is written in FORTRAN.
This is an automatically generated low-level wrapper.
We provide bindings to functions of all variants
for @Float@, @Double@, @Complex Float@ and @Complex Double@.
We do not use TemplateHaskell nor HSC nor CHS,
but instead Haskell 98 code
generated by the custom @lapack-ffi-tools@ package.
license-name: BSD-3-Clause
|
Test colorguard on claripy pushes | before_script:
- angr-test sync hard
### local
claripy:
script: "angr-test claripy"
tags: [angr]
lint:
script: "angr-test lint"
tags: [angr]
### first level
simuvex:
script: "angr-test simuvex"
tags: [angr]
angr:
script: "angr-test angr"
tags: [angr]
fidget:
script: "angr-test fidget"
tags: [angr]
angrop:
script: "angr-test angrop"
tags: [angr]
rex:
script: "angr-test rex"
tags: [angr]
pwnrex:
script: "angr-test pwnrex"
tags: [angr]
docs:
script: "angr-test docs"
tags: [angr]
patcherex:
script: "angr-test patcherex"
tags: [angr]
### other levels
tracer:
script: "angr-test tracer"
tags: [angr]
topsecret:
script: "angr-test top-secret"
tags: [angr]
driller:
script: "angr-test driller"
tags: [angr]
| before_script:
- angr-test sync hard
### local
claripy:
script: "angr-test claripy"
tags: [angr]
lint:
script: "angr-test lint"
tags: [angr]
### first level
simuvex:
script: "angr-test simuvex"
tags: [angr]
angr:
script: "angr-test angr"
tags: [angr]
fidget:
script: "angr-test fidget"
tags: [angr]
angrop:
script: "angr-test angrop"
tags: [angr]
rex:
script: "angr-test rex"
tags: [angr]
colorguard:
script: "angr-test colorguard"
tags: [angr]
pwnrex:
script: "angr-test pwnrex"
tags: [angr]
docs:
script: "angr-test docs"
tags: [angr]
patcherex:
script: "angr-test patcherex"
tags: [angr]
### other levels
tracer:
script: "angr-test tracer"
tags: [angr]
topsecret:
script: "angr-test top-secret"
tags: [angr]
driller:
script: "angr-test driller"
tags: [angr]
|
Add jdk11 for gitlab ci | stages:
- build
- test
variables:
MAVEN_CLI_OPTS: "--batch-mode"
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
cache:
paths:
- .m2/repository/
build:jdk8:
image: maven:3-jdk-8-alpine
stage: build
script:
- mvn $MAVEN_CLI_OPTS compile
test:jdk8:
image: maven:3-jdk-8-alpine
stage: test
script:
- mvn $MAVEN_CLI_OPTS test
build:jdk9:
image: maven:3-jdk-9-slim
stage: build
script:
- mvn $MAVEN_CLI_OPTS compile
test:jdk9:
image: maven:3-jdk-9-slim
stage: test
script:
- mvn $MAVEN_CLI_OPTS test
build:jdk10:
image: maven:3-jdk-10-slim
stage: build
script:
- mvn $MAVEN_CLI_OPTS compile
| stages:
- build
- test
variables:
MAVEN_CLI_OPTS: "--batch-mode"
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
cache:
paths:
- .m2/repository/
build:jdk8:
image: maven:3-jdk-8-alpine
stage: build
script:
- mvn $MAVEN_CLI_OPTS compile
test:jdk8:
image: maven:3-jdk-8-alpine
stage: test
script:
- mvn $MAVEN_CLI_OPTS test
build:jdk9:
image: maven:3-jdk-9-slim
stage: build
script:
- mvn $MAVEN_CLI_OPTS compile
test:jdk9:
image: maven:3-jdk-9-slim
stage: test
script:
- mvn $MAVEN_CLI_OPTS test
build:jdk10:
image: maven:3-jdk-10-slim
stage: build
script:
- mvn $MAVEN_CLI_OPTS compile
build:jdk11:
image: maven:3-jdk-11-slim
stage: build
script:
- mvn $MAVEN_CLI_OPTS compile
test:jdk11:
image: maven:3-jdk-11-slim
stage: test
script:
- mvn $MAVEN_CLI_OPTS test
|
Add descriptor file as artifacts for test | variables:
DOCKER_DRIVER: overlay2
GIT_DEPTH: "3"
stages:
- build
.general:
only: [merge_requests]
retry:
max: 2
when:
- runner_system_failure
- stuck_or_timeout_failure
# variables:
# CI_DEBUG_TRACE: "true"
native-build:
extends: .general
stage: build
image: registry.orfeo-toolbox.org/gbonnefille/otb-build-env/otb-ubuntu-native:18.04
script:
- ctest -VV -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-18.04-gcc
shark-build:
extends: .general
stage: build
image: registry.orfeo-toolbox.org/gbonnefille/otb-build-env/otb-ubuntu-shark:18.04
script:
- ctest -VV -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-18.04-llvm-shark
| variables:
DOCKER_DRIVER: overlay2
GIT_DEPTH: "3"
stages:
- build
.general:
only: [merge_requests]
retry:
max: 2
when:
- runner_system_failure
- stuck_or_timeout_failure
# variables:
# CI_DEBUG_TRACE: "true"
native-build:
extends: .general
stage: build
image: registry.orfeo-toolbox.org/gbonnefille/otb-build-env/otb-ubuntu-native:18.04
script:
- ctest -VV -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-18.04-gcc
shark-build:
extends: .general
stage: build
image: registry.orfeo-toolbox.org/gbonnefille/otb-build-env/otb-ubuntu-shark:18.04
script:
- ctest -VV -S CI/main_ci.cmake -DIMAGE_NAME:string=ubuntu-18.04-llvm-shark
artifacts:
paths:
-install/share/otb/description/
expire_in: 1 week
|
Change slug on docker hub | fs:
image: tianon/true
volumes:
- ./nginx-certs:/etc/nginx/ssl:rw
- ./nginx-logs:/etc/nginx/logs:rw
ui:
image: caalle/cmuii
environment:
- VIRTUAL_HOST=beta-cm.dina-web.net
- VIRTUAL_PORT=443
- VIRTUAL_PROTO=https
- CERT_NAME=shared
volumes_from:
- fs | fs:
image: tianon/true
volumes:
- ./nginx-certs:/etc/nginx/ssl:rw
- ./nginx-logs:/etc/nginx/logs:rw
ui:
image: dina/collections-ui
environment:
- VIRTUAL_HOST=beta-cm.dina-web.net
- VIRTUAL_PORT=443
- VIRTUAL_PROTO=https
- CERT_NAME=shared
volumes_from:
- fs |
Disable SwiftLint rule for implicit_return since we still support Swift 4.2 | disabled_rules: # rule identifiers to exclude from running
- line_length
- nesting
- identifier_name
- large_tuple
- file_length
statement_position:
statement_mode: uncuddled_else
function_body_length:
- 75 # warning
opt_in_rules:
- anyobject_protocol
- identical_operands
- implicit_return
- last_where
- legacy_random
- operator_usage_whitespace
- redundant_objc_attribute
- sorted_imports
- static_operator
- toggle_bool
- unused_control_flow_label
- vertical_whitespace
trailing_comma:
mandatory_comma: true
| disabled_rules: # rule identifiers to exclude from running
- line_length
- nesting
- identifier_name
- large_tuple
- file_length
- implicit_return # Re-enable when we drop support for Swift 4.2
statement_position:
statement_mode: uncuddled_else
function_body_length:
- 75 # warning
opt_in_rules:
- anyobject_protocol
- identical_operands
- implicit_return
- last_where
- legacy_random
- operator_usage_whitespace
- redundant_objc_attribute
- sorted_imports
- static_operator
- toggle_bool
- unused_control_flow_label
- vertical_whitespace
trailing_comma:
mandatory_comma: true
|
ADD Kibana to the Packetbeat HTTP and fix the Zipkin port | packetbeat.interfaces.device: any
packetbeat.flows:
timeout: 30s
period: 10s
packetbeat.protocols:
- type: icmp
enabled: true
- type: dns
ports: [53]
- type: http
ports: [80, 8080, 8081, 8082]
real_ip_header: "X-Forwarded-For"
name: "{{ inventory_hostname }}"
tags: ["{{ env }}", "lightsail"]
processors:
- add_cloud_metadata: ~
- add_host_metadata: ~
- drop_event:
when:
or:
# Exclude traces from Zipkin
- contains.path: "/api/v"
# Exclude Jolokia calls
- contains.path: "/jolokia/?"
# Exclude pinging metrics
- equals.path: "/metrics"
# Exclude pinging health
- equals.path: "/health"
xpack.monitoring.enabled: true
output.elasticsearch:
hosts: ["{{ elasticsearch_host }}"]
username: "{{ elasticsearch_user }}"
password: "{{ elasticsearch_password }}"
setup:
kibana:
host: "{{ kibana_host }}"
username: "{{ elasticsearch_user }}"
password: "{{ elasticsearch_password }}"
dashboards.enabled: true
| packetbeat.interfaces.device: any
packetbeat.flows:
timeout: 30s
period: 10s
packetbeat.protocols:
- type: icmp
enabled: true
- type: dns
ports: [53]
- type: http
ports: [80, 5601, 8080, 8081, 8200]
real_ip_header: "X-Forwarded-For"
name: "{{ inventory_hostname }}"
tags: ["{{ env }}", "lightsail"]
processors:
- add_cloud_metadata: ~
- add_host_metadata: ~
- drop_event:
when:
or:
# Exclude traces from Zipkin
- contains.path: "/api/v"
# Exclude Jolokia calls
- contains.path: "/jolokia/?"
# Exclude pinging metrics
- equals.path: "/metrics"
# Exclude pinging health
- equals.path: "/health"
xpack.monitoring.enabled: true
output.elasticsearch:
hosts: ["{{ elasticsearch_host }}"]
username: "{{ elasticsearch_user }}"
password: "{{ elasticsearch_password }}"
setup:
kibana:
host: "{{ kibana_host }}"
username: "{{ elasticsearch_user }}"
password: "{{ elasticsearch_password }}"
dashboards.enabled: true
|
Allow pypy builds to fail (some weird flake8 issue) | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
matrix:
allow_failures:
- python: "3.2"
- python: "3.3"
install:
- uname -a
- sudo apt-get update -qq
- sudo apt-get install -qq curl protobuf-compiler libprotobuf-dev libncurses5 libc6
- sudo sh -c "curl -k https://raw.github.com/alavrik/piqi-binary/master/Linux-x86_64/piqi > /usr/bin/piqi"
- sudo chmod +x /usr/bin/piqi
- pip install --upgrade https://bitbucket.org/logilab/astroid/get/5ed6266cab78.zip
- if [[ ${TRAVIS_PYTHON_VERSION:0:1} == '3' ]];
then pip install -r requirements-dev-py3k.txt;
else pip install -r requirements-dev-py2.txt;
fi;
- python setup.py build
- python setup.py install
script: make test && make check
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
matrix:
allow_failures:
- python: "3.2"
- python: "3.3"
- python: "pypy"
install:
- uname -a
- sudo apt-get update -qq
- sudo apt-get install -qq curl protobuf-compiler libprotobuf-dev libncurses5 libc6
- sudo sh -c "curl -k https://raw.github.com/alavrik/piqi-binary/master/Linux-x86_64/piqi > /usr/bin/piqi"
- sudo chmod +x /usr/bin/piqi
- pip install --upgrade https://bitbucket.org/logilab/astroid/get/5ed6266cab78.zip
- if [[ ${TRAVIS_PYTHON_VERSION:0:1} == '3' ]];
then pip install -r requirements-dev-py3k.txt;
else pip install -r requirements-dev-py2.txt;
fi;
- python setup.py build
- python setup.py install
script: make test && make check
|
Use new TravisCI container infrastructure | language: ruby
cache: bundler
rvm:
- 2.2.1
env:
- DB=postgresql
before_install:
- 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc'
script:
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- bundle exec rake
before_script:
- cp config/database.travis.yml config/database.yml
- psql -c 'create database infoeducatie_test' -U postgres
addons:
code_climate:
repo_token: ea6c130d1191a255b2ecdefc0a0bafc07b62ede5d3e60b13c13192adc0a34147
notifications:
slack:
secure: PeXzkhKooZNcgBX7oPxDDKP7vVOToXTS9h1be+Go/C7HcfXkX+gqoFi/RYBGkkS6hRXmnnJIqMNS1rt839+GndW8KiUwvqZ4o41uJeXJd0OFN7743t8f8KvFOUz/BQGkLF240+400oSy5fPAgx+gUKcKAebCkm//efFof2w5FPM=
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.1
env:
- DB=postgresql
before_install:
- 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc'
script:
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- bundle exec rake
before_script:
- cp config/database.travis.yml config/database.yml
- psql -c 'create database infoeducatie_test' -U postgres
addons:
code_climate:
repo_token: ea6c130d1191a255b2ecdefc0a0bafc07b62ede5d3e60b13c13192adc0a34147
notifications:
slack:
secure: PeXzkhKooZNcgBX7oPxDDKP7vVOToXTS9h1be+Go/C7HcfXkX+gqoFi/RYBGkkS6hRXmnnJIqMNS1rt839+GndW8KiUwvqZ4o41uJeXJd0OFN7743t8f8KvFOUz/BQGkLF240+400oSy5fPAgx+gUKcKAebCkm//efFof2w5FPM=
|
Update bundler before installing gems. | language: ruby
dist: trusty
sudo: false
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
- jruby-1.7.26
- jruby-9.1.12.0
- jruby-head
- rbx-3.84
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
dist: trusty
sudo: false
before_install:
- gem update bundler
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
- jruby-1.7.26
- jruby-9.1.12.0
- jruby-head
- rbx-3.84
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
|
Add nbconvert dependencies to TravisCI config | # http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
before_install:
- easy_install -q pyzmq
install:
- python setup.py install -q
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi
| # http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
before_install:
- easy_install -q pyzmq
- easy_install pygments
- easy_install jinja2
- easy_install markdown
- easy_install sphinx
install:
- python setup.py install -q
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi
|
Fix whitespace in YAML: tabs no longer allowed | language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
| language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls |
Use Node.js 0.10 for tests. | language: node_js
node_js:
- 0.8
branches:
only:
- master
before_install:
- npm install -gq grunt-cli bower coveralls
- bower install
| language: node_js
node_js:
- 0.10
branches:
only:
- master
before_install:
- npm install -gq grunt-cli bower coveralls
- bower install
|
Put all scripts in script phase | language: node_js
node_js:
- "6"
install:
- npm install
before_script:
- npm test
script:
- npm build
- npm rename-d-ts
deploy:
- npm publish | language: node_js
node_js:
- "6"
install:
- npm install
script:
- npm test
- npm build
- npm rename-d-ts
- npm publish |
Update from Hackage at 2019-07-19T19:20:09Z | homepage: https://github.com/haskell-trasa/trasa
changelog-type: ''
hash: 8750d1a1c621f4dcea65c461d20803eb97d68306a68cc8c676b18cc0d48437e5
test-bench-deps: {}
maintainer: |-
Andrew Martin <andrew.thaddeus@gmail.com>
Kyle McKean <mckean.kylej@gmail.com>
chessai <chessai1996@gmail.com>
synopsis: Type safe web server
changelog: ''
basic-deps:
bytestring: ==0.10.*
wai: ==3.2.2.*
case-insensitive: ==1.2.*
base: ! '>=4.9 && <5'
trasa: ==0.4.*
text: ==1.2.*
containers: ! '>=0.5 && <0.7'
mtl: ==2.2.*
wai-extra: -any
http-types: ! '>=0.9'
http-media: ! '>=0.6 && <0.8'
all-versions:
- '0.1'
- '0.2'
- '0.4'
- 0.5.3
author: |-
Andrew Martin
Kyle McKean
latest: 0.5.3
description-type: haddock
description: WAI integration for trasa
license-name: MIT
| homepage: https://github.com/haskell-trasa/trasa
changelog-type: ''
hash: 9a4171440953c59e4c14d826b0be499bd37905149a15fcb8ead451a4bf4e0226
test-bench-deps: {}
maintainer: |-
Andrew Martin <andrew.thaddeus@gmail.com>
Kyle McKean <mckean.kylej@gmail.com>
chessai <chessai1996@gmail.com>
synopsis: Type safe web server
changelog: ''
basic-deps:
bytestring: ==0.10.*
wai: ==3.2.2.*
case-insensitive: ==1.2.*
base: ! '>=4.9 && <5'
trasa: ==0.4.*
text: ==1.2.*
containers: ! '>=0.5 && <0.7'
mtl: ==2.2.*
http-types: ! '>=0.9'
http-media: ! '>=0.6 && <0.8'
all-versions:
- '0.1'
- '0.2'
- '0.4'
- 0.5.3
- 0.5.4
author: |-
Andrew Martin
Kyle McKean
latest: 0.5.4
description-type: haddock
description: WAI integration for trasa
license-name: MIT
|
Remove quotes from Travis CI | language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
script: "bundle exec rspec spec"
before_install: "ruby ./script/setup_build"
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
script: bundle exec rspec spec
before_install: ruby ./script/setup_build
|
Use phpunit from vendors directory | language: php
php:
- 5.6
- '7'
install: composer install --dev
script: phpunit
| language: php
php:
- 5.6
- '7'
install: composer install --dev
script: vendor/bin/phpunit
|
Use Ruby 2.2.4 instead of 2.2 | language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- ruby-head
gemfile:
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/edge.gemfile
notifications:
email: false
before_install:
- gem install bundler
matrix:
fast_finish: true
exclude:
- rvm: 1.9.3
gemfile: gemfiles/edge.gemfile
- rvm: 2.0
gemfile: gemfiles/edge.gemfile
- rvm: 2.1
gemfile: gemfiles/edge.gemfile
allow_failures:
- rvm: ruby-head
- gemfile: gemfiles/edge.gemfile
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2.4
- ruby-head
gemfile:
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/edge.gemfile
notifications:
email: false
before_install:
- gem install bundler
matrix:
fast_finish: true
exclude:
- rvm: 1.9.3
gemfile: gemfiles/edge.gemfile
- rvm: 2.0
gemfile: gemfiles/edge.gemfile
- rvm: 2.1
gemfile: gemfiles/edge.gemfile
allow_failures:
- rvm: ruby-head
- gemfile: gemfiles/edge.gemfile
|
Allow builds on feature, bugfix & release branches | language: php
addons:
apt:
packages:
- ant
php:
- 7.2
- 7.3
- 7.4
matrix:
allow_failures:
- php: 7.3
- php: 7.4
cache:
directories:
- ~/.composer/cache/files
before_script:
- phpenv config-add travis.php.ini
- composer install --no-interaction
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
- yarn install
- yarn encore production
after_failure:
- cat /home/travis/build/SURFnet/sp-dashboard/var/logs/test.log
script:
- ant
branches:
only:
- develop
- master
- feature/php72-support | language: php
addons:
apt:
packages:
- ant
php:
- 7.2
- 7.3
- 7.4
matrix:
allow_failures:
- php: 7.3
- php: 7.4
cache:
directories:
- ~/.composer/cache/files
before_script:
- phpenv config-add travis.php.ini
- composer install --no-interaction
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
- yarn install
- yarn encore production
after_failure:
- cat /home/travis/build/SURFnet/sp-dashboard/var/logs/test.log
script:
- ant
branches:
only:
- develop
- master
- /^feature\/(.*)$/
- /^bugfix\/(.*)$/
- /^release\/(.*)$/ |
Build the unit tests on Travis CI | language: cpp
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y g++ libtool automake autoconf libgl1-mesa-dev libglu1-mesa-dev libsdl1.2-dev libsdl-sound1.2-dev libcurl3-dev libc-ares-dev zlib1g-dev libncurses-dev make
- git clone git://github.com/cpputest/cpputest.git
- cd cpputest/cpputest_build
- autoreconf .. -i
- ../configure
- sudo make install
- cd ../..
install:
- ./autogen.sh -v
- ./configure --enable-debug
- make
script:
- ./tests/unittests
| language: cpp
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y g++ libtool automake autoconf libgl1-mesa-dev libglu1-mesa-dev libsdl1.2-dev libsdl-sound1.2-dev libcurl3-dev libc-ares-dev zlib1g-dev libncurses-dev make
- git clone git://github.com/cpputest/cpputest.git
- cd cpputest/cpputest_build
- autoreconf .. -i
- ../configure
- sudo make install
- cd ../..
install:
- ./autogen.sh -v
- ./configure --enable-debug
- make
- make check
script:
- ./tests/unittests
|
Add Node versions for Travis | language: node_js
sudo: false
node_js:
- "6"
install: npm install
| language: node_js
sudo: false
node_js:
- "6"
- "7"
- "8"
install: npm install
|
Revert "CI: echo curr dir" | language: go
go:
- 1.8.1
before_script:
- go get github.com/alecthomas/gometalinter
- gometalinter --install
script:
- go build -race -v -gcflags "-N -l" ./...
- output=$(goimports -d .) && [[ -z "$output" ]]
- echo `pwd`
- gometalinter --exclude=corefoundation.go --deadline=360s --enable-gc --sort=path --vendor --cyclo-over=30 --dupl-threshold=100 --disable=gotype ./... | language: go
go:
- 1.8.1
before_script:
- go get github.com/alecthomas/gometalinter
- gometalinter --install
script:
- go build -race -v -gcflags "-N -l" ./...
- output=$(goimports -d .) && [[ -z "$output" ]]
- gometalinter --exclude=corefoundation.go --deadline=360s --enable-gc --sort=path --vendor --cyclo-over=30 --dupl-threshold=100 --disable=gotype ./... |
Test on `iojs-v1.5` and `iojs-v1.6` | language: node_js
node_js:
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@1.4.6'
sudo: false
matrix:
fast_finish: true
allow_failures:
- node_js: "iojs-v1.2"
- node_js: "iojs-v1.1"
- node_js: "iojs-v1.0"
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.8"
- node_js: "0.6"
- node_js: "0.4"
sudo: false
| language: node_js
node_js:
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@1.4.6'
sudo: false
matrix:
fast_finish: true
allow_failures:
- node_js: "iojs-v1.4"
- node_js: "iojs-v1.3"
- node_js: "iojs-v1.2"
- node_js: "iojs-v1.1"
- node_js: "iojs-v1.0"
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.8"
- node_js: "0.6"
- node_js: "0.4"
sudo: false
|
Test in PHP 7.3 too | language: php
php:
- 7.2
- 7.1
- 7.0
- 5.6
before_script: composer install
| language: php
php:
- 7.3
- 7.2
- 7.1
- 7.0
- 5.6
before_script: composer install
|
Add before_scrip for create user. | language: ruby
rvm:
- 1.9.3
- 2.1.1
env:
- DB=sqlite
- DB=pgsql
bundler_args: "--without development"
script:
- RAILS_ENV=test bundle exec rake db:create db:migrate
- RAILS_ENV=test bundle exec rake test
- RAILS_ENV=test bundle exec rake spec
| language: ruby
rvm:
- 1.9.3
- 2.1.1
env:
- DB=sqlite
- DB=pgsql
bundler_args: "--without development"
before_script:
- psql -c "CREATE USER katoy WITH PASSWORD 'katoy';" -U postgres
script:
- RAILS_ENV=test bundle exec rake db:create db:migrate
- RAILS_ENV=test bundle exec rake test
- RAILS_ENV=test bundle exec rake spec
|
Test a healthy range of Python versions | language: python
python:
- 3.3
- 2.7
before_install:
- git clone https://github.com/anchor/libmarquise.git ../libmarquise/
- cd ../libmarquise/
- autoreconf -i
- ./configure
- make
- sudo make install
- sudo su -c "echo '/usr/local/lib' > /etc/ld.so.conf.d/local.conf"
- sudo ldconfig
- cd -
# command to run tests
script:
- make test
- make test-coverage-of-main-in-testsuite
| language: python
python:
- 3.4
- 3.3
- 3.2
- 2.7
- 2.6
before_install:
- git clone https://github.com/anchor/libmarquise.git ../libmarquise/
- cd ../libmarquise/
- autoreconf -i
- ./configure
- make
- sudo make install
- sudo su -c "echo '/usr/local/lib' > /etc/ld.so.conf.d/local.conf"
- sudo ldconfig
- cd -
# command to run tests
script:
- make test
- make test-coverage-of-main-in-testsuite
|
Remove unstable Java 12 build on Travis | language: java
sudo: true
jdk:
- openjdk8
- openjdk12
install:
- mvn test-compile -DskipTests=true -Dmaven.javadoc.skip=true -B -V
script:
- mvn test jacoco:report
after_success:
- bash <(curl -s https://codecov.io/bash)
- mvn coveralls:report
notifications:
email: false
| language: java
sudo: true
jdk:
- openjdk8
install:
- mvn test-compile -DskipTests=true -Dmaven.javadoc.skip=true -B -V
script:
- mvn test jacoco:report
after_success:
- bash <(curl -s https://codecov.io/bash)
- mvn coveralls:report
notifications:
email: false
|
Disable CodeClimate on PHP 5.3. CC no longer supports 5.3. | language: php
php:
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
before_script:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit --coverage-clover=coverage.clover
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/test-reporter --coverage-report=coverage.clover; fi;'
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi;'
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi'
sudo: false
| language: php
php:
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
before_script:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit --coverage-clover=coverage.clover
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" && "$TRAVIS_PHP_VERSION" != "5.3" ]; then vendor/bin/test-reporter --coverage-report=coverage.clover; fi;'
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi;'
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi'
sudo: false
|
Use latest JRuby in Travis CI | language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- ruby-head
- jruby-9.1.7.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
script: bundle exec rake test
cache: bundler
services:
- mongodb
| language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- ruby-head
- jruby
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
script: bundle exec rake test
cache: bundler
services:
- mongodb
|
Update to test against 0.10.5 as latest version | language: node_js
node_js:
- "0.10.4"
- "0.10.3"
- "0.10"
- "0.8"
| language: node_js
node_js:
- "0.10.5"
- "0.10.4"
- "0.10.3"
- "0.10"
- "0.8"
|
Update TravisCI integration to use Carthage | language: swift
osx_image: xcode10.2
jobs:
include:
- stage: "Xcode"
name: "Run tests on iOS"
script: xcrun xcodebuild test -destination "platform=iOS Simulator,OS=12.2,name=iPhone X" -workspace "Bond.xcworkspace" -scheme "Bond-iOS"
after_success: 'bash <(curl -s https://codecov.io/bash)'
-
name: "Build for macOS"
script: xcrun xcodebuild build -destination "platform=macOS" -workspace "Bond.xcworkspace" -scheme "Bond-macOS"
-
name: "Build for tvOS"
script: xcrun xcodebuild build -destination "platform=tvOS Simulator,OS=12.2,name=Apple TV 4K" -workspace "Bond.xcworkspace" -scheme "Bond-tvOS"
- stage: "Swift Package Manager"
name: "Run Tests"
script: swift test
| language: swift
osx_image: xcode10.2
cache:
directories:
- Carthage
before_install:
- brew update
- brew outdated carthage || brew upgrade carthage
- carthage bootstrap --platform iOS --cache-builds
jobs:
include:
- stage: "Xcode"
name: "Run tests on iOS"
script: xcrun xcodebuild test -destination "platform=iOS Simulator,OS=12.2,name=iPhone X" -workspace "Bond.xcworkspace" -scheme "Bond-iOS"
after_success: 'bash <(curl -s https://codecov.io/bash)'
-
name: "Build for macOS"
script: xcrun xcodebuild build -destination "platform=macOS" -workspace "Bond.xcworkspace" -scheme "Bond-macOS"
-
name: "Build for tvOS"
script: xcrun xcodebuild build -destination "platform=tvOS Simulator,OS=12.2,name=Apple TV 4K" -workspace "Bond.xcworkspace" -scheme "Bond-tvOS"
- stage: "Swift Package Manager"
name: "Run Tests"
script: swift test
|
Update to reflect the tested Ruby interpreters | language: ruby
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
- ree
- ruby-head
env:
- RAILS_VERSION=3.1.8
- RAILS_VERSION=3.2.9
matrix:
allow_failures:
- rvm: ruby-head | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- jruby-19mode # JRuby in 1.9 mode
- ruby-head
env:
- RAILS_VERSION=4.0.0
- RAILS_VERSION=3.2.13
matrix:
allow_failures:
- rvm: ruby-head |
Update the version of ruby used to build project in TravisCI. | # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
| # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
|
Update node ver on Travis | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
| language: node_js
node_js:
- "8"
|
Update Travis CI coverage to 3.6 and 3.7-dev | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6-dev"
- "pypy"
install:
- pip install .
script:
- python setup.py test
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
install:
- pip install .
script:
- python setup.py test
|
Work around rvm ruby-head failures on Travis | sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
before_install:
- gem update --system
- gem install bundler -v "~> 2.0" --no-document
| sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
before_install:
- gem update --system
- gem install bundler -v "~> 2.0" --conservative --no-document
- gem install executable-hooks --conservative --no-document
|
Switch install ocd back to no-binary (take 2) | language: python
cache:
- pip
python:
- "2.7"
- "3.5"
- "3.6"
addons:
postgresql: "9.4"
apt:
packages:
- "postgresql-9.4-postgis-2.3"
env:
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11
install:
- pip install -r requirements.txt
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSION
before_script:
- cp example/project/settings_local.py.template example/settings_local.py
- psql -c 'create database calaccess_processed;' -U postgres
- psql -U postgres -c "create extension postgis;"
script:
- flake8 calaccess_processed
- coverage run example/manage.py test calaccess_processed
after_success:
- coveralls
| language: python
cache:
- pip
python:
- "2.7"
- "3.5"
- "3.6"
addons:
postgresql: "9.4"
apt:
packages:
- "postgresql-9.4-postgis-2.3"
env:
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11
install:
- pip install -r requirements.txt --no-binary opencivicdata
- pip uninstall -y Django
- pip install -q Django==$DJANGO_VERSION
before_script:
- cp example/project/settings_local.py.template example/settings_local.py
- psql -c 'create database calaccess_processed;' -U postgres
- psql -U postgres -c "create extension postgis;"
script:
- flake8 calaccess_processed
- coverage run example/manage.py test calaccess_processed
after_success:
- coveralls
|
Upgrade concat to latest version | fixtures:
forge_modules:
concat:
repo: 'puppetlabs/concat'
ref: '1.0.2'
repositories:
stdlib: git://github.com/puppetlabs/puppetlabs-stdlib.git
symlinks:
ssh: "#{source_dir}"
| fixtures:
forge_modules:
concat:
repo: 'puppetlabs/concat'
ref: '1.2.5'
stdlib:
repo: 'puppetlabs/stdlib'
ref: '4.6.0'
symlinks:
ssh: "#{source_dir}"
|
Remove tqdm dependency from conda recipe to make tests pass | package:
name: openmmtools-dev
version: 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- cython
- numpy
- scipy
- setuptools
- openmm
- parmed
- tqdm
run:
- python
- cython
- numpy
- scipy
- setuptools
- six
- openmm
- parmed
- tqdm
test:
requires:
- nose
- pymbar
imports:
- openmmtools
about:
home: https://github.com/choderalab/openmmtools
license: GNU Lesser General Public License v2 or later (LGPLv2+)
| package:
name: openmmtools-dev
version: 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- cython
- numpy
- scipy
- setuptools
- openmm
- parmed
run:
- python
- cython
- numpy
- scipy
- setuptools
- six
- openmm
- parmed
test:
requires:
- nose
- pymbar
imports:
- openmmtools
about:
home: https://github.com/choderalab/openmmtools
license: GNU Lesser General Public License v2 or later (LGPLv2+)
|
Add gimp to desktop packages |
# Copyright (c) 2015-2018 Agalmic Ventures LLC (www.agalmicventures.com)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#Development package install for both servers and desktops
- name: Updating apt cache if the last one is more than 3600 seconds ago
apt:
update_cache: yes
cache_valid_time: 3600
tags:
- desktop
- name: Installing desktop packages
apt:
name: [geany, gparted, libreoffice, kdiff3]
state: latest
tags:
- desktop
|
# Copyright (c) 2015-2018 Agalmic Ventures LLC (www.agalmicventures.com)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#Development package install for both servers and desktops
- name: Updating apt cache if the last one is more than 3600 seconds ago
apt:
update_cache: yes
cache_valid_time: 3600
tags:
- desktop
- name: Installing desktop packages
apt:
name: [geany, gimp, gparted, libreoffice, kdiff3]
state: latest
tags:
- desktop
|
Increase the memory limit for Triage Party. | apiVersion: apps/v1
kind: Deployment
metadata:
name: triage-party
namespace: triageparty-release
labels:
app: triage-party
spec:
selector:
matchLabels:
app: triage-party
template:
metadata:
labels:
app: triage-party
spec:
containers:
- name: triage-party
image: triageparty/triage-party:1.3.0
env:
- name: GITHUB_TOKEN
valueFrom:
secretKeyRef:
name: triage-party-github-token
key: token
- name: PERSIST_BACKEND
value: "disk"
- name: PERSIST_PATH
value: "/app/triage-party/cache"
ports:
- containerPort: 8080
readinessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 8080
scheme: HTTP
timeoutSeconds: 5
resources:
limits:
cpu: 1
memory: 1Gi
volumeMounts:
- name: config
mountPath: /app/config
- name: pcache
mountPath: /app/triage-party
volumes:
- name: config
configMap:
name: triage-party-config-release
- name: pcache
persistentVolumeClaim:
claimName: triage-party-persistence
| apiVersion: apps/v1
kind: Deployment
metadata:
name: triage-party
namespace: triageparty-release
labels:
app: triage-party
spec:
selector:
matchLabels:
app: triage-party
template:
metadata:
labels:
app: triage-party
spec:
containers:
- name: triage-party
image: triageparty/triage-party:1.3.0
env:
- name: GITHUB_TOKEN
valueFrom:
secretKeyRef:
name: triage-party-github-token
key: token
- name: PERSIST_BACKEND
value: "disk"
- name: PERSIST_PATH
value: "/app/triage-party/cache"
ports:
- containerPort: 8080
readinessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 8080
scheme: HTTP
timeoutSeconds: 5
resources:
limits:
cpu: 1
memory: 4Gi
volumeMounts:
- name: config
mountPath: /app/config
- name: pcache
mountPath: /app/triage-party
volumes:
- name: config
configMap:
name: triage-party-config-release
- name: pcache
persistentVolumeClaim:
claimName: triage-party-persistence
|
Revert "Make `bosh int` fail without required `windows2016-cell.yml`" | - type: replace
path: /releases/name=windows2016fs
value:
name: windows2016fs
version: 1.8.0
| - type: replace
path: /releases/name=windows2016fs?
value:
name: windows2016fs
version: 1.8.0
|
Set proper permissions to 744 | - name: Create deployer user ssh dir
file: path="/home/{{ deployer_user.name }}/.ssh"
state=directory
owner="{{ deployer_user.name }}"
mode=600
- name: Copy of root ssh keys
command: "cp /root/.ssh/authorized_keys /home/{{ deployer_user.name }}/.ssh/authorized_keys"
- name: Ensure devs keys are present
authorized_key: key="{{ lookup('file', local_dir + '/' + item) }}"
manage_dir=yes
state=present
user=deployer
with_items: dev_key_files
- name: Ensure DO pubkey is present
authorized_key: key="{{ lookup('file', 'id_rsa_digital_ocean.pub') }}"
manage_dir=yes
state=present
user=deployer
| - name: Create deployer user ssh dir
file: path="/home/{{ deployer_user.name }}/.ssh"
state=directory
owner="{{ deployer_user.name }}"
mode=744
- name: Copy of root ssh keys
command: "cp /root/.ssh/authorized_keys /home/{{ deployer_user.name }}/.ssh/authorized_keys"
- name: Ensure devs keys are present
authorized_key: key="{{ lookup('file', local_dir + '/' + item) }}"
manage_dir=yes
state=present
user=deployer
with_items: dev_key_files
- name: Ensure DO pubkey is present
authorized_key: key="{{ lookup('file', 'id_rsa_digital_ocean.pub') }}"
manage_dir=yes
state=present
user=deployer
|
Add some dependecy stufff to Travis | language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
# script: pytest
| sudo: required
before_install:
# Install phantomjs dependencies
- sudo apt-get install nodejs-legacy npm
- sudo npm install phantomjs-prebuilt
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
# script: pytest
|
Update from Forestry.io - Updated Forestry configuration | ---
hide_body: false
fields:
- name: title
label: Product Name
type: text
hidden: false
default: ''
- name: date
label: Date
type: datetime
hidden: false
default: Invalid date
- name: description
label: Description
type: textarea
hidden: false
default: ''
- name: image
label: Image
type: file
hidden: false
default: ''
- name: type
label: Type
type: text
hidden: true
default: ''
- name: weight
label: Weight
type: text
hidden: false
default: ''
- name: id
label: Id
type: text
hidden: false
default: ''
- name: price
label: Price
type: text
hidden: false
default: ''
- name: itemWeight
label: Itemweight
type: text
hidden: false
default: ''
- name: url
label: Url
type: text
hidden: false
default: ''
- name: custom
label: Custom
type: field_group_list
fields:
- name: name
label: Name
type: text
hidden: false
default: ''
- name: options
label: Options
type: field_group_list
fields:
- name: option
label: Option
type: text
hidden: false
default: ''
hidden: false
default: ''
- name: value
label: Value
type: text
hidden: false
default: ''
hidden: false
default: ''
- type: text
| ---
hide_body: false
fields:
- name: title
label: Product Name
type: text
hidden: false
default: ''
- name: id
label: Id
type: text
hidden: false
default: ''
- name: price
label: Price
type: text
hidden: false
default: ''
- name: description
label: Description
type: textarea
hidden: false
default: ''
- name: date
label: Date
type: datetime
hidden: false
default: Invalid date
- name: image
label: Image
type: file
hidden: false
default: ''
- name: weight
label: Sort Weight
type: text
hidden: false
default: ''
config:
required: true
description: Must be a unique product ID number.
- name: itemWeight
label: Item Weight
type: text
hidden: false
default: ''
description: Enter the weight in grams.
- name: type
label: Type
type: text
hidden: true
default: product
- name: url
label: Url
type: text
hidden: false
default: "/shop/"
- name: custom
label: Custom
type: field_group_list
fields:
- name: name
label: Name
type: text
hidden: false
default: ''
- name: options
label: Options
type: field_group_list
fields:
- name: option
label: Option
type: text
hidden: false
default: ''
hidden: false
default: ''
- name: value
label: Value
type: text
hidden: false
default: ''
hidden: false
default: ''
- type: text
|
Update dependent chart repo URLs | dependencies:
- name: redis
version: 0.4.1
repository: http://storage.googleapis.com/kubernetes-charts
- name: postgresql
version: 0.1.1
repository: http://storage.googleapis.com/kubernetes-charts
| dependencies:
- name: redis
version: 0.4.1
repository: http://kubernetes-charts.storage.googleapis.com
- name: postgresql
version: 0.1.1
repository: http://kubernetes-charts.storage.googleapis.com
|
Use latest loggregator for cf-deployment v3.6.0 | ---
- type: replace
path: /releases/name=loggregator
value:
name: loggregator
url: "https://bosh.io/d/github.com/cloudfoundry/loggregator-release?v=102.2"
version: "102.2"
sha1: "1ff4ad235be2720ed119cbb775f6ffdb712e53ea"
| ---
- type: replace
path: /releases/name=loggregator
value:
name: loggregator
url: https://bosh.io/d/github.com/cloudfoundry/loggregator-release?v=103.1
version: "103.1"
sha1: 4377aac0179f1e9944ba5b936d59ef0427163f7b
|
Update from Hackage at 2017-10-15T12:11:56Z | homepage: https://github.com/jml/graphql-api#readme
changelog-type: ''
hash: 746cd20d252134d27c5e07c41262c6ed868a65546c4db5bcb0d4b9d22cdd996a
test-bench-deps:
exceptions: -any
base: ! '>=4.9 && <5'
hspec: -any
tasty-hspec: -any
criterion: -any
doctest: -any
protolude: -any
containers: -any
graphql-api: -any
raw-strings-qq: -any
attoparsec: -any
transformers: -any
tasty: -any
QuickCheck: -any
aeson: -any
directory: -any
maintainer: Jonathan M. Lange <jml@mumak.net>
synopsis: Sketch of GraphQL stuff
changelog: ''
basic-deps:
exceptions: -any
base: ! '>=4.9 && <5'
text: -any
protolude: -any
containers: -any
attoparsec: -any
transformers: -any
scientific: -any
QuickCheck: -any
aeson: -any
all-versions:
- '0.1.1'
- '0.1.2'
author: ''
latest: '0.1.2'
description-type: haddock
description: Please see README.md
license-name: Apache
| homepage: https://github.com/jml/graphql-api#readme
changelog-type: ''
hash: a2220231e6cb636980f8f5e17bcef69d94bfb4b27e230cae856ef14cbd07e583
test-bench-deps:
exceptions: -any
base: ! '>=4.9 && <5'
hspec: -any
tasty-hspec: -any
criterion: -any
doctest: -any
protolude: ! '>=0.2'
containers: -any
graphql-api: -any
raw-strings-qq: -any
attoparsec: -any
transformers: -any
tasty: -any
QuickCheck: -any
aeson: -any
directory: -any
maintainer: Jonathan M. Lange <jml@mumak.net>
synopsis: Sketch of GraphQL stuff
changelog: ''
basic-deps:
exceptions: -any
base: ! '>=4.9 && <5'
text: -any
protolude: ! '>=0.2'
containers: -any
ghc-prim: -any
attoparsec: -any
transformers: -any
scientific: -any
QuickCheck: -any
aeson: -any
all-versions:
- '0.1.1'
- '0.1.2'
- '0.2.0'
author: ''
latest: '0.2.0'
description-type: haddock
description: Please see README.md
license-name: Apache
|
Add building containers to standalone job | - project:
templates:
- puppet-openstack-check-jobs
- puppet-openstack-module-unit-jobs
- release-notes-jobs-python3
check:
jobs:
- tripleo-ci-centos-8-scenario004-standalone
gate:
jobs:
- tripleo-ci-centos-8-scenario004-standalone
queue: tripleo
| - project:
templates:
- puppet-openstack-check-jobs
- puppet-openstack-module-unit-jobs
- release-notes-jobs-python3
check:
jobs:
- tripleo-ci-centos-8-scenario004-standalone:
vars:
build_container_images: true
gate:
jobs:
- tripleo-ci-centos-8-scenario004-standalone:
vars:
build_container_images: true
queue: tripleo
|
Fix output directory on CI | dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tools"
- echo y | android update sdk --no-ui --all --filter "build-tools-23.0.3"
- echo y | android update sdk --no-ui --all --filter "extra-android-m2repository"
test:
override:
- ./gradlew assembleRelease -PdisablePreDex
- cp -r flashlight/build/outputs $CIRCLE_ARTIFACTS
#todo: add deployment config: master branch to play beta track?
| dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tools"
- echo y | android update sdk --no-ui --all --filter "build-tools-23.0.3"
- echo y | android update sdk --no-ui --all --filter "extra-android-m2repository"
test:
override:
- ./gradlew assembleRelease -PdisablePreDex
- cp -r build/outputs $CIRCLE_ARTIFACTS
#todo: add deployment config: master branch to play beta track?
|
Update dlib to use the new boost package | package:
name: dlib
version: "18.10"
source:
fn: dlib-18.10.tar.bz2
url: http://sourceforge.net/projects/dclib/files/dlib/v18.10/dlib-18.10.tar.bz2/download
sha1: 8010cd5c173277d7327135f75f3565d15491592e
patches:
- gui_patch.patch
requirements:
build:
- python
- cmake # [win]
- boost_python
- jpeg
- libpng
- sqlite
run:
- python
- boost_python
- jpeg
- libpng
- sqlite
test:
imports:
- dlib
about:
home: http://dlib.net/
license: Boost Software License
| package:
name: dlib
version: "18.10"
source:
fn: dlib-18.10.tar.bz2
url: http://sourceforge.net/projects/dclib/files/dlib/v18.10/dlib-18.10.tar.bz2/download
sha1: 8010cd5c173277d7327135f75f3565d15491592e
patches:
- gui_patch.patch
build:
number: 1
requirements:
build:
- python
- cmake # [win]
- boost
- jpeg
- libpng
- sqlite
run:
- python
- boost
- jpeg
- libpng
- sqlite
test:
imports:
- dlib
about:
home: http://dlib.net/
license: Boost Software License
|
Update to 0.2.4 with the requirements.txt file. | {% set name = "piccolo-theme" %}
{% set version = "0.2.3" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/piccolo_theme-{{ version }}.tar.gz
sha256: 46e43cf40357094cf58ec5b7dc86b353b5698011e9cdac4552e8e14f79b4a50b
build:
number: 0
noarch: python
script:
- {{ PYTHON }} -m pip install . --no-deps -vv
requirements:
host:
- pip
- setuptools >=42
- python >=3.7
run:
- python >=3.7
- sphinx
test:
imports:
- piccolo_theme
commands:
- pip check
requires:
- pip
about:
home: https://github.com/piccolo-orm/piccolo_theme
summary: A modern Sphinx theme.
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- moorepants
| {% set name = "piccolo-theme" %}
{% set version = "0.2.4" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/piccolo_theme-{{ version }}.tar.gz
sha256: e1e247abfdcfdd83bd09b9e75d44707ef39cbf0a5f5e0e8cd15c4b2169748b9f
build:
number: 0
noarch: python
script:
- rm -f pyproject.toml
- {{ PYTHON }} -m pip install . --no-deps -vv
requirements:
host:
- pip
- setuptools >=42
- python >=3.7
run:
- python >=3.7
- sphinx
test:
imports:
- piccolo_theme
commands:
- pip check
requires:
- pip
about:
home: https://github.com/piccolo-orm/piccolo_theme
summary: A modern Sphinx theme.
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- moorepants
|
Remove bundler-audit from Code Climate config | ---
engines:
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- "**.gemspec"
- "**.rb"
exclude_paths:
- "spec/"
| ---
engines:
duplication:
enabled: true
config:
languages:
- ruby
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- "**.gemspec"
- "**.rb"
exclude_paths:
- "spec/"
|
Exclude yet another vendored dependency | ---
engines:
scss-lint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
- php
fixme:
enabled: true
phpmd:
enabled: true
config:
file_extensions: "php"
rulesets: "codesize,design,unusedcode,docs/phpmd-ruleset.xml"
ratings:
paths:
- "html/css/*.scss"
- "protected/**.php"
exclude_paths:
- config/
- node_modules/
- tests/
- vendor/
- html/bower/
- html/css/build/
- html/pdfjs/
- html/js/Leaflet.Control.Geocoder
- html/css/_material.scss
| ---
engines:
scss-lint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
- php
fixme:
enabled: true
phpmd:
enabled: true
config:
file_extensions: "php"
rulesets: "codesize,design,unusedcode,docs/phpmd-ruleset.xml"
ratings:
paths:
- "html/css/*.scss"
- "protected/**.php"
exclude_paths:
- config/
- node_modules/
- tests/
- vendor/
- html/bower/
- html/css/build/
- html/pdfjs/
- html/js/Leaflet.Control.Geocoder
- html/css/_material.scss
- html/css/material
|
Add python interpreter flag to macvim install | ---
vimfiles_repo: "https://github.com/mtchavez/vimfiles"
vimfiles_dir: "{{ workspace_dir }}/vimfiles"
vimfiles_install_cmd: "./install.sh -u"
ycm_bundle_dir: "{{ home_dir }}/.vim/bundle/YouCompleteMe"
ycm_install_cmd: "./ycm-update.sh"
ycm_installed_file: "{{ home_dir }}/.ycm_installed"
macvim_install_options: "custom-icons,override-system-vim,with-lua,with-luajit"
| ---
vimfiles_repo: "https://github.com/mtchavez/vimfiles"
vimfiles_dir: "{{ workspace_dir }}/vimfiles"
vimfiles_install_cmd: "./install.sh -u"
ycm_bundle_dir: "{{ home_dir }}/.vim/bundle/YouCompleteMe"
ycm_install_cmd: "./ycm-update.sh"
ycm_installed_file: "{{ home_dir }}/.ycm_installed"
macvim_install_options: "custom-icons,override-system-vim,with-lua,with-luajit,enable-pythoninterp=yes"
|
Update from Hackage at 2018-12-17T17:13:00Z | homepage: https://github.com/jappeace/network-uri-lenses#readme
changelog-type: markdown
hash: 938fe0a9c20ccbab7f1987dabe5b26ee1789e2e8b96d04846dceb6f1c0714815
test-bench-deps: {}
maintainer: jappieklooster@hotmail.com
synopsis: ''
changelog: ! '# Changelog for network-uri-lenses
## Unreleased changes
'
basic-deps:
base: ! '>=4.7 && <5'
lens: -any
network-uri: -any
all-versions:
- '0.1.0.0'
author: Jappie Klooster
latest: '0.1.0.0'
description-type: markdown
description: ! '# network-uri-lenses
'
license-name: BSD3
| homepage: https://github.com/jappeace/network-uri-lenses#readme
changelog-type: markdown
hash: cd4178ff63a88fd3a207b6c329086a068c7b0e3ebcdfec2889d2bd27c0e1b1bc
test-bench-deps: {}
maintainer: jappieklooster@hotmail.com
synopsis: Lenses for network-uri
changelog: ! '# Changelog for network-uri-lenses
## Unreleased changes
'
basic-deps:
base: ! '>=4.7 && <5'
lens: -any
network-uri: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Jappie Klooster
latest: '0.2.0.0'
description-type: markdown
description: ! '# network-uri-lenses
'
license-name: BSD3
|
Create workflow to copy PR template onto Dependabot PRs | name: Copy PR template to Dependabot PRs
on:
pull_request_target:
types: [opened]
jobs:
copy_pr_template:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- name: Fetch PR template
id: fetch-pr-template
uses: juliangruber/read-file-action@v1
with:
path: .github/pull_request_template.md
- name: Create comment
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: ${{ github.event.number }}
body: ${{ steps.fetch-pr-template.outputs.content }}
| name: Copy PR template to Dependabot PRs
on:
pull_request_target:
types: [opened]
permissions:
contents: read
pull-requests: write
jobs:
copy_pr_template:
name: Copy PR template to Dependabot PR
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
- name: Post PR template as a comment
uses: actions/github-script@v6
with:
script: |
const fs = require('fs')
const body = [
"pull_request_template.md",
".github/pull_request_template.md",
"docs/pull_request_template.md",
].
filter(path => fs.existsSync(path)).
map(path => fs.readFileSync(path)).
join("\n")
if (body !== "") {
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body
})
}
|
Fix tmp folder for SQL workflow | ---
global_env:
pre_settings: []
modules: []
drush_commands: []
post_settings:
- { name: '$conf["pp_environment"]', status: true, value: "{{ pp_environment }}" }
- { name: '$conf["file_temporary_path"]', status: true, value: '{{ tmp_folder }}' }
- { name: '$conf["cache_default_class"]', status: false, value: "{{ pp_environment }}" }
- { name: '$conf["cache_backends"][]', status: false, value: 'sites/all/modules/contrib/memcache/memcache.inc' }
- { name: '$conf["cache_default_class"]', status: false, value: 'MemCacheDrupal' }
| ---
global_env:
pre_settings:
- { name: '$conf["pp_environment"]', status: true, value: "{{ pp_environment }}" }
- { name: '$conf["file_temporary_path"]', status: true, value: '{{ tmp_folder }}' }
modules: []
drush_commands: []
post_settings:
- { name: '$conf["pp_environment"]', status: true, value: "{{ pp_environment }}" }
- { name: '$conf["file_temporary_path"]', status: true, value: '{{ tmp_folder }}' }
- { name: '$conf["cache_default_class"]', status: false, value: "{{ pp_environment }}" }
- { name: '$conf["cache_backends"][]', status: false, value: 'sites/all/modules/contrib/memcache/memcache.inc' }
- { name: '$conf["cache_default_class"]', status: false, value: 'MemCacheDrupal' }
|
Add aodh default user for apex | fuel:
images: ['TestVM']
networks: ['net04', 'net04_ext', 'admin_floating_net', 'admin_internal_net']
routers: ['router04']
security_groups: ['default']
tenants: ['admin', 'services']
users: ['heat', 'heat-cfn', 'cinder', 'nova', 'swift', 'glance', 'neutron', 'admin', 'fuel_stats_user', 'ceilometer']
apex:
images: []
networks: ['internal', 'external']
routers: []
security_groups: ['default']
tenants: ['admin', 'services', 'service']
users: ['heat', 'heat-cfn', 'cinder', 'nova', 'swift', 'glance', 'neutron', 'admin', 'ceilometer', 'cinderv2']
compass:
images: []
networks: ['ext-net']
routers: []
security_groups: ['default']
tenants: ['admin', 'service', 'demo']
users: ['heat', 'cinder', 'nova', 'glance', 'neutron', 'admin', 'ceilometer', 'demo', 'keystone']
joid:
images: []
networks: ['ext-net']
routers: []
security_groups: ['default']
tenants: ['admin', 'services']
users: ['admin', 'glance', 'nova', 'neutron', 'heat-cfn_heat', 'ceilometer', 'cinder_cinderv2', 'swift']
common:
networks: ['functest-net']
routers: ['functest-router'] | fuel:
images: ['TestVM']
networks: ['net04', 'net04_ext', 'admin_floating_net', 'admin_internal_net']
routers: ['router04']
security_groups: ['default']
tenants: ['admin', 'services']
users: ['heat', 'heat-cfn', 'cinder', 'nova', 'swift', 'glance', 'neutron', 'admin', 'fuel_stats_user', 'ceilometer']
apex:
images: []
networks: ['internal', 'external']
routers: []
security_groups: ['default']
tenants: ['admin', 'services', 'service']
users: ['heat', 'heat-cfn', 'cinder', 'nova', 'swift', 'glance', 'neutron', 'admin', 'ceilometer', 'cinderv2', 'aodh']
compass:
images: []
networks: ['ext-net']
routers: []
security_groups: ['default']
tenants: ['admin', 'service', 'demo']
users: ['heat', 'cinder', 'nova', 'glance', 'neutron', 'admin', 'ceilometer', 'demo', 'keystone']
joid:
images: []
networks: ['ext-net']
routers: []
security_groups: ['default']
tenants: ['admin', 'services']
users: ['admin', 'glance', 'nova', 'neutron', 'heat-cfn_heat', 'ceilometer', 'cinder_cinderv2', 'swift']
common:
networks: ['functest-net']
routers: ['functest-router']
|
Update from Hackage at 2018-09-04T00:36:05Z | homepage: http://github.com/conal/total-map/
changelog-type: ''
hash: 92464af7227c30ee991687123bf4bfe91f43f341100234f030c9a7060eb8e345
test-bench-deps: {}
maintainer: conal@conal.net
synopsis: Finitely represented /total/ maps
changelog: ''
basic-deps:
base: <5
containers: -any
all-versions:
- '0.0.0'
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
author: Conal Elliott
latest: '0.0.6'
description-type: haddock
description: ! 'Finitely represented /total/ maps. Represented by as a partial map
and
a default value. Has Applicative and Monad instances (unlike Data.Map).'
license-name: BSD3
| homepage: http://github.com/conal/total-map/
changelog-type: ''
hash: 215c22ecbd6eb49b805942777661ad541738183c6350b4ba7fd6c1b6b114c140
test-bench-deps: {}
maintainer: conal@conal.net
synopsis: Finitely represented /total/ maps
changelog: ''
basic-deps:
base: <5
containers: -any
all-versions:
- '0.0.0'
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.0.5'
- '0.0.6'
- '0.0.7'
author: Conal Elliott
latest: '0.0.7'
description-type: haddock
description: ! 'Finitely represented /total/ maps. Represented by as a partial map
and
a default value. Has Applicative and Monad instances (unlike Data.Map).'
license-name: BSD3
|
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
--port 8080 --host 0.0.0.0 -d _site
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve
|
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
-d _site
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: assets
public_path: "/assets"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
build:
preview_env:
- JEKYLL_ENV=staging
preview_output_directory: _site
install_dependencies_command: bundle install --path vendor/bundle
preview_docker_image: forestryio/ruby:2.6
mount_path: "/srv"
working_dir: "/srv"
instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future
-d _site
|
Change Circle to run rake app:db:setup directly against test db | database:
override:
- cp spec/dummy/config/database.yml.ci spec/dummy/config/database.yml
- rake app:db:setup app:db:test:prepare
| database:
override:
- cp spec/dummy/config/database.yml.ci spec/dummy/config/database.yml
- RAILS_ENV=test rake app:db:setup
|
Update No Assertions to new version 4.0.0 | name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/workflows/action.yml@3.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
| name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/workflows/action.yml@4.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
|
Update from Hackage at 2017-01-12T12:34:23Z | homepage: https://github.com/tolysz/double-extra#readme
changelog-type: ''
hash: be52ab0fb84c156b57a25133a4b98acf773f4aa49745546a574a10cf2b559f05
test-bench-deps: {}
maintainer: tolysz@gmail.com
synopsis: Missing presentations for Double numbers (fixed, scientific etc.)
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
text: -any
rawstring-qm: -any
double-conversion: ==2.0.2.0
cassava: -any
deepseq: -any
aeson: -any
all-versions:
- '0.1.0.0'
author: Marcin Tolysz
latest: '0.1.0.0'
description-type: markdown
description: ! '# double-extra
Missing presentations for Double numbers (fixed, scientific etc.)
'
license-name: BSD3
| homepage: https://github.com/tolysz/double-extra#readme
changelog-type: ''
hash: 40889a12b04465e502c0b1cd9737380460a6e7866c26196620478e94523eb8c1
test-bench-deps: {}
maintainer: tolysz@gmail.com
synopsis: Missing presentations for Double numbers (fixed, scientific etc.)
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
text: -any
rawstring-qm: -any
double-conversion: ! '>=2.0.2.0'
cassava: -any
deepseq: -any
aeson: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Marcin Tolysz
latest: '0.1.0.1'
description-type: markdown
description: ! '# double-extra
Missing presentations for Double numbers (fixed, scientific etc.)
please use `coerce` to convert from double before presenting
```haskell
DoublePrecision (i :: Nat)
DoubleExponential (i :: Nat)
DoubleFixed (i :: Nat)
DoubleShortest
```
# Please Note
For GHCJS you need to use the settings from stack till https://github.com/bos/double-conversion/pull/16'
license-name: BSD3
|
Install dependencies in CI, now that we have some | ---
name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install test tools
run: npm install nyc mocha chai
- name: Test ${{ matrix.node-version }}
run: npm run lcov
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: node-${{ matrix.node-version }}
parallel: true
finish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
| ---
name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install production dependencies
run: npm install --only=prod
- name: Install test tools
run: npm install nyc mocha chai
- name: Test ${{ matrix.node-version }}
run: npm run lcov
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: node-${{ matrix.node-version }}
parallel: true
finish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
|
Remove RH1 OVB jobs from configuration | ---
- project:
name: openstack/os-apply-config
templates:
- tripleo-multinode-baremetal-minimal
- tripleo-multinode-container-minimal
- tripleo-ovb-check
- tripleo-ovb-experimental
| ---
- project:
name: openstack/os-apply-config
templates:
- tripleo-multinode-baremetal-minimal
- tripleo-multinode-container-minimal
|
Add Python3 wallaby unit tests | - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-victoria-jobs
- release-notes-jobs-python3
| - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-wallaby-jobs
- release-notes-jobs-python3
|
Update docer image for tests | ---
platform: linux
image: docker:///golang
inputs:
- name: rabbitmq-upgrade-preparation
run:
path: rabbitmq-upgrade-preparation/scripts/ci
| ---
platform: linux
image_resource:
type: docker-image
source:
repository: golang
inputs:
- name: rabbitmq-upgrade-preparation
run:
path: rabbitmq-upgrade-preparation/scripts/ci
|
Update rate of cotisation chômage salarié for 2018 | brackets:
- rate:
1993-07-01:
value: 0.0377
1994-01-01:
value: 0.0386
1997-01-01:
value: 0.036
2001-01-01:
value: 0.0349
2001-04-01:
value: 0.026
2001-07-01:
value: 0.021
2002-01-01:
value: 0.02
2002-07-01:
value: 0.021
2003-01-01:
value: 0.024
2006-01-01:
value: 0.0244
2007-01-01:
value: 0.024
threshold:
1993-07-01:
value: 0.0
- rate:
2003-01-01:
value: 0.0
threshold:
2003-01-01:
value: 4.0
description: Chômage-emploi ASSEDIC
reference: openfisca
| brackets:
- rate:
1993-07-01:
value: 0.0377
1994-01-01:
value: 0.0386
1997-01-01:
value: 0.036
2001-01-01:
value: 0.0349
2001-04-01:
value: 0.026
2001-07-01:
value: 0.021
2002-01-01:
value: 0.02
2002-07-01:
value: 0.021
2003-01-01:
value: 0.024
2006-01-01:
value: 0.0244
2007-01-01:
value: 0.024
2018-01-01:
value: 0.0095
threshold:
1993-07-01:
value: 0.0
- rate:
2003-01-01:
value: 0.0
threshold:
2003-01-01:
value: 4.0
description: Chômage-emploi ASSEDIC
reference: openfisca
|
Update from Hackage at 2016-01-10T12:20:55+0000 | homepage: ''
changelog-type: ''
hash: 1ea0ce2f77be96f3a312313acbdedf2b25bf8493ff8b5b07b3e6393421c3ab2c
test-bench-deps: {}
maintainer: tpigarelli@gmail.com
synopsis: A solver for the WordBrain game
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
matrix: ! '>=0.3 && <0.4'
containers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.1.0'
author: Jefffrey
latest: '0.1.1.0'
description-type: haddock
description: A solver for the WordBrain game
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 49a85dc716fc5298dc1065e011649535af90894c8cd73b3e9e2e3bdbcf60dd1d
test-bench-deps: {}
maintainer: tpigarelli@gmail.com
synopsis: A solver for the WordBrain game
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
matrix: ! '>=0.3 && <0.4'
containers: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.1.0'
- '0.1.2.0'
author: Jefffrey
latest: '0.1.2.0'
description-type: haddock
description: A solver for the WordBrain game
license-name: MIT
|
Update from Hackage at 2017-05-15T03:48:44Z | homepage: https://github.com/athanclark/tmapmvar#readme
changelog-type: ''
hash: dbe5746ab855f3369988518665aeec36b0239d7cb374a8579c44e4ecc79c6515
test-bench-deps: {}
maintainer: athan.clark@gmail.com
synopsis: A single-entity stateful Map in STM, similar to tmapchan
changelog: ''
basic-deps:
stm: -any
base: ! '>=4.8 && <5'
containers: -any
all-versions:
- '0.0.0'
author: Athan Clark
latest: '0.0.0'
description-type: markdown
description: ! '# tmapmvar
'
license-name: BSD3
| homepage: https://github.com/athanclark/tmapmvar#readme
changelog-type: ''
hash: 61a8d3d7432798476ce318ac8d8d863bba39bd44dd513c1ab86f9e56fa3cb3cc
test-bench-deps: {}
maintainer: athan.clark@gmail.com
synopsis: A single-entity stateful Map in STM, similar to tmapchan
changelog: ''
basic-deps:
stm: -any
base: ! '>=4.8 && <5'
unordered-containers: -any
containers: -any
hashable: -any
all-versions:
- '0.0.0'
- '0.0.1'
author: Athan Clark
latest: '0.0.1'
description-type: markdown
description: ! '# tmapmvar
'
license-name: BSD3
|
Add `claus` to the spellchecker's dictionary | # 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: decorator
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install codespell flake8
python -m pip install -e .
- run: codespell --ignore-words-list="ba,vas" --quiet-level=2
- run: flake8 . --count --ignore=E122,E226,E265,E741,E742 --max-complexity=22 --max-line-length=124 --show-source --statistics
- run: python src/tests/test.py -v
| # 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: decorator
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install codespell flake8
python -m pip install -e .
- run: codespell --ignore-words-list="ba,claus,vas" --quiet-level=2
- run: flake8 . --count --ignore=E122,E226,E265,E741,E742 --max-complexity=22 --max-line-length=124 --show-source --statistics
- run: python src/tests/test.py -v
|
Update STAR version to latest (fixing segfaults) | # You can use this file to create a conda environment for this pipeline:
# conda env create -f environment.yml
name: nfcore-rnaseq-1.0dev
channels:
- bioconda
- conda-forge
- defaults
dependencies:
- conda-forge::openjdk=8.0.144 # Needed for FastQC - conda build hangs without this
- fastqc=0.11.7
- trim-galore=0.5.0
- star=2.6.0c
- hisat2=2.1.0
- picard=2.18.11
- bioconductor-dupradar=1.8.0
- conda-forge::r-data.table=1.11.4
- conda-forge::r-gplots=3.0.1
- bioconductor-edger=3.20.7
- conda-forge::r-markdown=0.8
- preseq=2.0.3
- rseqc=2.6.4
- samtools=1.9
- stringtie=1.3.4
- subread=1.6.2
- gffread=0.9.9
- deeptools=3.1.1
- multiqc=1.6 | # You can use this file to create a conda environment for this pipeline:
# conda env create -f environment.yml
name: nfcore-rnaseq-1.0dev
channels:
- bioconda
- conda-forge
- defaults
dependencies:
- conda-forge::openjdk=8.0.144 # Needed for FastQC - conda build hangs without this
- fastqc=0.11.7
- trim-galore=0.5.0
- star=2.6.1a
- hisat2=2.1.0
- picard=2.18.11
- bioconductor-dupradar=1.8.0
- conda-forge::r-data.table=1.11.4
- conda-forge::r-gplots=3.0.1
- bioconductor-edger=3.20.7
- conda-forge::r-markdown=0.8
- preseq=2.0.3
- rseqc=2.6.4
- samtools=1.9
- stringtie=1.3.4
- subread=1.6.2
- gffread=0.9.9
- deeptools=3.1.1
- multiqc=1.6
|
Drop trailing dots for consistency | # Ref: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
blank_issues_enabled: true # default
contact_links:
- name: '💬 IRC: #pypa @ Freenode'
url: https://webchat.freenode.net/#pypa
about: Chat with devs.
- name: 🤷💻🤦 Discourse
url: https://discuss.python.org/c/packaging
about: Please ask typical Q&A here.
- name: 📝 PyPA Code of Conduct
url: https://www.pypa.io/en/latest/code-of-conduct/
about: ❤ Be nice to other members of the community. ☮ Behave.
| # Ref: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
blank_issues_enabled: true # default
contact_links:
- name: '💬 IRC: #pypa @ Freenode'
url: https://webchat.freenode.net/#pypa
about: Chat with devs
- name: 🤷💻🤦 Discourse
url: https://discuss.python.org/c/packaging
about: Please ask typical Q&A here
- name: 📝 PyPA Code of Conduct
url: https://www.pypa.io/en/latest/code-of-conduct/
about: ❤ Be nice to other members of the community. ☮ Behave.
|
Add GA workflow for pushing image to ECR | name: Build and publish to ECR
on:
push:
branches:
- main
paths-ignore:
- "Jenkinsfile"
- ".git**"
jobs:
publish:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
# TODO: Remove long-lived keys and switch to OIDC once https://github.com/github/roadmap/issues/249 lands.
aws-access-key-id: ${{ secrets.AWS_GOVUK_ECR_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_GOVUK_ECR_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build, tag, and push image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: ${{ github.event.repository.name }}
IMAGE_TAG: ${{ github.sha }}
run: |
# Build a docker container and push it to ECR
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG -t $ECR_REGISTRY/$ECR_REPOSITORY:latest .
echo "Pushing image to ECR..."
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" | |
Replace deprecated --without flag with bundle config | ---
expeditor:
cached_folders:
- vendor
defaults:
buildkite:
retry:
automatic:
limit: 1
timeout_in_minutes: 30
steps:
- label: run-lint-and-specs-ruby-2.7
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.7-buster
- label: run-lint-and-specs-ruby-3.0
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:3.0-buster
- label: run-specs-windows
command:
- bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
host_os: windows
image: rubydistros/windows-2019:3.0
| ---
expeditor:
cached_folders:
- vendor
defaults:
buildkite:
retry:
automatic:
limit: 1
timeout_in_minutes: 30
steps:
- label: run-lint-and-specs-ruby-2.7
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.7-buster
- label: run-lint-and-specs-ruby-3.0
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:3.0-buster
- label: run-specs-windows
command:
- bundle config set --local without docs debug
- bundle install --jobs=7 --retry=3
- bundle exec rake
expeditor:
executor:
docker:
host_os: windows
image: rubydistros/windows-2019:3.0
|
Set up CI with Azure Pipelines | trigger:
- master
strategy:
matrix:
linux:
imageName: 'ubuntu-16.04'
mac:
imageName: 'macos-10.13'
windows:
imageName: 'vs2017-win2016'
pool:
vmImage: $(imageName)
steps:
- task: NodeTool@0
inputs:
versionSpec: '8.x'
displayName: 'Install Node.js'
- bash: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
echo ">>> Started xvfb"
displayName: Start xvfb
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
- bash: |
echo ">>> Compile vscode-test"
yarn && yarn compile
echo ">>> Compiled vscode-test"
cd sample
echo ">>> Run sample integration test"
yarn && yarn compile && yarn test
displayName: Run Tests
env:
DISPLAY: ':99.0'
| trigger:
- master
strategy:
matrix:
linux:
imageName: 'ubuntu-16.04'
mac:
imageName: 'macos-10.13'
windows:
imageName: 'vs2017-win2016'
pool:
vmImage: $(imageName)
steps:
- task: NodeTool@0
inputs:
versionSpec: '8.x'
displayName: 'Install Node.js'
- bash: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
echo ">>> Started xvfb"
displayName: Start xvfb
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))
- bash: |
npm test
displayName: Run Tests
env:
DISPLAY: ':99.0'
|
Set up CI with Azure Pipelines | # Universal Windows Platform
# Build a Universal Windows Platform project using Visual Studio.
# Add steps that test and distribute an app, save build artifacts, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
solution: 'Source\Zafiro.sln'
buildPlatform: 'x86|x64|ARM'
buildConfiguration: 'Release'
appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\'
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
platform: 'x86'
solution: '$(solution)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'
| # Universal Windows Platform
# Build a Universal Windows Platform project using Visual Studio.
# Add steps that test and distribute an app, save build artifacts, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
solution: 'Source\Zafiro.sln'
buildPlatform: 'x86|x64|ARM'
buildConfiguration: 'Release'
appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\'
steps:
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
command: 'pack'
packagesToPack: '**/Zafiro.*.csproj'
versioningScheme: 'byPrereleaseNumber'
majorVersion: '1'
minorVersion: '0'
patchVersion: '0'
includeSymbols: true
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
platform: 'x86'
solution: '$(solution)'
configuration: '$(buildConfiguration)'
msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'
|
Revert "Try workflow with coverage upload again" | name: tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
php:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.4, 8.0, 8.1]
dependency-version: [prefer-lowest, prefer-stable]
steps:
- name: checkout code
uses: actions/checkout@v2
- name: setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
# - name: do some magic Composer cache
# id: composer-cache
# run: echo "::set-output name=dir::$(composer config cache-files-dir)"
# - uses: actions/cache@v2
# with:
# path: ${{ steps.composer-cache.outputs.dir }}
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
# restore-keys: ${{ runner.os }}-composer-
- name: install dependencies
run: composer update --${{ matrix.dependency-version }}
- name: run tests
run: php vendor/bin/phpunit --coverage-clover=coverage.clover
# run: php vendor/bin/phpunit
- name: upload code coverage
run: php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
| name: tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
php:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.4, 8.0, 8.1]
dependency-version: [prefer-lowest, prefer-stable]
steps:
- name: checkout code
uses: actions/checkout@v2
- name: setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
# - name: do some magic Composer cache
# id: composer-cache
# run: echo "::set-output name=dir::$(composer config cache-files-dir)"
# - uses: actions/cache@v2
# with:
# path: ${{ steps.composer-cache.outputs.dir }}
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
# restore-keys: ${{ runner.os }}-composer-
- name: install dependencies
run: composer update --${{ matrix.dependency-version }}
- name: run tests
# run: php vendor/bin/phpunit --coverage-clover=coverage.clover
run: php vendor/bin/phpunit
# - name: upload code coverage
# run: php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
|
Add Ruby 2.3 to Travis CI build matrix | language: ruby
services:
- redis-server
rvm:
- 2.2
- 2.1
- 2.0.0
branches:
only:
- master
notifications:
email:
recipients:
- gabe@ga.be
gemfile:
- gemfiles/sidekiq_2.gemfile
- gemfiles/sidekiq_master.gemfile
| language: ruby
services:
- redis-server
rvm:
- 2.3
- 2.2
- 2.1
- 2.0.0
branches:
only:
- master
notifications:
email:
recipients:
- gabe@ga.be
gemfile:
- gemfiles/sidekiq_2.gemfile
- gemfiles/sidekiq_master.gemfile
|
Remove `softwareupdate` from install step | language: objective-c
rvm: system
osx_image: xcode7
install:
- travis_wait 'sudo softwareupdate -i -a'
- sudo gem install bundler --no-ri --no-rdoc
- sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future bundle install
script:
- soloist
| language: objective-c
rvm: system
osx_image: xcode7
install:
- sudo gem install bundler --no-ri --no-rdoc
- sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future bundle install
script:
- soloist
|
Fix TravisCI installation of render requirements | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
# TODO(asmacdo)
# pypy is unable to install numpy and pandas. The test should either not
# install pandas or it should install from the pypy repo.
# - "pypy"
install:
- travis_retry pip install -r dev-requirements.txt
- travis_retry invoke plugin_requirements
script: python setup.py test
| # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
# TODO(asmacdo)
# pypy is unable to install numpy and pandas. The test should either not
# install pandas or it should install from the pypy repo.
# - "pypy"
install:
- travis_retry pip install -r dev-requirements.txt
- travis_retry invoke plugin_requirements
- travis_retry python mfr/cli.py install all
script: python setup.py test
|
Use dependency POM instead of hacky script to build certain jobs before building test deps | language: java
jdk:
- oraclejdk8
env:
- TEST_DIR=aleph2_data_model
- TEST_DIR=aleph2_core_distributed_services_library
- TEST_DIR=aleph2_core_shared_library
- TEST_DIR=aleph2_harvest_context_library
- TEST_DIR=aleph2_streaming_enrichment_context_library
- TEST_DIR=aleph2_management_db_service
- TEST_DIR=aleph2_data_import_manager
- TEST_DIR=aleph2_core_security
before_install:
- cd test_dependencies && git pull origin master && cd ../aleph2_data_model && mvn install -DskipTests=true && cd ../aleph2_core_distributed_services_library && mvn install -DskipTests=true && cd ../aleph2_core_security && mvn install -DskipTests=true && cd ../test_dependencies/ && mvn install -DskipTests=true && cd ../
script: cd $TEST_DIR && mvn install -DskipTests=true && mvn test
after_success:
- mvn clean test jacoco:report coveralls:report
# blacklist
branches:
except:
- june_2015_release_inc_patches
| language: java
jdk:
- oraclejdk8
env:
- TEST_DIR=aleph2_data_model
- TEST_DIR=aleph2_core_distributed_services_library
- TEST_DIR=aleph2_core_shared_library
- TEST_DIR=aleph2_harvest_context_library
- TEST_DIR=aleph2_streaming_enrichment_context_library
- TEST_DIR=aleph2_management_db_service
- TEST_DIR=aleph2_data_import_manager
- TEST_DIR=aleph2_core_security
before_install:
- mvn install -f dependency_pom.xml -DskipTests=true && cd test_dependencies && git pull origin master && mvn install -DskipTests=true && cd ../
script: cd $TEST_DIR && mvn install -DskipTests=true && mvn test
after_success:
- mvn clean test jacoco:report coveralls:report
# blacklist
branches:
except:
- june_2015_release_inc_patches
|
Test with newer Go versions | language: go
sudo: false
go:
- "1.13"
- "1.14"
services:
- mysql
- postgresql
before_install:
- mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot
- mysql -e "CREATE DATABASE IF NOT EXISTS test_env;" -uroot
- psql -c "CREATE DATABASE test;" -U postgres
install:
- go get -t ./...
- go install ./...
- go get -u github.com/kisielk/errcheck
script:
- CGO_ENABLED=0 go build -v .
- go test -v ./...
- bash test-integration/postgres.sh
- bash test-integration/mysql.sh
- bash test-integration/mysql-flag.sh
- bash test-integration/mysql-env.sh
- bash test-integration/sqlite.sh
- errcheck ./...
| language: go
sudo: false
go:
- "1.13"
- "1.14"
- "1.15"
- "1.16"
services:
- mysql
- postgresql
before_install:
- mysql -e "CREATE DATABASE IF NOT EXISTS test;" -uroot
- mysql -e "CREATE DATABASE IF NOT EXISTS test_env;" -uroot
- psql -c "CREATE DATABASE test;" -U postgres
install:
- go get -t ./...
- go install ./...
- go get -u github.com/kisielk/errcheck
script:
- CGO_ENABLED=0 go build -v .
- go test -v ./...
- bash test-integration/postgres.sh
- bash test-integration/mysql.sh
- bash test-integration/mysql-flag.sh
- bash test-integration/mysql-env.sh
- bash test-integration/sqlite.sh
- errcheck ./...
|
Add pandas to the dependencies | language: python
python:
- "2.7"
jdk:
- openjdk7
virtualenv:
system_site_packages: true
install:
# Install Spark
- wget http://d3kbcqa49mib13.cloudfront.net/spark-0.9.0-incubating-bin-hadoop1.tgz
- tar -xzf spark-0.9.0-incubating-bin-hadoop1.tgz
- sudo apt-get install -qq python-numpy python-scipy
- pip install -r python/requirements.txt
# Workaround for Travis issue with POSIX semaphores; see
# https://github.com/travis-ci/travis-cookbooks/issues/155
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
script:
- export SPARK_HOME=`pwd`/spark-0.9.0-incubating-bin-hadoop1
- cd python/test
- ./run_tests.sh | language: python
python:
- "2.7"
jdk:
- openjdk7
virtualenv:
system_site_packages: true
install:
# Install Spark
- wget http://d3kbcqa49mib13.cloudfront.net/spark-0.9.0-incubating-bin-hadoop1.tgz
- tar -xzf spark-0.9.0-incubating-bin-hadoop1.tgz
- sudo apt-get install -qq python-numpy python-scipy python-pandas
- pip install -r python/requirements.txt
# Workaround for Travis issue with POSIX semaphores; see
# https://github.com/travis-ci/travis-cookbooks/issues/155
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
script:
- export SPARK_HOME=`pwd`/spark-0.9.0-incubating-bin-hadoop1
- cd python/test
- ./run_tests.sh |
Add jruby to allowed failures | language: ruby
gemfile:
- gemfiles/rack_1.x.gemfile
- gemfiles/rack_2.x.gemfile
rvm:
- 1.9.3
- 2.2
- ruby-head
- jruby
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
| language: ruby
gemfile:
- gemfiles/rack_1.x.gemfile
- gemfiles/rack_2.x.gemfile
rvm:
- 1.9.3
- 2.2
- ruby-head
- jruby
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
- rvm: jruby
|
Use preinstalled Carthage on CI | language: objective-c
osx_image: xcode7.2
install:
- brew update && brew install carthage
- gem install xcpretty
script: rake test build:all
| language: objective-c
osx_image: xcode7.2
install: gem install xcpretty
script: rake test build:all
|
Update test for latest GCC on Mac | language: c
sudo: false
branches:
only:
- master
cache: apt
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- gcc-5
- gcc-6
matrix:
include:
- os: linux
compiler: clang
- os: linux
compiler: gcc
- os: linux
compiler: gcc-4.8
- os: linux
compiler: gcc-5
- os: linux
compiler: gcc-6
- os: osx
compiler: clang
osx_image: xcode6.2
- os: osx
compiler: clang
osx_image: xcode7.3
- os: osx
compiler: clang
osx_image: xcode8
- os: osx
env: INSTALL=gcc48
compiler: gcc-4.8
- os: osx
env: INSTALL=gcc5
compiler: gcc-5
before_install:
- if [ "$TRAVIS_OS_NAME" == osx -a "$INSTALL" == gcc5 ] ; then brew update || true ; fi
- if [ "$TRAVIS_OS_NAME" == osx -a "$INSTALL" ] ; then brew install $INSTALL || true ; fi
script:
- make
- make test
| language: c
sudo: false
branches:
only:
- master
cache: apt
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- gcc-5
- gcc-6
matrix:
include:
- os: linux
compiler: clang
- os: linux
compiler: gcc
- os: linux
compiler: gcc-4.8
- os: linux
compiler: gcc-5
- os: linux
compiler: gcc-6
- os: osx
compiler: clang
osx_image: xcode6.2
- os: osx
compiler: clang
osx_image: xcode7.3
- os: osx
compiler: clang
osx_image: xcode8
- os: osx
env: INSTALL=gcc48
compiler: gcc-4.8
- os: osx
env: INSTALL=gcc
compiler: gcc-6
osx_image: xcode8
before_install:
- if [ "$TRAVIS_OS_NAME" == osx -a "$INSTALL" == gcc5 ] ; then brew update || true ; fi
- if [ "$TRAVIS_OS_NAME" == osx -a "$INSTALL" ] ; then brew install $INSTALL || true ; fi
script:
- make
- make test
|
Update llvmlite recipe for 3.9.1 | package:
name: llvmlite
# GIT_DESCRIBE_TAG may not be set
version: {{ environ.get('GIT_DESCRIBE_TAG', '').lstrip('v') }}
source:
# Using the local source tree helps test building without pushing changes
path: ../..
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
requirements:
build:
- python
# On channel https://anaconda.org/numba/
- llvmdev 3.8*
# Those are copied into the llvmlite packages
- vs2013_runtime [win]
# The DLL build uses cmake on Windows
- cmake [win]
- enum34 [py27]
run:
- python
- enum34 [py27]
test:
imports:
- llvmlite
- llvmlite.binding
about:
home: https://github.com/numba/llvmlite
license: New BSD License
summary: A lightweight LLVM python binding for writing JIT compilers
| package:
name: llvmlite
# GIT_DESCRIBE_TAG may not be set
version: {{ environ.get('GIT_DESCRIBE_TAG', '').lstrip('v') }}
source:
# Using the local source tree helps test building without pushing changes
path: ../..
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
requirements:
build:
- python
# On channel https://anaconda.org/numba/
- llvmdev 3.9*
# Those are copied into the llvmlite packages
- vs2013_runtime [win]
# The DLL build uses cmake on Windows
- cmake [win]
- enum34 [py27]
run:
- python
- enum34 [py27]
test:
imports:
- llvmlite
- llvmlite.binding
about:
home: https://github.com/numba/llvmlite
license: New BSD License
summary: A lightweight LLVM python binding for writing JIT compilers
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.