nix: add wakucanary Flake package #13
Workflow file for this run
This file contains hidden or 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: ci / nix-builds | |
| on: | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| name: Build Nix Flake packages | |
| runs-on: [self-hosted, Linux] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Build wakucanary | |
| shell: bash | |
| run: nix build --accept-flake-config '.?submodules=1#wakucanary' | |
| - name: Build Android library | |
| shell: bash | |
| run: nix build --accept-flake-config '.?submodules=1#libwaku-android-arm64' |