-
Notifications
You must be signed in to change notification settings - Fork 12
Update versions #7
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
b08a6ed
update versions
davidbuzinski 294289e
update actions version
davidbuzinski 4238d3b
Update azure-pipelines.yml
davidbuzinski 64a51a3
Update README.md
davidbuzinski dcc4bd6
remove travis and caveats
davidbuzinski 557a211
Update README.md
davidbuzinski 8a2c19e
Update README.md
davidbuzinski 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 hidden or 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 hidden or 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 contains hidden or 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 hidden or 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,9 +1,23 @@ | ||
pool: | ||
vmImage: ubuntu-latest | ||
steps: | ||
- task: InstallMATLAB@0 | ||
- task: RunMATLABTests@0 | ||
- task: InstallMATLAB@1 | ||
- task: RunMATLABTests@1 | ||
inputs: | ||
sourceFolder: source | ||
codeCoverageCobertura: coverage.xml | ||
- script: bash <(curl -s https://codecov.io/bash) | ||
- script: | | ||
# download Codecov CLI | ||
curl -Os https://cli.codecov.io/latest/linux/codecov | ||
|
||
# integrity check | ||
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import # One-time step | ||
curl -Os https://cli.codecov.io/latest/linux/codecov | ||
curl -Os https://cli.codecov.io/latest/linux/codecov.SHA256SUM | ||
curl -Os https://cli.codecov.io/latest/linux/codecov.SHA256SUM.sig | ||
gpgv codecov.SHA256SUM.sig codecov.SHA256SUM | ||
|
||
# upload to Codecov | ||
shasum -a 256 -c codecov.SHA256SUM | ||
sudo chmod +x codecov | ||
./codecov upload-process -t $(CODECOV_TOKEN) |
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.
The original code was terse. This replacement is quite verbose and hard to understand. Can I know why we had to make this replacement?
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.
It looks like the bash script is still available, but they are moving towards using their CLI going forward. When you setup a new project on codecov.io and choose "Other CI" (Not GitHub Actions or CircleCI) they recommend doing things this way

mend this code:
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.
Good to know. Thanks for clarifying, David.