-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wip fixes for downstream Fixes for bazel and interfaces restore evse_manager Install edm and deps on the fly Signed-off-by: Evgeny Petrov <[email protected]> Signed-off-by: Dima Dorezyuk <[email protected]> Co-authored-by: Evgeny Petrov <[email protected]>
- Loading branch information
1 parent
11e8b3f
commit 1cb4b75
Showing
14 changed files
with
109 additions
and
26 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
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,2 @@ | ||
exports_files(["logging.ini"]) | ||
|
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,5 @@ | ||
filegroup( | ||
name = "errors", | ||
srcs = glob(["*.yaml"]), | ||
visibility = ["//visibility:public"], | ||
) |
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,11 @@ | ||
load("//modules:module.bzl", "cc_everest_module") | ||
|
||
IMPLS = [ | ||
"main", | ||
] | ||
|
||
cc_everest_module( | ||
name = "DummyTokenValidator", | ||
deps = [], | ||
impls = IMPLS, | ||
) |
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,20 @@ | ||
load("//modules:module.bzl", "cc_everest_module") | ||
|
||
IMPLS = [ | ||
"energy_grid", | ||
"external_limits", | ||
] | ||
|
||
cc_everest_module( | ||
name = "EnergyNode", | ||
impls = IMPLS, | ||
deps = [ | ||
"@sigslot//:sigslot", | ||
], | ||
srcs = glob( | ||
[ | ||
"*.cpp", | ||
"*.hpp", | ||
], | ||
), | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
set -eu -o pipefail | ||
|
||
EDM_LINK=git+https://github.com/Everest/everest-dev-environment.git#subdirectory=dependency_manager | ||
mkdir -p venv > /dev/null | ||
TARGET_PATH=$(realpath venv) | ||
pip3 install --upgrade -t $TARGET_PATH $EDM_LINK > /dev/null | ||
export PYTHONPATH=$TARGET_PATH | ||
export PATH=$TARGET_PATH/bin:$PATH | ||
|
||
edm "$@" |
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