myheats

Live heats, scoring and leaderboard for sport events
git clone https://git.in0rdr.ch/myheats.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

Jenkinsfile (536B)


      1 @Library('in0rdr-jenkins-lib@master') _
      2 
      3 def updatecli = new Updatecli(this)
      4 def trivy = new Trivy(this)
      5 
      6 // https://plugins.jenkins.io/hashicorp-vault-plugin/#user-content-usage-via-jenkinsfile
      7 def secrets = [
      8     [path: 'kv/jenkins-secrets/git', secretValues: [
      9         [envVar: 'GIT_USERNAME', vaultKey: 'username'],
     10         [envVar: 'GIT_PASSWORD', vaultKey: 'password']
     11     ]]
     12 ]
     13 
     14 node('podman'){
     15   checkout scm
     16   gitleaks()
     17 
     18   withVault([vaultSecrets: secrets]) {
     19     updatecli.run('apply')
     20     trivy.vuln()
     21     trivy.sbom()
     22   }
     23 }