Changeset 14d5461


Ignore:
Timestamp:
Mar 22, 2022, 11:20:30 AM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
Children:
a8e9e9d
Parents:
a76202d
Message:

Fixed incorrect used of $ in jenkins file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    ra76202d r14d5461  
    126126                // Build outside of the src tree to ease cleaning
    127127                dir (BuildDir) {
    128                         sh "make -j $(nproc) --no-print-directory -C libcfa/${Settings.Architecture.name}-debug"
     128                        sh "make -j \$(nproc) --no-print-directory -C libcfa/${Settings.Architecture.name}-debug"
    129129                }
    130130        }
     
    133133                // Build outside of the src tree to ease cleaning
    134134                dir (BuildDir) {
    135                         sh "make -j $(nproc) --no-print-directory -C libcfa/${Settings.Architecture.name}-nodebug"
     135                        sh "make -j \$(nproc) --no-print-directory -C libcfa/${Settings.Architecture.name}-nodebug"
    136136                }
    137137        }
     
    140140                // Build outside of the src tree to ease cleaning
    141141                dir (BuildDir) {
    142                         sh "make -j $(nproc) --no-print-directory install"
     142                        sh 'make -j $(nproc) --no-print-directory install'
    143143                }
    144144        }
     
    161161                Tools.BuildStage('Test: full', Settings.RunAllTests) {
    162162                        dir (BuildDir) {
    163                                         jopt = "-j $(nproc)"
     163                                        jopt = '-j $(nproc)'
    164164                                        if( Settings.Architecture.node == 'x86' ) {
    165                                                 jopt = "-j2"
     165                                                jopt = '-j2'
    166166                                        }
    167167                                        //Run the tests from the tests directory
Note: See TracChangeset for help on using the changeset viewer.