Compare commits

..

No commits in common. "ea198341bad53ba651ed7c6d8226f4c630a20b35" and "6c326410fe60542bdb0e8ed95776ad0d9bf1ce16" have entirely different histories.

2 changed files with 15 additions and 19 deletions

View file

@ -1,19 +0,0 @@
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 Normal file
View file

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