- Updating TODOs

- Adding jwt-cpp dependency (not really related to dag_execution)
This commit is contained in:
Ian Roddis
2021-08-21 12:18:01 -03:00
parent 2083b1c3f1
commit a83da567d0
2 changed files with 22 additions and 5 deletions

12
TODO.md
View File

@@ -3,12 +3,11 @@ Tasks
- Open
- REST Server
- [ ] Add in authorization scheme (maybe JWT?)
- [ ] Add in authorization scheme (maybe PAM auth endpoint with JWT?)
- [ ] Flesh out server and interface
- Core Functionality
- [ ] Handle return on errored DAG / Task
- [ ] Clearing a DAG Task
- [ ] Resume a failed DAG
- Executors
- [ ] Slurm Executor
- Loggers
@@ -16,8 +15,11 @@ Tasks
- [ ] Add unit tests
- [ ] Add more error checking
- [ ] General logger
- [ ] Redis DAGRunLogger
- Completed
- [X] Add ability to define child -> parent relationships
- [X] Rip apart scheduler and re-implement runDag as a utility function, taking an execution pool, task list, and
logger
- Core Functionality
- [X] Add ability to define child -> parent relationships
- [X] Rip apart scheduler and re-implement runDag as a utility function, taking an execution pool, task list,
and logger
- [X] Resume a failed DAG

15
cmake/jwt-cpp.cmake Normal file
View File

@@ -0,0 +1,15 @@
include(ExternalProject)
project(jwt)
ExternalProject_Add(${PROJECT_NAME}-external
GIT_REPOSITORY https://github.com/Thalhammer/jwt-cpp.git
GIT_TAG "v0.5.1"
GIT_SHALLOW TRUE
SOURCE_DIR ${THIRD_PARTY_DIR}/${PROJECT_NAME}
BUILD_COMMAND ""
INSTALL_COMMAND ""
CONFIGURE_COMMAND "")
add_library(${PROJECT_NAME} INTERFACE)
add_dependencies(${PROJECT_NAME} ${PROJECT_NAME}-external)
target_include_directories(${PROJECT_NAME} SYSTEM INTERFACE ${THIRD_PARTY_DIR}/${PROJECT_NAME}/include)