Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,16 @@ jobs:

- name: Build release binary
run: cargo build --locked --release --workspace

nixos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- uses: cachix/install-nix-action@v31

- name: Check Nix formatting
run: nix fmt -- --check flake.nix packaging/nix/*.nix

- name: Check and build Nix packages
run: nix flake check --print-build-logs
7 changes: 7 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:
fetch-depth: 0
ref: ${{ steps.release.outputs.tag_name }}

- uses: cachix/install-nix-action@v31
if: ${{ steps.release.outputs.release_created == 'true' }}

- name: Verify release Nix package
if: ${{ steps.release.outputs.release_created == 'true' }}
run: nix build .#breakd .#breakd-relay --print-build-logs

- name: Build source archive
id: source
if: ${{ steps.release.outputs.release_created == 'true' }}
Expand Down
Loading