Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RsIskraMeter: Initial commit #580

Merged
merged 13 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading