-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from sdemos/rust
*: rewrite coreos-metadata in rust
- Loading branch information
Showing
60 changed files
with
4,763 additions
and
4,058 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
rules: | ||
- name: commit title scope | ||
description: all commit titles must have a lowercase scope | ||
expression: |- | ||
.commits all((.title test "^[a-z1-9/*,:_-]+:") or (.title test "^Revert")) | ||
- name: commit title length | ||
description: all commit titles must be no more than 50 characters | ||
expression: |- | ||
.commits all((.title length < 51) or (.title test "^Revert")) | ||
- name: commit description | ||
description: all commits must have a description with each line having no more than 72 characters | ||
expression: |- | ||
.commits all((.description lines all(. length < 73) and (.description lines length > 0)) or (.title test "^Revert")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
bin/ | ||
gopath/ | ||
target/ | ||
**/*.rs.bk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
language: go | ||
language: rust | ||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
matrix: | ||
include: | ||
- go: 1.5 | ||
env: GO15VENDOREXPERIMENT=1 | ||
- go: 1.6 | ||
|
||
install: | ||
- | ||
|
||
script: | ||
- ./test | ||
allow_failures: | ||
- rust: nightly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.