drm: clear buffer on creation for scanout DRM buffers #199
Workflow file for this run
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: Build & Test | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
nix: | |
strategy: | |
matrix: | |
package: | |
- aquamarine | |
# - aquamarine-with-tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v26 | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
# not needed (yet) | |
# - uses: cachix/cachix-action@v12 | |
# with: | |
# name: hyprland | |
# authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Build & Test | |
run: nix build .#${{ matrix.package }} --print-build-logs | |