> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# plugins/nativeedge-plugins-orb

Ecosystem/Plugins team testing orb. Run unittests from the makefile/tox in the plugin directory. Build manylinux wagon using the makefile in the plugin directory.


## Commands

### checkout

This is git checkout branch.

### create_package

Creates the package.

### greet

This command echos "Hello World" using file inclusion.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `to` | string | World | Hello to whom? |

### init_submodules

Initialize Submodules.

### run_tests_command

This command runs the unit tests for a plugin


### upload_assets

Creates the package.

### validate_plugin_version

This command validates the version of a plugin


### validate_plugin_yaml

This command validates the YAMLs of a plugin


### validate_pulls

This command validates the pulls of a branch.


### wagon_create

This command builds wagons


## Jobs

### hello

Sample description


| Parameter | Type | Default | Description |
|---|---|---|---|
| `to` | string | World | Hello to whom? |

### release

Create new release.

### unittests_job

Run the unittests from tox (via make).

### validations

Validate the versioning, YAMLs, and PRs.

### wagon

Generate the wagon.

## Executors

### default

This is a sample executor using Docker and Node. If you want to provide a custom environment in your orb, insert your image here. If you do not require an executor, you can simply delete this directory.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `tag` | string | lts | Pick a specific cimg/node image variant: https://hub.docker.com/r/cimg/node/tags
 |

### ecosystem

This is a sample executor using Docker and Node. If you want to provide a custom environment in your orb, insert your image here. If you do not require an executor, you can simply delete this directory.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `tag` | string | latest | Pick a specific cimg/node image variant: https://hub.docker.com/repository/docker/earthmancfy/ecosystem-test/tags
 |

### unittesting

This is a sample executor using Docker and Node. If you want to provide a custom environment in your orb, insert your image here. If you do not require an executor, you can simply delete this directory.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `tag` | string | latest | Pick a specific cimg/node image variant: https://hub.docker.com/repository/docker/earthmancfy/unittesting/tags
 |

### wagon_build

This is a sample executor using Docker and Node. If you want to provide a custom environment in your orb, insert your image here. If you do not require an executor, you can simply delete this directory.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `tag` | string | latest | Pick a specific cimg/node image variant: https://hub.docker.com/repository/docker/earthmancfy/wagon/tags
 |

## Examples

### example

Sample example description.


```yaml
version: '2.1'
orbs:
  <orb-name>: <namespace>/<orb-name>@1.2.3
workflows:
  use-my-orb:
    jobs:
      - <orb-name>/<job-name>
```