Skip to content

Commit 83547d2

Browse files
committed
fix: all apptainer build commands will write to logs
1 parent e8b88b1 commit 83547d2

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

build.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@
7070
--build-arg MPI_IMPLEMENTATION={{ item.mpi.implementation }} \
7171
--build-arg MPI_VERSION={{ item.mpi.version }} \
7272
{{ original_dir }}/containers/basic/{{ item.os.distro }}-{{ item.os.version }}-{{ item.mpi.implementation }}-{{ item.mpi.version }}.sif \
73-
{{ playbook_dir }}/basic/{{ item.mpi.implementation }}.def
73+
{{ playbook_dir }}/basic/{{ item.mpi.implementation }}.def \
74+
> {{ item.os.distro }}-{{ item.os.version }}-{{ item.mpi.implementation }}-{{ item.mpi.version }}.log 2>&1
7475
else
7576
echo "Container {{ original_dir }}/containers/basic/{{ item.os.distro }}-{{ item.os.version }}-{{ item.mpi.implementation }}-{{ item.mpi.version }}.sif already exists. Skipping build."
7677
fi
@@ -100,7 +101,8 @@
100101
--build-arg FRAMEWORK_VERSION={{ item.1.framework.version }} \
101102
--build-arg FRAMEWORK_GIT_REF={{ item.1.framework.git_ref | default('default') }} \
102103
{{ original_dir }}/containers/basic/{{ item.0 }}.sif \
103-
{{ playbook_dir }}/basic/{{ item.1.framework.definition }}.def
104+
{{ playbook_dir }}/basic/{{ item.1.framework.definition }}.def \
105+
> {{ item.0 }}.log 2>&1
104106
else
105107
echo "Container {{ original_dir }}/containers/basic/{{ item.1.framework.definition }}.sif already exists. Skipping build."
106108
fi
@@ -142,5 +144,6 @@
142144
--build-arg FRAMEWORK_VERSION={{ containers.basic[item.base_container].framework.version }} \
143145
--build-arg FRAMEWORK_GIT_REF={{ containers.basic[item.base_container].framework.git_ref | default('default') }} \
144146
{{ original_dir }}/containers/projects/{{ item.name }}.sif \
145-
{{ original_dir }}/{{ item.definition }}
147+
{{ original_dir }}/{{ item.definition }} \
148+
> {{ item.name }}.log 2>&1
146149
loop: "{{ projects | list }}"

0 commit comments

Comments
 (0)