Skip to content

Commit

Permalink
Adding travis.yml and renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryptophobia committed Nov 16, 2017
1 parent eb5bcf6 commit e88f938
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
8 changes: 8 additions & 0 deletions .travis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
sudo: required
language: go
services:
- docker
script: make test
notifications:
slack:
secure: pWDCV3od8gxvzxh9DrOTvBL54XoCfWYhZZlwd2ZbyyOz6SS12Psg/ZuCT2253p4yMfF/LPlsz76mr7NgcCrMI0ReveTa/rnt3XBZtyY+1rlsQsy2oxgdAzbO587ENCQeMw2F/OWHaixMT8NDqxEqQd6xafK9Zmg6BeBjwgs7XfXKcR3WzNIuCO0ZG05+Yd0FIxmd/8Xm5tGiFEYr05+Ix6MLdF9MSCXZUPeu1EsYXhDljokLq49w63W1UMU10tm4t7VCEdaO+X9w6EJ5Ov8HDxb6L6IviUYY6+IGTZ01nwIoM6OrGQqfEAytYqgTKdehgQzQnAbLI6TW2wJ0twqEsLrlbTa4NW4j0KkazQJkN5kqcKYQvaeKJJhvJIG44Gi/u78pW3S6W7NU5DhrlE6bbxdIBHJW1vJBimkqu2oBNrO5ZoBB9MS9zflBsU5g/pQpVeHWMnWE8fcYDGa1PqAcr7q6wtdPsrVZhnHmmARN3PwZzIVVVsXbaIQG8VLC5grLGnwMf1Y1fz2nK3sVpCftvrYZT3G6CNAASo+eLOwYdZdiJ9jIS7WNLN1GtpIEvjeDt3QRqsDyH8YoAKUvY5h/v8IWPP/BaSwQbJwep4+Dj7xkpXX5/4wm4jEnVFV1p4xE0lD1AXvEMAVHtPhhggvscNhF9j6oeoPju6eTPcxG+5o=
4 changes: 2 additions & 2 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Deis Maintainers
# Hephy Maintainers

This project is part of Deis. The official maintainers documentation is
located [in the main project](https://github.com/deisthree/deis/blob/master/MAINTAINERS.md).
located [in the main project](https://github.com/teamhephy/deis/blob/master/MAINTAINERS.md).
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
| 09/07/2017 | Deis Workflow [v2.18][] final release before entering maintenance mode |
| 03/01/2018 | End of Workflow maintenance: critical patches no longer merged |

# Deis Slugbuilder v2
# Hephy Slugbuilder v2

[![Build Status](https://ci.deis.io/job/slugbuilder/badge/icon)](https://ci.deis.io/job/slugbuilder)
[![Docker Repository on Quay](https://quay.io/repository/deisci/slugbuilder/status "Docker Repository on Quay")](https://quay.io/repository/deisci/slugbuilder)

Deis (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any [Kubernetes](http://kubernetes.io) cluster, making it easy to deploy and manage applications on your own servers.

For more information about the Deis Workflow, please visit the main project page at https://github.com/deisthree/workflow.
For more information about the Deis Workflow, please visit the main project page at https://github.com/teamhephy/workflow.

We welcome your input! If you have feedback, please [submit an issue][issues]. If you'd like to participate in development, please read the "Development" section below and [submit a pull request][prs].

# About

The slugbuilder downloads a git archive ([gzip](http://www.gzip.org/)ped [tar](https://www.gnu.org/software/tar/)ball) from a specified [S3 API compatible server][s3-api], compiles a [slug](https://devcenter.heroku.com/articles/slug-compiler) and uploads it to a specified S3 API compatible server.

This component is usually launched by the [Deis Builder](https://github.com/deisthree/builder) and used inside the Deis [PaaS](https://en.wikipedia.org/wiki/Platform_as_a_service), but it is flexible enough to be used as a pod inside any Kubernetes cluster.
This component is usually launched by the [Deis Builder](https://github.com/teamhephy/builder) and used inside the Deis [PaaS](https://en.wikipedia.org/wiki/Platform_as_a_service), but it is flexible enough to be used as a pod inside any Kubernetes cluster.

Please see https://github.com/deisthree/builder/blob/master/README.md for a more detailed description of how `slugbuilder` interacts with `builder`.
Please see https://github.com/teamhephy/builder/blob/master/README.md for a more detailed description of how `slugbuilder` interacts with `builder`.

# Development

Expand All @@ -33,7 +33,7 @@ The Deis project welcomes contributions from all developers. The high level proc
* If your PR fixes any [issues][issues], make sure you write Fixes #1234 in your PR description (where #1234 is the number of the issue you're closing)
* The Deis core contributors will review your code. After each of them sign off on your code, they'll label your PR with LGTM1 and LGTM2 (respectively). Once that happens, the contributors will merge it

[issues]: https://github.com/deisthree/slugbuilder/issues
[prs]: https://github.com/deisthree/slugbuilder/pulls
[issues]: https://github.com/teamhephy/slugbuilder/issues
[prs]: https://github.com/teamhephy/slugbuilder/pulls
[s3-api]: http://docs.aws.amazon.com/AmazonS3/latest/API/APIRest.html
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0
2 changes: 1 addition & 1 deletion charts/slugbuilder/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: slugbuilder
home: https://github.com/deisthree/slugbuilder
home: https://github.com/teamhephy/slugbuilder
version: <Will be populated by the ci before publishing the chart>
description: Buildpack application builder for Deis Workflow.
maintainers:
Expand Down

0 comments on commit e88f938

Please sign in to comment.