-
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.
Merge branch 'main' into cb/enable_and_fix_warnings
- Loading branch information
Showing
150 changed files
with
9,951 additions
and
792 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
Validating CODEOWNERS rules …
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 |
---|---|---|
|
@@ -94,6 +94,12 @@ jobs: | |
with: | ||
path: dist-wheels | ||
name: wheels | ||
- name: Archive unit test results | ||
if: always() | ||
uses: actions/[email protected] | ||
with: | ||
name: ctest-report | ||
path: ${{ github.workspace }}/ctest-report | ||
integration-tests: | ||
name: Integration Tests | ||
needs: build | ||
|
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
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
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,147 @@ | ||
active_modules: | ||
iso15118_charger: | ||
module: EvseV2G | ||
config_module: | ||
device: auto | ||
tls_security: force | ||
connections: | ||
security: | ||
- module_id: evse_security | ||
implementation_id: main | ||
iso15118_car: | ||
module: PyEvJosev | ||
config_module: | ||
device: auto | ||
supported_DIN70121: false | ||
supported_ISO15118_2: true | ||
tls_active: true | ||
enforce_tls: true | ||
evse_manager: | ||
module: EvseManager | ||
config_module: | ||
connector_id: 1 | ||
country_code: DE | ||
evse_id: DE*PNX*E12345*1 | ||
evse_id_din: 49A80737A45678 | ||
session_logging: true | ||
session_logging_xml: false | ||
session_logging_path: /tmp/everest-logs | ||
charge_mode: DC | ||
hack_allow_bpt_with_iso2: true | ||
payment_enable_contract: false | ||
connections: | ||
bsp: | ||
- module_id: yeti_driver | ||
implementation_id: board_support | ||
powermeter_car_side: | ||
- module_id: powersupply_dc | ||
implementation_id: powermeter | ||
slac: | ||
- module_id: slac | ||
implementation_id: evse | ||
hlc: | ||
- module_id: iso15118_charger | ||
implementation_id: charger | ||
powersupply_DC: | ||
- module_id: powersupply_dc | ||
implementation_id: main | ||
imd: | ||
- module_id: imd | ||
implementation_id: main | ||
powersupply_dc: | ||
module: DCSupplySimulator | ||
yeti_driver: | ||
module: JsYetiSimulator | ||
config_module: | ||
connector_id: 1 | ||
slac: | ||
module: JsSlacSimulator | ||
imd: | ||
config_implementation: | ||
main: | ||
selftest_success: true | ||
module: IMDSimulator | ||
ev_manager: | ||
module: EvManager | ||
config_module: | ||
connector_id: 1 | ||
auto_enable: true | ||
auto_exec: false | ||
auto_exec_commands: sleep 1;iec_wait_pwr_ready;sleep 1;draw_power_regulated 16,3;sleep 30;unplug | ||
dc_target_current: 20 | ||
dc_target_voltage: 400 | ||
connections: | ||
ev_board_support: | ||
- module_id: yeti_driver | ||
implementation_id: ev_board_support | ||
ev: | ||
- module_id: iso15118_car | ||
implementation_id: ev | ||
slac: | ||
- module_id: slac | ||
implementation_id: ev | ||
auth: | ||
module: Auth | ||
config_module: | ||
connection_timeout: 10 | ||
selection_algorithm: FindFirst | ||
connections: | ||
token_provider: | ||
- module_id: token_provider | ||
implementation_id: main | ||
token_validator: | ||
- module_id: token_validator | ||
implementation_id: main | ||
evse_manager: | ||
- module_id: evse_manager | ||
implementation_id: evse | ||
token_provider: | ||
module: DummyTokenProvider | ||
config_implementation: | ||
main: | ||
token: TOKEN1 | ||
connections: | ||
evse: | ||
- module_id: evse_manager | ||
implementation_id: evse | ||
token_validator: | ||
module: DummyTokenValidator | ||
config_implementation: | ||
main: | ||
validation_result: Accepted | ||
validation_reason: Token seems valid | ||
sleep: 0.25 | ||
evse_security: | ||
module: EvseSecurity | ||
config_module: | ||
private_key_password: "123456" | ||
energy_manager: | ||
module: EnergyManager | ||
config_module: | ||
schedule_total_duration: 1 | ||
schedule_interval_duration: 60 | ||
debug: false | ||
connections: | ||
energy_trunk: | ||
- module_id: grid_connection_point | ||
implementation_id: energy_grid | ||
grid_connection_point: | ||
module: EnergyNode | ||
config_module: | ||
fuse_limit_A: 40.0 | ||
phase_count: 3 | ||
connections: | ||
price_information: [] | ||
energy_consumer: | ||
- module_id: evse_manager | ||
implementation_id: energy_grid | ||
powermeter: | ||
- module_id: yeti_driver | ||
implementation_id: powermeter | ||
api: | ||
module: API | ||
connections: | ||
evse_manager: | ||
- module_id: evse_manager | ||
implementation_id: evse | ||
x-module-layout: {} |
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.