Skip to content

Commit

Permalink
Add dbus support
Browse files Browse the repository at this point in the history
Subscribe to dbus events and act on commands received via dbus.

For now RAC polls RAS once it receives the PollRasNow event.
  • Loading branch information
simao committed Jul 25, 2024
1 parent 15845bc commit 7e01e0c
Show file tree
Hide file tree
Showing 12 changed files with 1,224 additions and 765 deletions.
File renamed without changes.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ env:
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container:
image: ghcr.io/toradex/torizon-rac-ci:4986e5c
image: ghcr.io/toradex/torizon-rac-ci:ec304dd
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
Expand All @@ -38,14 +38,14 @@ jobs:

lint:
name: Lint
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container:
image: ghcr.io/toradex/torizon-rac-ci:4986e5c
image: ghcr.io/toradex/torizon-rac-ci:ec304dd
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
Expand All @@ -56,21 +56,21 @@ jobs:
target/
key: tzn-rac-default-${{ hashFiles('Cargo.lock') }}
restore-keys: |
tzn-rac-default-
tzn-rac-default-
- run: git config --global --add safe.directory $PWD
- run: cargo clippy -- -Wclippy::pedantic
- run: cargo fmt --check

build-armv7:
name: Build armv7
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container:
image: ghcr.io/toradex/torizon-rac-ci:4986e5c
image: ghcr.io/toradex/torizon-rac-ci:ec304dd
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
Expand All @@ -92,14 +92,14 @@ jobs:

build-aarch64:
name: Build aarch64
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container:
image: ghcr.io/toradex/torizon-rac-ci:4986e5c
image: ghcr.io/toradex/torizon-rac-ci:ec304dd
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
Expand Down
Loading

0 comments on commit 7e01e0c

Please sign in to comment.