commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringclasses
277 values
license
stringclasses
13 values
repos
stringlengths
5
127k
172d1710bb535ba34375b9d0a0a64f1a6ea936da
lib/.travis.yml
lib/.travis.yml
rvm: - 1.9.2 - 1.9.3 - ruby-head - rbx-19mode env: - JRUBY_OPTS="--1.9"
rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.2 - ruby-head - rbx-19mode env: - JRUBY_OPTS="--1.9"
Add Ruby 2 & 2.1 to Travis
Add Ruby 2 & 2.1 to Travis
YAML
mit
fogisland/grape-active_model_serializers,ruby-grape/grape-active_model_serializers,gaugau/grape-active_model_serializers,Thanx/grape-active_model_serializers,kulte/grape-active_model_serializers,jrhe/grape-active_model_serializers,onomated/grape-active_model_serializers
69b1b9e9c24df8de68d281a37bb45e055b229b91
.github/release-drafter.yml
.github/release-drafter.yml
name-template: 'v$RESOLVED_VERSION 🎁' tag-template: 'v$RESOLVED_VERSION' template: | $CHANGES # Emoji reference: https://gitmoji.carloscuesta.me/ categories: - title: πŸ’₯ Removed label: removed - title: ⚠️ Deprecated label: deprecated - title: πŸš€ New features labels: - feature - title: ✨ I...
name-template: 'v$RESOLVED_VERSION 🎁' tag-template: 'v$RESOLVED_VERSION' template: | $CHANGES # Emoji reference: https://gitmoji.carloscuesta.me/ categories: - title: πŸ’₯ Removed label: removed - title: ⚠️ Deprecated label: deprecated - title: πŸš€ New features labels: - feature - title: ✨ I...
Include label `bug` when detecting minor version.
Include label `bug` when detecting minor version.
YAML
mit
jenkinsci/analysis-model,jenkinsci/analysis-model,jenkinsci/analysis-model,jenkinsci/analysis-model
ea91e365c271414b237545d585cf1e5432b70686
.github/release-drafter.yml
.github/release-drafter.yml
name-template: 'v$NEXT_MINOR_VERSION' tag-template: 'v$NEXT_MINOR_VERSION' categories: - title: '🧬 Features' labels: - 'feature' - title: 'πŸ› Bug Fixes' labels: - 'fix' - title: '🏎 Performance Tweaks' labels: - 'performance' - title: '🎨 Style Tweaks' labels: - 'style t...
name-template: 'v$NEXT_PATCH_VERSION' tag-template: 'v$NEXT_PATCH_VERSION' categories: - title: '🧬 Features' labels: - 'feature' - title: 'πŸ› Bug Fixes' labels: - 'fix' - title: '🏎 Performance Tweaks' labels: - 'performance' - title: '🎨 Style Tweaks' labels: - 'style t...
Update action files to align the version level to patch
Update action files to align the version level to patch
YAML
agpl-3.0
zhx828/oncokb,oncokb/oncokb,zhx828/oncokb,zhx828/oncokb,oncokb/oncokb,oncokb/oncokb
03d679f7426daedf24f37ef91ed4a93846bd5a2f
.github/workflows/build.yml
.github/workflows/build.yml
name: Build on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [8, 11] steps: - uses: actions/checkout@v1 - uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build plugin run: | ./gradlew downl...
name: build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [8, 11, 17] steps: - uses: actions/checkout@v2 - uses: actions/setup-java@v2 with: distribution: 'temurin' java-version: ${{ matrix.java }} cache...
Enable cache and use adoptium JDK, including Java 17
Enable cache and use adoptium JDK, including Java 17
YAML
apache-2.0
thymeleaf/thymeleaf-extras-eclipse-plugin
f9c1bffb98b2239a0f2fefc41b98da62e16f7520
.github/workflows/build.yml
.github/workflows/build.yml
name: Build an test on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Cache Gradle uses: actions/cache@v2 env: cache-name: gra...
name: Build and test on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@v1 - name: Set up JDK 11 uses: actions/setup-java@v2 with: distribu...
Use updated JDK setup and gradle caching
Use updated JDK setup and gradle caching
YAML
mit
cemrich/zapp
6dbb4768476b077515aa1af98d4e3b7f3323a707
.github/workflows/build.yml
.github/workflows/build.yml
name: Build on: push jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: php-actions/composer@v5 - uses: php-actions/phpunit@v3 with: php_extensions: zip deploy: runs-on: ubuntu-latest if: ${{ github.ref_name == 'master' }} needs: tes...
name: Build on: push jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: php-actions/composer@v5 - uses: php-actions/phpunit@v3 with: php_extensions: zip deploy: runs-on: ubuntu-latest if: ${{ startsWith(github.ref, 'refs/tags/v') }} ...
Switch workflow to deploy from tags
Switch workflow to deploy from tags
YAML
mit
cmbuckley/letterboxd-ics,cmbuckley/letterboxd-ics
affcff17607ecd6929ae61cc95b2b195310761c8
.github/workflows/build.yml
.github/workflows/build.yml
on: push name: Build jobs: build: name: Build runs-on: ubuntu-latest env: RAILS_ENV: test CI: true steps: - name: Checkout uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: '3.1' bundler-cac...
on: push name: Build jobs: build: name: Build runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: [ 2.7 ] env: RAILS_ENV: test CI: true steps: - name: Checkout uses: actions/checkout@v2 - name: Setup Ruby ...
Configure matrix for ruby versions
Configure matrix for ruby versions
YAML
mit
adhearsion/adhearsion,adhearsion/adhearsion,adhearsion/adhearsion,adhearsion/adhearsion
2b1767b9c00476aef15b7ac2c66e391ca44e39ba
mkdocs.yml
mkdocs.yml
site_name: Terminals Are Sexy site_url: http://terminalsare.sexy site_description: A curated list of sexy Terminal frameworks, extensions & resources for CLI lovers. site_author: Nikolaos Kamarinakis repo_url: https://github.com/k4m4/terminals-are-sexy edit_uri: blob/master/readme.md theme: cinder google_analytics: ['U...
site_name: Terminals Are Sexy site_url: http://terminalsare.sexy site_description: A curated list of sexy Terminal frameworks, extensions & resources for CLI lovers. site_author: Nikolaos Kamarinakis repo_url: https://github.com/k4m4/terminals-are-sexy edit_uri: '' theme: cinder google_analytics: ['UA-91770911-1', 'ter...
Remove "edit URL link" from site
Remove "edit URL link" from site
YAML
cc0-1.0
k4m4/terminals-are-sexy,unixorn/terminals-are-sexy
0a9e4ba1107019fec41d66c8ee0f0882bca06761
tools/jenkins/job-helpers/devstacks.yaml
tools/jenkins/job-helpers/devstacks.yaml
1: {name: "Single node, ML2: default", job: "devstack_single_node_nightly"} 2: {name: "Multi node, ML2: default", job: "devstack_multinode"} 3: {name: "Multi node with Nexus", job: "topo_2node_nexus"} 4: {name: "Single node with DHCP6", job: "topo_aio_dhcp6"} 5: {name: "Single node with Dibbler", job: "topo_aio_dibbler...
1: {name: "Single node, ML2: default", job: "devstack_single_node_nightly"} 2: {name: "Multi node, ML2: default", job: "devstack_multinode"} 3: {name: "Multi node with Nexus", job: "topo_2node_nexus"} 4: {name: "Single node with DHCP6", job: "topo_aio_dhcp6"} 5: {name: "Single node with Dibbler", job: "topo_aio_dibbler...
Enable CSR1KV job in the report.
Enable CSR1KV job in the report. Change-Id: Id1f8455e2b38816f07e76481c2fde91206e391fd
YAML
apache-2.0
CiscoSystems/os-sqe,CiscoSystems/os-sqe,CiscoSystems/os-sqe
7839175402205fbfdbe7d25c33048d6fbb25d00e
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: node: [12, 14] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run: npm install -g npm@7 - uses: action...
name: CI on: [push, pull_request] jobs: test: runs-on: ubuntu-20.04 strategy: matrix: node: [12, 14] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run: npm install -g npm@7 - uses: actions...
Use Ubuntu 20.04 on CI
Use Ubuntu 20.04 on CI
YAML
mit
kensho/babel-preset-kensho,kensho/babel-preset-kensho
a9ee45e06d9ce46bccfb28ebe4a80095eddd0fc5
.github/workflows/ci.yml
.github/workflows/ci.yml
name: Publish package to GitHub Packages on: push: pull_request: workflow_dispatch: jobs: test: strategy: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] java-version: [8, 11, 17] runs-on: ${{ matrix.os }} env: JDK_JAVA_OPTIONS: "--add-op...
name: CI on: push: pull_request: workflow_dispatch: jobs: test: strategy: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] java-version: [8, 11, 17] runs-on: ${{ matrix.os }} env: JDK_JAVA_OPTIONS: "--add-opens java.base/java.lang=ALL-UNNA...
Change name of the workflow
Change name of the workflow
YAML
apache-2.0
Codeforces/codeforces-commons,Codeforces/codeforces-commons
31ad6a8764abbc78d1b526999f4114b47cfa6c4d
.github/workflows/ci.yml
.github/workflows/ci.yml
name: GitHub CI on: pull_request: push: schedule: - cron: 0 0 * * 0 defaults: run: shell: 'bash -Eeuo pipefail -x {0}' jobs: generate-jobs: name: Generate Jobs runs-on: ubuntu-latest outputs: strategy: ${{ steps.generate-jobs.outputs.strategy }} steps: - uses: actions/c...
name: GitHub CI on: pull_request: push: schedule: - cron: 0 0 * * 0 defaults: run: shell: 'bash -Eeuo pipefail -x {0}' jobs: generate-jobs: name: Generate Jobs runs-on: ubuntu-latest outputs: strategy: ${{ steps.generate-jobs.outputs.strategy }} steps: - uses: actions/c...
Use new "bashbrew" composite action
Use new "bashbrew" composite action
YAML
mit
infosiftr/pypy,docker-library/pypy
5b765a089fdfd8a16beb3e25d4a05278e8d3297a
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: [push, pull_request] jobs: phpspec: runs-on: ubuntu-latest strategy: matrix: php: [7.2, 7.3, 7.4, 8.0] steps: - uses: actions/checkout@v1 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - name: Validate Composer files run:...
name: CI on: [push, pull_request] jobs: phpspec: runs-on: ubuntu-latest strategy: matrix: php: [7.2, 7.3, 7.4, 8.0, 8.1] steps: - uses: actions/checkout@v1 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - name: Validate Composer files ...
Test with PHP 8.1, too
CI: Test with PHP 8.1, too
YAML
mit
franzliedke/studio
12d6e9b0a18fc0fde5e58b665a1594ecd7a51b19
.github/workflows/ci.yml
.github/workflows/ci.yml
on: pull_request: branches: - "main" push: branches: - "main" jobs: test: runs-on: ubuntu-latest name: Tests on ${{matrix.otp}} strategy: matrix: otp: ['24.1'] steps: - uses: actions/checkout@v2 - uses: erlef/setup-beam@v1 with: otp-...
on: pull_request: branches: - "master" push: branches: - "master" jobs: test: runs-on: ubuntu-latest name: Tests on ${{matrix.otp}} strategy: matrix: otp: ['24.1', '23.3', '22.3', '21.3', '20.3'] steps: - uses: actions/checkout@v2 - uses: erlef/setup-...
Add OTP versions to github actions.
Add OTP versions to github actions.
YAML
mit
ostinelli/syn
3c2d26f8a3a872abb6907cf40268bc7d1bbedb7f
.github/workflows/ci.yml
.github/workflows/ci.yml
name: Continuous Integration on: push: branches: - master - /^v\d+\.\d+(\.\d+)?(-\S*)?$/ pull_request: ~ jobs: static-analysis: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: php-version: '7.3' tools: ...
name: Continuous Integration on: push: branches: - master - /^v\d+\.\d+(\.\d+)?(-\S*)?$/ pull_request: ~ jobs: static-analysis: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2 with: php-version: '7.3' coverag...
Remove the `--no-suggest` flag in github action
Remove the `--no-suggest` flag in github action
YAML
mit
Taluu/Behapi
56ed7bed5d898ef23ff016b985cdc2c0afef8671
.github/workflows/ci.yml
.github/workflows/ci.yml
name: Continuous Integration on: push: branches: - master - /.*-stable/ pull_request: branches: - master - /.*-stable/ jobs: ci: name: 'SUITE: ${{ matrix.test_suite }} / OS: ${{ matrix.os }}' runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: tes...
name: Continuous Integration on: push: branches: - master - /.*-stable/ pull_request: branches: - master - /.*-stable/ jobs: ci: name: 'SUITE: ${{ matrix.test_suite }} / OS: ${{ matrix.os }}' runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: tes...
Stop testing on Windows via GitHub Actions
Stop testing on Windows via GitHub Actions The builds seem to be choking for the past few days due to the presence of symlinked files. Fortunately, AppVeyor builds continue to run as before.
YAML
mit
jaybe-jekyll/jekyll,x-way/jekyll,jaybe-jekyll/jekyll,chrisfinazzo/jekyll,x-way/jekyll,ryanshaw/jekyll,x-way/jekyll,ryanshaw/jekyll,fulldecent/jekyll,fulldecent/jekyll,chrisfinazzo/jekyll,jaybe-jekyll/jekyll,jekyll/jekyll,yhironaka/yhironaka.github.io,fulldecent/jekyll,x-way/jekyll,ryanshaw/jekyll,jekyll/jekyll,chrisfin...
cda3953796245c5827cbc18f372d3457bc65a153
examples/kubernetes/vtgate-service.yaml
examples/kubernetes/vtgate-service.yaml
kind: Service apiVersion: v1 metadata: name: vtgate labels: component: vtgate app: vitess spec: ports: - name: web+bsonrpc port: 15001 - name: grpc port: 15991 selector: component: vtgate app: vitess type: LoadBalancer
kind: Service apiVersion: v1 metadata: name: vtgate labels: component: vtgate app: vitess spec: ports: - name: web port: 15001 - name: grpc port: 15991 selector: component: vtgate app: vitess type: LoadBalancer
Fix invalid vtgate port name.
example/kubernetes: Fix invalid vtgate port name. Error was: spec.ports[0].name: invalid value 'web+bsonrpc', Details: must be a DNS label (at most 63 characters, matching regex a-z0-9?): e.g. "my-name"
YAML
apache-2.0
alainjobart/vitess,aaijazi/vitess,enisoc/vitess,mahak/vitess,aaijazi/vitess,vitessio/vitess,guokeno0/vitess,tinyspeck/vitess,mahak/vitess,mahak/vitess,aaijazi/vitess,alainjobart/vitess,HubSpot/vitess,mahak/vitess,alainjobart/vitess,enisoc/vitess,erzel/vitess,mattharden/vitess,rnavarro/vitess,davygeek/vitess,dumbunny/vi...
8f7fbfc7137630d2ec1db1753069de574958e6c6
.travis.yml
.travis.yml
--- language: node_js node_js: - '0.10' before_install: - sudo apt-get update -qq - npm install -g grunt-cli - npm link grunt - git submodule update --init --recursive env: global: - secure: |- caiZawX1I0N6l9lh9ksYXf7SaoinQckitLw1Be8SY4UnG8fUKOoRN3qhAzf7 KaJeafrGDpQEkvt8BARaRRHGfReUcfLfcY8jvq5t2t8yEESpw...
--- language: node_js node_js: - '0.10' before_install: - sudo apt-get update -qq - npm install -g grunt-cli - git submodule update --init --recursive env: global: - secure: |- caiZawX1I0N6l9lh9ksYXf7SaoinQckitLw1Be8SY4UnG8fUKOoRN3qhAzf7 KaJeafrGDpQEkvt8BARaRRHGfReUcfLfcY8jvq5t2t8yEESpwtOrAfavAWP7 ...
Build order fixed to install grunt before using it.
Build order fixed to install grunt before using it.
YAML
mit
FineUploader/fine-uploader,FineUploader/fine-uploader,FineUploader/fine-uploader
b357e76668f154503b45dd3f1df4b25683891e67
.codeclimate.yml
.codeclimate.yml
version: "2" plugins: rubocop: enabled: true config: file: .rubocop.yml channel: "rubocop-0-60" # need to keep this value the same as rubocop version # https://docs.codeclimate.com/v1.0/docs/rubocop#section-using-rubocop-s-newer-versions eslint: enabled: true ch...
version: "2" plugins: rubocop: enabled: true config: file: .rubocop.yml channel: "rubocop-0-60" # need to keep this value the same as rubocop version # https://docs.codeclimate.com/v1.0/docs/rubocop#section-using-rubocop-s-newer-versions eslint: enabled: true ch...
Enable CodeClimate checks for guides
Enable CodeClimate checks for guides
YAML
bsd-3-clause
imella/spree,ayb/spree,imella/spree,ayb/spree,ayb/spree,imella/spree,ayb/spree
3e50aee6f42f31f21d7b804a379d912c15856a07
.codeclimate.yml
.codeclimate.yml
languages: Ruby: false JavaScript: true PHP: true Python: false exclude_paths: - "vendor/*" - "config/*" - "bootstrap/*" - "database/*" - "storage/*" - "resources/assets/css/skin-*.css" - "resources/assets/js/AdminLTE.js" - "resources/assets/css/AdminLTE.css" - "resou...
engines: markdownlint: enabled: true shellcheck: enabled: true languages: Ruby: false JavaScript: true PHP: true Python: false exclude_paths: - "vendor/*" - "config/*" - "bootstrap/*" - "database/*" - "storage/*" - "resources/assets/css/skin-*.css" - "...
Add shell check and markdown lint
Add shell check and markdown lint
YAML
mit
JamesForks/deployer,REBELinBLUE/deployer,REBELinBLUE/deployer,JamesForks/deployer,REBELinBLUE/deployer,REBELinBLUE/deployer,JamesForks/deployer,JamesForks/deployer
aeefa82cb92b55d701895c208435601e79e9b7ff
.readthedocs.yml
.readthedocs.yml
formats: - htmlzip - pdf python: version: 3 pip_install: true extra_requirements: - docs
version: 2 formats: - htmlzip - pdf build: image: stable python: version: 3.7 install: - method: pip path: . extra_requirements: - docs sphinx: builder: html configuration: docs/conf.py fail_on_warning: true
Use v2 format for RTFD configuration, add some options
Use v2 format for RTFD configuration, add some options
YAML
bsd-3-clause
skirpichev/omg,diofant/diofant
89a32d777184578203ca0746d2583d6d204f720c
.scrutinizer.yml
.scrutinizer.yml
tools: external_code_coverage: timeout: 1800 runs: 3 build: environment: php: version: 7.2 nodes: phpcs: tests: override: - phpcs-run src/ tests/ static-analysis: environment: php: ini: 'memory_limit': -1 dependencies: ...
tools: external_code_coverage: timeout: 1800 runs: 3 build: environment: php: version: 7.2 nodes: phpcs: tests: override: - phpcs-run src/ tests/ static-analysis: environment: php: ini: 'memory_limit': -1 dependencies: ...
Mark build as failed if test coverage goes below 90%.
Mark build as failed if test coverage goes below 90%.
YAML
mit
CakeDC/cakephp,CakeDC/cakephp,cakephp/cakephp,CakeDC/cakephp,dakota/cakephp,ADmad/cakephp,ADmad/cakephp,dakota/cakephp,dakota/cakephp,ndm2/cakephp,ADmad/cakephp,cakephp/cakephp,cakephp/cakephp,dakota/cakephp,CakeDC/cakephp,ndm2/cakephp,ndm2/cakephp,cakephp/cakephp,ndm2/cakephp,ADmad/cakephp
3b4659782450f631b2c88ec98d42684de12c329d
config/agents.yml
config/agents.yml
- kind: Agent apiVersion: v1 metadata: name: Jhon Doe username: johndoe secret: gJcxzr1v4zXUVXJ3 domains: - ocean-ny.us1.sip.fonoster.com - ocean-tx.us1.sip.fonoster.com - kind: Agent apiVersion: v1 metadata: name: Janie Doe username: janiedoe secret: gJcxzr1v4zXUVXJ3 domains: -...
- kind: Agent apiVersion: v1 metadata: name: Jhon Doe username: johndoe secret: gJcxzr1v4zXUVXJ3 domains: - ocean-ny.us1.sip.fonoster.com - ocean-tx.us1.sip.fonoster.com - kind: Agent apiVersion: v1 metadata: name: Janie Doe username: janiedoe secret: gJcxzr1v4zXUVXJ3 domains: - ...
Remove extra space in config files
Remove extra space in config files
YAML
mit
fonoster/sipio,psanders/sipio,psanders/sip.io,psanders/sipio,psanders/sip.io,fonoster/sipio,fonoster/sipio
af20eae959908123262504c25657560af48c5e92
cucumber.yml
cucumber.yml
<% cucumber_pro_opts = ENV['ENABLE_CUCUMBER_PRO'] ? "--format Cucumber::Pro --out /dev/null" : "" std_opts = "--format progress features -r features --strict #{cucumber_pro_opts}".dup std_opts << " --tags 'not @wip'" std_opts << " --tags 'not @wip-jruby'" if defined?(JRUBY_VERSION) wip_opts = "--color -r features".dup...
<% cucumber_pro_opts = ENV['ENABLE_CUCUMBER_PRO'] ? "--format Cucumber::Pro --out /dev/null" : "" std_opts = "--format progress features -r features --strict #{cucumber_pro_opts}".dup std_opts << " --tags 'not @wip'" std_opts << " --tags 'not @wip-jruby'" if defined?(JRUBY_VERSION) wip_opts = "--color -r features".dup...
Fix ruby profile to run everything
Fix ruby profile to run everything
YAML
mit
cucumber/cucumber-ruby,cucumber/cucumber-ruby,cucumber/cucumber-ruby
f8ebce1d4928d3b386c07766e9fe4a8f16dc6edf
.circleci/config.yml
.circleci/config.yml
version: '2' defaults: &defaults jobs: build: docker: - image: circleci/python:3 steps: - checkout - setup_remote_docker - run: name: Setup Environment command: source setup_env.sh - run: name: Install Docker Compose command: sudo pip ...
version: '2' defaults: &defaults jobs: build: docker: - image: circleci/python:3 steps: - checkout - setup_remote_docker - run: name: Setup Environment command: source setup_env.sh - run: name: Install Docker Compose command: sudo pip ...
Fix build and test setup for dev images.
Fix build and test setup for dev images.
YAML
mit
maxking/docker-mailman,maxking/docker-mailman
5c93fa8efa69e7ddba5610910023e452e7ca60e4
.circleci/config.yml
.circleci/config.yml
# Java Gradle CircleCI 2.0 configuration file # Check https://circleci.com/docs/2.0/language-java/ for more details version: 2 jobs: build: docker: - image: circleci/openjdk:8-jdk environment: # Customize the JVM maximum heap limit JVM_OPTS: -Xmx1600m steps: - checkout - r...
# Java Gradle CircleCI 2.0 configuration file # Check https://circleci.com/docs/2.0/language-java/ for more details version: 2 jobs: build: docker: - image: circleci/openjdk:8-jdk environment: # Customize the JVM maximum heap limit JVM_OPTS: -Xmx1600m steps: - checkout - r...
Store test results on CircleCI
Store test results on CircleCI
YAML
apache-2.0
nobuoka/vc-oauth-java,nobuoka/vc-oauth-java
0d80452f9c0f42654f6d3727553a5fbd77416b9b
config/open_jdk_jre.yml
config/open_jdk_jre.yml
# Cloud Foundry Java Buildpack # Copyright 2013-2015 the original author or authors. # # 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 # # Un...
# Cloud Foundry Java Buildpack # Copyright 2013-2015 the original author or authors. # # 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 # # Un...
Set a maximum value of 96m for the metaspace.
Set a maximum value of 96m for the metaspace. This is needed to prevent oom-killer running too frequently due to using too much native memory.
YAML
apache-2.0
peeeto/java-buildpack-cloudfoundry,Service-Flow/java-buildpack-cloudfoundry,Service-Flow/java-buildpack-cloudfoundry,peeeto/java-buildpack-cloudfoundry
f5611b9ece4812972c70306f2616609b5d4b7e26
.github/workflows/build-dev.yml
.github/workflows/build-dev.yml
name: Build and deploy on: push: paths-ignore: - 'docs/**' - 'yarn.lock' - 'package.json' branches: - master tags: - '*' jobs: test-netcore-linux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-dotnet@v1 with: ...
name: Build and deploy on: push: paths-ignore: - 'docs/**' - 'yarn.lock' - 'package.json' branches: - dev tags: - '*' jobs: test-netcore-linux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-dotnet@v1 with: ...
Fix GH Actions after the branch rename
Fix GH Actions after the branch rename
YAML
apache-2.0
restsharp/RestSharp
0e9584d93c29f41689dab9f8a0f130c5dd36e9fd
tests/regression/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920610.yaml
tests/regression/tests/REQUEST-920-PROTOCOL-ENFORCEMENT/920610.yaml
--- meta: author: "karelorigin" enabled: true name: "920610.yaml" description: "Tests for 920610" tests: - test_title: 920610-1 desc: Encoded URL fragment false positive test stages: - stage: input: dest_addr: "127.0.0.1" port: 80 uri: "/%23fragment"...
--- meta: author: "karelorigin" enabled: true name: "920610.yaml" description: "Tests for 920610" tests: - test_title: 920610-1 desc: Encoded URL fragment false positive test stages: - stage: input: dest_addr: "127.0.0.1" port: 80 uri: "/%23fragment"...
Change Accept headers to something reasonable
Change Accept headers to something reasonable
YAML
apache-2.0
coreruleset/coreruleset,coreruleset/coreruleset,coreruleset/coreruleset,coreruleset/coreruleset,coreruleset/coreruleset,coreruleset/coreruleset
8e887c5fbccdb2d328ec61ad8363957aa2730fad
lib/jekyll_picture_tag/defaults/presets.yml
lib/jekyll_picture_tag/defaults/presets.yml
markup: auto formats: [original] widths: [400, 600, 800, 1000] fallback_width: 800 fallback_format: original noscript: false link_source: false quality: 75 data_sizes: true
markup: auto formats: [original] widths: [400, 600, 800, 1000] fallback_width: 800 fallback_format: original noscript: false link_source: false quality: 75 data_sizes: true gravity: center
Set default gravity to 'center'
Set default gravity to 'center'
YAML
bsd-3-clause
robwierzbowski/jekyll-picture-tag
6f07554043fd570f1cdd15a1775a205f8f62a701
ci/environment-py35.yml
ci/environment-py35.yml
name: test_env dependencies: - python=3.5 - xarray - dask - numpy - pytest - future - scipy - flake8 - pip: - codecov - pytest-cov - "--editable=git+https://github.com/xgcm/xgcm.git@master#egg=xgcm"
name: test_env dependencies: - python=3.5 - xarray - dask - numpy - pytest - future - scipy - flake8 - astropy - pip: - codecov - pytest-cov - "--editable=git+https://github.com/xgcm/xgcm.git@master#egg=xgcm"
Add astropy to env file
Add astropy to env file
YAML
mit
jbusecke/xarrayutils
83faffbe6467c531588b8b136985ae01c346d3dc
metadata/mazechazer.android.wottankquiz.yml
metadata/mazechazer.android.wottankquiz.yml
Categories: - Games License: GPL-3.0-or-later AuthorName: Jonas SchΓΌrmann WebSite: https://mazechazer.github.io/WoT-Tank-Quiz SourceCode: https://github.com/MazeChaZer/WoT-Tank-Quiz IssueTracker: https://github.com/MazeChaZer/WoT-Tank-Quiz/issues Changelog: https://github.com/MazeChaZer/WoT-Tank-Quiz/releases AutoNa...
Categories: - Games License: GPL-3.0-or-later AuthorName: Jonas SchΓΌrmann WebSite: https://mazechazer.github.io/WoT-Tank-Quiz SourceCode: https://github.com/MazeChaZer/WoT-Tank-Quiz IssueTracker: https://github.com/MazeChaZer/WoT-Tank-Quiz/issues Changelog: https://github.com/MazeChaZer/WoT-Tank-Quiz/releases AutoNa...
Update CurrentVersion of WoT Tank Quiz to 1.9 (11)
Update CurrentVersion of WoT Tank Quiz to 1.9 (11)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
b3e8c21a47e3df46b740a360b9aca10eb9b5763b
stack-older-snapshots.yaml
stack-older-snapshots.yaml
resolver: lts-7.13 packages: - 'prettyprinter' - 'prettyprinter-ansi-terminal' - 'prettyprinter-compat-wl-pprint' - 'prettyprinter-compat-ansi-wl-pprint' - 'prettyprinter-convert-ansi-wl-pprint' - 'prettyprinter-compat-annotated-wl-pprint' - location: git: https://github.com/quchen/...
resolver: lts-7.13 packages: - 'prettyprinter' - 'prettyprinter-ansi-terminal' - 'prettyprinter-compat-wl-pprint' - 'prettyprinter-compat-ansi-wl-pprint' - 'prettyprinter-convert-ansi-wl-pprint' - 'prettyprinter-compat-annotated-wl-pprint' extra-deps: - pgp-wordlist-0.1.0.2 - ansi-wl-ppr...
Fix ansi-wl-pprint dependency for older snapshots too
Fix ansi-wl-pprint dependency for older snapshots too
YAML
bsd-2-clause
quchen/prettyprinter,quchen/prettyprinter
d30e4e96234c6e826aeac9ec2ccb5a657787ea85
docker-compose.test.yml
docker-compose.test.yml
version: '3' services: test: command: npm install-test image: node:8 volumes: - .:/app working_dir: /app
services: test: command: npm install-test image: node:8 volumes: - .:/app working_dir: /app version: '3'
Sort keys in Compose files
Sort keys in Compose files
YAML
mit
xavierdutreilh/wintersmith-cname
ca88c90f49c45e8d13b6675804599702140b5d5e
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: Build and publish to ECR on: workflow_dispatch: branches: - main push: branches: - main paths-ignore: - "Jenkinsfile" - ".git**" jobs: build-publish-image-to-ecr: uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main secrets: AWS_GOVUK_ECR...
name: CI on: workflow_dispatch: branches: - main push: branches: - main paths-ignore: - "Jenkinsfile" - ".git**" jobs: build-and-publish-image: name: Build and publish image uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main secrets: AWS_...
Update CI workflow to trigger deploy to integration
Update CI workflow to trigger deploy to integration This adds an additional job to the CI workflow to run a reusable workflow that writes the newly built image tag to helm charts file. This triggers ArgoCD to deploy the integration.
YAML
mit
alphagov/finder-frontend,alphagov/finder-frontend,alphagov/finder-frontend,alphagov/finder-frontend
832c8de11138f27c339127b6623b9804b2113df9
_data/events.yml
_data/events.yml
- type: project-night date: Thursday, 18 February 2016 time: 7pm – 11pm datetime_aria: Thursday, eighteenth of February, two-thousand and sixteen location: AlphaSights, 201 Borough High Street, Borough, London location_for_google: 201 Borough High Street, Borough, London url: http://www.meetup.com/London-Em...
- type: meetup date: Thursday, 17 March 2016 time: 6.30pm – 9.30pm datetime_aria: Thursday, seventeenth of March, two-thousand and sixteen, six thirty pm to nine thirty pm. location: Eden House, 8 Spital Square, London E1 6DU location_for_google: 201 Borough High Street, Borough, London url: http://www.meet...
Hide Feb 2016 proj night
Hide Feb 2016 proj night
YAML
mit
emberlondon/emberlondon.github.io,emberlondon/emberlondon.github.io,emberlondon/emberlondon.github.io,emberlondon/emberlondon.github.io
49c7280795754c2d05909aba492ff0434af9e25e
.github/workflows/php.yml
.github/workflows/php.yml
name: build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: operating-system: [ubuntu-latest, windows-latest, macos-latest] php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0'] name: PH...
name: build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: operating-system: [ubuntu-latest, windows-latest, macos-latest] php-versions: ['7.3', '7.4'] name: PHP ${{ matrix.php-versions }} Test o...
Build with supported minor versions of PHP 7
Build with supported minor versions of PHP 7
YAML
mit
gofabian/negotiation-middleware
7cba3805702e03c14a1de551301c6dc5523e985c
.github/workflows/tox.yml
.github/workflows/tox.yml
name: Run tox on: [pull_request, push] jobs: build: runs-on: ubuntu-latest strategy: matrix: include: - python-version: "2.7" env: docs - python-version: "2.7" env: flake8 steps: - uses: actions/checkout@v2 - name: install libsystemd-dev ...
name: Run tox on: [pull_request, push] jobs: build: runs-on: ubuntu-latest strategy: matrix: include: - python-version: "2.7" env: docs - python-version: "2.7" env: flake8 steps: - uses: actions/checkout@v2 - name: update package index ...
Update the package index before installing libsystemd-dev
Update the package index before installing libsystemd-dev Otherwise, the build will try to install an old version of libsystemd-dev, that's not on the mirrors anymore.
YAML
mit
mineo/sagbescheid,mineo/sagbescheid
36082dad8f9d64227d779d103ae010fe811d3c02
jenkins/jobs/examples.yaml
jenkins/jobs/examples.yaml
- job-template: name: 'noop-check-communication-{node}' node: '{node}' builders: - shell: | #!/bin/bash -xe echo "Hello world, this is the {vendor} Testing System" - link-logs publishers: - devstack-logs - console-log - job-template: name: 'gate-{name}...
- job-template: name: 'noop-check-communication-{node}' node: '{node}' builders: - shell: | #!/bin/bash -xe echo "Hello world, this is the {vendor} Testing System" - link-logs publishers: - devstack-logs - console-log - job-template: name: 'gate-{name}...
Update dvsm tempest timeout too
Update dvsm tempest timeout too
YAML
apache-2.0
CiscoSystems/project-config-third-party,CiscoSystems/project-config-third-party
6c86cc40aedd7276c48b1bb3091ceffd160cd650
packages/ke/keera-hails-reactivevalues.yaml
packages/ke/keera-hails-reactivevalues.yaml
homepage: http://www.keera.es/blog/community/ changelog-type: '' hash: 65006ff8605aaced16e20af4dcb73d08cb0f64a5c291678b3fe8a4b6bfff972a test-bench-deps: {} maintainer: ivan.perez@keera.es synopsis: Haskell on Rails - Reactive Values changelog: '' basic-deps: base: ! '>=4 && <5' contravariant: -any all-versions: - '...
homepage: http://www.keera.es/blog/community/ changelog-type: '' hash: 20d6e1b63fed2f744af876fa4bf6e98a1e1abbdb3d29f1804068511165f66847 test-bench-deps: {} maintainer: ivan.perez@keera.es synopsis: Haskell on Rails - Reactive Values changelog: '' basic-deps: base: ! '>=4 && <5' contravariant: -any all-versions: - '...
Update from Hackage at 2015-09-09T03:38:23+0000
Update from Hackage at 2015-09-09T03:38:23+0000
YAML
mit
commercialhaskell/all-cabal-metadata
13651823192168b3246269bf27b33fcb1c75daf6
azure-pipelines.yml
azure-pipelines.yml
name: LinqToTypeScriptInDev trigger: - InDev pool: vmImage: 'ubuntu-16.04' strategy: matrix: node_10_x: node_version: 10.x node_12_x: node_version: 12.x steps: - task: NodeTool@0 inputs: versionSpec: $(node_version) - script: | npm install -g typescript tslint@5.12.1 jest rollup...
name: LinqToTypeScriptInDev trigger: - InDev pool: vmImage: 'ubuntu-16.04' strategy: matrix: node_10_x: node_version: 10.x node_12_x: node_version: 12.x steps: - task: NodeTool@0 inputs: versionSpec: $(node_version) - script: | npm install -g typescript tslint@5.12.1 jest rollup...
Set up CI with Azure Pipelines
Set up CI with Azure Pipelines Some mistakes when reviewing YAML [skip ci]
YAML
mit
arogozine/LinqToTypeScript,arogozine/LinqToTypeScript
82745afa5b2045085567f91cb99760425bec367e
pipelines/templates/tasks/unitypackages.yml
pipelines/templates/tasks/unitypackages.yml
# [Template] Builds and publishes .unitypackages parameters: version: '$(MRTKVersion)-$(Build.BuildNumber)' steps: - task: PowerShell@2 displayName: 'Build .unitypackages' inputs: targetType: filePath filePath: ./scripts/packaging/unitypackage.ps1 arguments: > -UnityDirectory ${Env:Unity2018.3....
# [Template] Builds and publishes .unitypackages parameters: version: '$(MRTKVersion)-$(Build.BuildNumber)' steps: - task: PowerShell@2 displayName: 'Build .unitypackages' inputs: targetType: filePath filePath: ./scripts/packaging/unitypackage.ps1 arguments: > -UnityDirectory ${Env:$(Unity2018V...
Use variable instead of explicit Unity version
Use variable instead of explicit Unity version
YAML
mit
killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
9f3bef6da79a7ea9228b814431b73351b272c1cf
ansible/site.yml
ansible/site.yml
- hosts: - ansible-test - localhost - travis-ci remote_user: ansible become: true become_user: root become_method: sudo gather_facts: true roles: - boxcryptor # - core_pkg # - core_pip # - cron # - docker # - dotfiles # - dropbox # - entropy # - firewall # - gitse...
- hosts: - ansible-test - localhost - travis-ci remote_user: ansible become: true become_user: root become_method: sudo gather_facts: true roles: - boxcryptor - core_pkg - core_pip - cron - docker - dotfiles - dropbox - entropy - firewall - gitsemver ...
Remove commented lines added when testing
Remove commented lines added when testing
YAML
mit
wicksy/laptop-build,wicksy/laptop-build,wicksy/laptop-build,wicksy/laptop-build
bd18a5bb588bb7c4d6be3a9eb967a09d45d0e30d
Configuration/Caches.yaml
Configuration/Caches.yaml
TYPO3_TypoScript_Content: # Set up a special cache frontend to store metadata (tags, lifetime) in entries frontend: MOC\Varnish\Cache\MetadataAwareStringFrontend Moc_Varnish_Site_Token: frontend: TYPO3\Flow\Cache\Frontend\StringFrontend backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend backendOptions: ...
TYPO3_TypoScript_Content: # Set up a special cache frontend to store metadata (tags, lifetime) in entries frontend: MOC\Varnish\Cache\MetadataAwareStringFrontend Moc_Varnish_Site_Token: frontend: TYPO3\Flow\Cache\Frontend\StringFrontend backend: TYPO3\Flow\Cache\Backend\SimpleFileBackend backendOptions: ...
Set site token cache timeout to infinite
[BUGFIX] Set site token cache timeout to infinite
YAML
mit
mocdk/MOC.Varnish,mocdk/MOC.Varnish
3f6448f11f7c7217022630c0016ec3d01e8d2e56
playbooks/roles/jenkins_admin/meta/main.yml
playbooks/roles/jenkins_admin/meta/main.yml
--- # # edX Configuration # # github: https://github.com/edx/configuration # wiki: https://github.com/edx/configuration/wiki # code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions # license: https://github.com/edx/configuration/blob/master/LICENSE.TXT # ## # Role includes for ro...
--- # # edX Configuration # # github: https://github.com/edx/configuration # wiki: https://github.com/edx/configuration/wiki # code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions # license: https://github.com/edx/configuration/blob/master/LICENSE.TXT # ## # Role includes for ro...
Add edxapp_common as an admin_jenkins dependency
Add edxapp_common as an admin_jenkins dependency Because admin_jenkins runs various management commands locally, it needs to be able to run the edxapp locally. This means that it needs to be able to install the system requirements needed by the edxapp so that pip install to local venvs work correctly.
YAML
agpl-3.0
Softmotions/configuration,bugcy013/edx_infra,nikolas/configuration,nunpa/configuration,arifsetiawan/configuration,antshin72/configuration,kencung/configuration,Pieros/configuration,eduStack/configuration,arifsetiawan/configuration,4eek/configuration,antshin72/configuration,xiangjf/configuration,edx/configuration,zhengj...
85ac38339cd5e16493ec4ea5c2df4a1198e9a4ea
circle.yml
circle.yml
machine: node: version: 4.4.4 environment: # We need to build React in a production environment. NODE_ENV: production dependencies: # Gulp must be installed in the global environment. pre: - npm install -g gulp-cli # Modules for compiling assets live in devDependencies, which are not # inst...
machine: node: version: 4.4.4 environment: NODE_ENV: test dependencies: # Gulp must be installed in the global environment. pre: - npm install -g gulp-cli post: - npm install -g aws-cli test: post: # For Precog. - cp -R build data index.html $CIRCLE_ARTIFACTS # For hosting on mapz...
Create separate NODE_ENVs for testing and production building
Create separate NODE_ENVs for testing and production building
YAML
mit
tangrams/tangram-play,tangrams/tangram-play
867c4a545b9434d5f7e7ed1db2d3e9fd2e0a4a71
circle.yml
circle.yml
machine: python: version: 3.4.3 dependencies: pre: - sudo pip install -U awscli post: - pip install https://github.com/facelessuser/pymdown-extensions/archive/master.zip test: override: - echo 'no tests :Β·(' deployment: staging: branch: master commands: - ./deploy dev produc...
machine: python: version: 3.4.3 dependencies: pre: - sudo pip install -U awscli - rm -rf node_modules # Force npm install to fetch styleguide from remote server post: - pip install https://github.com/facelessuser/pymdown-extensions/archive/master.zip test: override: - echo 'no tests :Β·(' ...
Clear npm cache on deploy
Clear npm cache on deploy
YAML
mit
mapzen/mapzen-docs-generator,mapzen/documentation,mapzen/mapzen-docs-generator,mapzen/documentation,mapzen/documentation,mapzen/mapzen-docs-generator,mapzen/mapzen-docs-generator,mapzen/documentation
bb108f1e4a0b599e6b7505373058db4f3020e9c8
circle.yml
circle.yml
# circle.yml machine: services: - docker dependencies: override: - docker build -t hello-ci-workflow . test: override: # Run testing - ./node_modules/.bin/mocha # Check web is live - docker run -d -p 2999:3000 hello-ci-workflow; sleep 10 - curl --retry 2 --retry-delay 5 -v http://loc...
# circle.yml machine: services: - docker dependencies: override: - docker build -t $CIRCLE_PROJECT_REPONAME:$CIRCLE_SHA1 . test: override: # Run testing - ./node_modules/.bin/mocha # Check web is live - docker run -d -p 2999:3000 $CIRCLE_PROJECT_REPONAME:$CIRCLE_SHA1; sleep 10 - curl...
Build docker image with tag
Build docker image with tag
YAML
mit
kaihanch/hello-ci-workflow
3c2416c648a6d7248de90493fa0b70cee98547d5
stack.yaml
stack.yaml
resolver: lts-8.2 packages: - ./persistent - ./persistent-template - ./persistent-sqlite - ./persistent-test - ./persistent-mongoDB - ./persistent-mysql - ./persistent-postgresql - ./persistent-redis extra-deps: - monad-logger-0.3.28 - mysql-simple-0.4.4
resolver: lts-8.2 packages: - ./persistent - ./persistent-template - ./persistent-sqlite - ./persistent-test - ./persistent-mongoDB - ./persistent-mysql - ./persistent-postgresql - ./persistent-redis extra-deps: - monad-logger-0.3.28 - mysql-simple-0.4.4 - mono-traversable-1.0.8.1 - unliftio-0.2.4.0 - ...
Include extra-deps for conduit 1.3
Include extra-deps for conduit 1.3
YAML
mit
gbwey/persistent,paul-rouse/persistent,gbwey/persistent,bitemyapp/persistent,erikd/persistent,gbwey/persistent,plow-technologies/persistent,naushadh/persistent,yesodweb/persistent,creichert/persistent
7bebc4b9321194c5f5ca72a2dd347feeffe6a25b
recipes/pyolog/meta.yaml
recipes/pyolog/meta.yaml
package: name: pyolog version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: https://github.com/NSLS-II-CSX/pyOlog.git git_tag: master build: string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }} requirements: build: - pytho...
package: name: pyolog version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: https://github.com/NSLS-II/pyOlog.git git_tag: master build: string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }} requirements: build: - python ...
Fix the pyolog url to point to NSLS-II
MNT: Fix the pyolog url to point to NSLS-II
YAML
bsd-3-clause
NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes
9167cc9c004a9627995ef94f33bc8a299cf24d38
tasks.yaml
tasks.yaml
# The following tasks are executed in the order they are declared # Priorities are important, this ensure that this plugin is deployed before # LMA Collector (priority 8200). - role: [influxdb_grafana] stage: post_deployment/8100 type: puppet parameters: puppet_manifest: puppet/manifests/firewall.pp puppe...
# The following tasks are executed in the order they are declared # Priorities are important, this ensure that this plugin is deployed before # LMA Collector (priority 8200). - role: [influxdb_grafana] stage: post_deployment/8100 type: puppet parameters: puppet_manifest: puppet/manifests/firewall.pp puppe...
Remove task calling manifest previously removed
Remove task calling manifest previously removed Change-Id: I0e336f3a5adf0890cec97275cf78b8be6b37345a
YAML
apache-2.0
stackforge/fuel-plugin-influxdb-grafana,stackforge/fuel-plugin-influxdb-grafana,stackforge/fuel-plugin-influxdb-grafana,stackforge/fuel-plugin-influxdb-grafana
7b55a990e22c438291f4e32f5c8d6c89974b6c30
tasks/pips/pip.yml
tasks/pips/pip.yml
--- # Mange SCL pips for installed Python versions - name: "Verify Python: {{ item.python_ver }} exists" stat: path: "/opt/rh/{{ item.python_ver }}/enable" changed_when: false register: scl_python_ver_result - name: "Install PIP for Python: {{ item.python_ver }}" become: true easy_install: name: pip...
--- # Mange SCL pips for installed Python versions - name: "Verify Python: {{ item.python_ver }} exists" stat: path: "/opt/rh/{{ item.python_ver }}/enable" changed_when: false register: scl_python_ver_result - name: "Install PIP for Python: {{ item.python_ver }}" become: true easy_install: name: pip...
Replace hardcoded python version with actual
Replace hardcoded python version with actual
YAML
mit
smbambling/ansible-role-scl,smbambling/ansible-role-scl
76a55675637f7de26a4516fd82121c70e62656e0
shippable.yml
shippable.yml
language: node_js node_js: - "4" build: ci: - npm prune - shippable_retry npm install --unsafe-perm - npm test post_ci: - if [ "$IS_RELEASE" == "true" ] && [ "$IS_FORK" == "false" ]; then npm run release; fi cache: true cache_dir_list: - $SHIPPABLE_BUILD_DIR/node_modules - $SHIPPAB...
language: node_js node_js: - "4" build: ci: - npm prune - shippable_retry npm install --unsafe-perm - npm test post_ci: - if [ "$IS_RELEASE" == "true" ] && [ "$IS_FORK" == "false" ]; then npm run release; fi cache: true cache_dir_list: - $SHIPPABLE_BUILD_DIR/node_modules - $SHIPPAB...
Enable Shippable Hub integration for all branches
Enable Shippable Hub integration for all branches
YAML
mit
gkubisa/elm-app-boilerplate,gkubisa/elm-app-boilerplate
a655b03d3a79e3026082094527106c5859d79dfe
circle.yml
circle.yml
machine: environment: KITCHEN_LOCAL_YAML: .kitchen.docker.yml ruby: version: 2.2.2 services: - docker dependencies: bundler: without: [development, kitchen_cloud, kitchen_vagrant] test: override: - bundle exec rake - bundle exec kitchen verify -c: timeout: 900 general: art...
machine: environment: KITCHEN_LOCAL_YAML: .kitchen.docker.yml ruby: version: 2.2.2 services: - docker dependencies: bundler: without: [development, kitchen_cloud, kitchen_vagrant] test: override: - bundle exec rake - bundle exec kitchen verify -c: timeout: 900 general: art...
Use artifact directory relative to build directory
Use artifact directory relative to build directory Ref https://circleci.com/docs/configuration#artifacts
YAML
apache-2.0
lhslll/nginx,glenjamin/nginx,ffuenf/nginx,lajabs/nginx,glenjamin/nginx,lajabs/nginx,ashumski/nginx,glenjamin/nginx,caidongyun/nginx,miguelaferreira/nginx,miguelaferreira/nginx,caidongyun/nginx,ashumski/nginx,bitpusher-real/nginx,hrkd/nginx,mbilski/chef-nginx,lajabs/nginx,mbilski/chef-nginx,hrkd/nginx,ashumski/nginx,Clo...
883efde72bc2c948b2faa1ed54d36193b396a4f7
circle.yml
circle.yml
machine: java: version: oraclejdk8 dependencies: override: - ./gradlew dependencies test: override: - ./gradlew check --info post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; - find . -type f -reg...
machine: java: version: oraclejdk8 post: - rm -f jce_policy-8.zip - curl -o jce_policy-8.zip -v -j -k -L -H "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jce/8/jce_policy-8.zip - unzip -j -o -d $JAVA_HOME/jre/lib/security jce_policy-8.zip dependencies: ...
Add unlimited JCE policy to Circle CI JDK
Add unlimited JCE policy to Circle CI JDK
YAML
mit
AusDTO/citizenship-appointment-server,AusDTO/citizenship-appointment-server,AusDTO/citizenship-appointment-server
7f2fa7279a52dace0b5faecb0e04dce03c71cadf
circle.yml
circle.yml
machine: services: - docker dependencies: override: - docker info - docker pull thewtex/itkultrasound-base test: override: - mkdir ~/ITKUltrasound-build - docker run -v ~/ITKUltrasound:/usr/src/ITKUltrasound -v ~/ITKUltrasound-build:/usr/src/ITKUltrasound-build thewtex/itkultrasound-base /us...
machine: services: - docker dependencies: override: - docker info - docker pull thewtex/itkultrasound-base - docker pull thewtex/itkultrasound-test test: override: - mkdir ~/ITKUltrasound-build - docker run -v ~/ITKUltrasound:/usr/src/ITKUltrasound -v ~/ITKUltrasound-build:/usr/src/ITKUl...
Update CircleCI configuration for new Docker layout.
BUG: Update CircleCI configuration for new Docker layout.
YAML
apache-2.0
thewtex/ITKUltrasound,KitwareMedical/ITKUltrasound,KitwareMedical/ITKUltrasound,KitwareMedical/ITKUltrasound,thewtex/ITKUltrasound,thewtex/ITKUltrasound
6e0e2e921f090f34a2fabf389a594437a53ee756
circle.yml
circle.yml
machine: python: version: 2.7.3 services: - docker dependencies: - docker build --rm=false -t gamebuildr/gogeta . - docker tag gamebuildr/gogeta gcr.io/gamebuildr-151415/gamebuildr-gogeta deployment: prod: branch: master commands: - sudo /opt/google-cloud-sdk/bin/gcloud docker push gcr...
machine: python: version: 2.7.3 services: - docker dependencies: pre: - docker build --rm=false -t gamebuildr/gogeta . - docker tag gamebuildr/gogeta gcr.io/gamebuildr-151415/gamebuildr-gogeta deployment: prod: branch: master commands: - sudo /opt/google-cloud-sdk/bin/gcloud dock...
Fix dependencies in Circle CI yaml
Fix dependencies in Circle CI yaml
YAML
mpl-2.0
herman-rogers/Gogeta,Gamebuildr/Gogeta,herman-rogers/Gogeta,Gamebuildr/Gogeta
9706783248ca974b68602150c17a9a9dea64c5b4
circle.yml
circle.yml
machine: node: version: v5.7.0 test: pre: - npm run lint:failfast post: - '[ -z "${CIRCLE_PR_USERNAME}" ] && npm run coveralls || false'
machine: node: version: v5.7.0 test: pre: - npm run lint:failfast post: - '[ -z "${CIRCLE_PR_USERNAME}" ] && npm run coveralls || true'
Fix CircleCI coveralls command for public fork PRs
Fix CircleCI coveralls command for public fork PRs
YAML
mit
TouchBistro/frig,frig-js/frig,TouchBistro/frig,frig-js/frig
d81bbe3dda7744154108b8bfbd3a25f3be50aa1f
circle.yml
circle.yml
machine: python: version: 3.4.0 node: version: 0.10.28 dependencies: override: - pip install -U -r django/dev-requirements.txt coveralls https://github.com/treyhunner/codecov-python/archive/master.zip: timeout: 60 - cd ember && npm install && bower install: timeout: 60 test: ov...
machine: python: version: 3.4.0 node: version: 0.10.28 dependencies: override: - pip install -U -r django/dev-requirements.txt coveralls https://github.com/treyhunner/codecov-python/archive/master.zip: timeout: 60 - cd ember && npm install && bower install: timeout: 60 test: ov...
Fix codecov configuration (dir -> path)
Fix codecov configuration (dir -> path)
YAML
bsd-3-clause
FreeMusicNinja/freemusic.ninja,FreeMusicNinja/freemusic.ninja
c028d230a4b57adebd198f025315edf140bc854c
circle.yml
circle.yml
dependencies: pre: - google-chrome --version - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - - sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' - sudo apt-get update - sudo apt-get --only-...
dependencies: pre: - google-chrome --version - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - - sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' - sudo apt-get update - sudo apt-get --only-...
Move covarage to $CIRCLE_ARTIFACTS to see in CircleCI
Move covarage to $CIRCLE_ARTIFACTS to see in CircleCI
YAML
mit
takeo-asai/typescript-starter,takeo-asai/typescript-starter,takeo-asai/typescript-starter,takeo-asai/typescript-starter
43b84991a141549009ce9d465ca444d455b31f6f
circle.yml
circle.yml
machine: environment: ANDROID_HOME: /usr/local/android-sdk-linux ANDROID_BUILD_TOOLS: 24.0.1 ANDROID_PLATFORM: 24 dependencies: pre: - if [ ! -e $ANDROID_HOME/build-tools/$ANDROID_BUILD_TOOLS ]; then echo y | android update sdk --no-ui --all --filter build-tools-$ANDROID_BUILD_TOOLS; fi - if [ ...
machine: environment: ANDROID_HOME: /usr/local/android-sdk-linux ANDROID_BUILD_TOOLS: 24.0.1 ANDROID_PLATFORM: 24 dependencies: pre: - if [ ! -e $ANDROID_HOME/build-tools/$ANDROID_BUILD_TOOLS ]; then echo y | android update sdk --no-ui --all --filter build-tools-$ANDROID_BUILD_TOOLS; fi - if [ ...
Add code coverage to exported reports
Add code coverage to exported reports
YAML
apache-2.0
ustwo/android-boilerplate,ustwo/android-boilerplate
140ddff4a6ed8b1f81b4f18243d5da4c0d8dfbd2
circle.yml
circle.yml
machine: environment: ENV: dev SECRET_KEY: testing-on-circle-ci POSTGRES_USER: ubuntu POSTGRES_HOST: localhost UNPP_LOGS_PATH: /tmp dependencies: pre: - pip install -r backend/requirements/dev.pip test: override: - cd backend && python manage.py test --noinput --parallel - cd bac...
machine: environment: ENV: dev SECRET_KEY: testing-on-circle-ci POSTGRES_USER: ubuntu POSTGRES_HOST: localhost UNPP_LOGS_PATH: /home/ubuntu/logs dependencies: pre: - mkdir -p /home/ubuntu/logs - pip install -r backend/requirements/dev.pip test: override: - cd backend && python ma...
Use ubuntu dir for logs
Use ubuntu dir for logs
YAML
apache-2.0
unicef/un-partner-portal,unicef/un-partner-portal,unicef/un-partner-portal,unicef/un-partner-portal
a1b70999b6108c23bd914c28b1f55a8c4c27f854
circle.yml
circle.yml
# # Copyright (C) 2016 Red Hat, 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 (C) 2016 Red Hat, 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 ...
Move plugin resolve to dependency phase on CircleCI
Move plugin resolve to dependency phase on CircleCI
YAML
apache-2.0
jimmidyson/acme-client,jimmidyson/acme-client
4f21b6de61bcb83645e7d57e3757416ec019a3f6
circle.yml
circle.yml
machine: services: - docker dependencies: pre: override: post: - make pgglaskugel - make tarball - cp pgglaskugel pgGlaskugel.tar.xz $CIRCLE_ARTIFACTS/ test: override: - make pgglaskugel - make test - cd tools/Test-CentOS7; ./run_test_in_docker.sh
machine: services: - docker dependencies: pre: override: post: - make pgglaskugel - make tarball - cp pgglaskugel pgGlaskugel.tar.xz $CIRCLE_ARTIFACTS/ test: override: - make test - cd tools/Test-CentOS7; ./run_test_in_docker.sh
Revert "Add additional build with makefile"
Revert "Add additional build with makefile" This reverts commit 00df3adb3316ac17629409b65987ea4b55670057.
YAML
mit
DaniloE/pgglaskugel,xxorde/pgglaskugel,xxorde/pgglaskugel,xxorde/pgglaskugel
f41a82ba71dc575dbd7d58b9b3ace32cab9751ed
circle.yml
circle.yml
machine: timezone: America/Argentina/Buenos_Aires ruby: version: 2.3.1 general: branches: ignore: - gh-pages checkout: pre: - git config --global user.email "bot@uqbar.org" - git config --global user.name "UqbarBot" - npm install -g bower database: override: - echo "Skipping DB se...
machine: timezone: America/Argentina/Buenos_Aires ruby: version: 2.3.1 general: branches: ignore: - gh-pages checkout: pre: - git config --global user.email "bot@uqbar.org" - git config --global user.name "UqbarBot" - npm install -g bower database: override: - echo "Skipping DB se...
Move failed_urls to artifact directory
Move failed_urls to artifact directory
YAML
lgpl-2.1
uqbar-project/wiki,uqbar-project/wiki,uqbar-project/wiki,uqbar-project/wiki,uqbar-project/wiki
12042a625b190c2dae9671636c64e338c943c5b4
.github/workflows/build_release_package.yml
.github/workflows/build_release_package.yml
name: Build release version on: push: tags: - 'v*' pull_request: branches: master jobs: deploy: runs-on: ubuntu-20.04 steps: - name: Set up python 3.6 uses: actions/setup-python@v2 with: python-version: 3.6 - name: Checkout uses: actions...
name: Build release version on: push: tags: - 'v*' pull_request: branches: master jobs: deploy: runs-on: ubuntu-20.04 steps: - name: Set up python 3.6 uses: actions/setup-python@v2 with: python-version: 3.6 - name: Checkout uses: actions...
Add suport for release candidate tags
Add suport for release candidate tags Signed-off-by: Niklas Koep <342d5290239d9c5264c8f98185afedb99596601a@gmail.com>
YAML
bsd-3-clause
pymanopt/pymanopt,pymanopt/pymanopt
db8410c3ff36ef7625987648eacac89116f81e14
build.yaml
build.yaml
repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_javaee: javax:javaee-api:jar:7.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.8.0 gwt_dev: com.google.gwt:gwt-dev:jar:2.8.0 gwt_websockets: org.realityforge.gwt.websockets:gwt-...
repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_javaee: javax:javaee-api:jar:7.0 javax_annotation: com.google.code.findbugs:jsr305:jar:2.0.1 gwt_user: com.google.gwt:gwt-user:jar:2.8.0 gwt_dev: com.google.gwt:gwt-dev:jar:2.8.0 gwt_websockets: org.realityforge.gwt.websockets:gwt-...
Move to latest version of websockets library
Move to latest version of websockets library
YAML
apache-2.0
realityforge/gwt-websockets-example,realityforge/gwt-websockets-example,realityforge/gwt-websockets-example
39dbc7204d5e5d703c53cc1ae8718d23d13f33fc
.travis.yml
.travis.yml
language: python python: 3.5 env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py32 - TOXENV=py33 - TOXENV=py34 - TOXENV=py35 - TOXENV=pypy - TOXENV=flake827 - TOXENV=flake834 install: - pip install tox script: - tox
language: python python: 3.5 env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py33 - TOXENV=py34 - TOXENV=py35 - TOXENV=pypy - TOXENV=flake827 - TOXENV=flake834 install: - pip install tox script: - tox
Remove 3.2 from Travis config.
Remove 3.2 from Travis config.
YAML
mit
jezdez/envdir
e89f6d8b96067775ceea55be504fa03268bd4cbf
.travis.yml
.travis.yml
language: go sudo: false go: - 1.11.x env: global: - GOARCH=amd64 script: - go list ./... | grep -v vendor | xargs go vet - go list ./... | grep -v vendor | xargs go test -v
language: go sudo: false go: - 1.11.x env: global: - GOARCH=amd64 script: # TODO: Create lint #- go list ./... | grep -v vendor | xargs go vet - go list ./... | grep -v vendor | xargs go test -v
Disable lint because of a lots of messages about unkeyed field in structs
Disable lint because of a lots of messages about unkeyed field in structs
YAML
bsd-2-clause
ivan1993spb/clever-snake
7119a4abf92778d3070f2d57d8f400bba1e340f1
.travis.yml
.travis.yml
language: android jdk: oraclejdk8 android: components: - tools - platform-tools - build-tools-26.0.0 - android-25 - extra-android-m2repository script: - ./gradlew test after_script: - cat core/build/reports/lint-results.xml - cat analytics-firebase/build/reports/lint-results.xml notifica...
language: android jdk: oraclejdk8 android: components: - tools - platform-tools - build-tools-26.0.0 - android-25 - extra-android-m2repository - extra-google-m2repository script: - ./gradlew test after_script: - cat core/build/reports/lint-results.xml - cat analytics-firebase/build/re...
Add repo required by analytics-firebase module.
Add repo required by analytics-firebase module.
YAML
apache-2.0
Userfeeds/android-ads-sdk
2d0d8497919f385e53877c0846599416ce7a3bc8
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.2 services: - mysql branches: only: - master notifications: email: on_success: change on_failure: change before_install: - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" - mysql -e 'CREATE DATABASE hackweek_test;' before_script: - cp config/database.yml.example config/dat...
language: ruby rvm: - 2.1.2 services: - mysql branches: only: - master notifications: email: on_success: change on_failure: change before_install: - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" - mysql -e 'CREATE DATABASE hackweek_test;' before_script: - cp config/database.yml.example config/dat...
Remove explicit TRAVIS environment variable
Remove explicit TRAVIS environment variable As @hennevogel points out, this is a default set by Travis CI.
YAML
mit
SUSE/hackweek,hennevogel/hackweek,srinidhibs/hackweek,hennevogel/hackweek,SUSE/hackweek,srinidhibs/hackweek,srinidhibs/hackweek,srinidhibs/hackweek,SUSE/hackweek,hennevogel/hackweek
9daeec2f56c99ecfecd1c025af3b71e17ffa21f4
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI...
language: objective-c osx_image: xcode8 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3O...
Switch Travis to the Xcode 8 image.
Switch Travis to the Xcode 8 image.
YAML
mit
narner/AudioKit,narner/AudioKit,narner/AudioKit,narner/AudioKit
05ad1846038cc63a7e875c96da1b8fb8ab073da3
.travis.yml
.travis.yml
# Config file for automatic testing at travis-ci.org sudo: false language: python python: 3.8 env: - TOX_ENV=py35 - TOX_ENV=py36 - TOX_ENV=py37 - TOX_ENV=py38 script: tox -e $TOX_ENV install: - pip install tox
# Config file for automatic testing at travis-ci.org sudo: false language: python matrix: - env: TOX_ENV=py35 python: 3.5 - env: TOX_ENV=py36 python: 3.6 - env: TOX_ENV=py37 python: 3.7 - env: TOX_ENV=py38 python: 3.8 script: tox -e $TOX_ENV install: - pip install tox
Use correct Python version on Travis
Use correct Python version on Travis
YAML
mit
The-Compiler/pytest-vw
81fb14216e8c1041b4e38969da0996813ad3f4d8
.travis.yml
.travis.yml
sudo: false language: python matrix: include: - python: '2.7' env: TOXENV=py27 - python: '3.3' env: TOXENV=py33 - python: '3.4' env: TOXENV=py34 - python: '3.5' env: TOXENV=py35 - python: '3.6' env: TOXENV=py36 - python: 'pypy' env: TOXENV=pypy - env: T...
sudo: false language: python matrix: include: - python: '2.7' env: TOXENV=py27 - python: '3.4' env: TOXENV=py34 - python: '3.5' env: TOXENV=py35 - python: '3.6' env: TOXENV=py36 - python: 'pypy' env: TOXENV=pypy - env: TOXENV=flake8 - env: TOXENV=checkspellin...
Stop testing Python 3.3 on Travis
Stop testing Python 3.3 on Travis Wheel dropped support for Python 3.3 in pypa/wheel@c06998693d33d3e3.
YAML
bsd-3-clause
waylan/Python-Markdown,waylan/Python-Markdown
a77ea8ed7b5579c855bd7091e3854b3783ed2dc6
.travis.yml
.travis.yml
# Available ruby versions: http://rubies.travis-ci.org/ language: ruby os: - linux - osx rvm: - "2.0.0" - "2.1" # latest 2.1.x - "2.2" # latest 2.2.x - "2.3.1" # TODO: switch to "2.3" once travis fixes it - "ruby-head" - "jruby-9.0.5.0" - "jruby-head" script: bundle exec rake test branches: excep...
# Available ruby versions: http://rubies.travis-ci.org/ language: ruby os: - linux - osx rvm: - "2.0.0" - "2.1" # latest 2.1.x - "2.2" # latest 2.2.x - "2.3.1" # TODO: switch to "2.3" once travis fixes it - "ruby-head" - "jruby-9.0.5.0" - "jruby-head" script: bundle exec rake test branches: excep...
Install bundler in case it's not found.
Install bundler in case it's not found. https://github.com/travis-ci/travis-ci/issues/5861
YAML
mit
rest-client/rest-client
8aa5385536c5a4c7444cc1d40718d31bb619e48d
.travis.yml
.travis.yml
language: node_js script: - npm run check
language: node_js script: - npm run check addons: apt: packages: - xvfb install: - export DISPLAY=':99.0' - Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & - npm install
Configure Electron for Travis CI
Configure Electron for Travis CI
YAML
isc
callum/redux-routing,callum/redux-routing
b8692d85824782e782294fc432cf95b299a5e595
.travis.yml
.travis.yml
language: ruby bundler_args: --without release doc extra script: "bundle exec rake spec" rvm: - 1.9.2 - 1.9.3 - jruby-19mode - rbx-19mode - ruby-head - jruby-head notifications: email: - blambeau@gmail.com
language: ruby bundler_args: --without release doc extra script: "bundle exec rake spec" rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head - jruby-head notifications: email: - blambeau@gmail.com
Add 2.0.0 to tested rubies.
Add 2.0.0 to tested rubies.
YAML
mit
alf-tool/alf-core
fe3cd287f186287983891f528a8db42e1a6503cd
.travis.yml
.travis.yml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby rvm: - 2.3.1 jdk: - oraclejdk8 git: depth: 10 before_install: - gem update bundler
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby rvm: - 2.6.6 jdk: - oraclejdk8 git: depth: 10 before_install: - gem update bundler
Update the version of ruby used to build project in TravisCI.
Update the version of ruby used to build project in TravisCI.
YAML
apache-2.0
realityforge/resgen,realityforge/resgen
cc2f0ca496ec81bfd59b54a7a03f2aa8ae4210de
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "pypy" install: - pip install -r test-requirements.txt - pip install -e . script: - nosetests sudo: false
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy" install: - pip install -r test-requirements.txt - pip install -e . script: - nosetests sudo: false
Add Python 3.6 to tests.
Add Python 3.6 to tests.
YAML
mit
kipe/pycron
228f9d6997096c30b2154a72a83c1472fd319dd7
.travis.yml
.travis.yml
sudo: required dist: trusty language: cpp compiler: - gcc before_install: - sudo apt-get update -qq - sudo apt-get install build-essential cmake libboost-system-dev libboost-thread-dev libgtest-dev - cd /usr/src/gtest - sudo cmake CMakeLists.txt - sudo make - sudo cp *.a /usr/lib script: - cd ${TRAV...
sudo: required matrix: include: - os: linux dist: trusty - os: linux dist: xenial language: cpp compiler: - gcc before_install: - sudo apt-get update -qq - sudo apt-get install build-essential cmake libboost-system-dev libboost-thread-dev libgtest-dev - cd /usr/src/gtest - sudo cmake...
Add Xenial build to CI
Add Xenial build to CI Signed-off-by: Jacob Perron <5d39aecf28d3f95fa005cd6cbb5bdb92fcd64155@gmail.com>
YAML
bsd-3-clause
AutonomyLab/libcreate
32073c21eb1b3e10f735e471f025c7711a63a8ad
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '8' - '6' - '4'
sudo: false language: node_js node_js: - '9' - '8' - '6'
Update Travis CI node versions
Test(config): Update Travis CI node versions
YAML
unlicense
fvdm/nodejs-gtmetrix
63e0144e8fcc795120a221a2872dffc9ddcf9e18
.travis.yml
.travis.yml
language: - python python: - "3.5" install: - pip install flake8 - pip install -r requirements.txt script: - py.test after_success: - flake8 . notifications: email: false
language: - python python: - "3.5" before_install: - git submodule update --remote install: - pip install flake8 - pip install -r requirements.txt script: - py.test after_success: - flake8 . notifications: email: false
Add submodule update --remote on Travis
Add submodule update --remote on Travis
YAML
mit
MircoT/aima-python,WmHHooper/aima-python,SeanCameronConklin/aima-python,reachtarunhere/aima-python,Chipe1/aima-python,phaller0513/aima-python,armadill-odyssey/aima-python,SimeonFritz/aima-python,SeanCameronConklin/aima-python,WhittKinley/ConnectProject,JoeLaMartina/AlphametricProject,WmHHooper/aima-python,grantvk/aima-...
d00996cb1062e7c83e4a5205d3cc8b1765f884b1
.travis.yml
.travis.yml
language: python python: - "2" - "3" # command to run tests script: - pytest # or py.test for Python versions 3.5 and below notifications: email: recipients: - linards.kalvans@gmail.com
language: python python: - "2.7" - "3.6" # command to run tests script: - pytest # or py.test for Python versions 3.5 and below notifications: email: recipients: - linards.kalvans@gmail.com
Correct python versions for pytests
Correct python versions for pytests
YAML
mit
lincis/pynoaa
319c82795fec27c500650c80796b0fbb57992040
.travis.yml
.travis.yml
dist: trusty language: swift matrix: include: # - os: linux # language: generic # sudo: required # disable linux temporary - os: osx osx_image: xcode8.1 env: global: - SWIFT_VERSION=3.0.1 install: - eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/ra...
language: swift matrix: include: # - os: linux # language: generic # dist: trusty # sudo: required # disable linux temporary - os: osx osx_image: xcode8.1 env: global: - SWIFT_VERSION=3.0.1 install: - eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c76...
Move trusty on linux comment
Move trusty on linux comment
YAML
apache-2.0
sinoru/STwitter
208e1d1e21f4e41b647fba03d1d61d0a4abb0cc4
.travis.yml
.travis.yml
sudo: required dist: trusty language: cpp compiler: - gcc before_install: - sudo apt-get update -qq - sudo apt-get install -qq qt5-default libqt5svg5-dev libqt5multimedia5 script: - mkdir build - cd build - qmake .. - make
sudo: required dist: trusty language: cpp compiler: - gcc before_install: - sudo apt-get update -qq - sudo apt-get install -qq qt5-default libqt5svg5-dev qtmultimedia5-dev script: - mkdir build - cd build - qmake .. - make
Install correct Qt multimedia package for Travis builds
Install correct Qt multimedia package for Travis builds
YAML
bsd-2-clause
csete/softrig,csete/softrig,csete/softrig
57216bf6a653ffbd685a5d95f8b458138a4c5962
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 gemfile: - gemfiles/rails3.gemfile - gemfiles/rails4_0.gemfile - gemfiles/rails4_1.gemfile - gemfiles/rails4_2.gemfile notifications: email: false
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 gemfile: - gemfiles/rails3.gemfile - gemfiles/rails4_0.gemfile - gemfiles/rails4_1.gemfile - gemfiles/rails4_2.gemfile before_install: - gem update --system - gem install bundler install: bundle install script: bundle exec rake build env: global: sec...
Use latest bundler version in CI
Use latest bundler version in CI
YAML
mit
robertomiranda/has_secure_token
7f40f3734f4ba21259ef6e097640b652f60bce52
.travis.yml
.travis.yml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r # Header language: r sudo: required cache: packages warnings_are_errors: false r_check_args: --no-vignettes #env env: global: - CRAN: http://cran.rstudio.com - NOT_CRAN: true #notifications notifications: email: on_success...
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r # Header language: r sudo: required cache: packages warnings_are_errors: false r_check_args: --no-vignettes #env env: global: - CRAN: http://cran.rstudio.com - NOT_CRAN: true #notifications notifications: email: on_success...
Set directory correctly in Travis
Set directory correctly in Travis
YAML
apache-2.0
opendatagroup/hadrian,opendatagroup/hadrian,opendatagroup/hadrian,opendatagroup/hadrian
fac9cb0955dbc37cb942e74e6dd2dcc72c74a057
.travis.yml
.travis.yml
language: node_js env: - CXX=g++-4.8 node_js: - 4 - 6 - 7 - 8 sudo: required notifications: email: - lilleman@larvit.se - tobias@nublar.se before_install: - $CXX --version install: - if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi - npm i services: - rabbitmq addons:...
language: node_js env: - CXX=g++-4.8 node_js: - 6 - 7 - 8 - 9 sudo: required notifications: email: - lilleman@larvit.se - tobias@nublar.se before_install: - $CXX --version install: - if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi - npm i services: - rabbitmq addons:...
Drop node 4 support and added node 9 support
Drop node 4 support and added node 9 support
YAML
isc
larvit/larvitamintercom
d0d22ffc9b26738be3d3d5748e04a2f4cebd8961
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not ...
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use ...
Enable Travis -> Coveralls code coverage.
Enable Travis -> Coveralls code coverage.
YAML
apache-2.0
apache/commons-pool,apache/commons-pool,apache/commons-pool
0997dc0d7367c2ea090634c6133f56c6284074b8
circle.yml
circle.yml
deployment: dev: branch: master heroku: appname: hoa-ui-dev
deployment: dev: branch: master # heroku: # appname: hoa-ui-dev commands: - git push git@heroku.com:hoa-ui-dev.git $CIRCLE_SHA1:master - heroku ps:scale web=1 --app hoa-ui-dev # This looks incorrect, until we have another branch represents the current codebase, in this case its...
Add in config to push to the Azure Branch.
Other: Add in config to push to the Azure Branch.
YAML
mit
noms-digital-studio/iis,NOMS-DIGITAL-STUDIO-IIS/hoa-ui,NOMS-DIGITAL-STUDIO-IIS/hoa-ui,noms-digital-studio/iis
66ceab67a6210fef8bd3c9cf32abd0dc264820f1
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.7" - "nightly" install: - pip install unittest2 - pip install coveralls - pip install codecov script: - coverage run --source ghstats/ghstats.py tests/test_ghstats.py after_success: - coveralls - codecov
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" - "nightly" install: - pip install unittest2 - pip install coveralls - pip install codecov script: - coverage run --source ghstats/ghstats.py tests/test_ghstats.py after_success: - coveralls - codecov
Remove outdated Python 3.3 from CI
Remove outdated Python 3.3 from CI
YAML
mit
kefir500/ghstats
b99525ee3edab1e8047b0f3ef6ea6e92989a985a
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.2 - 3.3 script: - PYTHON_VER=`python -c 'import sys; print(sys.version_info[0])'` - cd python$PYTHON_VER - python _runner_tests.py # - python contemplate_koans.py # Run all the koans # - python contemplate_koans.py about_asserts a...
language: python python: - 2.7 - 3.2 - 3.3 - 3.5 script: - PYTHON_VER=`python -c 'import sys; print(sys.version_info[0])'` - cd python$PYTHON_VER - python _runner_tests.py # - python contemplate_koans.py # Run all the koans # - python contemplate_koans.py about...
Add Python 3.5 Travis CI support
Add Python 3.5 Travis CI support
YAML
mit
dstanek/python_koans,dstanek/python_koans
a7ad2d89edb4a237c140d511958930071b3c3dfd
.travis.yml
.travis.yml
language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools # - platform-tools # - tools # The BuildTools version used by your project - build-tools-21.0.2 # The SDK version used to compile your project - android-19...
language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools # - platform-tools # - tools # The BuildTools version used by your project - build-tools-21.0.2 # The SDK version used to compile your project - android-19...
Remove check for connected devices. Show stacktraces.
Remove check for connected devices. Show stacktraces.
YAML
mit
sphereio/google-glass-demo
41b4e005f25c17ac40bc5334bf54e63589420858
.travis.yml
.travis.yml
language: go sudo: false go: - "1.2" - "1.x"
language: go sudo: false go: - "1.8" - "1.x"
Upgrade min go version to 1.8
Upgrade min go version to 1.8
YAML
mit
shawnsmithdev/zermelo
37317913c1eec70edc637e6ae677c43224775868
.travis.yml
.travis.yml
language: python python: - '3.6' - '3.7' env: - HASS=0.96.5 GCTTS=0.4.0 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS - pip3 install google-cloud-texttospeech==$GCTTS script: - hass -c . --script check_config
language: python python: - '3.6' - '3.7' env: - HASS=0.98.2 GCTTS=0.4.0 before_install: - mv secrets_dummy.yaml secrets.yaml install: - pip3 install homeassistant==$HASS - pip3 install google-cloud-texttospeech==$GCTTS script: - hass -c . --script check_config
Update Home Assistant to 0.98.2 for config checks in Travis CI
Update Home Assistant to 0.98.2 for config checks in Travis CI
YAML
mit
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
ed0a2b0910dd13d83d38a7472648b3b924beae49
circle.yml
circle.yml
test: override: - nvm exec 0.10 npm test - nvm exec 0.12 npm test
test: override: - npm run jshint - nvm exec 0.10 npm test - nvm exec 0.12 npm test
Add jshint as a test step in Circle CI
Add jshint as a test step in Circle CI
YAML
bsd-2-clause
tidepool-org/blip,hichameyessou/blip,hichameyessou/blip,tidepool-org/blip,tidepool-org/blip,hichameyessou/blip
18590e25c4ae4b3083e7b37ce75df54854fb0dd6
circle.yml
circle.yml
machine: environment: _JAVA_OPTIONS: -Xmx1g java: version: oraclejdk8 general: branches: ignore: - gh-pages test: pre: - lein with-profile frontend-dev cljsbuild once frontend - lein with-profile backend-dev cljsbuild once backend deployment: master: branch: master command...
machine: environment: _JAVA_OPTIONS: -Xmx1g java: version: oraclejdk8 general: branches: ignore: - gh-pages test: pre: - lein with-profile frontend-prod cljsbuild once frontend - lein with-profile backend-prod cljsbuild once backend deployment: master: branch: master comma...
Build with prod profiles, rather than dev
Build with prod profiles, rather than dev
YAML
epl-1.0
theasp/cljs-webrepl,theasp/cljs-webrepl
d4a256fcca4fa2be67e8570136e2e1b1c4b34773
config/database.yml
config/database.yml
defaults: &defaults adapter: postgresql encoding: unicode pool: <%= ENV.fetch('OFN_DB_POOL', 5) %> host: <%= ENV.fetch('OFN_DB_HOST', 'localhost') %> username: <%= ENV.fetch('OFN_DB_USERNAME', 'ofn') %> password: <%= ENV.fetch('OFN_DB_PASSWORD', 'f00d') %> development: <<: *defaults database: open_food...
defaults: &defaults adapter: postgresql encoding: unicode pool: <%= ENV.fetch('OFN_DB_POOL', 5) %> host: <%= ENV.fetch('OFN_DB_HOST', 'localhost') %> username: <%= ENV.fetch('OFN_DB_USERNAME', 'ofn') %> password: <%= ENV.fetch('OFN_DB_PASSWORD', 'f00d') %> port: <%= ENV.fetch('OFN_DB_PORT', 5432) %> dev...
Add support for an env var to override DB port
Add support for an env var to override DB port
YAML
agpl-3.0
openfoodfoundation/openfoodnetwork,Matt-Yorkley/openfoodnetwork,openfoodfoundation/openfoodnetwork,lin-d-hop/openfoodnetwork,openfoodfoundation/openfoodnetwork,Matt-Yorkley/openfoodnetwork,Matt-Yorkley/openfoodnetwork,lin-d-hop/openfoodnetwork,openfoodfoundation/openfoodnetwork,Matt-Yorkley/openfoodnetwork,lin-d-hop/op...
343bce71c4b16d2c8625a801aa1d0e7315171dc9
.travis.yml
.travis.yml
env: global: - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi) - RAILS_ENV=test addons: postgresql: "9.6" chrome: stable apt: packages: - chromium-chromedriver services: - redis-server sudo: f...
env: global: - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi) - RAILS_ENV=test addons: postgresql: "9.6" chrome: stable apt: packages: - chromium-chromedriver services: - redis-server sudo: f...
Fix Travis bundler issue, by uninstalling bundler
Fix Travis bundler issue, by uninstalling bundler So while we already tackled this by explicitly specifying which bundler version to use, see .travis.yml gem install bundler -v 2.0.2 In newer builds this no longer passed, because when travis called bundler again it would take a more recent version of bundler a...
YAML
mit
BLSQ/orbf2,BLSQ/orbf2,BLSQ/orbf2,BLSQ/orbf2
6b8190d1fb133aef4c8c2fb2830aed8c252ec954
.travis.yml
.travis.yml
sudo: required dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2
sudo: required dist: trusty language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3.0
Add ruby 2.3.0 to Travis CI Build
Add ruby 2.3.0 to Travis CI Build
YAML
mit
mmozuras/pronto-flay