Skip to content

Commit

Permalink
Update for changes to template-rust
Browse files Browse the repository at this point in the history
  • Loading branch information
arirawr committed Sep 17, 2019
1 parent edbf839 commit 688b6e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions open-sourcing.md
Expand Up @@ -20,19 +20,19 @@ bot account allows us to publish all crates under the same user and not have to
We mainly use Travis CI for all of our public code, but the general steps here would apply to
whatever CI a repo decides to use.

It's recommended you use our [Rust Template](https://github.com/EmbarkStudios/template-rust) when
It's recommended you use our [Open Source Template](https://github.com/EmbarkStudios/opensource-template) when
creating a new Rust Github repo, this already contains some basic CI templates and scripts to
bootstrap your.
bootstrap your setup.

If you don't use the Rust Template, you can copy one of our existing repos that most closely matches
If you don't use the template, you can copy one of our existing repos that most closely matches
your new repo.

* library crate - [tame-oauth](https://github.com/EmbarkStudios/tame-oauth/blob/master/.travis.yml)
* binary crate - [cargo-deny](https://github.com/EmbarkStudios/cargo-deny/blob/master/.travis.yml)

The rest of this guide assumes you are using the CI setup from the Rust Template.
The rest of this guide assumes you are using the CI setup from the Open Source Template.

1. Rename `not.travis.yml` to `.travis.yml`. We don't actually run real CI on our template repo!
1. Rename `rust.travis.yml` to `.travis.yml`. We don't actually run real CI on our template repo!
1. Add/remove steps as makes sense for the project
* As noted in our [guidelines](https://github.com/EmbarkStudios/rust-ecosystem/blob/master/guidelines.md#001---run-rustfmt-on-save), we expect all our code to follow default rustfmt, and not have clippy
warnings, so have at least 1 lint step that checks these on the `stable` channel, and it's recommended
Expand Down

0 comments on commit 688b6e0

Please sign in to comment.