From 7023790b84d5d5d5e75ef941c6140b81e70a855d Mon Sep 17 00:00:00 2001 From: Colm Talbot <colm.talbot@ligo.org> Date: Wed, 19 Oct 2022 19:55:06 +0000 Subject: [PATCH] TEST: Add ptmcmcsampler back to test images --- .gitlab-ci.yml | 7 +++++-- containers/v3-dockerfile-test-suite-python310 | 2 +- containers/v3-dockerfile-test-suite-python38 | 2 +- containers/v3-dockerfile-test-suite-python39 | 2 +- containers/write_dockerfiles.py | 6 +++--- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d32a7266f..5a977d8e4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -251,8 +251,11 @@ pages: stage: deploy image: docker:20.10.12 needs: ["containers"] - only: - - schedules + except: + refs: + - schedules + changes: + - containers/* script: - cd containers - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY diff --git a/containers/v3-dockerfile-test-suite-python310 b/containers/v3-dockerfile-test-suite-python310 index 0c5afe520..71fd9f377 100644 --- a/containers/v3-dockerfile-test-suite-python310 +++ b/containers/v3-dockerfile-test-suite-python310 @@ -32,7 +32,7 @@ RUN conda install -n ${conda_env} -c conda-forge scikit-image celerite george # Install dependencies and samplers RUN pip install corner healpy cython tables -RUN conda install -n ${conda_env} dynesty emcee nestle ptemcee pymultinest ultranest cpnest kombine dnest4 zeus-mcmc pytorch pymc nessai -c conda-forge -c pytorch +RUN conda install -n ${conda_env} dynesty emcee nestle ptemcee pymultinest ultranest cpnest kombine dnest4 zeus-mcmc pytorch pymc nessai ptmcmcsampler -c conda-forge -c pytorch # Install Polychord RUN apt-get update --allow-releaseinfo-change diff --git a/containers/v3-dockerfile-test-suite-python38 b/containers/v3-dockerfile-test-suite-python38 index f8301025c..bde0d526d 100644 --- a/containers/v3-dockerfile-test-suite-python38 +++ b/containers/v3-dockerfile-test-suite-python38 @@ -32,7 +32,7 @@ RUN conda install -n ${conda_env} -c conda-forge scikit-image celerite george # Install dependencies and samplers RUN pip install corner healpy cython tables -RUN conda install -n ${conda_env} dynesty emcee nestle ptemcee pymultinest ultranest cpnest kombine dnest4 zeus-mcmc pytorch pymc nessai -c conda-forge -c pytorch +RUN conda install -n ${conda_env} dynesty emcee nestle ptemcee pymultinest ultranest cpnest kombine dnest4 zeus-mcmc pytorch pymc nessai ptmcmcsampler -c conda-forge -c pytorch # Install Polychord RUN apt-get update --allow-releaseinfo-change diff --git a/containers/v3-dockerfile-test-suite-python39 b/containers/v3-dockerfile-test-suite-python39 index d436cdfc6..5dbafefa3 100644 --- a/containers/v3-dockerfile-test-suite-python39 +++ b/containers/v3-dockerfile-test-suite-python39 @@ -32,7 +32,7 @@ RUN conda install -n ${conda_env} -c conda-forge scikit-image celerite george # Install dependencies and samplers RUN pip install corner healpy cython tables -RUN conda install -n ${conda_env} dynesty emcee nestle ptemcee pymultinest ultranest cpnest kombine dnest4 zeus-mcmc pytorch pymc nessai -c conda-forge -c pytorch +RUN conda install -n ${conda_env} dynesty emcee nestle ptemcee pymultinest ultranest cpnest kombine dnest4 zeus-mcmc pytorch pymc nessai ptmcmcsampler -c conda-forge -c pytorch # Install Polychord RUN apt-get update --allow-releaseinfo-change diff --git a/containers/write_dockerfiles.py b/containers/write_dockerfiles.py index 3dc242ac4..14bb63ebe 100644 --- a/containers/write_dockerfiles.py +++ b/containers/write_dockerfiles.py @@ -10,17 +10,17 @@ conda_sampler_dict = dict( python38=[ "dynesty", "emcee", "nestle", "ptemcee", "pymultinest", "ultranest", "cpnest", "kombine", "dnest4", "zeus-mcmc", - "pytorch", "pymc", "nessai", + "pytorch", "pymc", "nessai", "ptmcmcsampler", ], python39=[ "dynesty", "emcee", "nestle", "ptemcee", "pymultinest", "ultranest", "cpnest", "kombine", "dnest4", "zeus-mcmc", - "pytorch", "pymc", "nessai", + "pytorch", "pymc", "nessai", "ptmcmcsampler", ], python310=[ "dynesty", "emcee", "nestle", "ptemcee", "pymultinest", "ultranest", "cpnest", "kombine", "dnest4", "zeus-mcmc", - "pytorch", "pymc", "nessai", + "pytorch", "pymc", "nessai", "ptmcmcsampler", ] ) -- GitLab