chore: replace minprotobuf with nim-protobuf-serialization #1321
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 | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| checks: write | |
| on: | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| system: | |
| - aarch64-darwin | |
| - x86_64-linux | |
| nixpkg: | |
| - liblogosdelivery | |
| include: | |
| - system: aarch64-darwin | |
| runs_on: [self-hosted, macOS, ARM64] | |
| - system: x86_64-linux | |
| runs_on: [self-hosted, Linux, X64] | |
| name: '${{ matrix.system }} / ${{ matrix.nixpkg }}' | |
| runs-on: ${{ matrix.runs_on }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: 'Run Nix build for ${{ matrix.nixpkg }}' | |
| shell: bash | |
| run: nix build -L '.#${{ matrix.nixpkg }}' | |
| - name: 'Show result contents' | |
| shell: bash | |
| run: find result -type f |