We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68bb5a9 commit 384cb54Copy full SHA for 384cb54
templates/build.yaml
@@ -7,10 +7,17 @@ parameters:
7
default: False
8
- name: builddir
9
type: string
10
- default: 'procdump_build'
+ default: 'procdump_build'
11
+- name: ldpath
12
+ type: string
13
+ default: ''
14
15
steps:
16
- script: |
17
+ if [ -n "${{ parameters.ldpath }}" ]; then
18
+ export LD_LIBRARY_PATH="${{ parameters.ldpath }}:$LD_LIBRARY_PATH"
19
+ fi
20
+
21
mkdir -p ${{ parameters.srcPath }}/${{ parameters.builddir }} && cd ${{ parameters.srcPath }}/${{ parameters.builddir }}
22
cmake ..
23
make
0 commit comments