File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 2222 --tag pyhf/pyhf-validation-root-base:$GITHUB_SHA \
2323 --compress
2424 docker images
25+ - name : Check PATH
26+ run : |
27+ docker run --rm pyhf/pyhf-validation-root-base:$GITHUB_SHA -c "which python;python --version;which root;root-config --version;hist2workspace --help"
28+ docker run --rm pyhf/pyhf-validation-root-base:$GITHUB_SHA -c "which curl;which tar"
2529 - name : Run tests
2630 run : |
2731 docker run --rm -v $PWD:$PWD -w $PWD pyhf/pyhf-validation-root-base:$GITHUB_SHA -c "python tests/rf308_normintegration2d.py"
Original file line number Diff line number Diff line change @@ -12,17 +12,19 @@ RUN conda config --add channels conda-forge && \
1212 conda config --set allow_softlinks false && \
1313 conda config --set always_copy true
1414RUN conda create --yes --quiet -p /opt/condaenv \
15- "root_base =$ROOT_VERSION" \
15+ "root-binaries =$ROOT_VERSION" \
1616 "python=$PYTHON_VERSION"
1717# Forcibly remove some packages to make the final image smaller
1818# c.f. https://github.com/conda-forge/root-feedstock/blob/master/recipe/meta.yaml
1919RUN eval "$(python -m conda shell.bash hook)" && \
2020 conda activate /opt/condaenv && \
21- conda install -y \
22- libblas \
23- libcblas \
24- fftw \
25- zlib
21+ conda remove --yes --force-remove \
22+ pythia8 \
23+ qt \
24+ libllvm9 \
25+ libclang \
26+ pandoc \
27+ xrootd
2628RUN rm -rf /opt/condaenv/tutorials /opt/condaenv/ui5
2729
2830FROM base
You can’t perform that action at this time.
0 commit comments