File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ defaults:
12
12
composable : true
13
13
# if this is not a thing which exist
14
14
# I will do a singularity pull
15
- container_src : ' docker://redhat/ubi8:8.6 '
15
+ container_src : ' docker://redhat/ubi8:8.10 '
16
16
# name of the container image when on disk
17
17
container_image : container.sif
18
18
sqfs_image : img.sqfs
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ curl https://repo.anaconda.com/miniconda/Miniconda3-$CW_CONDA_VERSION-$CW_CONDA_
16
16
print_info " Installing miniconda " 1
17
17
bash Miniconda_inst.sh -b -p $CW_INSTALLATION_PATH /miniconda > $CW_BUILD_TMPDIR /_inst_miniconda.log &
18
18
inst_pid=$!
19
- follow_log $inst_pid $CW_BUILD_TMPDIR /_inst_miniconda.log 10
19
+ follow_log $inst_pid $CW_BUILD_TMPDIR /_inst_miniconda.log 20
20
20
rm Miniconda_inst.sh
21
21
eval " $( $CW_INSTALLATION_PATH /miniconda/bin/conda shell.bash hook) "
22
22
cd $CW_WORKDIR
39
39
fi
40
40
41
41
inst_pid=$!
42
- follow_log $inst_pid $CW_BUILD_TMPDIR /build.log 10
42
+ follow_log $inst_pid $CW_BUILD_TMPDIR /build.log 20
43
43
wait $inst_pid
44
44
conda activate $CW_ENV_NAME
45
45
if [[ ${CW_REQUIREMENTS_FILE+defined} ]]; then
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if [[ ${CW_REQUIREMENTS_FILE+defined} ]];then
13
13
pip install -r $( basename " $CW_REQUIREMENTS_FILE " ) > $CW_BUILD_TMPDIR /_pip.log &
14
14
bg_pid=$!
15
15
wait $bg_pid
16
- follow_log $bg_pid $CW_BUILD_TMPDIR /_pip.log 10
16
+ follow_log $bg_pid $CW_BUILD_TMPDIR /_pip.log 20
17
17
fi
18
18
cd $CW_WORKDIR
19
19
source $CW_INSTALLATION_PATH /_post_install.sh
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ if [[ ${CW_REQUIREMENTS_FILE+defined} ]];then
29
29
pip install --disable-pip-version-check -r " $( basename $CW_REQUIREMENTS_FILE ) " > $CW_BUILD_TMPDIR /_pip.log &
30
30
bg_pid=$!
31
31
wait $bg_pid
32
- follow_log $bg_pid $CW_BUILD_TMPDIR /_pip.log 10
32
+ follow_log $bg_pid $CW_BUILD_TMPDIR /_pip.log 20
33
33
fi
34
34
cd $CW_WORKDIR
35
35
print_info " Running user supplied commands" 1
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ if [[ ${CW_REQUIREMENTS_FILE+defined} ]];then
19
19
pip install --disable-pip-version-check -r " $( basename $CW_REQUIREMENTS_FILE ) " > $CW_BUILD_TMPDIR /_pip.log &
20
20
bg_pid=$!
21
21
wait $bg_pid
22
- follow_log $bg_pid $CW_BUILD_TMPDIR /_pip.log 10
22
+ follow_log $bg_pid $CW_BUILD_TMPDIR /_pip.log 20
23
23
fi
24
24
cd $CW_WORKDIR
25
25
# print_info "Running user supplied commands" 1
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ dependencies:
55
55
" > conda_broken.yaml
56
56
echo " GARBAGE" > conda_env.txt
57
57
58
- t_run " conda-containerize new conda_base.yml --prefix NOT_A_DIR | grep ERROR " " Missing install dir causes error "
58
+ t_run " conda-containerize new conda_base.yml --prefix NOT_A_DIR" " Missing install dir is created "
59
59
mkdir A_DIR_NO_WRITE
60
60
chmod ugo-w A_DIR_NO_WRITE
61
61
t_run " conda-containerize new conda_base.yml --prefix A_DIR_NO_WRITE | grep ERROR" " Installation dir has to be writable"
You can’t perform that action at this time.
0 commit comments