Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Use check-push-rights from kuksa-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbosch committed Oct 3, 2023
1 parent f716273 commit 65dd128
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 55 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/check_push_rights.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/kuksa-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:

jobs:
checkrights:
uses: ./.github/workflows/check_push_rights.yml
uses: erikbosch/kuksa-actions/check_push_rights/check_push_rights.yml
secrets: inherit

build-docker:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kuksa_databroker-cli_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:


checkrights:
uses: ./.github/workflows/check_push_rights.yml
uses: erikbosch/kuksa-actions/check_push_rights/check_push_rights.yml
secrets: inherit

# Run on selfhosted, because our runner has native ARM build in a remote
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/kuksa_databroker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
branches: [ master ]
pull_request:
paths:
- ".github/workflows/kuksa_databroker_build.yml"
- '.github/workflows/kuksa_databroker_build.yml'
- "kuksa_databroker/**"
- "proto/**"
- "Cargo.*"
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:


checkrights:
uses: ./.github/workflows/check_push_rights.yml
uses: erikbosch/kuksa-actions/check_push_rights/check_push_rights.yml
secrets: inherit

# Run on selfhosted, because our runner has native ARM build in a remote
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kuksa_val_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
checkrights:
uses: ./.github/workflows/check_push_rights.yml
uses: erikbosch/kuksa-actions/check_push_rights/check_push_rights.yml
secrets: inherit

build:
Expand Down
10 changes: 6 additions & 4 deletions kuksa_databroker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

Kuksa Databroker is a GRPC service acting as a broker of vehicle data / data points / signals.

This is just a test

## Relation to the COVESA Vehicle Signal Specification (VSS)

The data broker is designed to support data entries and branches as defined by [VSS](https://covesa.github.io/vehicle_signal_specification/).
Expand Down Expand Up @@ -112,7 +114,7 @@ cargo run --bin databroker -- --port 55556
Please note, this also applies if you use a container environment like K3S or Docker on Mac OS. If you forward the port or exposing the host network
interfaces, the same problem occurs.

For more information see also https://developer.apple.com/forums/thread/671197
For more information see also https://developer.apple.com/forums/thread/671197

Currently, to run databroker-cli (see below), you do need to change the port it connects to in databroker-cli code and recompile it.

Expand Down Expand Up @@ -142,7 +144,7 @@ This will enable `TAB`-completion for the available properties in the client. Ru

Get data points by running "get"
```shell
sdv.databroker.v1 > get Vehicle.ADAS.CruiseControl.IsEnabled
sdv.databroker.v1 > get Vehicle.ADAS.CruiseControl.IsEnabled
[get] OK
Vehicle.ADAS.CruiseControl.IsEnabled: ( NotAvailable )
```
Expand All @@ -164,7 +166,7 @@ or interactively
sdv.databroker.v1 > token XXXXXXXXXX
```

or
or

```shell
sdv.databroker.v1 > token-file jwt/read-vehicle-speed.token
Expand Down Expand Up @@ -215,7 +217,7 @@ Use the following command to run Databroker test cases
```shell
cargo test --all-targets
```

## Build and run Databroker using Docker

To build the release version of databroker, run the following command:
Expand Down

0 comments on commit 65dd128

Please sign in to comment.