Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Fix permission for nightly build | name: Nightly Build
on:
# https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#scheduled-events
schedule:
- cron: "30 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: S... | name: Nightly Build
on:
# https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#scheduled-events
schedule:
- cron: "30 0 * * *"
permissions: write-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-d... |
Stop running tests while they don't work | general:
artifacts:
- "dist"
machine:
services:
- docker
dependencies:
override:
- echo "Skipped"
test:
override:
- ./create_binary.sh
- sudo tests/mainline.sh
| general:
artifacts:
- "dist"
machine:
services:
- docker
dependencies:
override:
- echo "Skipped"
test:
override:
- ./create_binary.sh
|
Disable host key checking for whole 10.0.0.0 net | ---
- name: Main build script
hosts: all
sudo: yes
vars:
ssh_ip_mask: "10.0.0.*"
tasks:
- include: tasks/base.yaml
- include: tasks/puppet.yaml
- include: tasks/docker.yaml
- include: tasks/cloud_archive.yaml
- include: tasks/ssh_conf.yaml
| ---
- name: Main build script
hosts: all
sudo: yes
vars:
ssh_ip_mask: "10.*.*.*"
tasks:
- include: tasks/base.yaml
- include: tasks/puppet.yaml
- include: tasks/docker.yaml
- include: tasks/cloud_archive.yaml
- include: tasks/ssh_conf.yaml
|
Update from Hackage at 2020-08-26T10:17:31Z | homepage: https://github.com/nikita-volkov/template-haskell-compat-v0208
changelog-type: ''
hash: ffab0f18db8d72b9bdf664422b163cfe122ba5c09b6760f8e7ccb3947e52d60b
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: A backwards compatibility layer for Template Haskell newer than 2.8
changel... | homepage: https://github.com/nikita-volkov/template-haskell-compat-v0208
changelog-type: ''
hash: b2a8d8bb0a255c7467e260dc789aff2d0c6bcbbcc74ac5f350b78a80fe5af17c
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: A backwards compatibility layer for Template Haskell newer than 2.8
changel... |
Check every file except JSON for apache license link. | language: golang
go:
- "1.14"
before_script:
- go install golang.org/x/tools/cmd/goimports
script:
- go test -v ./...
- >
echo "Checking goimports..." && (
if [[ -n $(goimports -l internal cmd) ]]; then
goimports -d internal cmd
echo 'Please run `goimports -w cmd internal`.'
false
fi
)
... | language: golang
go:
- "1.14"
before_script:
- go install golang.org/x/tools/cmd/goimports
script:
- go test -v ./...
- >
echo "Checking goimports..." && (
if [[ -n $(goimports -l internal cmd) ]]; then
goimports -d internal cmd
echo 'Please run `goimports -w cmd internal`.'
false
fi
)
... |
Add valgrind installation to TravisCI test. | # Travis-CI Build for libadt
# see travis-ci.org for details
language: c
compiler:
- gcc-4.9
- clang
os:
- linux
env:
global:
- SECRET_TOKEN=rPPjmuNMjbdspnrrTxqf
branches:
only:
- master
before_script:
- make clean
script:
- make
- make tests
- make vg_tests
after_success:
- bash <(cu... | # Travis-CI Build for libadt
# see travis-ci.org for details
language: c
compiler:
- gcc-4.9
- clang
os:
- linux
env:
global:
- SECRET_TOKEN=rPPjmuNMjbdspnrrTxqf
branches:
only:
- master
before_script:
- make clean
script:
- make
- make tests
- make vg_tests
after_success:
- bash <(cu... |
Use JDK8 for tut in Travis, hopefully. | sudo: false
language: ruby
rvm: 2.2
env:
global:
- secure: "fYE4XBc2dUJxu51JfH8Mj6WDN5qy3xGkn4PrXF0I2rcoBpU8kGEjIpmbirh3yjykFX4VlMbyL4bO9rRAu/twwtMu0IEsrPWnzcTdjz6yvqAyIlbcOMpvSzUIOSbi2XtVP0QzC6BcQ4AV2gGgXONC8O3vEd1vW3U2FysyI4d5HBE="
install:
- bundle install
- curl -s https://raw.githubusercontent.com/paul... | sudo: false
language: ruby
rvm: 2.2
env:
global:
- secure: "fYE4XBc2dUJxu51JfH8Mj6WDN5qy3xGkn4PrXF0I2rcoBpU8kGEjIpmbirh3yjykFX4VlMbyL4bO9rRAu/twwtMu0IEsrPWnzcTdjz6yvqAyIlbcOMpvSzUIOSbi2XtVP0QzC6BcQ4AV2gGgXONC8O3vEd1vW3U2FysyI4d5HBE="
jdk:
- oraclejdk8
install:
- bundle install
- curl -s https://raw.githu... |
Remove expired rbx targets from Travis CI | language: ruby
rvm:
# TODO reenable ruby-head when issues sorted out
# - ruby-head
- jruby-head
# - "1.8.7"
- "1.9.3"
# - jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
# - rbx-18mode
- rbx-19mode
# uncomment this line if your project needs to run something other than `rake`:
# sc... | language: ruby
rvm:
# TODO reenable ruby-head when issues sorted out
# - ruby-head
- jruby-head
# - "1.8.7"
- "1.9.3"
# - jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
# - rbx-18mode
# - rbx-19mode
# uncomment this line if your project needs to run something other than `rake`:
# ... |
Update build tools to sdk 24 | language: android
sudo: required
android:
components:
- tools
- build-tools-23.0.3
- android-23
- extra
before_install:
- git clone https://github.com/urho3d/android-ndk.git $HOME/android-ndk-root
- export ANDROID_NDK_HOME=$HOME/android-ndk-root
before_script:
- echo no | android create avd -... | language: android
sudo: required
android:
components:
- tools
- build-tools-24.0.0
- android-24
- extra
before_install:
- git clone https://github.com/urho3d/android-ndk.git $HOME/android-ndk-root
- export ANDROID_NDK_HOME=$HOME/android-ndk-root
before_script:
- echo no | android create avd -... |
Make Travis use the Makefile | language: python
sudo: false
python:
- "2.7"
install:
- pip install rply
- pip install coveralls
script:
coverage run test.py
after_success:
coveralls
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/b81f9ec6e179a91aaca0
on_success: change
on_failure: always
on_start: fals... | language: python
sudo: false
python:
- "2.7"
install:
- pip install rply
- pip install coveralls
script:
make coverage
after_success:
coveralls
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/b81f9ec6e179a91aaca0
on_success: change
on_failure: always
on_start: false
|
Build on Travis CI with latest Node.js 6. | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Update to latest Travis CI config | sudo: false
language: c
branches:
except:
- /^[0-9]+\.[0-9]+\.[0-9]$/
matrix:
include:
- os: linux
language: python
python: "2.6"
- os: linux
language: python
python: "2.7"
- os: linux
language: python
python: "3.2"
- os: linux
language: python
pyt... | sudo: false
language: c
branches:
except:
- /^[0-9]+\.[0-9]+\.[0-9]$/
matrix:
include:
- os: linux
dist: trusty
language: python
python: "2.6"
- os: linux
dist: bionic
language: python
python: "2.7"
- os: linux
dist: trusty
language: python
pytho... |
Remove PHP 5.3 support as it is way past EOL | language: php
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
... | language: php
matrix:
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
# required to test HHV... |
Disable 3.3 until Twisted setup.py works. | language: python
env:
- TWISTED=Twisted==12.0 RUNTESTS=trial
- TWISTED=Twisted==12.1 RUNTESTS=trial
- TWISTED=Twisted==12.2 RUNTESTS=trial
- TWISTED=Twisted==12.3 RUNTESTS=trial
- TWISTED=Twisted==13.0 RUNTESTS=trial
- TWISTED=Twisted==13.1 RUNTESTS=trial
- TWISTED=Twisted==13.2 RUNTESTS=tr... | language: python
env:
- TWISTED=Twisted==12.0 RUNTESTS=trial
- TWISTED=Twisted==12.1 RUNTESTS=trial
- TWISTED=Twisted==12.2 RUNTESTS=trial
- TWISTED=Twisted==12.3 RUNTESTS=trial
- TWISTED=Twisted==13.0 RUNTESTS=trial
- TWISTED=Twisted==13.1 RUNTESTS=trial
- TWISTED=Twisted==13.2 RUNTESTS=tr... |
Switch Windows CI builds from windows-gnu to windows-msvc. | language: rust
rust:
- stable
- nightly
os:
- linux
- osx
- windows
env:
matrix:
- RELEASE=
- RELEASE=--release
before_script:
# rustfmt may not always be available in nightly
- if [[ "$TRAVIS_RUST_VERSION" != *nightly* ]]; then rustup component add rustfmt; fi
script:
# We cannot run `cargo... | language: rust
rust:
- stable
- nightly
os:
- linux
- osx
- windows
env:
matrix:
- RELEASE=
- RELEASE=--release
install:
# rustfmt may not always be available in nightly
- if [[ "$TRAVIS_RUST_VERSION" != *nightly* ]]; then rustup component add rustfmt; fi
- if [[ "$TRAVIS_OS_NAME" == "windo... |
Add TMPDIR env variable to Travis file | language: python
python:
- "2.6"
- "2.7"
- "3.4"
matrix:
allow_failures:
- python: "2.7"
- python: "3.4"
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install stomp.py
- pip install python-daemon
- pip install python-ldap
... | language: python
python:
- "2.6"
- "2.7"
- "3.4"
matrix:
allow_failures:
- python: "2.7"
- python: "3.4"
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install stomp.py
- pip install python-daemon
- pip install python-ldap
... |
Allow nightly builds to fail | language: rust
rust:
- stable
- beta
- nightly
sudo: false
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
script:
- travis-cargo build
- travis-cargo test
- travis-cargo doc
after_success:
- git config user.name "Travis-CI Doc Bot"
- git ... | language: rust
sudo: false
rust:
- stable
matrix:
allow_failures:
- rust: nightly
include:
- rust: beta
script:
- travis-cargo build
- travis-cargo test
- travis-cargo doc
- rust: nightly
script:
- travis-cargo build... |
Fix builds on 5.4 5.5 | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
install:
- travis_retry composer self-update
- travis_retry composer --version
- travis_retry composer update --prefer-dist --no-interaction
script:
- sh ./maketests.sh
- php vendor/bin/codecept run | language: php
matrix:
include:
- php: '5.4'
dist: precise
- php: '5.5'
dist: precise
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- '7.1'
- '7.2'
- '7.3'
install:
- travis_retry composer self-update
- travis_retry composer --version
- travis_retry composer update --prefer-dist --no-in... |
Install last Riak DB to fix Travis. This is a temporal fix. | language: ruby
rvm:
- 1.9.3
- 2.0.0
services:
- riak
before_install:
- gem install dep
- ulimit -n 4096
install:
- dep install
| language: ruby
rvm:
- 1.9.3
- 2.0.0
before_install:
- curl http://apt.basho.com/gpg/basho.apt.key | sudo apt-key add -
- sudo bash -c "echo deb http://apt.basho.com $(lsb_release -sc) main > /etc/apt/sources.list.d/basho.list"
- sudo apt-get update
- gem install dep
- ulimit -n 4096
install:
- yes n |... |
Use the standard Jade Travis configuration | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
|
Test setting URL for coveralls | sudo: required
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.2
language: python
python:
- "3.4"
install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/relea... | sudo: required
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.2
language: python
python:
- "3.4"
install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/relea... |
Add libpq-dev to Travis CI packages. | language: go
go:
- tip
sudo: required
dist: trusty
addons:
apt:
packages:
- python3
- python3-coverage
- python3-psycopg2
- python3-numpy
- python3-matplotlib
install:
- go get github.com/olt/libpq
- go get github.com/DATA-DOG/go-sqlmock
- go get github.com/axw/gocov/gocov
- go get g... | language: go
go:
- tip
sudo: required
dist: trusty
addons:
apt:
packages:
- python3
- python3-coverage
- libpq-dev
- python3-psycopg2
- python3-numpy
- python3-matplotlib
install:
- go get github.com/olt/libpq
- go get github.com/DATA-DOG/go-sqlmock
- go get github.com/axw/gocov/go... |
Remove node 0.8 from Travis config. | language: node_js
node_js:
- "0.8"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
|
Add most recent Python versions in Travis CI | sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
install:
- pip install .
- pip install -r test_requirements.txt
script:
- nosetests
| sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- pip install .
- pip install -r test_requirements.txt
script:
- nosetests
|
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 clean package
git:
depth: 10
| # 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 clean package
git:
depth: 10
|
Add node.js versions for Travis-ci | language: "node_js"
node_js:
- "0.4"
- "0.6"
- "0.8"
- "0.10"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-coverage-to-coveralls"
| language: "node_js"
node_js:
- "0.4"
- "0.6"
- "0.8"
- "0.10"
- "0.12"
- "4.0"
- "4.1"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-coverage-to-coveralls"
|
Build minimal versions in Travis | sudo: false
language: rust
rust:
- nightly
- stable
- 1.15.1
- beta
script:
- cargo test
| sudo: false
language: rust
rust:
- stable
- 1.15.1
- beta
script:
- cargo test
matrix:
include:
- rust: nightly
script:
- cargo test
- cargo update -Z minimal-versions && cargo build
|
Allow stables and betas to fail the build | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: stable
- rust: beta
# stables and betas are allowed to fail because the project used #![feature] |
Allow CI failures for ruby-head | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
before_script: git checkout master
script: bundle exec rake ci:metrics -t
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
allow_failures:
- ruby-head
before_script: git checkout master
script: bundle exec rake ci:metrics -t
|
Switch to trusty for testing | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk... | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin... |
Change branch name to main. | name: Publish Release
on:
workflow_dispatch: {}
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
say_hello:
runs-on: ubuntu-latest
steps:
- run: |
echo "Hello 123!"
echo "- in 234!"
| name: Publish Release
on:
workflow_dispatch: {}
push:
branches:
- main
pull_request:
branches:
- main
jobs:
say_hello:
runs-on: ubuntu-latest
steps:
- run: |
echo "Hello 123!"
echo "- in 234!"
|
Add description to Jekyll config | full_rebuild: true
title: vlau.me
url: http://vlau.me
description: ''
permalink: /:title
include:
- '_data'
exclude:
- 'node_modules'
- '*.sublime-workspace'
gems:
- jekyll-sitemap
kramdown:
input: GFM
auto_ids: false
sass:
style: compressed
color:
text: ffe0e7
background: 28143d
ui: 8f240... | full_rebuild: true
title: vlau.me
url: http://vlau.me
description: 'vlau.me is a searchable link collection for my fellow Computer Science and Media students at Bauhaus-Univerität Weimar.'
permalink: /:title
include:
- '_data'
exclude:
- 'node_modules'
- '*.sublime-workspace'
gems:
- jekyll-sitemap
kramdo... |
Replace markdown rendering engine (redcarpet->kramdown) | # Site settings
# Build settings
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "tables", "fenced_code_blocks", "autolink", "strikethrough", "with_toc_data"] | # Site settings
# Build settings
markdown: kramdown
redcarpet:
extensions: ["no_intra_emphasis", "tables", "fenced_code_blocks", "autolink", "strikethrough", "with_toc_data"]
|
Add option to useStudyID option to docker invocation of multifactor risk service | ie:
build: .
ports:
- "3001"
links:
- mongodb:mongo
command: ./server -huddle ./configs/multifactor_huddle_config.json
endpoint:
build: ../ie-ccda-endpoint
ports:
- "3000:3000"
links:
- ie
mongodb:
image: mongo
volumes:
- /data/db:/data/db
ports:
- "27017"
multifactorriskserv... | ie:
build: .
ports:
- "3001"
links:
- mongodb:mongo
command: ./server -huddle ./configs/multifactor_huddle_config.json
endpoint:
build: ../ie-ccda-endpoint
ports:
- "3000:3000"
links:
- ie
mongodb:
image: mongo
volumes:
- /data/db:/data/db
ports:
- "27017"
multifactorriskserv... |
Make sure httpd is ON and configured to start on boot | ---
- name: install apache2 packages
yum: pkg={{ item }} state=installed
with_items:
- httpd
- httpd-devel
sudo: true
- name: change port on Apache2 config
lineinfile: dest=/etc/httpd/conf/httpd.conf regexp="^Listen " insertafter="^Listen " line="Listen {{ http_port }}"
sudo: true
notify:
- resta... | ---
- name: install apache2 packages
yum: pkg={{ item }} state=installed
with_items:
- httpd
- httpd-devel
sudo: true
- name: change port on Apache2 config
lineinfile: dest=/etc/httpd/conf/httpd.conf regexp="^Listen " insertafter="^Listen " line="Listen {{ http_port }}"
sudo: true
notify:
- resta... |
Add coverage output on PR | name: test
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poet... | name: test
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Poetry
uses: snok/install-poet... |
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-v... | 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-v... |
Fix prettier version in pre-commit | aliases:
- &python_settings
types: [python]
exclude: >
(?x)^(
.+/migrations/.+|
)$
repos:
- repo: https://github.com/pre-commit/mirrors-isort
rev: v4.3.21
hooks:
- <<: *python_settings
id: isort
- repo: https://github.com/python/... | aliases:
- &python_settings
types: [python]
exclude: >
(?x)^(
.+/migrations/.+|
)$
repos:
- repo: https://github.com/pre-commit/mirrors-isort
rev: v4.3.21
hooks:
- <<: *python_settings
id: isort
- repo: https://github.com/python/... |
Update from Hackage at 2019-11-26T16:17:40Z | homepage: ''
changelog-type: markdown
hash: 62e6d7bb4937b58b6b9c2096e35cf9ff8aa24ba1e401d1dd7c97f866935d0786
test-bench-deps: {}
maintainer: maintainer@obsidian.systems
synopsis: Dependent map that uses semigroup mappend
changelog: |
# Revision history for dependent-monoidal-map
basic-deps:
dependent-sum: ! '>=0.6.... | homepage: ''
changelog-type: markdown
hash: 0e9a6bc4a7b060e47d65c7d04669abce9275ace1fe6877921294757454ea3948
test-bench-deps: {}
maintainer: maintainer@obsidian.systems
synopsis: Dependent map that uses semigroup mappend
changelog: |
# Revision history for dependent-monoidal-map
basic-deps:
dependent-sum: ! '>=0.6.... |
Update from Hackage at 2019-05-02T18:35:57Z | homepage: http://moire.be/haskell/
changelog-type: ''
hash: 679c16468fb03c7251acc97898f6fcebe06bbb549d0d2a272742370873781309
test-bench-deps: {}
maintainer: bkomuves (plus) hackage (at) gmail (dot) com
synopsis: Layout and render text with TrueType fonts using OpenGL
changelog: ''
basic-deps:
OpenGL: ! '>=3'
base: ... | homepage: http://moire.be/haskell/
changelog-type: ''
hash: b65823651b4cbf5d59f35b05b52f611cf8f1e61f05c90c0aadddd8de95536e81
test-bench-deps: {}
maintainer: bkomuves (plus) hackage (at) gmail (dot) com
synopsis: Layout and render text with TrueType fonts using OpenGL
changelog: ''
basic-deps:
OpenGL: ! '>=3'
base: ... |
Configure CircleCI to run eclint | ---
version: 2
_job: &job
docker:
- image: debian:stretch
steps:
- checkout
- run:
name: Install system dependencies
command: apt update -y && apt install -y libfontconfig1 make perl-doc wget
- restore_cache:
key: v1-{{ checksum "packages.txt" }}
- ru... | ---
version: 2
_job: &job
docker:
- image: debian:stretch
steps:
- checkout
- run:
name: Install system dependencies
command: apt update -y && apt install -y libfontconfig1 make perl-doc wget
- restore_cache:
key: v1-{{ checksum "packages.txt" }}
- run:
name: Ins... |
Split install into it's own step. | version: 2
jobs:
test:
docker:
- image: circleci/node:4-browsers
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run: npm config set "//registry.npmjs.org/:_authToken" $NPM_AUTH
- run: make test
- save_cache:
key:... | version: 2
jobs:
test:
docker:
- image: circleci/node:4-browsers
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run: npm config set "//registry.npmjs.org/:_authToken" $NPM_AUTH
- run: make install
- run: make test
- ... |
Add libcurl3 because the system one may require a differen OpenSSL version | # Might be necessary to bundle Python - to be investigated
app: KiCad
binpatch: true
ingredients:
packages:
- kicad
- kicad-library
dist: trusty
sources:
- deb http://archive.ubuntu.com/ubuntu/ trusty main universe
ppas:
- js-reynaud/kicad-4
script:
- # Workaround until
- # AppRun.c expor... | # Might be necessary to bundle Python - to be investigated
app: KiCad
binpatch: true
ingredients:
packages:
- kicad
- kicad-library
- libcurl3
dist: trusty
sources:
- deb http://archive.ubuntu.com/ubuntu/ trusty main universe
ppas:
- js-reynaud/kicad-4
script:
- # Workaround until
- #... |
Use dev server instead of gunicorn for local docker env | web:
build: .
env_file: docker-local.env
links:
- mongo
ports:
- "8000:8000"
mongo:
image: mongo:3.2
| web:
build: .
env_file: docker-local.env
links:
- mongo
ports:
- "8000:8000"
command: "python manage.py server"
mongo:
image: mongo:3.2
|
Use redis ran by champaign with an external link | processor:
build: .
volumes:
- .:/myapp
ports:
- "3000:3000"
external_links:
- champaign_db_1
environment:
PG_USERNAME: postgres
PG_HOST: champaign_db_1
env_file:
- env.yml
db:
image: postgres
ports:
- "5432"
environment:
POSTGRES_DB: champaign
| processor:
build: .
volumes:
- .:/myapp
ports:
- "3000"
external_links:
- champaign_db_1
- champaign_redis_1
environment:
PG_USERNAME: postgres
PG_HOST: champaign_db_1
env_file:
- env.yml
|
Add MVCC for nested-tx support. | #original_development:
# adapter: sqlite3
# database: db/development.sqlite3
# pool: 5
# timeout: 5000
development:
adapter: h2
database: mem:development
pool: 50
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this... | #original_development:
# adapter: sqlite3
# database: db/development.sqlite3
# pool: 5
# timeout: 5000
development:
adapter: h2
database: mem:development;MVCC=TRUE
pool: 50
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do no... |
Refactor setup st2 WF in st2ci to include examples on launchdev | version: '2.0'
st2ci.setup_st2:
description: Setup a running instance of StackStorm from git repo.
type: direct
input:
- host
- repo
- repo_branch
- repo_dir
- debug
output:
clone_path: <% $.clone_path %>
task-defaults:
on-error:
... | version: '2.0'
st2ci.setup_st2:
description: Setup a running instance of StackStorm from git repo.
type: direct
input:
- host
- repo
- repo_branch
- repo_dir
- debug
output:
clone_path: <% $.clone_path %>
task-defaults:
on-error:
... |
Add Docker privileged mode for CircleCI | ---
driver:
name: docker
driver_config:
require_chef_omnibus: true
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.04
- name: debian-7.8
- name: centos-7.0
suites:
- name: package
run_list:
- recipe[mono4]
attributes:
mono4:
install_method: package
- name: source
run_lis... | ---
driver:
name: docker
driver_config:
require_chef_omnibus: true
privileged: true
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.04
- name: debian-7.8
- name: centos-7.0
suites:
- name: package
run_list:
- recipe[mono4]
attributes:
mono4:
install_method: package
- n... |
Add GraphViz for PlantUML usage in AsciiDoc | os: linux
language: java
install: true
script:
- sudo apt-get update && sudo apt-get install oracle-java8-installer
- java -version
- ./gradlew jenkinsBuild
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOM... | os: linux
language: java
install: true
script:
- sudo apt-get update && sudo apt-get install oracle-java8-installer graphviz
- java -version
- ./gradlew jenkinsBuild
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
... |
Drop testing under Python 2.6 for Travis CI (no longer supported). | # Configuration file to run tests on Travis-CI via GitHub notifications
# See http://travis-ci.org/
language: python
python:
- "2.6"
- "2.7"
install:
- "pip install ."
script:
# Run the Python unit tests
- "python setup.py test"
# Run the example scripts
- "cd examples/"
- ./run_examples.sh
| # Configuration file to run tests on Travis-CI via GitHub notifications
# See http://travis-ci.org/
language: python
python:
- "2.7"
install:
- "pip install ."
script:
# Run the Python unit tests
- "python setup.py test"
# Run the example scripts
- "cd examples/"
- ./run_examples.sh
|
Revert "Try getting tests to run on CI" | language: ruby
rvm:
- 2.0.0
- 2.1.2
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
script: "bundle exec rake test"
| language: ruby
rvm:
- 2.0.0
- 2.1.2
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
|
Remove failing "stable" nodejs compile * Can't compile sqlite | language: node_js
node_js:
- "stable"
- "14"
- "12"
- "10"
os: linux
dist: xenial
env:
- CXX=g++-4.9
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9 | language: node_js
node_js:
- "14"
- "12"
- "10"
os: linux
dist: xenial
env:
- CXX=g++-4.9
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9 |
Add ruby 2.1.0 as well | language: ruby
rvm:
- 1.9.3
- 2.0.0
env:
- DB=sqlite
script:
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- bundle exec rspec spec/
before_script:
bundler_args: --binstubs=./bundler_stubs
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
env:
- DB=sqlite
script:
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- bundle exec rspec spec/
before_script:
bundler_args: --binstubs=./bundler_stubs
|
Add Google Play Services to ci | language: android
android:
components:
- platform-tools
- build-tools-23.0.2
- android-23
- extra-android-m2repository
before_script:
- chmod +x gradlew
script:
./gradlew build | language: android
android:
components:
- platform-tools
- build-tools-23.0.2
- android-23
- extra-android-m2repository
- extra-google-m2repository
before_script:
- chmod +x gradlew
script:
./gradlew build |
Set python 3.3.5 in Travis. | language: python
python:
- "3.3"
install:
- pip install flake8
- pip install pep257
script:
- flake8 . --max-line-length=80 --ignore=F403
- pep257 . --ignore=D202
notifications:
email: false
| language: python
python:
- "3.3.5"
install:
- pip install flake8
- pip install pep257
script:
- flake8 . --max-line-length=80 --ignore=F403
- pep257 . --ignore=D202
notifications:
email: false
|
Include errbot in virtual environment for testing. | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
- image: circleci/python:3.6.1
# Sp... | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
- image: circleci/python:3.6.1
# Sp... |
Install ARCH on Travis through conda | language: python
python:
- 2.7
- 3.4
notifications:
email:
on_success: change
on_failure: always
# whitelist
branches:
only:
- master
sudo: false
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
... | language: python
python:
- 2.7
- 3.4
notifications:
email:
on_success: change
on_failure: always
# whitelist
branches:
only:
- master
sudo: false
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
... |
Test on recent Ruby releases | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: rbx-19mode
- rvm: ruby-head
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: rbx-19mode
- rvm: ruby-head
|
Test to fix Travis with development dependencies | bundler_args: "--without development"
script: "bundle exec rake spec"
rvm:
- 1.8.7-p334
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby
gemfile:
- gemfiles/actionpack-3.0.x.gemfile
- gemfiles/actionpack-3.1.x.gemfile
| # bundler_args: "--without development"
script: "bundle exec rake spec"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby
gemfile:
- gemfiles/actionpack-3.0.x.gemfile
- gemfiles/actionpack-3.1.x.gemfile
|
Build docs on PHP 5.6 only | language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
env: CHECK_LINKS=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- if [[ "$CHECK_LINKS" == "true" ]]; then sudo a... | language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
env: CHECK_LINKS=true BUILD_DOCS=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- if [[ "$CHECK_LINKS" == "true"... |
Update Travis CI build (script) | language: cpp
compiler:
- gcc
- clang
addons:
apt:
packages:
- cmake
- libboost-dev
- libboost-filesystem-dev
- libboost-program-options-dev
- libboost-regex-dev
- libcrypto++-dev
- libboost-date-time-dev
script: ... | language: cpp
compiler:
- gcc
- clang
addons:
apt:
packages:
- cmake
- libboost-dev
- libboost-filesystem-dev
- libboost-program-options-dev
- libboost-regex-dev
- libcrypto++-dev
- libboost-date-time-dev
script: ... |
Add scala 2.11.7 to Travis | language: scala
scala:
- 2.10.4
env:
- SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:PermSize=256M -XX:MaxPermSize=512M"
| language: scala
scala:
- 2.10.4
- 2.11.7
env:
- SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:PermSize=256M -XX:MaxPermSize=512M"
|
Add support for Java 12 | language: java
matrix:
include:
- jdk: oraclejdk8
- jdk: openjdk8
- jdk: oraclejdk9
- jdk: openjdk9
- jdk: oraclejdk10
- jdk: openjdk10
- jdk: oraclejdk11
- jdk: openjdk11
- jdk: oraclejdk12
- jdk: openjdk12
allow_failures:
- jdk: oraclejdk9
- jdk: oraclejdk10
script: mvn clean install
a... | language: java
matrix:
include:
- jdk: oraclejdk8
- jdk: openjdk8
- jdk: oraclejdk9
- jdk: openjdk9
- jdk: oraclejdk10
- jdk: openjdk10
- jdk: oraclejdk11
- jdk: openjdk11
- jdk: oraclejdk12
- jdk: openjdk12
allow_failures:
- jdk: oraclejdk9
- jdk: oraclejdk10
- jdk: oraclejdk12
script:... |
Use openjdk11 for Travis CI | language: java
jdk:
- oraclejdk8
after_success:
- mvn clean verify coveralls:report
| language: java
jdk:
- openjdk11
after_success:
- mvn clean verify coveralls:report
|
Change the current directory after rebuilding node-sass | language: go
go:
- master
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- cd static && npm rebuild node-sass --force
script:
- make
| language: go
go:
- master
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- cd static && npm rebuild node-sass --force && cd ..
script:
- make
|
Fix Ubuntu zulu OpenJDK installation | ---
- name: Add Zulu.org JDK repository key
apt_key: keyserver=keyserver.ubuntu.com key=0x219BD9C9
when: corda_java == "openjdk"
- name: Add Zulu.org JDK repository
apt_repository:
repo: http://repos.azulsystems.com/ubuntu stable main
state: present
when: corda_java == "openjdk"
- name: Update APT cac... | ---
- name: Add Zulu.org JDK repository key
apt_key: keyserver=keyserver.ubuntu.com id=0x219BD9C9
when: corda_java == "openjdk"
- name: Add Zulu.org JDK repository
apt_repository:
repo: deb http://repos.azulsystems.com/ubuntu stable main
state: present
when: corda_java == "openjdk"
- name: Update APT ... |
Install curl for rvm (again) | sudo: required
dist: trusty
language: node_js
node_js:
- "6"
python:
- "3.4"
before_install:
- hash -r
- rvm install 2.4.1
- sudo apt-get -y install python3-pip python-dev
cache:
directories:
- node_modules
install:
- bundle install
- npm install
- pip3 install -r demo/requirements.txt
befor... | sudo: required
dist: trusty
language: node_js
node_js:
- "6"
python:
- "3.4"
before_install:
- sudo apt-get install curl -y
- rvm install 2.4.1
- sudo apt-get -y install python3-pip python-dev
cache:
directories:
- node_modules
install:
- bundle install
- npm install
- pip3 install -r demo/re... |
Add cache and install Yarn | language: php
php: 7.1
sudo: false
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
- yarn install
- yarn production
script:
- vendor/bin/phpspec run --verbose
- vendor/bin/parallel-lint --exclude vendor .
- vendor/bin/phpunit --verbose --coverage-clover ... | language: php
php: 7.1
sudo: false
cache:
yarn: true
directories:
- node_modules
- vendor
before_install:
# Repo for newer Node.js versions
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
# Repo for Yarn
- sudo apt-key adv --keyserver pgp.mit.edu --recv D101F7899D41F3C3
- echo... |
Add Ruby 2.1.3 to Travis support | # Not using to test compilation of go component of project because it requires
# xcodebuild which is not available in the ubuntu environment travis-ci
# provides.
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
gemfile: rubygem/Gemfile
script: make rubygem/lib/zeus/version.rb && cd rubygem && bundle exec rspec spec
| # Not using to test compilation of go component of project because it requires
# xcodebuild which is not available in the ubuntu environment travis-ci
# provides.
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.1.3
gemfile: rubygem/Gemfile
script: make rubygem/lib/zeus/version.rb && cd rubygem && bundle exec rs... |
Test on `io.js` `v1.7` and `v1.8` | 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'
matrix:
fast_fini... | language: node_js
node_js:
- "iojs-v1.8"
- "iojs-v1.7"
- "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... |
Use production's PostgreSQL version in CI | language: ruby
dist: bionic
cache: bundler
services:
- postgresql
- elasticsearch
addons:
postgresql: "10"
apt:
packages:
- postgresql-10
- postgresql-client-10
chrome: stable
bundler_args: '--without development'
env:
global:
- DATABASE_URL=postgres://postgres@localhost/timeoverflow_tes... | language: ruby
dist: bionic
cache: bundler
services:
- postgresql
- elasticsearch
addons:
postgresql: "9.4"
apt:
packages:
- postgresql-9.4
- postgresql-client-9.4
chrome: stable
bundler_args: '--without development'
env:
global:
- DATABASE_URL=postgres://postgres@localhost/timeoverflow_... |
Drop node 4 and 5 | language: node_js
node_js:
- '4'
- '5'
- '6'
- '7'
- '8'
- stable
sudo: false
services:
- mysql
before_install:
# use Travis CI default MySQL acount
- export DB_HOST=localhost
- export DB_USER=travis
- export DB_PWD=''
# package-lock.json was introduced in npm@5
- if [[ `node -v` != v9* ]]; then n... | language: node_js
node_js:
- '6'
- '7'
- '8'
- stable
sudo: false
services:
- mysql
before_install:
# use Travis CI default MySQL acount
- export DB_HOST=localhost
- export DB_USER=travis
- export DB_PWD=''
# package-lock.json was introduced in npm@5
- if [[ `node -v` != v9* ]]; then npm install -g np... |
Stop testing on ancient node versions | language: node_js
node_js:
- 0.6
- 0.8
- 0.9
| language: node_js
node_js:
- 0.8
- "0.10"
- "0.11"
|
Use Travis CI container infrastructure | language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
- pypy3
install:
- python setup.py install
- pip install coverage coveralls
script:
- coverage run --source=signxml ./test/test.py
# - coverage report --show-missing
after_success:
- coveralls
matrix:
allow_failures:
- py... | language: python
python:
- 2.7
- 3.3
- 3.4
- pypy
- pypy3
install:
- python setup.py install
- pip install coverage coveralls
script:
- coverage run --source=signxml ./test/test.py
# - coverage report --show-missing
after_success:
- coveralls
matrix:
allow_failures:
- py... |
Remove support for deprecated node versions | language: node_js
node_js:
- "12.14.0"
- "8.16.2"
- "6.14.4"
- "4.9.1"
| language: node_js
node_js:
- node # Current stable
- lts/* # Most recent LTS
- 10
- 8
|
Install dev dependencies as part of CI run. | language: python
python:
- 2.6
- 2.7
script:
- "python setup.py test"
- coverage run setup.py test
- coverage report -m
| language: python
python:
- 2.6
- 2.7
before_install:
- pip install -r requirements-dev.txt --use-mirrors
script:
- python setup.py test
- coverage run setup.py test
- coverage report -m
|
Enable Python3.2 environment on TravisCI | language: python
sudo: false
python:
- 3.4
env:
matrix:
- TOXENV="py26"
- TOXENV="py27"
- TOXENV="py33"
- TOXENV="py34"
- TOXENV="pypy"
- TOXENV="pypy3"
install: pip install tox
script: tox -e $TOXENV
| language: python
sudo: false
python:
- 3.4
env:
matrix:
- TOXENV="py26"
- TOXENV="py27"
- TOXENV="py32"
- TOXENV="py33"
- TOXENV="py34"
- TOXENV="pypy"
- TOXENV="pypy3"
install: pip install tox
script: tox -e $TOXENV
|
Remove iojs for now due to node-gyp problem. Drop 0.10, too old. | language: node_js
node_js:
- "0.12"
- "0.10"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| language: node_js
node_js:
- "0.12"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Increase timeout of jupyter notebook test | language: python
cache: pip
python:
- "2.7"
- "3.5.1"
# command to install dependencies
install:
- pip install --upgrade pip setuptools wheel
- pip install -r requirements.txt --only-binary=numpy,scipy
- pip install jupyter
- pip install atari_py
- pip install hacking
- git clone https://github.com/mgbe... | language: python
cache: pip
python:
- "2.7"
- "3.5.1"
# command to install dependencies
install:
- pip install --upgrade pip setuptools wheel
- pip install -r requirements.txt --only-binary=numpy,scipy
- pip install jupyter
- pip install atari_py
- pip install hacking
- git clone https://github.com/mgbe... |
Set core.autoCRLF -> true so Windows stops failing lint | # https://docs.microsoft.com/vsts/pipelines/languages/javascript
pool:
vmImage: "vs2017-win2016"
strategy:
maxParallel: 3
matrix:
node_10_x:
node_version: "10.x"
node_8_x:
node_version: "8.x"
node_6_x:
node_version: "6.x"
steps:
- task: NodeTool@0
inputs:
versionSpec: ... | # https://docs.microsoft.com/vsts/pipelines/languages/javascript
pool:
vmImage: "vs2017-win2016"
strategy:
maxParallel: 3
matrix:
node_10_x:
node_version: "10.x"
node_8_x:
node_version: "8.x"
node_6_x:
node_version: "6.x"
steps:
- task: NodeTool@0
inputs:
versionSpec: ... |
Revert "Exclude v3.3 from config_dev." | exclude:
- release-scripts
- LICENSE
- Makefile
- README.md
- RELEASING.md
- BUILDING_CALICO.md
- CONTRIBUTING_DOCS.md
- CONTRIBUTING_CODE.md
- DOC_STYLE_GUIDE.md
- hack
- calico_node
- v1.5
- v1.6
- v2.0
- v2.1
- v2.2
- v2.3
- v2.4
- v2.5
- v2.6
- v3.0
- v3.1
- v3.2
- v3... | exclude:
- release-scripts
- LICENSE
- Makefile
- README.md
- RELEASING.md
- BUILDING_CALICO.md
- CONTRIBUTING_DOCS.md
- CONTRIBUTING_CODE.md
- DOC_STYLE_GUIDE.md
- hack
- calico_node
- v1.5
- v1.6
- v2.0
- v2.1
- v2.2
- v2.3
- v2.4
- v2.5
- v2.6
- v3.0
- v3.1 |
Use solarized light for syntax highlight | baseURL: https://gaston.life/
enableGitInfo: true
params:
toc: true
taxonomies:
category: categories
related:
threshold: 80
includeNewer: true
toLower: true
indices:
- name: categories
weight: 100
- name: date
pattern: 200601
width: 50
| baseURL: https://gaston.life/
enableGitInfo: true
params:
toc: true
taxonomies:
category: categories
markup:
highlight:
style: solarized-light
related:
threshold: 80
includeNewer: true
toLower: true
indices:
- name: categories
weight: 100
- name: date
pattern: 200601
width: 50
|
Update CIFS Documents Provider to 1.3.0 (6) | Categories:
- Connectivity
- System
License: MIT
AuthorName: Atsushi Wada
AuthorWebSite: https://www.wa2c.com/wp/
WebSite: https://github.com/wa2c/cifs-documents-provider/wiki
SourceCode: https://github.com/wa2c/cifs-documents-provider
IssueTracker: https://github.com/wa2c/cifs-documents-provider/issues
AutoName: ... | Categories:
- Connectivity
- System
License: MIT
AuthorName: Atsushi Wada
AuthorWebSite: https://www.wa2c.com/wp/
WebSite: https://github.com/wa2c/cifs-documents-provider/wiki
SourceCode: https://github.com/wa2c/cifs-documents-provider
IssueTracker: https://github.com/wa2c/cifs-documents-provider/issues
AutoName: ... |
Exclude tests from Codacy check. | ---
exclude_paths:
- "api-java/src/test/**/*.*"
- "client/src/test/**/*.*"
| ---
exclude_paths:
- "api-java/src/test/**/*.*"
- "client/src/test/**/*.*"
- "firebase-endpoint/src/test/**/*.*"
|
Move texto do enumeration de points kind para locale | pt-BR:
enumerations:
week_days:
monday: 'Segunda-feira'
tuesday: 'Terça-feira'
wednesday: 'Quarta-feira'
thursday: 'Quinta-feira'
friday: 'Sexta-feira'
saturday: 'Sábado'
sunday: 'Domingo'
worker_kind:
pf: 'Pessoa física'
pj: 'Pessoa jurídica'
| pt-BR:
enumerations:
week_days:
monday: 'Segunda-feira'
tuesday: 'Terça-feira'
wednesday: 'Quarta-feira'
thursday: 'Quinta-feira'
friday: 'Sexta-feira'
saturday: 'Sábado'
sunday: 'Domingo'
worker_kind:
pf: 'Pessoa física'
pj: 'Pessoa jurídica'
points_k... |
Update PyUp configuration for pip-tools | # PyUp config
# https://pyup.io/docs/bot/config/
# Check dependencies in _only_ requirements-app, and open PRs with PyUp prefix.
search: False
schedule: "every week on sunday"
requirements:
- requirements-app.txt:
update: all
pin: True
- requirements-dev.txt:
update: False
pin: True
-... | # PyUp config
# https://pyup.io/docs/bot/config/
# Check dependencies in _only_ requirements-app, and open PRs with PyUp prefix.
search: False
schedule: "every week on sunday"
requirements:
- requirements.in:
update: all
pin: True
- requirements-dev.in:
update: False
pin: True
- requi... |
Add brew-cask for brew upgrade | ---
# Here we describe every software we may want to install
- hosts: all
vars:
oh_my_zsh_theme: agnoster
roles:
- role: osxc.packages
brew_taps:
- caskroom/fonts
- motemen/ghq
- peco/peco
brew_packages:
- cask
- ghq
- git
- go
- hub
- peco
- tig
- wget
... | ---
# Here we describe every software we may want to install
- hosts: all
vars:
oh_my_zsh_theme: agnoster
roles:
- role: osxc.packages
brew_taps:
- caskroom/fonts
- motemen/ghq
- peco/peco
brew_packages:
- brew-cask
- ghq
- git
- go
- hub
- peco
- tig
- wget... |
Extend CI no output timeout | version: 2
jobs:
test:
docker:
- image: circleci/golang:1.12
environment:
GO111MODULE: 'on'
GOPROXY: https://proxy.golang.org
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run: go test -race -v ./...
workflows:
ve... | version: 2
jobs:
test:
docker:
- image: circleci/golang:1.12
environment:
GO111MODULE: 'on'
GOPROXY: https://proxy.golang.org
steps:
- checkout
- run: git submodule sync
- run: git submodule update --init
- run:
command: go test -race -v ./.... |
Revert "Revert "Temporarily nerf nbgitpuller to debug"" | jupyterhub:
auth:
type: google
admin:
users:
# infrastructure
- rylo
- yuvipanda
- felder
# List of other admin users
# Professor
- mahoneymw
# GSIs
- krinsman
- theisen
# UGSI
- wqixu... | jupyterhub:
auth:
type: google
admin:
users:
# infrastructure
- rylo
- yuvipanda
- felder
# List of other admin users
# Professor
- mahoneymw
# GSIs
- krinsman
- theisen
# UGSI
- wqixu... |
Use lua-testing-extra image instead of lua-testing to run CI tests | tests:
stage: test
image: registry.gitlab.com/craigbarnes/dockerfiles/lua-testing
script:
- make -j`nproc` local-libgumbo
- make build-all USE_LOCAL_LIBGUMBO=1 DEBUG=1
- make check-all USE_LOCAL_LIBGUMBO=1
# - make clean check-luarocks-make LUAROCKS=luarocks-5.3
# - mak... | tests:
stage: test
image: registry.gitlab.com/craigbarnes/dockerfiles/lua-testing-extra
script:
- make -j`nproc` local-libgumbo
- make build-all USE_LOCAL_LIBGUMBO=1 DEBUG=1
- make check-all USE_LOCAL_LIBGUMBO=1
# - make clean check-luarocks-make LUAROCKS=luarocks-5.3
# ... |
Build in parallel and RPM validation | stages:
- build
- publish
.build:
stage: build
allow_failure: true
image: "coderus/sailfishos-platform-sdk:${SFOS_VERSION}"
artifacts:
paths:
- "output/*"
script:
- sudo mkdir output
- mkdir ~/build
- cp -r * ~/build
- pushd ~/build
- mb2 -t SailfishOS-$SFOS_VERSION-armv7hl ... | stages:
- build
- test
- publish
.build:
stage: build
variables:
ARCH: armv7hl
SFOS_VERSION: "3.4.0.24"
image: coderus/sailfishos-platform-sdk:${SFOS_VERSION}
artifacts:
paths:
- "output/*"
script:
- mkdir output
- mkdir ~/build
- cp -r * ~/build
- pushd ~/build
- ... |
Install latest mongodb (3.2) on Debian | ---
# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
- name: Add MongoDB apt key
apt_key: id=7F0CEB10
url=http://docs.mongodb.org/10gen-gpg-key.asc
tags:
- install
- mongodb
- deps
- name: Add MongoDB repository (Ubuntu)
apt_repository: repo='deb http://down... | ---
- name: Add MongoDB apt key (Ubuntu)
apt_key: id=7F0CEB10
keyserver=hkp://keyserver.ubuntu.com
when: ansible_lsb.id == "Ubuntu"
tags:
- install
- mongodb
- deps
- name: Add MongoDB apt key (Debian)
apt_key: id=EA312927
keyserver=hkp://keyserver.ubuntu.com
when: ansi... |
Update RTD to use python3.8 instead of python3.7. | # Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: false
python:
version: 3.7
install:
- requirements: requirements_docs.txt
- requirements: requirements.txt
... | # Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
version: 2
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: false
python:
version: 3.8
install:
- requirements: requirements_docs.txt
- requirements: requirements.txt
... |
Change to port 5000 and remove volume mount | version: '2'
services:
unfurl:
container_name: unfurl
build:
context: ./
dockerfile: Dockerfile
# Match the port defined in unfurl.ini
ports:
- "3000:3000"
volumes:
- ./unfurl.ini:/unfurl/unfurl.ini:ro
restart: unless-stopped
| version: '2'
services:
unfurl:
container_name: unfurl
build:
context: ./
dockerfile: Dockerfile
# Match the port defined in unfurl.ini
ports:
- "5000:5000"
restart: unless-stopped
|
Add a weekly scheduled run to the Azure pipelines | # https://docs.microsoft.com/en-us/azure/devops/pipelines/process/templates?view=azure-devops#passing-parameters
trigger:
- main
variables:
MKL_NUM_THREADS: 1
NUMEXPR_NUM_THREADS: 1
OMP_NUM_THREADS: 1
VML_NUM_THREADS: 1
OPENBLAS_NUM_THREADS: 1
PYTHONHASHSEED: 0 # Ensure tests are correctly gathered by xdi... | # https://docs.microsoft.com/en-us/azure/devops/pipelines/process/templates?view=azure-devops#passing-parameters
trigger:
- main
schedules:
- cron: "0 6 * * 1" # Each Monday at 06:00 UTC
displayName: Weekly scheduled run
branches:
include: [main, maintenance/0.13.x]
always: true
variables:
MKL_NUM_THREA... |
Update to reflect actual license now as MIT. | {% set version = "23.0.0" %}
package:
name: setuptools
version: {{ version }}
source:
fn: setuptools-{{ version }}.tar.gz
url: https://pypi.io/packages/source/s/setuptools/setuptools-{{ version }}.tar.gz
md5: 100a90664040f8ff232fbac02a4c5652
patches:
# modify setuptools to barf if used in conda build ... | {% set version = "23.0.0" %}
package:
name: setuptools
version: {{ version }}
source:
fn: setuptools-{{ version }}.tar.gz
url: https://pypi.io/packages/source/s/setuptools/setuptools-{{ version }}.tar.gz
md5: 100a90664040f8ff232fbac02a4c5652
patches:
# modify setuptools to barf if used in conda build ... |
Update image used in build pipeline | pool:
vmImage: vs2017-win2016
variables:
BuildConfiguration: Release
TestProjects: test/**/*.[Tt]ests.csproj
PackProjects: src/IronVelocity.csproj
steps:
- task: DotNetCoreCLI@2
displayName: Build
inputs:
command: build
arguments: --configuration $(BuildConfiguration)
- task: DotNetCoreCLI@2
... | pool:
vmImage: windows-latest
variables:
BuildConfiguration: Release
TestProjects: test/**/*.[Tt]ests.csproj
PackProjects: src/IronVelocity.csproj
steps:
- task: DotNetCoreCLI@2
displayName: Build
inputs:
command: build
arguments: --configuration $(BuildConfiguration)
- task: DotNetCoreCLI@2
... |
Use task caching for elm tests | ---
platform: linux
image_resource:
type: docker-image
source:
repository: concourse/atc-ci-elm
inputs:
- name: concourse
run:
path: concourse/ci/scripts/atc-elm
| ---
platform: linux
image_resource:
type: docker-image
source:
repository: concourse/atc-ci-elm
caches:
- path: concourse/src/github.com/concourse/atc/web/elm/elm-stuff
- path: concourse/src/github.com/concourse/atc/web/elm/tests/elm-stuff
inputs:
- name: concourse
run:
path: concourse/ci/scripts/atc-elm
|
Remove 4.9 pinning of gcc. | sudo: required
python: 3.6
language: C
matrix:
include:
- compiler: gcc
before_script:
- export CC=gcc-4.9
script:
- ./configure
- make parser
- make check
- python3 setup.py module
- python3 setup.py test
- compiler: gcc
before_script:
... | sudo: required
python: 3.6
language: C
matrix:
include:
- compiler: gcc
script:
- ./configure
- make parser
- make check
- python3 setup.py module
- python3 setup.py test
- compiler: gcc
script:
- ./configure --with-valgrind
- make parser
... |
Add Prompt for set Repo Base URL | # requires variables:
# - ambari_repo_base_url
# - ambari_version
- hosts: ambari-server ambari-agent
become: true
tasks:
- include_tasks: ../roles/ambari-common/tasks/install-repo-{{ ansible_os_family }}.yml
- hosts: ambari-server
become: true
tasks:
- include_tasks: ../roles/ambari-server/tasks/inst... | # requires variables:
# - ambari_repo_base_url
# - ambari_version
- hosts: ambari-server ambari-agent
become: true
vars_prompt:
- name: "ambari_repo_base_url"
prompt: "Set ambari repo base url"
private: no
tasks:
- include_tasks: ../roles/ambari-common/tasks/install-repo-{{ ansible_os_family ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.