This commit is contained in:
Ren Kararou 2023-11-29 00:21:02 -06:00
parent 6c326410fe
commit 1378be714c
Signed by: spicywolf
GPG key ID: B0BA4EEC0714F8E6
2 changed files with 18 additions and 15 deletions

18
.build.yml Normal file
View file

@ -0,0 +1,18 @@
image: freebsd/latest
packages:
- texlive-full
- 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
}
}
}