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

Th/add os #212

Merged
merged 2 commits into from
Nov 8, 2024
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
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codecov-circleci-orb",
"version": "5.0.1",
"version": "5.0.2",
"description": "Codecov CircleCI Orb",
"main": "index.js",
"devDependencies": {
Expand Down
5 changes: 5 additions & 0 deletions src/commands/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ parameters:
description: Root folder from which to consider paths on the network section. Defaults to current working directory.
type: string
default: ""
os:
description: Override the calculated os. Can use "linux" | "macos" | "windows" | "linux-arm64" | "alpine" | "alpine-arm64"
type: string
default: ""
parent_sha:
description: SHA (with 40 chars) of what should be the parent of this commit.
type: string
Expand Down Expand Up @@ -176,6 +180,7 @@ steps:
CC_NETWORK_FILTER: << parameters.network_filter >>
CC_NETWORK_PREFIX: << parameters.network_prefix >>
CC_NETWORK_ROOT_FOLDER: << parameters.network_root_folder >>
CC_OS: << parameters.os >>
CC_PARENT_SHA: << parameters.parent_sha >>
CC_PLUGINS: << parameters.plugins >>
CC_PR: << parameters.pr >>
Expand Down
Loading