ci: add test build with nix
This commit is contained in:
parent
c4889f9806
commit
4ea949572a
|
|
@ -38,3 +38,18 @@ jobs:
|
||||||
name: Quickgui-${{github.run_number}}-linux-x64
|
name: Quickgui-${{github.run_number}}-linux-x64
|
||||||
path: build/linux/x64/release/bundle
|
path: build/linux/x64/release/bundle
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
|
||||||
|
build-with-nix:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
permissions:
|
||||||
|
id-token: "write"
|
||||||
|
contents: "read"
|
||||||
|
steps:
|
||||||
|
- uses: "actions/checkout@v4"
|
||||||
|
- uses: "DeterminateSystems/nix-installer-action@v12"
|
||||||
|
- uses: "DeterminateSystems/magic-nix-cache-action@v7"
|
||||||
|
- name: "Build with Nix ❄️"
|
||||||
|
run: |
|
||||||
|
nix build .#quickgui
|
||||||
|
tree ./result
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue