-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for orb with local executors and commands in folder
- Loading branch information
Zachary Scott
committed
Jun 22, 2018
1 parent
fa63a02
commit f23054e
Showing
4 changed files
with
54 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
commands: | ||
zomg: | ||
description: a command inside a folder in an orb | ||
parameters: | ||
tm: | ||
description: Tell me something. | ||
type: string | ||
steps: | ||
- run: echo "You don't say... << parameters.saywhat >>" | ||
description: A simple encapsulation of common tasks in Hugo | ||
executors: | ||
default: | ||
docker: | ||
- image: cibuilds/hugo:<< parameters.image >> | ||
parameters: | ||
tag: | ||
description: The tag to use on the image | ||
type: string | ||
|
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,7 @@ | ||
description: "a command inside a folder in an orb" | ||
parameters: | ||
tm: | ||
description: "Tell me something." | ||
type: string | ||
steps: | ||
- run: echo "You don't say... << parameters.saywhat >>" |
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,10 @@ | ||
description: "A simple encapsulation of common tasks in Hugo" | ||
|
||
executors: | ||
default: | ||
parameters: | ||
tag: | ||
description: "The tag to use on the image" | ||
type: string | ||
docker: | ||
- image: cibuilds/hugo:<< parameters.image >> |