cv-bubble

Personal PDF CV, fork of github.com/mateuszbaransanok/BubbleCV
git clone https://git.in0rdr.ch/cv-bubble.git
Log | Files | Refs | Pull requests | README | LICENSE

Jenkinsfile (447B)


      1 @Library('in0rdr-jenkins-lib@master') _
      2 
      3 node('podman'){
      4   checkout scm
      5 
      6   stage('build-pdf') {
      7       docker.image('registry.gitlab.com/islandoftex/images/texlive:latest')
      8       .inside('-u root --entrypoint=""') {
      9           sh '''
     10           pwd
     11           ls -l
     12           latexmk -c
     13           latexmk -pdf main.tex
     14           '''
     15       }
     16   }
     17   post {
     18       always {
     19           archiveArtifacts artifacts: 'main.pdf', fingerprint: true
     20       }
     21   }
     22 }