Some checks failed
Build sparse 0.5 without FreeBSD support / build-and-upload (push) Failing after 1h8m6s
23 lines
511 B
YAML
23 lines
511 B
YAML
name: Build sparse 0.5 without FreeBSD support
|
|
on:
|
|
push:
|
|
branches:
|
|
- flake
|
|
|
|
jobs:
|
|
build-and-upload:
|
|
runs-on: native
|
|
steps:
|
|
- name: check out repository code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build flake
|
|
run: |
|
|
/run/current-system/sw/bin/nix build --max-jobs 8 .#sparse-05-client
|
|
|
|
- name: Upload resulting binary
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: sparse-05-client
|
|
path: result/bin/sparse-05-client
|