Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Drop node 0.11.x testing until it's more stable | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8" | language: node_js
node_js:
- "0.10"
- "0.8" |
Remove Java 12 build again. | language: java
sudo: false
dist: trusty
before_install:
- unset _JAVA_OPTIONS
install: echo "The default Travis install script is being skipped!"
matrix:
include:
# Java 9
- jdk: oraclejdk9
env: TARGET='-Pjava9'
# Java 10
- env: TARGET='-Pjava10'
jdk: oraclejdk10
# Java 11
- ... | language: java
sudo: false
dist: trusty
before_install:
- unset _JAVA_OPTIONS
install: echo "The default Travis install script is being skipped!"
matrix:
include:
# Java 9
- jdk: oraclejdk9
env: TARGET='-Pjava9'
# Java 10
- env: TARGET='-Pjava10'
jdk: oraclejdk10
# Java 11
- ... |
Use composer to load dependencies | language: php
php:
- "5.4"
- "5.3"
before_script:
- git clone git://github.com/phpseclib/phpseclib.git phpseclib
- mv phpseclib/phpseclib/* ./
| language: php
php:
- "5.4"
- "5.3"
before_script:
- composer install --prefer-source --dev
|
Remove node 0.6, add node 9-13 on Travis CI. | language: "node_js"
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
- "3" # io.js
- "2" # io.js
- "1" # io.js
- "0.12"
- "0.10"
# - "0.8"
- "0.6"
before_install:
- "npm install make-node@0.3.x -g"
- "preinstall-compat"
script:
- "make test-cov"
after_success:
- "make report-cov"
sudo: false
| language: "node_js"
node_js:
- "13"
- "12"
- "11"
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
- "3" # io.js
- "2" # io.js
- "1" # io.js
- "0.12"
- "0.10"
# - "0.8"
before_install:
- "npm install make-node@0.3.x -g"
- "preinstall-compat"
script:
- "make test-cov"
after_success:
... |
Drop support for node v0.8 and v0.6 | language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "iojs" | language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs" |
Disable parallel execution on Travis CI | language: java
sudo: false
dist: trusty
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
# Display Gradle version instead of letting Travis execute './gradlew assemble' by default
install:
- ./gradlew -version
script:
- ./gradlew check --parallel --scan
| language: java
sudo: false
dist: trusty
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
# Display Gradle version instead of letting Travis execute './gradlew assemble' by default
install:
- ./gradlew -version
script:
- ./gradlew check --scan
|
Add "5.22" to build on Perl 5.22 | language: perl
perl:
- '5.10'
- '5.12'
- '5.14'
- '5.16'
- '5.18'
- '5.20'
before_install:
- cpanm Test::UsedModules
- cpanm Devel::Cover::Report::Coveralls
script:
- perl Build.PL
- ./Build build
- travis_wait 35 cover -test -report coveralls
after_success:
- travis_wait 35 cover -report cove... | language: perl
perl:
- '5.10'
- '5.12'
- '5.14'
- '5.16'
- '5.18'
- '5.20'
- '5.22'
before_install:
- cpanm Test::UsedModules
- cpanm Devel::Cover::Report::Coveralls
script:
- perl Build.PL
- ./Build build
- travis_wait 35 cover -test -report coveralls
after_success:
- travis_wait 35 cover -... |
Remove unsupported rubies and update aliases | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
- jruby-19mode
- rbx-2
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- ruby-head
- jruby
- rbx-2
|
Add Python 3.6 testing to Travis, and remove 3.5-dev | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
env:
matrix:
- IPYTHON="<5"
- IPYTHON=""
matrix:
allow_failures:
- python: "3.5-dev"
- python: "nightly"
install: "pip install ipython$IPYTHON pyflakes"
before_install:
- pip install codecov pytest-cov... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
env:
matrix:
- IPYTHON="<5"
- IPYTHON=""
matrix:
allow_failures:
- python: "nightly"
install: "pip install ipython$IPYTHON pyflakes"
before_install:
- pip install codecov pytest-cov
after_success:
- codecov
... |
Use Node 14 for tests | language: node_js
node_js:
- "12.3.0"
before_script:
- npm install grunt-cli | language: node_js
node_js:
- "14.13.0"
before_script:
- npm install grunt-cli |
Remove deprecated sudo from Travis & use Xenial on CI | sudo: required
services:
- docker
language: python
python: 3.6
before_install:
- docker-compose -v
- docker -v
matrix:
include:
- name: Test results
script: tox -e py36
- name: Run flake8 on result
script: tox -e flake8
- name: Run black on result
script: tox -e black
- na... | dist: xenial
services:
- docker
language: python
python: 3.6
before_install:
- docker-compose -v
- docker -v
matrix:
include:
- name: Test results
script: tox -e py36
- name: Run flake8 on result
script: tox -e flake8
- name: Run black on result
script: tox -e black
- name... |
Disable opam lint in CI build | language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
- PACKAGE="vhd-tool" OCAML_VERSION=4.01
- PACKAGE="vhd-tool" OCAML_VERSION=latest
| language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- PACKAGE=vhd-tool OPAM_LINT=false
matrix:
- OCAML_VERSION=4.01
- OCAML_VERSION=latest
|
Use the NPM on tap. | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install -g npm
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
Remove PHP 5.3 test configuration as the new swagger-php update has a min dependency of PHP 5.4 | language: php
php:
- 5.3
- 5.5
install: composer install
script:
- vendor/bin/parallel-lint -s -e php,phpt --exclude vendor .
- vendor/bin/phpunit test
| language: php
php:
- 5.5
install: composer install
script:
- vendor/bin/parallel-lint -s -e php,phpt --exclude vendor .
- vendor/bin/phpunit test
|
Update npm before installing build dependencies | language: node_js
node_js:
- 4
- 6
- 8
sudo: false
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/06b722b9c1ca92dd4d75
| language: node_js
node_js:
- 4
- 6
- 8
sudo: false
before_install: "npm install --global npm"
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/06b722b9c1ca92dd4d75
|
Test getting kcov with apt | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo apt-get update
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
after_success: |
wget https://gith... | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo apt-get update
addons:
apt:
packages:
- kcov
after_success: |
kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/chat-* &&
bash <(curl -s https://codecov.i... |
Test .deb packaging with Travis | language: python
sudo: false
python:
- 3.5
- 3.4
- 3.3
- 2.7
- 2.6
install:
- travis_retry pip install -r requirements-test.txt
before_script:
- flake8 taiga
script: nosetests --with-coverage --cover-package=taiga
after_success: codecov
| language: python
sudo: required
dist: trusty
python:
- 3.5
- 3.4
- 3.3
- 2.7
- 2.6
install:
- travis_retry pip install -r requirements-test.txt
before_script:
- flake8 taiga
script: nosetests --with-coverage --cover-package=taiga
after_success: codecov
jobs:
include:
- stage: package
in... |
Add public vars for better visibility | sudo: required
language: node_js
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.1
before_install:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-c... | sudo: required
language: node_js
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.1
- DOCKER_REPO=nhsuk/profiles
- DOCKER_USERNAME=nhsukautomata
- RANCHER_ACCESS_KEY=655696CC96424E6D4DB0
- RANCHER_ENVIRONMENT=c2s-dev
- RANCHER_TEMPLATE_NAME=c2s-profiles
- RANCHER_URL=https://rancher.nhschoices.n... |
Build with Node.js 16 at Travis Ci. | sudo: false
language: node_js
node_js:
- '12'
- '14'
branches:
only:
- master
- travis-ci
install:
- npm install -g npm
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install -g npm
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
Remove tests for Go 1.6.x | language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
sudo: false
before_install:
- go get -u github.com/golang/lint/golint
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
script:
- test -z "`gofmt -l .`"
- test -z "`golint ./...`"
- $GOPATH/bin/goveralls -service=travis-ci
- cd... | language: go
go:
- 1.7.x
- 1.8.x
- 1.9.x
sudo: false
before_install:
- go get -u github.com/golang/lint/golint
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
script:
- test -z "`gofmt -l .`"
- test -z "`golint ./...`"
- $GOPATH/bin/goveralls -service=travis-ci
- cd example &... |
Install numpy and scipy through condaon CI | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.6"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https:... | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.6"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https:... |
Fix typo in Travis config | sudo: false
language: ruby
rvm:
- 2.5.0
before_install: gem install bundler -v 1.16.1
language: ruby
rvm:
- 2.5.0
env:
- DB=pgsql
services:
- postgresql
before_script:
- cp spec/dummy/config/database.travis.yml spec/dummy/config/database.yml
script:
- cd spec/dummy &6 RAILS_ENV=test bundle exec rake d... | sudo: false
language: ruby
rvm:
- 2.5.0
before_install: gem install bundler -v 1.16.1
language: ruby
rvm:
- 2.5.0
env:
- DB=pgsql
services:
- postgresql
before_script:
- cp spec/dummy/config/database.travis.yml spec/dummy/config/database.yml
script:
- cd spec/dummy && RAILS_ENV=test bundle exec rake d... |
Remove initial `make distclean` step, not needed | # Travis CI integration -- https://travis-ci.org/troglobit/finit
# Defaults to GNU GCC and autotools: ./configure && make && make test
language: c
# We don't need to install packages, use dockerized build, quicker
sudo: false
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# ... | # Travis CI integration -- https://travis-ci.org/troglobit/finit
# Defaults to GNU GCC and autotools: ./configure && make && make test
language: c
# We don't need to install packages, use dockerized build, quicker
sudo: false
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# ... |
Remove the cache stuff, it seems to take a while to start runs with that | cache: apt
language: c
script: bash -ex .travis-ci.sh
env:
- OCAML_VERSION=4.01
| language: c
script: bash -ex .travis-ci.sh
env:
- OCAML_VERSION=4.01
|
Revert "set [dist: trusty] to force migration" | dist: trusty
language: scala
jdk:
- oraclejdk8
scala:
- 2.11.11
cache:
directories:
- $HOME/.ivy2
install:
- docker build -t $BUILDING .
after_success:
- docker login --username="$DOCKER_USERNAME" --password="$DOCKER_PASSWORD"
deploy:
- provider: script
script: docker tag $BUILDING $DOCKER_IMAGE:$TR... | language: scala
jdk:
- oraclejdk8
scala:
- 2.11.11
cache:
directories:
- $HOME/.ivy2
install:
- docker build -t $BUILDING .
after_success:
- docker login --username="$DOCKER_USERNAME" --password="$DOCKER_PASSWORD"
deploy:
- provider: script
script: docker tag $BUILDING $DOCKER_IMAGE:$TRAVIS_TAG; doc... |
Allow failures on REE with TravisCI | # ---------------------------------------------------------
# Configuration file for http://travis-ci.org/#!/karmi/tire
# ---------------------------------------------------------
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.8.7
- ree
- jruby-19mode
env:
- TEST_COMMAND="rake test:unit"
- TEST_COMMAND="rake ... | # ---------------------------------------------------------
# Configuration file for http://travis-ci.org/#!/karmi/tire
# ---------------------------------------------------------
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.8.7
- ree
- jruby-19mode
env:
- TEST_COMMAND="rake test:unit"
- TEST_COMMAND="rake ... |
Use earlier version of rubygems to avoid bundler fatal error on 1.8.7 | script: "bundle exec rspec ./spec/"
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby
| before_install:
- gem update --system 2.1.11
script: "bundle exec rspec ./spec/"
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby
|
Add sudo rights for CI | language: java
sudo: false
jdk:
- oraclejdk8
script:
- mvn clean install
- cd email
- ./gradlew clean
- ./gradlew assembJar
- cd build/libs
- ls -la
after_success:
- cd ./integration-test
- pwd
- mvn com.gavinmogan:codacy-maven-plugin:coverage -DcoverageReportFile=target/site/jacoco/jacoco.xm... | language: java
sudo: true
jdk:
- oraclejdk8
before_install:
- chmod +x email/gradlew
script:
- mvn clean install
- cd email
- ./gradlew clean
- ./gradlew assembJar
- cd build/libs
- ls -la
after_success:
- cd ./integration-test
- pwd
- mvn com.gavinmogan:codacy-maven-plugin:coverage -Dcover... |
Add pre-test phase to pull down new articles to be checked/validated. | language: ruby
sudo: false
rvm:
- 2.1
script:
- bundle exec jekyll build --trace --config _config.yml,_config_public.yml
- bundle exec htmlproof ./_posts --only-4xx --check-favicon --check-html
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
| language: ruby
sudo: false
rvm:
- 2.1
script:
- bundle exec planet generate
- bundle exec jekyll build --trace --config _config.yml,_config_public.yml
- bundle exec htmlproof ./_posts --only-4xx --check-favicon --check-html
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html... |
Update tests to add go 1.6 and 1.7 | language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
addons:
apt:
packages:
- php5-fpm
| language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- tip
addons:
apt:
packages:
- php5-fpm
|
Update Ruby stable versions on Travis CI 2.1.8 to 2.1.x 2.2.4 to 2.2.x 2.3.0 to 2.3.x kept 2.0.0, but soon need to remove it (EOL soon) removed 1.9 | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.2"
- "2.3.0"
| language: ruby
rvm:
- "2.0.0"
- "2.1.8"
- "2.2.4"
- "2.3.0"
|
Remove jruby from the required list | rvm: 2.1.3
gemfile: Gemfile
script: bundle exec rake spec
matrix:
include:
- rvm: jruby-19mode
- rvm: 2.0.0
- rvm: 1.9.3
| rvm: 2.1.3
gemfile: Gemfile
script: bundle exec rake spec
matrix:
include:
- rvm: jruby-19mode
- rvm: 2.0.0
- rvm: 1.9.3
allow_failures:
- rvm: jruby-19mode
|
Remove 1.8.7 from Travis testing | language: ruby
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
| language: ruby
rvm:
- 1.9.3
- 1.9.2
|
Add docs being pushed to rust-ci.org | language: rust
sudo: false
| language: rust
sudo: false
env:
global:
- secure: XE8/HJkcnRHyb6qxVcdWsztCMgvuGwtVpLhfvtv0lefq+BgdHCYvEWEalyxM5OPvex/oGsSwVXIPX1bs0F54DTV/vLb3F317yX01p3fzB4DhzC/p9RTTgwQyOIVW1oU/qbsc6szlyzKDZ75JICqhIthhDnKdiTOkGMmGM6+gJDc=
script:
- cargo build --release --verbose
- cargo test --verbose
- cargo doc --verb... |
Increase gometalinter deadline (5s -> 1m) | language: go
go:
- 1.5
# - release (it's 1.4 for now, and cross-compiling doesn't work too well)
- tip
install:
- go get github.com/alecthomas/gometalinter
- gometalinter --install --update
- go get github.com/axw/gocov/gocov
- go get golang.org/x/tools/cmd/cover
- go get github.com/ma... | language: go
go:
- 1.5
# - release (it's 1.4 for now, and cross-compiling doesn't work too well)
- tip
install:
- go get github.com/alecthomas/gometalinter
- gometalinter --install --update
- go get github.com/axw/gocov/gocov
- go get golang.org/x/tools/cmd/cover
- go get github.com/ma... |
Update Travis for OS X | notifications:
email:
on_success: never
on_failure: change
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
git:
depth: 10
sudo: false
os:
- linux
- osx
language: node_js
node_js: "5"
install:
- npm install
- npm run compile
env:
matrix:
- ATOM_CH... | # Project specific config
matrix:
include:
- os: linux
language: node_js
node_js: "5"
- os: linux
language: node_js
node_js: "5"
env: ATOM_CHANNEL=beta
- os: osx
language: generic
before_install:
- brew update
- brew outdated node || brew upgrade n... |
Test requires tox to be installed. | language: python
python:
- "2.7"
install: "pip install -r pytx/requirements.txt"
env:
- TEST_DIR=pytx
script: cd $TEST_DIR && make test
| language: python
python:
- "2.7"
install: "pip install -r pytx/requirements.txt"
env:
- TEST_DIR=pytx
before_install:
- pip install tox
script: cd $TEST_DIR && make test
|
Add PHP 7.0 and nightly to Travis-CI config | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script: make test
| sudo: false
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: nightly
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script: make test
|
Change CI build configuration to Release | language: csharp
before_install:
- mono --version
- mkdir -p .nuget
- wget -O .nuget/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
- mono .nuget/nuget.exe | head -1 # Output NuGet's version number
install:
- mono .nuget/nuget.exe restore MsTestToXunitConverter.sln -Verbosity detailed
... | language: csharp
before_install:
- mono --version
- mkdir -p .nuget
- wget -O .nuget/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
- mono .nuget/nuget.exe | head -1 # Output NuGet's version number
install:
- mono .nuget/nuget.exe restore MsTestToXunitConverter.sln -Verbosity detailed
... |
Remove windows box from tests | ---
driver:
name: vagrant
provisioner:
name: chef_zero_scheduled_task
platforms:
- name: centos-6.7
provisioner:
require_chef_omnibus: true
chef_omnibus_url: 'http://repo-par.criteo.prod/omnibus_install.sh'
driver_config:
box: opscode-centos-6.7
box_url: http://filer.criteo.prod/boxes/... | ---
driver:
name: vagrant
provisioner:
name: chef_zero_scheduled_task
platforms:
- name: centos-6.7
provisioner:
require_chef_omnibus: true
chef_omnibus_url: 'http://repo-par.criteo.prod/omnibus_install.sh'
driver_config:
box: opscode-centos-6.7
box_url: http://filer.criteo.prod/boxes/... |
Update platforms in Test Kitchen | ---
driver:
name: vagrant
customize:
cpus: 2
memory: 2048
provisioner:
name: chef_zero
require_chef_omnibus: "12.1.2"
platforms:
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: ubuntu-15.04
- name: centos-5.11
- name: centos-6.7
- name: centos-7.2
- name: freebsd-9.3
- name: freebsd-... | ---
driver:
name: vagrant
customize:
cpus: 2
memory: 2048
provisioner:
name: chef_zero
require_chef_omnibus: "12.1.2"
platforms:
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: centos-5.11
- name: centos-6.7
- name: centos-7.2
- name: freebsd-9.3
- name: freebsd-... |
Set DB connection to UTF-8 | development:
adapter: mysql2
database: transition_development
username: transition
password: transition
local_infile: true
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or product... | development:
adapter: mysql2
database: transition_development
username: transition
password: transition
encoding: utf8
local_infile: true
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as devel... |
Test if we can act on tag. | name: Upload Python package
on:
push:
tags:
- 1*
- v*
jobs:
deploy:
runs-on: ubuntu-latest
if: github.repository == 'mnubo/kubernetes-py'
steps:
- uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow
- name: Set up Python
uses: actions/setup-python@v1
... | name: Upload Python package
on:
push:
tags:
- '1*'
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
if: github.repository == 'mnubo/kubernetes-py'
steps:
- uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow
- name: Set up Python
uses: actions/setup-python... |
Fix Java 8 version in GitHub Action | # This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java 8
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name... | # This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java 8
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name... |
Switch to redcarpet Markdown parser | # Variables set by GitHub
safe: true
lsi: false
pygments: true
source: .
# Use nice sensible URLs like:
#
# /nice/sensible/url
#
# Not:
#
# /15/05/12/nasty/url
#
permalink: /posts/:title
| # Variables set by GitHub
safe: true
lsi: false
pygments: true
source: .
markdown: redcarpet
# Use nice sensible URLs like:
#
# /nice/sensible/url
#
# Not:
#
# /15/05/12/nasty/url
#
permalink: /posts/:title
|
Change highlighter to avoid warnings | ---
port: 4000
host: 0.0.0.0
safe: false
### site serving configuration ###
exclude: [CNAME, README.md, .gitignore]
permalink: / ## disables post output
timezone: null
lsi: false
markdown: kramdown
highlighter: pygments
### content configuration ###
title: "ASROB"
keywords: "asrob, robots, uavs, myod, rob... | ---
port: 4000
host: 0.0.0.0
safe: false
### site serving configuration ###
exclude: [CNAME, README.md, .gitignore]
permalink: / ## disables post output
timezone: null
lsi: false
markdown: kramdown
highlighter: rouge
### content configuration ###
title: "ASROB"
keywords: "asrob, robots, uavs, myod, robot ... |
Update from Hackage at 2019-05-13T13:02:47Z | homepage: ''
changelog-type: ''
hash: a0b338af8975f35e83cf94fb209b17c62b1a44a0f9f484f3b72cf15d01ea08d5
test-bench-deps:
test-framework-hunit: -any
test-framework: -any
base: ! '>3 && <5'
process: -any
HUnit: -any
itanium-abi: -any
maintainer: tristan@nochair.net
synopsis: An implementation of name mangling/... | homepage: ''
changelog-type: ''
hash: 1d727fa88ecafc13ba4ec2b6a752182ce70333fbde9726aec1393151d14de6df
test-bench-deps:
test-framework-hunit: -any
test-framework: -any
base: ! '>3 && <5'
process: -any
HUnit: -any
itanium-abi: -any
maintainer: tristan@nochair.net
synopsis: An implementation of name mangling/... |
Update from Hackage at 2017-04-20T04:32:43Z | homepage: http://github.com/bgamari/pandoc-lens
changelog-type: ''
hash: fa64727b249f04f4b12c202b53a78816213f3346e6482aac422f6279124708cd
test-bench-deps: {}
maintainer: bgamari.foss@gmail.com
synopsis: Lenses for Pandoc documents
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.10'
pandoc-types: ! '>=1.16 && <1.17'
... | homepage: http://github.com/bgamari/pandoc-lens
changelog-type: ''
hash: 3113aba744f96a292633e9e30a9dd42a62f9b54418d50d2eb17d577c3334c23a
test-bench-deps: {}
maintainer: bgamari.foss@gmail.com
synopsis: Lenses for Pandoc documents
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.10'
pandoc-types: ! '>=1.16 && <1.18'
... |
Make sure composer is up to date | name: "Continuous Integration"
on: [push]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
max-parallel: 3
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.2', '7.3', '7.4']
steps:
- uses: actions/checkout@master
- name: Install PHP
use... | name: "Continuous Integration"
on: [push]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
max-parallel: 3
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.2', '7.3', '7.4']
steps:
- uses: actions/checkout@master
- name: Install PHP
use... |
Adjust policies to Flow 3.0 | resources:
methods:
MOC_Varnish_Backend_Module_Varnish_ClearCache: 'method(MOC\Varnish\Controller\VarnishCacheController->.*Action())'
acls:
'TYPO3.Neos:Administrator':
methods:
MOC_Varnish_Backend_Module_Varnish_ClearCache: GRANT | privilegeTargets:
'TYPO3\Flow\Security\Authorization\Privilege\Method\MethodPrivilege':
'MOC.Varnish:BackendModuleClearCache':
matcher: 'within(MOC\Varnish\Controller\VarnishCacheController) && method(public .*->(?!initialize).*Action())'
roles:
'TYPO3.Flow:Everybody':
privileges:
-
pri... |
Join readmeta and lint into the same task/job | before_script:
- apt-get update -qy
- apt-get install -y python python-requests python-magic
- test -d fdroidserver && rm -rf fdroidserver
- git clone https://gitlab.com/fdroid/fdroidserver.git fdroidserver --depth=10
- export PATH="$PATH:$PWD/fdroidserver"
- touch config.py
metadata_check:
script:
-... | before_script:
- apt-get update -qy
- apt-get install -y python python-requests python-magic
- test -d fdroidserver && rm -rf fdroidserver
- git clone https://gitlab.com/fdroid/fdroidserver.git fdroidserver --depth=10
- export PATH="$PATH:$PWD/fdroidserver"
- touch config.py
metadata_check:
script:
-... |
Use prepare stage to install gem bundle | # -*- mode: yaml; -*-
# vim:set shiftwidth=2 syntax=yaml:
image: ruby:2.4
stages:
- prepare
- build
- test
- deployment
cache:
key: "$CI_PROJECT_PATH"
paths:
- .bundle/
- doc/
- vendor/
variables:
BUNDLE_APP_CONFIG: .bundle
before_script:
- gem update did_you_mean
- bundle install --d... | # -*- mode: yaml; -*-
# vim:set shiftwidth=2 syntax=yaml:
image: ruby:2.4
stages:
- prepare
- build
- test
- deployment
cache:
key: "$CI_PROJECT_PATH"
paths:
- .bundle/
- doc/
- vendor/
variables:
BUNDLE_APP_CONFIG: .bundle
prepare:
stage: prepare
script:
- gem update did_you_mean... |
Clear existing temp directory immediately before recreating it. | ---
- name: Write environment configuration file
template: src=env.ini.j2 dest="{{ www_base }}/env.ini" owner=azuracast group=www-data mode=0644 force=no
- name: Set up environment file
ini_file:
dest: "{{ www_base }}/env.ini"
section: "configuration"
option: "application_env"
value... | ---
- name: Write environment configuration file
template: src=env.ini.j2 dest="{{ www_base }}/env.ini" owner=azuracast group=www-data mode=0644 force=no
- name: Set up environment file
ini_file:
dest: "{{ www_base }}/env.ini"
section: "configuration"
option: "application_env"
value... |
Use docker/setup-buildx-action@v1 for multi-platform builds | ---
name: CrateDB Docker images test
on: [push]
jobs:
multi-arch-build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [linux/amd64, linux/arm64]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-ver... | ---
name: CrateDB Docker images test
on: [push]
jobs:
multi-arch-build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [linux/amd64, linux/arm64]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-ve... |
Update Ruby setup in GitHub actions | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... |
Use latest node 0.10 release | # http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf true
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.10"
# Install scripts. (runs after repo cloning)
install:
# Get the latest... | # http://www.appveyor.com/docs/appveyor-yml
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf true
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.10"
# Install scripts. (runs after repo cloning)
install:
# Get the latest... |
Build and test release configuration | image: Visual Studio 2017
version: 1.0.{build}
environment:
NoPortable: True
install:
- choco install gitversion.portable -pre -y
before_build:
- dotnet restore src/core/core.sln
build_script:
- gitversion /l console /output buildserver /updateassemblyinfo
- dotnet build -c $(CONFIGURATION) src/co... | image: Visual Studio 2017
version: 1.0.{build}
environment:
NoPortable: True
install:
- choco install gitversion.portable -pre -y
before_build:
- dotnet restore src/core/core.sln
build_script:
- gitversion /l console /output buildserver /updateassemblyinfo
- dotnet build -c Release src/core/core... |
Update packages and use loop for enabling services | ---
- name: Ensure tlp and dependencies are installed
pacman:
state: latest
name: "{{ packages }}"
vars:
packages:
- 'tlp'
- 'tlp-rdw'
- 'ethtool'
- 'x86_energy_perf_policy'
- name: Ensure tlp is configured
copy:
dest: /etc/default/tlp
src: etc/default/tlp
mode: 06... | ---
- name: Ensure tlp and dependencies are installed
pacman:
state: latest
name: "{{ packages }}"
vars:
packages:
- 'tlp'
- 'tlp-rdw'
- 'ethtool'
- 'x86_energy_perf_policy'
- name: Ensure tlp is configured
copy:
dest: /etc/default/tlp
src: etc/default/tlp
mode: 06... |
Update from Hackage at 2017-11-10T15:40:21Z | homepage: https://github.com/MarcusVoelker/LParse#readme
changelog-type: markdown
hash: dc9ef4ef2bffd74c5c0178c174f2e55e3406ac6d3a0baf5850ddd8a5939e3726
test-bench-deps:
base: -any
maintainer: marcus.voelker@rwth-aachen.de
synopsis: A continuation-based parser library
changelog: ! "# Changelog\r\n\r\n## 0.1.2.0\r\n\r... | homepage: https://github.com/MarcusVoelker/LParse#readme
changelog-type: markdown
hash: 2f498bb3d7e86fcdf0ee9cbf3d7365d16bdd9df823ef9e6d9553e0c8893a7914
test-bench-deps:
base: -any
LParse: -any
maintainer: marcus.voelker@rwth-aachen.de
synopsis: A continuation-based parser library
changelog: ! "# Changelog\r\n\r\n#... |
Add example/ to list of excluded paths. | ---
engines:
duplication:
enabled: true
config:
languages:
- javascript
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- scripts/
- src/
exclude_paths:
- dist/
- spec/
| ---
engines:
duplication:
enabled: true
config:
languages:
- javascript
eslint:
enabled: true
fixme:
enabled: true
ratings:
paths:
- scripts/
- src/
exclude_paths:
- dist/
- example/
- spec/
|
Enforce repo yaml privacy key. | digital-service: BTA
| digital-service: BTA
repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
|
Move to image with python 3.7 preinstalled (is it dev versin as well?) | version: 2
jobs:
build:
docker:
- image: "circleci/buildpack-deps:bionic"
steps:
- checkout
- run:
name: Install Python3
command: |
sudo apt-get update && sudo apt-get install -y python3-dev python3-pip
sudo ln -sf `find /usr -name libpy\*` /usr/l... | version: 2
jobs:
build:
docker:
- image: "circleci/python:3.7.3"
steps:
- checkout
- run:
name: Installing GCC
command: |
sudo apt-get update
sudo apt-get --yes install g++-7
- run:
name: Install CMAKE
command: 'sudo apt-... |
Update docker image to include zlib support in HDF5 | version: 2
jobs:
hdf5-18:
docker:
- image: astrofrog/hyperion-ci-hdf5-18:1.4
steps:
- checkout
- run:
name: Initialize submodule
command: |
git submodule init
git submodule update
- run:
name: Compiling Fortran code
c... | version: 2
jobs:
hdf5-18:
docker:
- image: astrofrog/hyperion-ci-hdf5-18:1.4
steps:
- checkout
- run:
name: Initialize submodule
command: |
git submodule init
git submodule update
- run:
name: Compiling Fortran code
c... |
Fix new comparison to use 'in __.stdout' | ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... |
Disable markdownlint line length limit | ---
engines:
fixme:
enabled: true
markdownlint:
enabled: true
ratings:
paths:
- "**/*.md"
exclude_paths: []
| ---
engines:
fixme:
enabled: true
markdownlint:
enabled: true
checks:
MD013:
enabled: false
ratings:
paths:
- "**/*.md"
exclude_paths: []
|
Initialize submodules for Scrutinizer as well | filter:
excluded_paths:
- '3rdparty/*'
- 'apps/*/3rdparty/*'
- 'apps/*/vendor/*'
- 'l10n/*'
- 'core/l10n/*'
- 'apps/*/l10n/*'
- 'apps/*/tests/*'
- 'lib/l10n/*'
- 'core/vendor/*'
- 'core/js/tests/lib/*.js'
- 'core/js/tests/specs/... | before_commands:
- 'git submodule update --init --recursive'
filter:
excluded_paths:
- '3rdparty/*'
- 'apps/*/3rdparty/*'
- 'apps/*/vendor/*'
- 'l10n/*'
- 'core/l10n/*'
- 'apps/*/l10n/*'
- 'apps/*/tests/*'
- 'lib/l10n/*'
- 'core/vendor/*'
... |
Extend the Scrutinizer CI config | tools:
external_code_coverage:
enabled: true
timeout: 900 | filter:
excluded_paths:
- 'Config/*'
- 'Database/*'
- 'vendor/*'
tools:
external_code_coverage:
enabled: true
timeout: 900
php_cpd:
enabled: true
php_code_sniffer:
enabled: true
config:
standard: PSR2
php_cs_fixer:
... |
Update CI to surface errors properly and fix gdal/geos installation | name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7']
services:
postgres:
image: postgis/postgis
ports:
- 5432:5432
env:
POS... | name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["2.6", "2.7"]
fail-fast: false
services:
postgres:
image: postgis/postgis
ports:
- 5432:5432
... |
Update actions to use Go1.16 | name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
go-version: [1.14, 1.15]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
... | name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
strategy:
matrix:
go-version: [1.15, 1.16]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
... |
Fix workflow to checkout code into modules | name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Get dependencies
run: go get -v -t -d ./...
- name: Run tests... | name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout... |
Use correct run-cats script path | ---
platform: linux
image_resource:
type: docker-image
source:
repository: cfbuildpacks/ci
inputs:
- name: buildpacks-ci
- name: deployments-buildpacks
run:
path: buildpacks-ci/scripts/cats
params:
DEPLOYMENT_NAME:
CI_CF_USERNAME:
CI_CF_PASSWORD:
BOSH_PRIVATE_KEY:
BOSH_USER:
BOSH_PASSWORD:
A... | ---
platform: linux
image_resource:
type: docker-image
source:
repository: cfbuildpacks/ci
inputs:
- name: buildpacks-ci
- name: deployments-buildpacks
run:
path: buildpacks-ci/tasks/run-cats/run.sh
params:
DEPLOYMENT_NAME:
CI_CF_USERNAME:
CI_CF_PASSWORD:
BOSH_PRIVATE_KEY:
BOSH_USER:
BOSH_PASS... |
Disable nodesecurity check on code climate For this to work it requires an npm-shrinkwrap.json file and we can't add that at this moment in time so we'll have to revisit this when Azure supports NPM v4. | engines:
eslint:
enabled: true
channel: "eslint-3"
checks:
import/no-unresolved:
enabled: false
scss-lint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
nodesecurity:
enabled: true
ratings:
paths:
- "app/**"
- "config/**"
-... | engines:
eslint:
enabled: true
channel: "eslint-3"
checks:
import/no-unresolved:
enabled: false
scss-lint:
enabled: true
duplication:
enabled: true
config:
languages:
- javascript
nodesecurity:
enabled: false
ratings:
paths:
- "app/**"
- "config/**"
... |
Change line terminators from CRLF to LF | kind: Service
apiVersion: v1
metadata:
name: csi-snapshotter
labels:
app: csi-snapshotter
spec:
selector:
app: csi-snapshotter
ports:
- name: dummy
port: 12345
---
kind: StatefulSet
apiVersion: apps/v1
metadata:
name: csi-snapshotter
spec:
serviceName: "csi-snapshotter"
... | kind: Service
apiVersion: v1
metadata:
name: csi-snapshotter
labels:
app: csi-snapshotter
spec:
selector:
app: csi-snapshotter
ports:
- name: dummy
port: 12345
---
kind: StatefulSet
apiVersion: apps/v1
metadata:
name: csi-snapshotter
spec:
serviceName: "csi-snapshotter"
replicas: 1
select... |
Allow using black in py37 | repos:
- repo: https://github.com/asottile/pyupgrade
rev: v1.16.3
hooks:
- id: pyupgrade
- repo: https://github.com/python/black
rev: 19.3b0
hooks:
- id: black
language_version: python3.6
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.7
hooks:
- id: flake8
additional_dependencies: ['flake8-b... | repos:
- repo: https://github.com/asottile/pyupgrade
rev: v1.16.3
hooks:
- id: pyupgrade
- repo: https://github.com/python/black
rev: 19.3b0
hooks:
- id: black
language_version: python3
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.7
hooks:
- id: flake8
additional_dependencies: ['flake8-bug... |
Extend Python-Omero Recipe to OSX and Python 3 | {% set OMERO_VERSION = "5.2.7" %}
package:
name: python-omero
version: {{ OMERO_VERSION }}
source:
fn: OMERO.py-{{ OMERO_VERSION }}-ice36-b40.zip
url: http://downloads.openmicroscopy.org/omero/{{ OMERO_VERSION }}/artifacts/OMERO.py-{{ OMERO_VERSION }}-ice36-b40.zip
sha1: 8b85145dd1b30ac5cce7c39ceccce8fb1623... | {% set OMERO_VERSION = "5.2.7" %}
package:
name: python-omero
version: {{ OMERO_VERSION }}
source:
fn: OMERO.py-{{ OMERO_VERSION }}-ice36-b40.zip
url: http://downloads.openmicroscopy.org/omero/{{ OMERO_VERSION }}/artifacts/OMERO.py-{{ OMERO_VERSION }}-ice36-b40.zip
sha1: 8b85145dd1b30ac5cce7c39ceccce8fb1623... |
Add API port to prod config | apps:
- script : packages/nylas-api/app.js
name : api
instances: 0
exec_mode: cluster
- script : packages/nylas-dashboard/app.js
name : dashboard
instances: 1
exec_mode: cluster
| apps:
- script : packages/nylas-api/app.js
name : api
instances: 0
exec_mode: cluster
env :
PORT: 5100
- script : packages/nylas-dashboard/app.js
name : dashboard
instances: 1
exec_mode: cluster
|
Use Visual Studio 14 2015 | # Automated Windows (MSVC++) testing using appveyor.com
# https://ci.appveyor.com/projects
version: 1.0.{build}
branches:
only:
- master
- 6.0
configuration:
- Debug
environment:
matrix:
- cmake_generator: "Visual Studio 14"
platform: x86
- cmake_generator: "Visual Studio 14 Win64"
platform: x... | # Automated Windows (MSVC++) testing using appveyor.com
# https://ci.appveyor.com/projects
version: 1.0.{build}
branches:
only:
- master
- 6.0
configuration:
- Debug
environment:
matrix:
- cmake_generator: "Visual Studio 14 2015"
platform: x86
- cmake_generator: "Visual Studio 14 2015 Win64"
p... |
Update from Hackage at 2017-02-20T16:38:35Z | homepage: ''
changelog-type: ''
hash: 354fb9104dd936b31011c0a3a346d2b32ac67a1c6bd9c2e564f15b814ae19b9c
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Easily stream directory contents in constant memory
changelog: ''
basic-deps:
unix: ! '>=2.5.1.0 && <2.8'
base: ! '>=4 && <5'
system-fileio: ! '>=0.... | homepage: ''
changelog-type: ''
hash: 5292ff3ac0763662951b8e5e6632c78339defc3a8899eb37e75b1e0839e693c3
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Easily stream directory contents in constant memory
changelog: ''
basic-deps:
unix: ! '>=2.5.1.0 && <2.8'
base: ! '>=4 && <5'
system-fileio: ! '>=0.... |
Update from Hackage at 2015-07-28T19:38:57+0000 | homepage: ''
changelog-type: ''
hash: cbd22a37c6a09114317b476fba1d1a0019f49571f50d32aa3eccdd2befb1e414
test-bench-deps: {}
maintainer: luke@hoersten.org
synopsis: Unagi Chan IO-Streams
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.9'
io-streams: ! '>=1.2 && <1.3'
unagi-chan: ! '>=0.2 && <0.4'
all-versions:
- '0.... | homepage: ''
changelog-type: ''
hash: 6c4b3d8edc276a82e0f168b1f28d2f5e9f328bebb433d6db8d13a03f89fa4982
test-bench-deps: {}
maintainer: luke@hoersten.org
synopsis: Unagi Chan IO-Streams
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.9'
io-streams: ! '>=1.2 && <1.4'
unagi-chan: ! '>=0.2 && <0.5'
all-versions:
- '0.... |
Change ECOMMERCE_DJANGO_SETTINGS_MODULE to use devstack settings. | - name: Configure instance(s)
hosts: all
sudo: True
gather_facts: True
vars:
migrate_db: 'yes'
openid_workaround: true
devstack: true
disable_edx_services: true
mongo_enable_journal: false
EDXAPP_NO_PREREQ_INSTALL: 0
COMMON_MOTD_TEMPLATE: 'devstack_motd.tail.j2'
COMMON_SSH_PASSWO... | - name: Configure instance(s)
hosts: all
sudo: True
gather_facts: True
vars:
migrate_db: 'yes'
openid_workaround: true
devstack: true
disable_edx_services: true
mongo_enable_journal: false
EDXAPP_NO_PREREQ_INSTALL: 0
COMMON_MOTD_TEMPLATE: 'devstack_motd.tail.j2'
COMMON_SSH_PASSWO... |
Configure specific module path for ansible. | heat_template_version: ocata
description: 'Upgrade for via ansible by applying a step related tag'
parameters:
UpgradeStepConfig:
type: json
description: Config (ansible yaml) that will be used to step through the deployment.
default: ''
step:
type: string
description: Step number of the up... | heat_template_version: ocata
description: 'Upgrade for via ansible by applying a step related tag'
parameters:
UpgradeStepConfig:
type: json
description: Config (ansible yaml) that will be used to step through the deployment.
default: ''
step:
type: string
description: Step number of the up... |
Fix UnicodeError in build_reno in sphinx docs job | ---
features:
- |
Quota information panel and forms are now tabbified per back-end service.
- Admin -> Defaults -> Default Quotas table
- Admin -> Defaults -> Update Defaults form
- Identity -> Projects -> Modify Quotas form
- |
[:blueprint:`horizon-plugin-tab-for-info-and-quotas`]
(for ho... | ---
features:
- |
Quota information panel and forms are now tabbified per back-end service.
- Admin -> Defaults -> Default Quotas table
- Admin -> Defaults -> Update Defaults form
- Identity -> Projects -> Modify Quotas form
- |
[:blueprint:`horizon-plugin-tab-for-info-and-quotas`]
(for ho... |
Put readr on a ref | packages:
-
name: objectdiff
version: 0.2.3.9000
repo: robertzk/objectdiff
-
name: stagerunner
version: 0.5.0
repo: syberia/stagerunner
-
name: Ramd
version: 0.2.2
repo: robertzk/Ramd
-
name: statsUtils
version: 0.1.3
repo: robertzk/statsUtils
-
name: direct... | packages:
-
name: objectdiff
version: 0.2.3.9000
repo: robertzk/objectdiff
-
name: stagerunner
version: 0.5.0
repo: syberia/stagerunner
-
name: Ramd
version: 0.2.2
repo: robertzk/Ramd
-
name: statsUtils
version: 0.1.3
repo: robertzk/statsUtils
-
name: direct... |
Use Pod Utilities for cloud-provider-alibaba-cloud jobs | presubmits:
kubernetes/cloud-provider-alibaba-cloud:
- name: pull-cloud-provider-alibaba-cloud-check
always_run: true
branches:
- master
decorate: true
labels:
preset-service-account: "true"
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20190514-6c3cafa-mas... | presubmits:
kubernetes/cloud-provider-alibaba-cloud:
- name: pull-cloud-provider-alibaba-cloud-check
always_run: true
branches:
- master
decorate: true
labels:
preset-service-account: "true"
spec:
containers:
- image: gcr.io/k8s-testimages/kubekins-e2e:v20190514-6c3cafa-mas... |
Update Swift snapshot to 2015-12-31 | ---
language: swift
url_to_dependency_map:
- match: swift-(.*).tar.gz
name: swift
version: $1
- match: clang-(.*).tar.xz
name: clang
version: $1
dependencies:
- name: swift
version: 2.2
uri: https://swift.org/builds/ubuntu1404/swift-2.2-SNAPSHOT-2015-12-10-a/swift-2.2-SNAPSHOT-2015-12-10... | ---
language: swift
url_to_dependency_map:
- match: swift-(.*).tar.gz
name: swift
version: $1
- match: clang-(.*).tar.xz
name: clang
version: $1
dependencies:
- name: swift
version: 2.2
uri: https://swift.org/builds/ubuntu1404/swift-2.2-SNAPSHOT-2015-12-31-a/swift-2.2-SNAPSHOT-2015-12-31... |
Bump ridedott/merge-me-action from 2.9.84 to 2.9.89 | name: Merge me test dependencies!
on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- 'Run tests'
- 'Test build package'
- 'Run linters'
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is often a de... | name: Merge me test dependencies!
on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- 'Run tests'
- 'Test build package'
- 'Run linters'
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is often a de... |
Update from Hackage at 2022-09-18T02:37:51Z | homepage: https://github.com/RamiroPastor/SvgIcons
changelog-type: ''
hash: 2657a3f149d54f0e4c558e74a5e45b8ec64a2a03bd715df7b22dc90b9d381f07
test-bench-deps: {}
maintainer: ramir659@icloud.com
synopsis: Svg Icons and more
changelog: ''
basic-deps:
blaze-svg: '>=0.3.3.0 && <1.0'
base: '>=4.15.0.0 && <5.0.0'
blaze-... | homepage: https://github.com/RamiroPastor/SvgIcons
changelog-type: ''
hash: 4d240840fe24c5d63ca74c9f9343c1980c69d2f445b9a2c121feb647accffc0b
test-bench-deps: {}
maintainer: ramir659@icloud.com
synopsis: Svg Icons and more
changelog: ''
basic-deps:
blaze-svg: '>=0.3.3.0 && <1.0'
base: '>=4.15.0.0 && <5.0.0'
blaze-... |
Update repo owner to edx/learner | # This file describes this Open edX repo, as described in OEP-2:
# http://open-edx-proposals.readthedocs.io/en/latest/oeps/oep-0002.html#specification
nick: cred
oeps: {}
owner: edx/ecommerce
track-pulls: true
| # This file describes this Open edX repo, as described in OEP-2:
# http://open-edx-proposals.readthedocs.io/en/latest/oeps/oep-0002.html#specification
nick: cred
oeps: {}
owner: edx/learner
track-pulls: true
|
Remove machine:timezone and just use UTC. | machine:
timezone:
America/Los_Angeles
dependencies:
pre:
- sudo apt-get update; sudo apt-get install gcc-5; sudo apt-get install g++-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 100
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 100
test:
pre:
... | dependencies:
pre:
- sudo apt-get update; sudo apt-get install gcc-5; sudo apt-get install g++-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 100
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 100
test:
pre:
- gcc --version
- g++ --version
- mak... |
Test with Xcode 9 on CircleCI | machine:
xcode:
version: "8.3.2"
checkout:
post:
- git submodule update --init --recursive
test:
override:
- bundle exec rake spec
- bundle exec danger --verbose || true
| machine:
xcode:
version: "9.0"
checkout:
post:
- git submodule update --init --recursive
test:
override:
- bundle exec rake spec
- bundle exec danger --verbose || true
|
Remove coverage runner to just use nose | machine:
python:
version: 3.5.1
dependencies:
override:
- pip install -r requirements.txt
- pip install coveralls
test:
override:
- coverage run --source=cbe.location,cbe.party,cbe.business_interaction,cbe.customer,cbe.trouble manage.py test
post:
- coveralls
... | machine:
python:
version: 3.5.1
dependencies:
override:
- pip install -r requirements.txt
- pip install coveralls
test:
#override:
# - coverage run --source=cbe.location,cbe.party,cbe.business_interaction,cbe.customer,cbe.trouble manage.py test
post:
- coveralls
... |
Build exes in Circle when running haddock | machine:
environment:
PATH: "$HOME/.local/bin:$PATH"
STACK_VERSION: 1.2.0
dependencies:
pre:
- mkdir -p ~/.local/bin
- curl -L https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar -xzv -C ~/.local/bin && ln -vsf ~/.local/bin/stack... | machine:
environment:
PATH: "$HOME/.local/bin:$PATH"
STACK_VERSION: 1.2.0
dependencies:
pre:
- mkdir -p ~/.local/bin
- curl -L https://github.com/commercialhaskell/stack/releases/download/v$STACK_VERSION/stack-$STACK_VERSION-linux-x86_64.tar.gz | tar -xzv -C ~/.local/bin && ln -vsf ~/.local/bin/stack... |
Clean cache prior to build | machine:
environment:
PATH_TO_BUILD: ./public
SURGE_DOMAIN_DEV: ecomchicago-dev.surge.sh
SURGE_DOMAIN_PROD: www.ecomchicago.com
node:
version: 6.9.1
dependencies:
override:
- yarn install
test:
override:
- echo "Just ship it! 📦"
post:
- yarn run build
deployment:
development:
... | machine:
environment:
PATH_TO_BUILD: ./public
SURGE_DOMAIN_DEV: ecomchicago-dev.surge.sh
SURGE_DOMAIN_PROD: www.ecomchicago.com
node:
version: 6.9.1
dependencies:
override:
- yarn install
test:
override:
- echo "Just ship it! 📦"
post:
- rm -rf .cache
- yarn run build
deploym... |
Package installation needs root privilege. | ---
# tasks file for python-requirements(On Alpine Linux)
# Playbook using this role should remove cache like:
# rm -rf /var/cache/apk/* /var/lib/apk/* /etc/apk/cache/* # In almost cases, It's OK to remove only /var/cache/apk/*
# Ref. http://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management#Update_the_Package_l... | ---
# tasks file for python-requirements(On Alpine Linux)
# Playbook using this role should remove cache like:
# rm -rf /var/cache/apk/* /var/lib/apk/* /etc/apk/cache/* # In almost cases, It's OK to remove only /var/cache/apk/*
# Ref. http://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management#Update_the_Package_l... |
Build debian-base:v2.1.3 (for real this time) | variants:
v2:
CONFIG: 'v2'
IMAGE_VERSION: 'v2.1.2'
OS_CODENAME: 'buster'
v1:
CONFIG: 'v1'
IMAGE_VERSION: 'v1.1.0'
OS_CODENAME: 'stretch'
| variants:
v2:
CONFIG: 'v2'
IMAGE_VERSION: 'v2.1.3'
OS_CODENAME: 'buster'
v1:
CONFIG: 'v1'
IMAGE_VERSION: 'v1.1.0'
OS_CODENAME: 'stretch'
|
Update beat-game to 0.4.0 (4) | Categories:
- Games
License: GPL-3.0-only
SourceCode: https://github.com/pserwylo/beat-game
IssueTracker: https://github.com/pserwylo/beat-game/issues
AutoName: beat-game
RepoType: git
Repo: https://github.com/pserwylo/beat-game
Builds:
- versionName: 0.1.0
versionCode: 1
commit: v0.1.0
subdir: andro... | Categories:
- Games
License: GPL-3.0-only
SourceCode: https://github.com/pserwylo/beat-game
IssueTracker: https://github.com/pserwylo/beat-game/issues
AutoName: beat-game
RepoType: git
Repo: https://github.com/pserwylo/beat-game
Builds:
- versionName: 0.1.0
versionCode: 1
commit: v0.1.0
subdir: andro... |
Bump actions/cache from 2 to 3 | name: Build
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
os: ['ubuntu-20.04', 'macOS-11', 'windows-2019']
go: ['1.17.x', '1.16.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v2
with:
... | name: Build
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
os: ['ubuntu-20.04', 'macOS-11', 'windows-2019']
go: ['1.17.x', '1.16.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
... |
Set working directory when uploading code coverage report | steps:
- task: UsePythonVersion@0
displayName: ${{format('Setup Python {0}', parameters.python_version)}}
inputs:
versionSpec: '${{parameters.python_version}}'
- template: install_deps.yml
- script: 'pipenv run make coverage'
displayName: Run Tests with Coverage
- task: PublishTestResults@2... | steps:
- task: UsePythonVersion@0
displayName: ${{format('Setup Python {0}', parameters.python_version)}}
inputs:
versionSpec: '${{parameters.python_version}}'
- template: install_deps.yml
- script: 'pipenv run make coverage'
displayName: Run Tests with Coverage
- task: PublishTestResults@2... |
Add legacy trace conversion, update to current snapshot | ---
info:
scm-url: "@scm.url@"
build-url: "http://travis-ci.org/@env.TRAVIS_REPO_SLUG@/builds/@env.TRAVIS_BUILD_ID@"
logging:
file: "target/boot-admin-sample.log"
management:
endpoints:
web:
expose: "*"
jolokia:
enabled: true
spring:
application:
name: spring-boot-admin-sample
boot:
... | ---
info:
scm-url: "@scm.url@"
build-url: "http://travis-ci.org/@env.TRAVIS_REPO_SLUG@/builds/@env.TRAVIS_BUILD_ID@"
logging:
file: "target/boot-admin-sample.log"
management:
endpoints:
web:
expose: "*"
spring:
application:
name: spring-boot-admin-sample
boot:
admin:
client:
... |
Add log level to debug | swh::deploy::worker::instances:
- swh_indexer_orchestrator
- swh_indexer_mimetype
- swh_indexer_language
- swh_indexer_ctags
- swh_indexer_fossology_license
- swh_loader_svn
# testing swh-loader-svn
swh::deploy::storage::db::dbname: softwareheritage-test-svn
swh::deploy::storage::directory: /srv/swh/object... | swh::deploy::worker::instances:
- swh_indexer_orchestrator
- swh_indexer_mimetype
- swh_indexer_language
- swh_indexer_ctags
- swh_indexer_fossology_license
- swh_loader_svn
# testing swh-loader-svn
swh::deploy::storage::db::dbname: softwareheritage-test-svn
swh::deploy::storage::directory: /srv/swh/object... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.