Skip to content
Merged
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
13 changes: 12 additions & 1 deletion config/docker/cros-tast.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ RUN apt-get update && apt-get install --no-install-recommends -y \

{{ super() }}

ADD https://raw.githubusercontent.com/kernelci/kernelci-core/\
staging.kernelci.org/\
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be changed to

Suggested change
staging.kernelci.org/\
kernelci.org/\

once deployed to production

config/docker/data/gcov_pack.sh \
/home/cros/gcov_pack.sh

ADD https://raw.githubusercontent.com/kernelci/kernelci-core/\
staging.kernelci.org/\
config/docker/data/gcov_reset.sh \
/home/cros/gcov_reset.sh

ADD https://raw.githubusercontent.com/kernelci/kernelci-core/\
kernelci.org/\
config/docker/data/tast_parser.py \
Expand All @@ -38,7 +48,8 @@ rootfs/debos/overlays/fluster/usr/bin/fluster_parser.py \

# Needed by LAVA to install the overlay
USER root
RUN chmod +x /home/cros/tast_parser.py /home/cros/ssh_retry.sh
RUN chmod +x /home/cros/tast_parser.py /home/cros/ssh_retry.sh \
/home/cros/gcov_pack.sh /home/cros/gcov_reset.sh

# Create symlink to /usr/local/bin for tast gs:// downloads
RUN ln -s /home/cros/trunk/chromite/bin/gsutil /usr/local/bin/
Expand Down