diff options
| author | a14m <[email protected]> | 2020-12-14 23:08:00 +0100 |
|---|---|---|
| committer | a14m <[email protected]> | 2020-12-15 13:50:41 +0100 |
| commit | 566dcf3e818a30da809ea448e165ee4b0f83ff58 (patch) | |
| tree | 0ca82fd9461e8f886e6572a50ef9eeb1659234c4 | |
| parent | 50a9f841d6b27a0c842bf5127940d4989a621d10 (diff) | |
Add the placeholder structure for rust package
| -rw-r--r-- | .codecov.yml | 8 | ||||
| -rw-r--r-- | .gitlab-ci.yml | 11 | ||||
| -rw-r--r-- | CLI/rust/.gitlab-ci.yml | 2 |
3 files changed, 20 insertions, 1 deletions
diff --git a/.codecov.yml b/.codecov.yml index 0854495..3deab45 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -11,6 +11,10 @@ coverage: target: 95% flags: - ruby + rust: + target: 90% + flags: + - rust comment: layout: "reach,diff,flags,files,footer" @@ -22,3 +26,7 @@ flags: paths: - CLI/ruby/ carryforward: true + rust: + paths: + - CLI/rust/ + carryforward: true diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 28e0986..8bf12f4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,4 +8,13 @@ ruby: strategy: depend rules: - changes: - - CLI/ruby/**/* + - CLI/ruby/* + +rust: + stage: triggers + trigger: + include: CLI/rust/.gitlab-ci.yml + strategy: depend + rules: + - changes: + - CLI/rust/* diff --git a/CLI/rust/.gitlab-ci.yml b/CLI/rust/.gitlab-ci.yml new file mode 100644 index 0000000..42f67aa --- /dev/null +++ b/CLI/rust/.gitlab-ci.yml @@ -0,0 +1,2 @@ +test: + script: echo 0 |
