-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use upload-coverage in place of create-commit, create-report and do-upload #24
Open
tony-codecov
wants to merge
6
commits into
main
Choose a base branch
from
tony/use-upload-coverage
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9d833a5
Use upload-coverage in place of create-commit, create-report and do-u…
tony-codecov f256505
Use pre-commit hook to generate dist/codecov.sh
tony-codecov 0916bb4
Merge branch 'main' into tony/use-upload-coverage
tony-codecov 2595437
Adding upload coverage args in scripts
tony-codecov 2961654
Usage of cc_uc_args
tony-codecov ca5c41a
bump version to 0.0.28
tony-codecov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,75 @@ | ||
#!/usr/bin/env bash | ||
|
||
codecov_uc_args=() | ||
|
||
# Args for create commit | ||
codecov_uc_args+=( $(write_truthy_args CODECOV_FAIL_ON_ERROR) ) | ||
codecov_uc_args+=( $(k_arg GIT_SERVICE) $(v_arg GIT_SERVICE)) | ||
codecov_uc_args+=( $(k_arg PARENT_SHA) $(v_arg PARENT_SHA)) | ||
codecov_uc_args+=( $(k_arg PR) $(v_arg PR)) | ||
codecov_uc_args+=( $(k_arg SHA) $(v_arg SHA)) | ||
codecov_uc_args+=( $(k_arg SLUG) $(v_arg SLUG)) | ||
|
||
# Args for create report | ||
codecov_uc_args+=( $(k_arg CODE) $(v_arg CODE)) | ||
|
||
# Args for do upload | ||
codecov_uc_args+=( $(k_arg ENV) $(v_arg ENV)) | ||
|
||
OLDIFS=$IFS;IFS=, | ||
|
||
codecov_uc_args+=( $(k_arg BRANCH) $(v_arg BRANCH)) | ||
codecov_uc_args+=( $(k_arg BUILD) $(v_arg BUILD)) | ||
codecov_uc_args+=( $(k_arg BUILD_URL) $(v_arg BUILD_URL)) | ||
codecov_uc_args+=( $(k_arg DIR) $(v_arg DIR)) | ||
codecov_uc_args+=( $(write_truthy_args CODECOV_DISABLE_FILE_FIXES) ) | ||
codecov_uc_args+=( $(write_truthy_args CODECOV_DISABLE_SEARCH) ) | ||
codecov_uc_args+=( $(write_truthy_args CODECOV_DRY_RUN) ) | ||
|
||
if [ -n "$CODECOV_EXCLUDES" ]; | ||
then | ||
for directory in $CODECOV_EXCLUDES; do | ||
codecov_uc_args+=( "--exclude" "$directory" ) | ||
done | ||
fi | ||
|
||
if [ -n "$CODECOV_FILES" ]; | ||
then | ||
for file in $CODECOV_FILES; do | ||
codecov_uc_args+=( "--file" "$file" ) | ||
done | ||
fi | ||
|
||
if [ -n "$CODECOV_FLAGS" ]; | ||
then | ||
for flag in $CODECOV_FLAGS; do | ||
codecov_uc_args+=( "--flag" "$flag" ) | ||
done | ||
fi | ||
|
||
codecov_uc_args+=( $(k_arg GCOV_ARGS) $(v_arg GCOV_ARGS)) | ||
codecov_uc_args+=( $(k_arg GCOV_EXECUTABLE) $(v_arg GCOV_EXECUTABLE)) | ||
codecov_uc_args+=( $(k_arg GCOV_IGNORE) $(v_arg GCOV_IGNORE)) | ||
codecov_uc_args+=( $(k_arg GCOV_INCLUDE) $(v_arg GCOV_INCLUDE)) | ||
codecov_uc_args+=( $(write_truthy_args CODECOV_HANDLE_NO_REPORTS_FOUND) ) | ||
codecov_uc_args+=( $(k_arg JOB_CODE) $(v_arg JOB_CODE)) | ||
codecov_uc_args+=( $(write_truthy_args CODECOV_LEGACY) ) | ||
if [ -n "$CODECOV_NAME" ]; | ||
then | ||
codecov_uc_args+=( "--name" "$CODECOV_NAME" ) | ||
fi | ||
codecov_uc_args+=( $(k_arg NETWORK_FILTER) $(v_arg NETWORK_FILTER)) | ||
codecov_uc_args+=( $(k_arg NETWORK_PREFIX) $(v_arg NETWORK_PREFIX)) | ||
codecov_uc_args+=( $(k_arg NETWORK_ROOT_FOLDER) $(v_arg NETWORK_ROOT_FOLDER)) | ||
|
||
if [ -n "$CODECOV_PLUGINS" ]; | ||
then | ||
for plugin in $CODECOV_PLUGINS; do | ||
codecov_uc_args+=( "--plugin" "$plugin" ) | ||
done | ||
fi | ||
|
||
codecov_uc_args+=( $(k_arg REPORT_TYPE) $(v_arg REPORT_TYPE)) | ||
codecov_uc_args+=( $(k_arg SWIFT_PROJECT) $(v_arg SWIFT_PROJECT)) | ||
|
||
IFS=$OLDIFS |
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,2 +1,2 @@ | ||
#!/usr/bin/env bash | ||
CODECOV_WRAPPER_VERSION="0.0.27" | ||
CODECOV_WRAPPER_VERSION="0.0.28" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please do not edit
dist/codecov.sh
. Runinstall.sh
on your machine and only make changes in thescripts
folder