Skip to content

Commit 6f937eb

Browse files
committed
change quoting and reporting of library install paths
1 parent efdf4c8 commit 6f937eb

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/nestbuildmatrix.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ jobs:
711711
CMAKE_C_COMPILER_LAUNCHER: ccache
712712
CMAKE_CXX_COMPILER_LAUNCHER: ccache
713713
run: |
714-
mkdir -p "$NEST_VPATH/reports" "$NEST_RESULT"
714+
mkdir -pv "$NEST_VPATH/reports" "$NEST_RESULT"
715715
716716
if [ "$xNEST_BUILD_COMPILER" = "CLANG" ]; then
717717
export CC=clang-11
@@ -733,9 +733,9 @@ jobs:
733733
-Dwith-ltdl=${{ contains(matrix.use, 'ltdl') && 'ON' || 'OFF' }} \
734734
-Dwith-readline=${{ contains(matrix.use, 'readline') && 'ON' || 'OFF' }} \
735735
-Dwith-hdf5=${{ contains(matrix.use, 'hdf5') && 'ON' || 'OFF' }} \
736-
-Dwith-sionlib=${{ contains(matrix.use, 'sionlib') && '$HOME/.cache/sionlib.install' || 'OFF' }} \
737-
-Dwith-libneurosim=${{ contains(matrix.use, 'libneurosim') && '$HOME/.cache/libneurosim.install' || 'OFF' }} \
738-
-Dwith-music=${{ contains(matrix.use, 'music') && '$HOME/.cache/music.install' || 'OFF' }} \
736+
-Dwith-sionlib=${{ contains(matrix.use, 'sionlib') && "{$HOME}/.cache/sionlib.install" || 'OFF' }} \
737+
-Dwith-libneurosim=${{ contains(matrix.use, 'libneurosim') && "${HOME}/.cache/libneurosim.install" || 'OFF' }} \
738+
-Dwith-music=${{ contains(matrix.use, 'music') && "${HOME}/.cache/music.install" || 'OFF' }} \
739739
..
740740
741741
- name: "Add GCC problem matcher"
@@ -760,7 +760,7 @@ jobs:
760760
- name: "Initialize Matplotlibrc"
761761
run: |
762762
# initialize matplotlib backend
763-
mkdir -p $HOME/.matplotlib
763+
mkdir -pv $HOME/.matplotlib
764764
echo "backend : svg" > $HOME/.matplotlib/matplotlibrc
765765
766766
- name: "Run NEST testsuite"
@@ -846,7 +846,7 @@ jobs:
846846
847847
- name: "Configure NEST build"
848848
run: |
849-
mkdir -p "$NEST_VPATH/reports" "$NEST_RESULT"
849+
mkdir -pv "$NEST_VPATH/reports" "$NEST_RESULT"
850850
851851
cd "$NEST_VPATH"
852852
cmake \
@@ -890,7 +890,7 @@ jobs:
890890
- name: "Initialize Matplotlibrc"
891891
run: |
892892
# initialize matplotlib backend
893-
mkdir -p $HOME/.matplotlib
893+
mkdir -pv $HOME/.matplotlib
894894
echo "backend : svg" > $HOME/.matplotlib/matplotlibrc
895895
896896
- name: "Run NEST testsuite"

build_support/install_sionlib.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euo pipefail
33

44
SIONLIBVERSION="1.7.4"
5-
SIONLIB_INSTALL_PATH="${1:-${HOME}/.cache/csa.install}"
5+
SIONLIB_INSTALL_PATH="${1:-${HOME}/.cache/sionlib.install}"
66

77
# Install SIONlib
88
wget --content-disposition "http://apps.fz-juelich.de/jsc/sionlib/download.php?version=${SIONLIBVERSION}"

examples/nest/Potjans_2014/run_microcircuit.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ OUTPUT_PATH="$(cd "$OUTPUT_PATH" || exit 1; pwd)"
3737
NEST_PATH="$(grep '/nest_path' sim_params.sli | cut -d '(' -f2 | cut -d ')' -f1)"
3838

3939
# Prepare output directory
40-
mkdir -p "$OUTPUT_PATH"
40+
mkdir -pv "$OUTPUT_PATH"
4141
cp 'sim_params.sli' "$OUTPUT_PATH"
4242
cp 'network_params.sli' "$OUTPUT_PATH"
4343
cp 'microcircuit.sli' "$OUTPUT_PATH"

examples/run_examples.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ for i in "${EXAMPLES[@]}"; do
118118
output_dir="$basedir/example_logs/$example"
119119
logfile="$output_dir/output.log"
120120
metafile="$output_dir/meta.yaml"
121-
mkdir -p "$output_dir"
121+
mkdir -pv "$output_dir"
122122

123123
echo ">>> RUNNING: $workdir/$example"
124124
echo " LOGFILE: $logfile"

0 commit comments

Comments
 (0)