-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into bs/fix-CHEF-8031
- Loading branch information
Showing
8 changed files
with
84 additions
and
28 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
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
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,28 +1,19 @@ | ||
--- | ||
# TODO: Update pipeline when we introduce the coverage pipeline | ||
expeditor: | ||
defaults: | ||
buildkite: | ||
timeout_in_minutes: 45 | ||
retry: | ||
automatic: | ||
limit: 1 | ||
|
||
steps: | ||
- label: "placeholder-for-coverage-pipeline" | ||
|
||
- label: coverage-ruby-3.0.6 | ||
command: | ||
- CI_ENABLE_COVERAGE=1 RAKE_TASK=test /workdir/.expeditor/buildkite/coverage.sh | ||
expeditor: | ||
secrets: true | ||
executor: | ||
docker: | ||
commands: | ||
- "echo ## This pipeline does nothing. Implement the coverage pipeline in near future." | ||
|
||
# steps: | ||
# - label: coverage | ||
# commands: | ||
# - /workdir/.expeditor/buildkite/coverage.sh | ||
# expeditor: | ||
# secrets: | ||
# COVERALLS_REPO_TOKEN: | ||
# path: secret/coveralls/inspec/train | ||
# field: repo_token | ||
# executor: | ||
# docker: | ||
# environment: | ||
# - CI_ENABLE_COVERAGE=true | ||
# - CI_NAME=Buildkite | ||
# - CI_BUILD_NUMBER=$BUILDKITE_BUILD_NUMBER | ||
# - CI_BUILD_URL=$BUILDKITE_BUILD_URL | ||
# - CI_BRANCH=$BUILDKITE_BRANCH | ||
image: ruby:3.0.6 |
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
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
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 +1 @@ | ||
3.11.0 | ||
3.11.1 |
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
# Author:: Dominik Richter (<[email protected]>) | ||
|
||
module Train | ||
VERSION = "3.11.0".freeze | ||
VERSION = "3.11.1".freeze | ||
end |
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,17 @@ | ||
# must be unique in a given SonarQube instance | ||
sonar.projectKey=inspec_train_AYvrnSZVG2RNgd1H9han | ||
|
||
sonar.projectName=Chef-Inspec-train | ||
|
||
# TODO: provide path to test coverage report generated by simplecov or any other code coverage tool | ||
#sonar.ruby.coverage.reportPaths=coverage/coverage.json | ||
|
||
# exclude test directories from coverage | ||
sonar.coverage.exclusions=test/* | ||
|
||
sonar.exclusions=**/*.java,**/*.js,vendor/* | ||
|
||
# skip C-language processor | ||
sonar.c.file.suffixes=- | ||
sonar.cpp.file.suffixes=- | ||
sonar.objc.file.suffixes=- |