Skip to content

Commit

Permalink
Update readme, add tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnyz32 committed Jul 25, 2024
1 parent 8295bd8 commit 9e4b6af
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.vscode/
camel/.vscode
camel/.settings
camel/.classpath
Expand Down
25 changes: 25 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format

// Testing tasks
"version": "2.0.0",
"tasks": [
{
"label": "deployAndTest",
"type": "shell",
"command": "./deployAndTest.sh"
},
{
"label": "deployBuildAllAndTest",
"type": "shell",
"command": "./deployBuildAllAndTest.sh"
},
{
"label": "deployBuildCamelAndTest",
"type": "shell",
"command": "./deployBuildCamelAndTest.sh",
"problemMatcher": []
}
]
}
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ Many other destinations will be available. Examples include:
- [Mezmo](http://mezmo.com)
- [ElasticSearch](http://elastic.co)


# Running tests
- First copy the .env.sample file to .env and fill out the values
- Run tests by executing one of the following tasks
- deployAndTest: Sync the files to your IBM i, and run the tests
- deployBuildAllAndTest: Sync the files to your IBM i, build manzan including the ile component and run the tests
- deployBuildCamelAndTest: Sync the files to your IBM i, only build the java code and then run the tests

# Why the name "Manzan"?

Expand Down

0 comments on commit 9e4b6af

Please sign in to comment.