Changeset 0a10dc8 for Jenkins/Promote


Ignore:
Timestamp:
Sep 11, 2025, 11:35:17 PM (2 weeks ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
8730e57
Parents:
a307552
Message:

update groovy scripts to suppress warning messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkins/Promote

    ra307552 r0a10dc8  
    11#!groovy
    22
     3// Globals
     4@Field def BuildDir   = pwd tmp: true
     5@Field def SrcDir     = pwd tmp: false
     6@Field def RemoteRepo = 'git@github.com:cforall/cforall.git'
     7@Field def ArchiveUrl = 'https://cforall.uwaterloo.ca/jenkins/job/Cforall_Distribute_Ref/lastSuccessfulBuild/artifact/*zip*/archive.zip'
     8
     9// Local variables
     10def err = null
     11def log_needed = false
     12
    313node {
    4         // Globals
    5         BuildDir   = pwd tmp: true
    6         SrcDir     = pwd tmp: false
    7         RemoteRepo = 'git@github.com:cforall/cforall.git'
    8         ArchiveUrl = 'https://cforall.uwaterloo.ca/jenkins/job/Cforall_Distribute_Ref/lastSuccessfulBuild/artifact/*zip*/archive.zip'
    9 
    10         // Local variables
    11         def err = null
    12         def log_needed = false
    13 
    1414        currentBuild.result = "SUCCESS"
    1515
    16         //Wrap build to add timestamp to command line
     16        // Wrap build to add timestamp to command line
    1717        wrap([$class: 'TimestamperBuildWrapper']) {
    18 
    1918                PrepRepo();
    20 
    2119                def name = GetArchive();
    22 
    2320                PushRepo(name);
    2421        }
    25 
    2622}
    2723
     
    5955                }
    6056        }
    61 
    6257        return tarball
    6358}
Note: See TracChangeset for help on using the changeset viewer.