This commit is contained in:
parent
2cc992a181
commit
4c52005760
2 changed files with 16 additions and 2 deletions
14
.gitea/workflows/abstract-machine-build.yml
Normal file
14
.gitea/workflows/abstract-machine-build.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: Build abstract machine with nix
|
||||
on: [push]
|
||||
|
||||
# Defines the jobs the workflow will run. Jobs are run in parallel by default.
|
||||
jobs:
|
||||
build:
|
||||
# The type of runner that the job will run on.
|
||||
runs-on: nix
|
||||
steps:
|
||||
- name: Build with nix
|
||||
run: |
|
||||
# Replace the above command with the command to build your project.
|
||||
nix build -L .#abstract-machine
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue