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 22
22
--tag pyhf/pyhf-validation-root-base:$GITHUB_SHA \
23
23
--compress
24
24
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"
25
29
- name : Run tests
26
30
run : |
27
31
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 && \
12
12
conda config --set allow_softlinks false && \
13
13
conda config --set always_copy true
14
14
RUN conda create --yes --quiet -p /opt/condaenv \
15
- "root_base =$ROOT_VERSION" \
15
+ "root-binaries =$ROOT_VERSION" \
16
16
"python=$PYTHON_VERSION"
17
17
# Forcibly remove some packages to make the final image smaller
18
18
# c.f. https://github.com/conda-forge/root-feedstock/blob/master/recipe/meta.yaml
19
19
RUN eval "$(python -m conda shell.bash hook)" && \
20
20
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
26
28
RUN rm -rf /opt/condaenv/tutorials /opt/condaenv/ui5
27
29
28
30
FROM base
You can’t perform that action at this time.
0 commit comments