bus: rewrite the private read/write methods #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |