File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 47
47
# shell: bash
48
48
# run: VERBOSE=1 singularity exec $SI cmake --install ${{inputs.path}}/build --config ${{inputs.build_type}}
49
49
50
- - name : configure, build and install libmpdata++
50
+ - name : configure and build libmpdata++
51
51
working-directory : ${{inputs.path}}
52
52
shell : bash
53
- run : VERBOSE=1 singularity exec $SI bash -c "cmake -B ${{inputs.path}}/build -DCMAKE_BUILD_TYPE=${{inputs.build_type}} -DCMAKE_INSTALL_PREFIX=${{inputs.install_prefix}} -DCMAKE_CXX_COMPILER=${{inputs.cxx}};cmake --build ${{inputs.path}}/build --config ${{inputs.build_type}} -j${{inputs.threads}};sudo cmake --install ${{inputs.path}}/build --config ${{inputs.build_type}}"
53
+ run : VERBOSE=1 singularity exec $SI bash -c "cmake -B ${{inputs.path}}/build -DCMAKE_BUILD_TYPE=${{inputs.build_type}} -DCMAKE_INSTALL_PREFIX=${{inputs.install_prefix}} -DCMAKE_CXX_COMPILER=${{inputs.cxx}};cmake --build ${{inputs.path}}/build --config ${{inputs.build_type}} -j${{inputs.threads}}"
54
+
55
+ - name : install libmpdata++
56
+ working-directory : ${{inputs.path}}
57
+ shell : bash
58
+ run : sudo cmake --install ${{inputs.path}}/build --config ${{inputs.build_type}}
You can’t perform that action at this time.
0 commit comments