Compare commits

..

2 commits

Author SHA1 Message Date
Ren Kararou ea198341ba
ammend required pkgs 2023-11-29 00:32:56 -06:00
Ren Kararou 1378be714c
add ci 2023-11-29 00:21:02 -06:00
2 changed files with 19 additions and 15 deletions

19
.build.yml Normal file
View file

@ -0,0 +1,19 @@
image: freebsd/latest
packages:
- tex-formats
- texlive-base
- hs-pandoc
- gmake
artifacts:
- aetherials/release/aetherials.pdf
- aetherials/release/aetherials.epub
sources:
- https://git.sr.ht/~spicywolf/aetherials
tasks:
- build: |
cd aetherials
gmake
- release: |
cd aetherials
gmake release

15
Jenkinsfile vendored
View file

@ -1,15 +0,0 @@
pipeline {
agent { label 'tex' }
stages {
stage('Build') {
steps {
sh 'make'
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/*.{pdf,epub}', fingerprint: true
}
}
}