Compare commits
No commits in common. "ea198341bad53ba651ed7c6d8226f4c630a20b35" and "6c326410fe60542bdb0e8ed95776ad0d9bf1ce16" have entirely different histories.
ea198341ba
...
6c326410fe
19
.build.yml
19
.build.yml
|
@ -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
15
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
pipeline {
|
||||||
|
agent { label 'tex' }
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh 'make'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
archiveArtifacts artifacts: 'build/*.{pdf,epub}', fingerprint: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue