Skip to content

Commit

Permalink
RsIskraMeter: Initial commit (#580)
Browse files Browse the repository at this point in the history
* RsIskraMeter: initial commit

Signed-off-by: Dima Dorezyuk <[email protected]>

* fixup the interfaces

Signed-off-by: Dima Dorezyuk <[email protected]>

* Add doc

Signed-off-by: Dima Dorezyuk <[email protected]>

* fixup

Signed-off-by: Dima Dorezyuk <[email protected]>

* fix clang

Signed-off-by: Dima Dorezyuk <[email protected]>

* fix pipeline name

Signed-off-by: Dima Dorezyuk <[email protected]>

* update everest-framework reference

Signed-off-by: Dima Dorezyuk <[email protected]>

* update lock

Signed-off-by: Dima Dorezyuk <[email protected]>

* reviewer remarks

Signed-off-by: Dima Dorezyuk <[email protected]>

* remove public_key topic

Signed-off-by: Dima Dorezyuk <[email protected]>

* reviewer remarks

Signed-off-by: Dima Dorezyuk <[email protected]>

* Update main.rs

Signed-off-by: Dima Dorezyuk <[email protected]>

---------

Signed-off-by: Dima Dorezyuk <[email protected]>
Signed-off-by: Dima Dorezyuk <[email protected]>
Co-authored-by: Dima Dorezyuk <[email protected]>
  • Loading branch information
dorezyuk and Dima Dorezyuk authored Mar 19, 2024
1 parent 7c2a719 commit aed024b
Show file tree
Hide file tree
Showing 18 changed files with 2,413 additions and 326 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Bazel Build
run-name: ${{ github.actor }} is building with bazel
on: [pull_request]
jobs:
bazel-build:
bazel-build-and-test:
runs-on: ubuntu-22.04
steps:
- run: echo branch name is ${{ github.ref }}
Expand All @@ -16,3 +16,5 @@ jobs:
- name: Build all
run: >
bazelisk build //...
- name: Test all
run: bazelisk test //...
5 changes: 3 additions & 2 deletions WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ load("@rules_rust//crate_universe:defs.bzl", "crates_repository", "crate")

crates_repository(
name = "crate_index",
cargo_lockfile = "//modules/rust_examples:Cargo.lock",
cargo_lockfile = "//modules:Cargo.lock",
isolated = False,
manifests = [
"//modules/rust_examples:Cargo.toml",
"//modules:Cargo.toml",
"//modules/RsIskraMeter:Cargo.toml",
"//modules/rust_examples/RsExample:Cargo.toml",
"//modules/rust_examples/RsExampleUser:Cargo.toml",
],
Expand Down
Empty file added modules/BUILD.bazel
Empty file.
1 change: 1 addition & 0 deletions modules/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@ add_subdirectory(examples)
add_subdirectory(simulation)

if(${EVEREST_ENABLE_RS_SUPPORT})
ev_add_module(RsIskraMeter)
add_subdirectory(rust_examples)
endif()
Loading

0 comments on commit aed024b

Please sign in to comment.