Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
56f0ea6
orch: Initial mio implementation
pawelrutkaq Jul 21, 2025
7d4e890
testing: fix num workers test flakiness
arkjedrz Aug 27, 2025
fabff35
testing: num workers tests - CV-based
arkjedrz Aug 27, 2025
59baf41
gitlint: Use gitlint from score
nicu1989 Aug 28, 2025
e7a0989
infra: increase bazel timeout in nightly
PiotrKorkus Aug 28, 2025
c73d80a
testing: Upgrade testing-utils to version 2.0.1
igorostrowskiq Aug 29, 2025
09da7f8
runtime: connect MIO to async world
pawelrutkaq Jul 21, 2025
62453e6
runtime: provide more documentation and intents
pawelrutkaq Aug 28, 2025
d30d75b
runtime: fix review findings for async mio
pawelrutkaq Aug 29, 2025
1cad05e
testing: thread affinity test
arkjedrz Aug 27, 2025
85f9b5e
orch: fix bazel crate_features
PiotrKorkus Sep 2, 2025
0ca405e
testing: add tests for program run
PiotrKorkus Aug 22, 2025
cab2f81
runtime: IO integration into workers
pawelrutkaq Aug 25, 2025
8f0c13c
runtime: cleanup syntax & safety
pawelrutkaq Sep 2, 2025
a78f492
foundation: Introduce loom-like wrappers for UnsafeCell pointers
awillenbuecher-xq-tec Sep 3, 2025
289ab20
foundation: Wrap linked list pointers in UnsafeCell
awillenbuecher-xq-tec Sep 3, 2025
aeeb422
foundation: Safety requirements for linked list
awillenbuecher-xq-tec Sep 1, 2025
37fdaa7
Fix Rust version to 1.85
awillenbuecher-xq-tec Sep 3, 2025
1c8626f
testing: bump 'testing-utils' to v0.2.2
arkjedrz Sep 3, 2025
de5f42c
mio: fix missing-notifications on CV
pawelrutkaq Sep 4, 2025
a3dfceb
testing: remove unreliable time check
PiotrKorkus Sep 4, 2025
b9ae402
runtime: implement basic net layer
pawelrutkaq Sep 2, 2025
e47945a
testing: disable flaky timing test
PiotrKorkus Sep 5, 2025
3f6a228
testing: Fix rust scenario repro message
igorostrowskiq Aug 28, 2025
7d00494
testing: Add tests for spmc broadcast channel
igorostrowskiq Aug 21, 2025
ed6af1f
testing: split spsc and spmc_broadcast scenarios
igorostrowskiq Sep 5, 2025
688d583
testing: apply clippy fixes to tests
arkjedrz Sep 8, 2025
66d2bf4
testing: env var for rust debug, bazel command
PiotrKorkus Sep 9, 2025
c53edc4
testing: improve test scenarios error handling
arkjedrz Sep 8, 2025
007fff6
runtime: async support for iceoryx2 events
pawelrutkaq Aug 27, 2025
3dcb535
orch: Qnx build
Aug 11, 2025
8ccfc92
runtime: Limit spmc channel max receivers
prabakaranklst Sep 10, 2025
693c38e
testing: Add one line test runner with venv handling
igorostrowskiq Sep 9, 2025
b8d8f62
testing: thread priority test
arkjedrz Sep 10, 2025
067cacd
orch: Add an async select macro
maciejbacalext Sep 5, 2025
cbda901
orch: Make the select macro work with async functions and closuers
maciejbacalext Sep 15, 2025
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
4 changes: 3 additions & 1 deletion .github/actions/gitlint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ runs:
git config --global --add safe.directory /github/workspace && \
git fetch origin +refs/heads/main:refs/remotes/origin/main && \
git fetch origin +refs/pull/${{ inputs.pr-number }}/head && \
if ! gitlint --commits origin/main..HEAD; then \
# Fetch the upstream .gitlint config from eclipse-score/score
git clone --depth 1 https://github.com/eclipse-score/score.git /tmp/score-gitlint && \
if ! gitlint --config /tmp/score-gitlint/.gitlint --commits origin/main..HEAD; then \
echo -e "\nWARNING: Your commit message does not follow the required format." && \
echo "Formatting rules: https://eclipse-score.github.io/score/main/contribute/general/git.html#commit-message-format" && \
echo -e "To fix your commit message, run:\n" && \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/component_integration_tests_bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ jobs:
- name: Build Test Scenarios with Bazel (Nightly)
if: github.event_name == 'schedule'
run: |
bazel test //component_integration_tests/python_test_cases:cit_repeat
bazel test //component_integration_tests/python_test_cases:cit_repeat --test_timeout=600
46 changes: 0 additions & 46 deletions .gitlint

This file was deleted.

4 changes: 1 addition & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,7 @@
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"cSpell.words": [
"imidietelly"
],
"cSpell.words": [],
"editor.formatOnSave": true,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
Expand Down
Loading
Loading