Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • opensrc/software-testing/python3-testing
1 result
Show changes
Commits on Source (2)
......@@ -16,7 +16,7 @@ USER root
ENV DEBIAN_FRONTEND=noninteractive
# install basic software
RUN apt update && apt install git build-essential -y
RUN (apt update && apt install git build-essential -y ) || yum groupinstall 'Development Tools' -y
# checkout and build the cpython suite.
RUN mkdir /work && \
......