Add .gitlab-ci file

This commit is contained in:
Filip Graliński 2019-08-22 17:18:11 +02:00
parent 589235d7bf
commit 39c0b3e3a3
1 changed files with 11 additions and 0 deletions

11
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,11 @@
# recipe for building a fully static binary on GitLabCI
image: nixos/nix
stages:
- build
build-binary:
stage: build
script:
- $(nix-build --no-link -A fullBuildScript)