Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion slc10-builder/packer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"commit": true,
"changes": [
"ENTRYPOINT [\"\"]",
"CMD [\"/bin/bash\"]"
"CMD [\"/bin/bash\"]",
"ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
]
}
],
Expand Down
3 changes: 2 additions & 1 deletion slc10-builder/provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ dnf config-manager --set-enabled crb
dnf update -y
dnf groups install -y 'Development Tools'
# python3-{pip,setuptools} and s3cmd needed for Jenkins builds.
dnf install -y alice-o2-full-deps python3-pip python3-setuptools s3cmd time
# pigz: aliBuild uses it in place of gzip for package tarballs when present.
dnf install -y alice-o2-full-deps python3-pip python3-setuptools s3cmd time pigz

curl https://s3.cern.ch/swift/v1/alibuild-repo/bin/recc -L -o /usr/bin/recc
chmod +x /usr/bin/recc
Expand Down