Changes in / [5d125e4:873ffb7]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Jenkins/FullBuild

    r5d125e4 r873ffb7  
    2828                def out_dir = pwd tmp: true
    2929                sh "mkdir -p ${out_dir}"
     30
     31                //checkout the code to make sure this is a valid git repo
     32                checkout scm
    3033
    3134                //parse git logs to find what changed
  • src/tests/test.py

    r5d125e4 r873ffb7  
    2626                makefile = file.read()
    2727                m = re.search("CFA_FLAGS\s*=\s*-m(.*)", makefile)
    28                 return m.group(1)
     28                return m.group(1) if m else '64'
    2929
    3030# reads the directory ./.expect and indentifies the tests
Note: See TracChangeset for help on using the changeset viewer.