[feat]: basic nix dev enviroment

This commit is contained in:
aprilthepink 2024-03-21 12:41:02 +01:00
parent 51c7a6d6a2
commit 091b8efe8e
10 changed files with 545 additions and 260 deletions

20
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,20 @@
// We use https://github.com/juspay/jenkins-nix-ci
pipeline {
agent any
stages {
stage ('Build') {
steps {
// https://github.com/srid/nixci
nixCI ()
}
}
/* stage ('Cachix push') {
when { branch 'master' }
steps {
cachixPush "srid"
}
}
*/
}
}