From 54193b832cacea1f2f80c8324b899b792f92d1a7 Mon Sep 17 00:00:00 2001 From: Greg Bryan Date: Tue, 15 Aug 2023 13:33:53 -0400 Subject: [PATCH 01/23] Added small change to GalaxySimulation to initialize the particle boundary in the exterior boundary condition. --- src/enzo/GalaxySimulationInitialize.C | 1 + 1 file changed, 1 insertion(+) diff --git a/src/enzo/GalaxySimulationInitialize.C b/src/enzo/GalaxySimulationInitialize.C index 0fa914b3c..5f06b2c9b 100644 --- a/src/enzo/GalaxySimulationInitialize.C +++ b/src/enzo/GalaxySimulationInitialize.C @@ -494,6 +494,7 @@ int GalaxySimulationInitialize(FILE *fptr, FILE *Outfptr, if (MetaData.TopGridRank > 2) Exterior.InitializeExternalBoundaryFace(2, inflow, outflow, InflowValue, Dummy); + Exterior.InitializeExternalBoundaryParticles(MetaData.ParticleBoundaryType); /* Set Global Variables for RPS Wind (see ExternalBoundary_SetGalaxySimulationBoundary.C)*/ From d13f0bb3a2c7e3a9c03df46228420caf22c6ffc7 Mon Sep 17 00:00:00 2001 From: Mihir Kulkarni Date: Tue, 5 Sep 2023 18:34:11 -0400 Subject: [PATCH 02/23] removed particle mass multiplier added for init ICs that can cause error with MUSIC ICs --- .../Grid_NestedCosmologySimulationInitializeGrid.C | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/enzo/Grid_NestedCosmologySimulationInitializeGrid.C b/src/enzo/Grid_NestedCosmologySimulationInitializeGrid.C index 6c727b84b..17686d3a4 100644 --- a/src/enzo/Grid_NestedCosmologySimulationInitializeGrid.C +++ b/src/enzo/Grid_NestedCosmologySimulationInitializeGrid.C @@ -1474,19 +1474,6 @@ int grid::NestedCosmologySimulationInitializeGrid( if (CosmologySimulationManuallySetParticleMassRatio == FALSE) { - // If there are exactly 1/8 as many particles as cells, - // then set the particle mass to 8 times the usual - - int NumberOfActiveCells = (GridEndIndex[0]-GridStartIndex[0]+1)* - (GridEndIndex[1]-GridStartIndex[1]+1)* - (GridEndIndex[2]-GridStartIndex[2]+1); - if (NumberOfParticles*8 == NumberOfActiveCells) - UniformParticleMass *= 8; - if (NumberOfParticles == NumberOfActiveCells*8) - UniformParticleMass /= 8; - - // UniformParticleMass *= float(POW(TotalRefinement, GridRank)); - // Issue a warning if PPIO or PRGIO are on (possibility of errors // being caused) if( ((ParallelParticleIO == TRUE) || (ParallelRootGridIO == TRUE)) && From a35ef3adda0f455089df0a3fefbd245faadd88ad Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Wed, 20 Sep 2023 10:24:10 -0400 Subject: [PATCH 03/23] Update CircleCI Python several versions for future proofing --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3051e6a5a..3a98875c7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -189,7 +189,7 @@ commands: jobs: test-suite: docker: - - image: cimg/python:3.8.5 + - image: cimg/python:3.11.5 resource_class: large working_directory: ~/enzo-dev @@ -237,7 +237,7 @@ jobs: test-compile-options: docker: - - image: cimg/python:3.8.5 + - image: cimg/python:3.11.5 resource_class: large working_directory: ~/enzo-dev @@ -268,7 +268,7 @@ jobs: docs-build: docker: - - image: cimg/python:3.8.5 + - image: cimg/python:3.11.5 working_directory: ~/enzo-dev From 989aee2a316fe7615caeb0c3404a2faa35ae9a39 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Wed, 20 Sep 2023 10:55:39 -0400 Subject: [PATCH 04/23] Fortran type flag --- src/enzo/Make.mach.ubuntu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/enzo/Make.mach.ubuntu b/src/enzo/Make.mach.ubuntu index 4aa38a2e0..ce7d37e2e 100644 --- a/src/enzo/Make.mach.ubuntu +++ b/src/enzo/Make.mach.ubuntu @@ -60,8 +60,8 @@ MACH_DEFINES = -DLINUX -DH5_USE_16_API MACH_CPPFLAGS = -P -traditional MACH_CFLAGS = MACH_CXXFLAGS = -MACH_FFLAGS = -fno-second-underscore -ffixed-line-length-132 -MACH_F90FLAGS = -fno-second-underscore +MACH_FFLAGS = -finteger-4-integer-8 -fno-second-underscore -ffixed-line-length-132 +MACH_F90FLAGS = -finteger-4-integer-8 -fno-second-underscore MACH_LDFLAGS = #----------------------------------------------------------------------- From 302e5818336c9fc7dc78faf6e2d827a911968dec Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Wed, 20 Sep 2023 11:03:27 -0400 Subject: [PATCH 05/23] Another Fortran flag --- src/enzo/Make.mach.ubuntu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/enzo/Make.mach.ubuntu b/src/enzo/Make.mach.ubuntu index ce7d37e2e..6f69a3a29 100644 --- a/src/enzo/Make.mach.ubuntu +++ b/src/enzo/Make.mach.ubuntu @@ -60,8 +60,8 @@ MACH_DEFINES = -DLINUX -DH5_USE_16_API MACH_CPPFLAGS = -P -traditional MACH_CFLAGS = MACH_CXXFLAGS = -MACH_FFLAGS = -finteger-4-integer-8 -fno-second-underscore -ffixed-line-length-132 -MACH_F90FLAGS = -finteger-4-integer-8 -fno-second-underscore +MACH_FFLAGS = -fallow-argument-mismatch -finteger-4-integer-8 -fno-second-underscore -ffixed-line-length-132 +MACH_F90FLAGS = -fallow-argument-mismatch -finteger-4-integer-8 -fno-second-underscore MACH_LDFLAGS = #----------------------------------------------------------------------- From 59d9345f8d7d3f29986764bee0bc1353a829008f Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Mon, 25 Sep 2023 13:55:41 -0400 Subject: [PATCH 06/23] Try alt Fortran flag --- src/enzo/Make.mach.ubuntu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/enzo/Make.mach.ubuntu b/src/enzo/Make.mach.ubuntu index 6f69a3a29..3b2a0ad05 100644 --- a/src/enzo/Make.mach.ubuntu +++ b/src/enzo/Make.mach.ubuntu @@ -60,8 +60,8 @@ MACH_DEFINES = -DLINUX -DH5_USE_16_API MACH_CPPFLAGS = -P -traditional MACH_CFLAGS = MACH_CXXFLAGS = -MACH_FFLAGS = -fallow-argument-mismatch -finteger-4-integer-8 -fno-second-underscore -ffixed-line-length-132 -MACH_F90FLAGS = -fallow-argument-mismatch -finteger-4-integer-8 -fno-second-underscore +MACH_FFLAGS = -std=legacy -fno-second-underscore -ffixed-line-length-132 +MACH_F90FLAGS = -std=legacy -fno-second-underscore MACH_LDFLAGS = #----------------------------------------------------------------------- From 3bde0790b5c06b1617eee4d906316a6b0a3ebf2f Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Mon, 25 Sep 2023 14:28:57 -0400 Subject: [PATCH 07/23] Save out.compile for build & test CI --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3a98875c7..715ab65dc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -235,6 +235,9 @@ jobs: skipfile: notafile flags: --clobber + - store_artifacts: + path: ~/enzo-dev/src/enzo/out.compile + test-compile-options: docker: - image: cimg/python:3.11.5 From 4d020920bc93b5a3ab59c56af264dd25517d8d13 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Tue, 10 Oct 2023 12:22:41 -0400 Subject: [PATCH 08/23] update gold standard tag --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 715ab65dc..18057a205 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -217,16 +217,16 @@ jobs: - restore_cache: name: "Restore test answers." - key: test-answers-v15a + key: test-answers-v16a - build-and-test: - tag: gold-standard-v15 + tag: gold-standard-v16 skipfile: ~/enzo_test/push_suite flags: --answer-store - save_cache: name: "Save test answers cache." - key: test-answers-v15a + key: test-answers-v16a paths: - ~/enzo_test/push_suite From 20ea3b9c46ad07863aee067b305900dae97a6685 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Thu, 7 Dec 2023 12:56:07 -0500 Subject: [PATCH 09/23] Updated dep tag to reset CircleCI cache --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 18057a205..e0fc36767 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -200,13 +200,13 @@ jobs: - restore_cache: name: "Restore dependencies cache." - key: dependencies-v3 + key: dependencies-v4 - install-dependencies - save_cache: name: "Save dependencies cache" - key: dependencies-v3 + key: dependencies-v4 paths: - ~/.cache/pip - ~/venv @@ -251,13 +251,13 @@ jobs: - restore_cache: name: "Restore dependencies cache." - key: dependencies-v3 + key: dependencies-v4 - install-dependencies - save_cache: name: "Save dependencies cache" - key: dependencies-v3 + key: dependencies-v4 paths: - ~/.cache/pip - ~/venv From 69d9e7b19239f81dfbc2e9512a3d349f77be6b0d Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Tue, 19 Dec 2023 17:56:19 -0500 Subject: [PATCH 10/23] Downgrade Python image for nose compatibility --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e0fc36767..626160f66 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -189,7 +189,7 @@ commands: jobs: test-suite: docker: - - image: cimg/python:3.11.5 + - image: cimg/python:3.10.13 resource_class: large working_directory: ~/enzo-dev From 575c0ac475b89b0eef5354004d048a914a9ddbff Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Tue, 19 Dec 2023 18:00:05 -0500 Subject: [PATCH 11/23] This image doesn't have python3?? --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 626160f66..3e3e4478c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,7 +29,7 @@ commands: source $BASH_ENV sudo apt-get update sudo apt-get install -y csh libhdf5-serial-dev libopenmpi-dev openmpi-bin gfortran libtool-bin xutils-dev - python3 -m venv $HOME/venv + python -m venv $HOME/venv source $HOME/venv/bin/activate pip install --upgrade pip pip install --upgrade wheel @@ -76,7 +76,7 @@ commands: command: | sudo apt-get update sudo apt-get install -y dvipng texlive-latex-extra - python3 -m venv $HOME/venv + python -m venv $HOME/venv source $HOME/venv/bin/activate pip install --upgrade pip pip install --upgrade wheel From b77d994cfad79dc180d909c3e119489cb2ffb234 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Tue, 19 Dec 2023 18:03:37 -0500 Subject: [PATCH 12/23] Missed some image names --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3e3e4478c..c09b03a1a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -240,7 +240,7 @@ jobs: test-compile-options: docker: - - image: cimg/python:3.11.5 + - image: cimg/python:3.10.13 resource_class: large working_directory: ~/enzo-dev @@ -271,7 +271,7 @@ jobs: docs-build: docker: - - image: cimg/python:3.11.5 + - image: cimg/python:3.10.13 working_directory: ~/enzo-dev From d526bd2ca1f177a77d41a5a350ffeafbdac5f4de Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Tue, 19 Dec 2023 18:05:19 -0500 Subject: [PATCH 13/23] Put the 3's back... --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c09b03a1a..545cb96cf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,7 +29,7 @@ commands: source $BASH_ENV sudo apt-get update sudo apt-get install -y csh libhdf5-serial-dev libopenmpi-dev openmpi-bin gfortran libtool-bin xutils-dev - python -m venv $HOME/venv + python3 -m venv $HOME/venv source $HOME/venv/bin/activate pip install --upgrade pip pip install --upgrade wheel @@ -76,7 +76,7 @@ commands: command: | sudo apt-get update sudo apt-get install -y dvipng texlive-latex-extra - python -m venv $HOME/venv + python3 venv $HOME/venv source $HOME/venv/bin/activate pip install --upgrade pip pip install --upgrade wheel From aeeb8f3f5c62ffe5f3dbc67302a577eb00ec24b3 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Tue, 19 Dec 2023 18:14:55 -0500 Subject: [PATCH 14/23] Back to fully downgraded python image --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 545cb96cf..5256f4b7f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -76,7 +76,7 @@ commands: command: | sudo apt-get update sudo apt-get install -y dvipng texlive-latex-extra - python3 venv $HOME/venv + python3 -m venv $HOME/venv source $HOME/venv/bin/activate pip install --upgrade pip pip install --upgrade wheel From cb7a56e10e3e76455f75e299f83fbf9cb64001a2 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Tue, 19 Dec 2023 18:18:30 -0500 Subject: [PATCH 15/23] python3 -> python --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5256f4b7f..f7cccfb2d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,7 +29,7 @@ commands: source $BASH_ENV sudo apt-get update sudo apt-get install -y csh libhdf5-serial-dev libopenmpi-dev openmpi-bin gfortran libtool-bin xutils-dev - python3 -m venv $HOME/venv + python -m venv $HOME/venv source $HOME/venv/bin/activate pip install --upgrade pip pip install --upgrade wheel From 6a228a14bee2ed02c19af0b0871bfb4a023329f9 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Tue, 19 Dec 2023 18:33:37 -0500 Subject: [PATCH 16/23] Settle on python 3.11.5 b/c it runs as far as using the nose package --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f7cccfb2d..e0fc36767 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,7 +29,7 @@ commands: source $BASH_ENV sudo apt-get update sudo apt-get install -y csh libhdf5-serial-dev libopenmpi-dev openmpi-bin gfortran libtool-bin xutils-dev - python -m venv $HOME/venv + python3 -m venv $HOME/venv source $HOME/venv/bin/activate pip install --upgrade pip pip install --upgrade wheel @@ -189,7 +189,7 @@ commands: jobs: test-suite: docker: - - image: cimg/python:3.10.13 + - image: cimg/python:3.11.5 resource_class: large working_directory: ~/enzo-dev @@ -240,7 +240,7 @@ jobs: test-compile-options: docker: - - image: cimg/python:3.10.13 + - image: cimg/python:3.11.5 resource_class: large working_directory: ~/enzo-dev @@ -271,7 +271,7 @@ jobs: docs-build: docker: - - image: cimg/python:3.10.13 + - image: cimg/python:3.11.5 working_directory: ~/enzo-dev From dc2e6a47521da6f50414f1de80399fb60ac496d2 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Tue, 19 Dec 2023 20:24:41 -0500 Subject: [PATCH 17/23] nose3 can replace nose but not for Python 3.11 --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e0fc36767..75bdb7a65 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,7 +34,7 @@ commands: pip install --upgrade pip pip install --upgrade wheel pip install --upgrade setuptools - pip install Cython numpy h5py fastcache flake8 nose girder-client matplotlib pytest gitpython # yt + pip install Cython numpy h5py fastcache flake8 nose3 girder-client matplotlib pytest gitpython # yt # Temporary workaround to use updated answer testing from the yt dev repository # instead of pip until next yt point release git clone https://github.com/yt-project/yt @@ -189,7 +189,7 @@ commands: jobs: test-suite: docker: - - image: cimg/python:3.11.5 + - image: cimg/python:3.10.10 resource_class: large working_directory: ~/enzo-dev @@ -240,7 +240,7 @@ jobs: test-compile-options: docker: - - image: cimg/python:3.11.5 + - image: cimg/python:3.10.10 resource_class: large working_directory: ~/enzo-dev @@ -271,7 +271,7 @@ jobs: docs-build: docker: - - image: cimg/python:3.11.5 + - image: cimg/python:3.10.10 working_directory: ~/enzo-dev From f95a749af189b87133effbbc11e0e07a6fa15fe4 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Wed, 20 Dec 2023 11:11:32 -0500 Subject: [PATCH 18/23] Missing Python exe seems to be outdated cache again --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 75bdb7a65..fce7d5e9a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -189,7 +189,7 @@ commands: jobs: test-suite: docker: - - image: cimg/python:3.10.10 + - image: cimg/python:3.10 resource_class: large working_directory: ~/enzo-dev @@ -200,13 +200,13 @@ jobs: - restore_cache: name: "Restore dependencies cache." - key: dependencies-v4 + key: dependencies-v5 - install-dependencies - save_cache: name: "Save dependencies cache" - key: dependencies-v4 + key: dependencies-v5 paths: - ~/.cache/pip - ~/venv @@ -240,7 +240,7 @@ jobs: test-compile-options: docker: - - image: cimg/python:3.10.10 + - image: cimg/python:3.10 resource_class: large working_directory: ~/enzo-dev @@ -251,13 +251,13 @@ jobs: - restore_cache: name: "Restore dependencies cache." - key: dependencies-v4 + key: dependencies-v5 - install-dependencies - save_cache: name: "Save dependencies cache" - key: dependencies-v4 + key: dependencies-v5 paths: - ~/.cache/pip - ~/venv @@ -271,7 +271,7 @@ jobs: docs-build: docker: - - image: cimg/python:3.10.10 + - image: cimg/python:3.10 working_directory: ~/enzo-dev From 03a532b177fe98fcbb8f6ad113ce0f405c62d649 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Thu, 21 Dec 2023 15:53:37 -0500 Subject: [PATCH 19/23] Reset answer cache --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fce7d5e9a..8d6722890 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -217,7 +217,7 @@ jobs: - restore_cache: name: "Restore test answers." - key: test-answers-v16a + key: test-answers-16 - build-and-test: tag: gold-standard-v16 @@ -226,7 +226,7 @@ jobs: - save_cache: name: "Save test answers cache." - key: test-answers-v16a + key: test-answers-v16 paths: - ~/enzo_test/push_suite From 8d55018e9cde9dc244785a9efb4350fba1994d01 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Fri, 5 Jan 2024 15:32:02 -0500 Subject: [PATCH 20/23] gosh darn typos --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8d6722890..21f257874 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -217,7 +217,7 @@ jobs: - restore_cache: name: "Restore test answers." - key: test-answers-16 + key: test-answers-v16 - build-and-test: tag: gold-standard-v16 From 9733d8a7afde07f818542d8319d3ec0e6175f5d7 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Fri, 5 Jan 2024 16:05:11 -0500 Subject: [PATCH 21/23] try new answer cache name --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 21f257874..c80891bab 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -217,7 +217,7 @@ jobs: - restore_cache: name: "Restore test answers." - key: test-answers-v16 + key: test-answers-v16b - build-and-test: tag: gold-standard-v16 @@ -226,7 +226,7 @@ jobs: - save_cache: name: "Save test answers cache." - key: test-answers-v16 + key: test-answers-v16b paths: - ~/enzo_test/push_suite From 083f4dc80dcfae8b5e74ace2d54d89be0c7ce3be Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Mon, 8 Jan 2024 12:14:42 -0500 Subject: [PATCH 22/23] Update cache and tag --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c80891bab..7671d6572 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -217,7 +217,7 @@ jobs: - restore_cache: name: "Restore test answers." - key: test-answers-v16b + key: test-answers-v16c - build-and-test: tag: gold-standard-v16 @@ -226,7 +226,7 @@ jobs: - save_cache: name: "Save test answers cache." - key: test-answers-v16b + key: test-answers-v16c paths: - ~/enzo_test/push_suite From beffe2c3061dc3fa98b0355cc4041a4df45d3293 Mon Sep 17 00:00:00 2001 From: Claire Kopenhafer Date: Mon, 8 Jan 2024 12:14:42 -0500 Subject: [PATCH 23/23] Update cache and tag --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c80891bab..fce7d5e9a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -217,7 +217,7 @@ jobs: - restore_cache: name: "Restore test answers." - key: test-answers-v16b + key: test-answers-v16a - build-and-test: tag: gold-standard-v16 @@ -226,7 +226,7 @@ jobs: - save_cache: name: "Save test answers cache." - key: test-answers-v16b + key: test-answers-v16a paths: - ~/enzo_test/push_suite