Skip to content

Commit

Permalink
Switched to Buddy CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
weekens committed Dec 7, 2020
1 parent 0819746 commit 6d41c9b
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 9 deletions.
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Comedy

[![Build Status](https://travis-ci.org/untu/comedy.svg?branch=master)](https://travis-ci.org/untu/comedy)
[![Build Status](https://app.buddy.works/comedy/comedy/pipelines/pipeline/295827/badge.svg?token=e840837833e06c9064d4c12267b167b8c2641878f0f0e72e68d782d13f2e66e8 "buddy pipeline")](https://app.buddy.works/comedy/comedy/pipelines/pipeline/295827)
[![Windows Tests](https://ci.appveyor.com/api/projects/status/m1vorqhe2yk09h5t/branch/master?svg=true&passingText=Windows%20Tests%20OK&failingText=Windows%20Tests%20FAIL&pendingText=Windows%20Tests%20pending)](https://ci.appveyor.com/project/weekens/comedy)
[![codecov](https://codecov.io/gh/untu/comedy/branch/master/graph/badge.svg)](https://codecov.io/gh/untu/comedy)

Expand Down
68 changes: 68 additions & 0 deletions buddy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
- pipeline: "Pull request"
trigger_mode: "ON_EVERY_PUSH"
ref_name: "refs/pull/*"
ref_type: "WILDCARD"
priority: "NORMAL"
fail_on_prepare_env_warning: true
trigger_condition: "ALWAYS"
actions:
- action: "NPM - Test"
type: "BUILD"
working_directory: "/buddy/comedy"
docker_image_name: "library/node"
docker_image_tag: "10"
execute_commands:
- "npm ci"
- "npm run validate"
- "npm run coverage"
volume_mappings:
- "/:/buddy/comedy"
trigger_condition: "ALWAYS"
shell: "BASH"
- action: "Codecov"
type: "BUILD"
working_directory: "/buddy/comedy"
docker_image_name: "library/ubuntu"
docker_image_tag: "18.04"
execute_commands:
- "bash <(curl -s https://codecov.io/bash)"
setup_commands:
- "apt-get update && apt-get -y install curl"
volume_mappings:
- "/:/buddy/comedy"
trigger_condition: "ALWAYS"
shell: "BASH"
- pipeline: "Master"
trigger_mode: "ON_EVERY_PUSH"
ref_name: "master"
ref_type: "BRANCH"
priority: "NORMAL"
fail_on_prepare_env_warning: true
trigger_condition: "ALWAYS"
actions:
- action: "NPM - Test"
type: "BUILD"
working_directory: "/buddy/comedy"
docker_image_name: "library/node"
docker_image_tag: "10"
execute_commands:
- "npm ci"
- "npm run validate"
- "npm run coverage"
volume_mappings:
- "/:/buddy/comedy"
trigger_condition: "ALWAYS"
shell: "BASH"
- action: "Codecov"
type: "BUILD"
working_directory: "/buddy/comedy"
docker_image_name: "library/ubuntu"
docker_image_tag: "18.04"
execute_commands:
- "bash <(curl -s https://codecov.io/bash)"
setup_commands:
- "apt-get update && apt-get -y install curl"
volume_mappings:
- "/:/buddy/comedy"
trigger_condition: "ALWAYS"
shell: "BASH"

0 comments on commit 6d41c9b

Please sign in to comment.