Skip to content

bus: rewrite the private read/write methods #65

bus: rewrite the private read/write methods

bus: rewrite the private read/write methods #65

Workflow file for this run

name: matar-gcc
on: [push, pull_request, workflow_dispatch]
env:
BUILDDIR: build
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v27
with:
extra_nix_config: |
auto-optimise-store = true
experimental-features = nix-command flakes
- uses: cachix/cachix-action@v15
with:
name: pain
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: setup
run: nix develop .#matar -c meson setup $BUILDDIR -Dgdb_debug=true
- name: build
run: nix develop .#matar -c ninja -C $BUILDDIR
- name: tests
run: nix develop .#matar -c ninja test -C $BUILDDIR