Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[env]
PROTOC_EXECUTABLE = { value = "opt/bin/protoc", relative = true }
FLATC_EXECUTABLE = { value = "opt/bin/flatc", relative = true }
4 changes: 3 additions & 1 deletion .github/workflows/build-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
# TODO: change back to stable once rust releases the coverage fix
# - uses: dtolnay/[email protected]
- uses: actions-rs/toolchain@v1
Expand All @@ -31,8 +33,8 @@ jobs:

- name: Install dependencies
run: |
sudo dnf install -y protobuf-compiler
sudo dnf install -y systemd-devel
./deps.sh

- name: Check lints and clippy
run: |
Expand Down
8 changes: 8 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[submodule "shlr/flatbuffers"]
path = shlr/flatbuffers
url = https://github.com/firedancer-io/flatbuffers.git
branch = v25.9.23-patches
[submodule "shlr/protobuf"]
path = shlr/protobuf
url = https://github.com/protocolbuffers/protobuf
branch = v25.2
Loading
Loading