Skip to content
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

Explicitly specify bash shell on run steps #125

Merged
merged 4 commits into from
Apr 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ jobs:
test-codecov-orb-windows:
executor:
name: win/default
shell: bash.exe
steps:
- checkout
- attach_workspace:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
## Latest version 3.2.2

[![codecov.io](https://codecov.io/github/codecov/codecov-circleci-orb/coverage.svg?branch=master)](https://codecov.io/github/codecov/codecov-circleci-orb)
[![Circle CI](https://circleci.com/gh/codecov/codecov-circleci-orb.png?style=badge)](https://circleci.com/gh/codecov/codecov-circleci-orb)
[![Circle CI](https://circleci.com/gh/codecov/codecov-circleci-orb.png?style=badge)](https://circleci.com/gh/codecov/codecov-circleci-orb)
3 changes: 3 additions & 0 deletions src/@orb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ commands:
steps:
- run:
name: Download Codecov Uploader
shell: bash
command: |
family=$(uname -s | tr '[:upper:]' '[:lower:]')
os="windows"
Expand All @@ -68,6 +69,7 @@ commands:
steps:
- run:
name: Validate Codecov Uploader
shell: bash
command: |
source $BASH_ENV
curl https://keybase.io/codecovsecurity/pgp_keys.asc | gpg --no-default-keyring --keyring trustedkeys.gpg --import # One-time step
Expand All @@ -77,6 +79,7 @@ commands:
shasum -a 256 -c $filename.SHA256SUM || sha256sum -c $filename.SHA256SUM
- run:
name: Upload Coverage Results
shell: bash
command: |
unset NODE_OPTIONS # See https://github.com/codecov/uploader/issues/475
source $BASH_ENV
Expand Down