-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9efbec8
commit 34f909b
Showing
19 changed files
with
489 additions
and
447 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,4 @@ | ||
import { Workflows } from '@tapis/tapis-typescript'; | ||
import { task as task0 } from './test-function'; | ||
import { task as task1 } from './test-function-2'; | ||
export const tasks: Array<Workflows.Task> = [ | ||
Workflows.FunctionTaskFromJSON(task0), | ||
Workflows.FunctionTaskFromJSON(task1), | ||
]; | ||
import { Workflows } from "@tapis/tapis-typescript" | ||
import { task as task0 } from "./test-function" | ||
import { task as task1 } from "./test-function-2" | ||
export const tasks: Array<Workflows.Task> = [Workflows.FunctionTaskFromJSON(task0),Workflows.FunctionTaskFromJSON(task1),] |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,19 +1,21 @@ | ||
export const task = { | ||
id: 'test-function', | ||
type: 'function', | ||
code: 'test', | ||
execution_profile: { | ||
flavor: 'c1tiny', | ||
"id": "test-function", | ||
"type": "function", | ||
"code": "test", | ||
"execution_profile": { | ||
"flavor": "c1tiny" | ||
}, | ||
installer: 'pip', | ||
packages: ['tapipy'], | ||
runtime: 'python:3.9', | ||
entrypoint: 'tapis-owe-functions/functions/tapis-etl-push-pull-data.py', | ||
git_repositories: [ | ||
{ | ||
url: 'https://github.com/tapis-project/tapis-workflows-task-templates.git', | ||
branch: 'master', | ||
directory: 'tapis-owe-functions', | ||
}, | ||
"installer": "pip", | ||
"packages": [ | ||
"tapipy" | ||
], | ||
}; | ||
"runtime": "python:3.9", | ||
"entrypoint": "tapis-owe-functions/functions/tapis-etl-push-pull-data.py", | ||
"git_repositories": [ | ||
{ | ||
"url": "https://github.com/tapis-project/tapis-workflows-task-templates.git", | ||
"branch": "master", | ||
"directory": "tapis-owe-functions" | ||
} | ||
] | ||
} |
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
8 changes: 4 additions & 4 deletions
8
lib/icicle-tapisui-extension/src/pages/JupyterLab/JupyterLab.tsx
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
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
Oops, something went wrong.