From 55e82a0caf5e9356913211515914777f333ef734 Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Mon, 28 Oct 2024 20:21:17 -0400 Subject: [PATCH 01/11] Update Kass version to v4.1.0 --- CMakeLists.txt | 2 +- Dockerfile | 2 +- kassiopeia | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a47eb63b..8470f4f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required( VERSION 3.1 ) # Define the project cmake_policy( SET CMP0048 NEW ) # version in project() -project( locust_mc VERSION 2.8.4) +project( locust_mc VERSION 3.0.0) list( APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/Scarab/cmake ) diff --git a/Dockerfile b/Dockerfile index c2411ccf..5957c505 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG final_img_repo=ghcr.io/project8/luna_base ARG final_img_tag=v1.3.4 ARG build_img_repo=ghcr.io/project8/kassiopeia_builder -ARG build_img_tag=v4.0.1-dev +ARG build_img_tag=v4.1.0-dev ######################## FROM ${build_img_repo}:${build_img_tag} AS build diff --git a/kassiopeia b/kassiopeia index 72b90c5f..d6b61e20 160000 --- a/kassiopeia +++ b/kassiopeia @@ -1 +1 @@ -Subproject commit 72b90c5fff5a2ffdca0f71226cdd2c31240b0b89 +Subproject commit d6b61e2007c75de783f056845b513ea40d7b3ba3 From 83feafa9c3df90eecbd91bff965d938e471fe810 Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Mon, 28 Oct 2024 20:27:11 -0400 Subject: [PATCH 02/11] Increase max nChannels from 2 to 3. --- Source/Fields/LMCCylindricalCavity.cc | 60 +++++++++++++------ Source/Fields/LMCCylindricalCavity.hh | 2 +- Source/Fields/LMCField.cc | 10 +++- Source/Fields/LMCField.hh | 4 ++ Source/Generators/LMCCavitySignalGenerator.cc | 8 ++- 5 files changed, 60 insertions(+), 24 deletions(-) diff --git a/Source/Fields/LMCCylindricalCavity.cc b/Source/Fields/LMCCylindricalCavity.cc index e5e4dbef..7f1864d4 100644 --- a/Source/Fields/LMCCylindricalCavity.cc +++ b/Source/Fields/LMCCylindricalCavity.cc @@ -14,10 +14,10 @@ namespace locust LOGGER( lmclog, "CylindricalCavity" ); CylindricalCavity::CylindricalCavity(): fIntermediateFile( false ), - fProbeGain( {1., 1.}), - fCavityProbeZ( {0., 0.} ), - fCavityProbeRFrac( {0.5, 0.5} ), - fCavityProbeTheta( {0.0, 0.0} ) + fProbeGain( {1., 1., 1.}), + fCavityProbeZ( {0., 0., 0.} ), + fCavityProbeRFrac( {0.5, 0.5, 0.5} ), + fCavityProbeTheta( {0.0, 0.0, 0.0} ) {} CylindricalCavity::~CylindricalCavity() {} @@ -53,6 +53,11 @@ namespace locust SetCavityProbeGain(aParam["cavity-probe-gain1"]().as_double(), 1); } + if ( aParam.has( "cavity-probe-gain2" ) ) + { + SetCavityProbeGain(aParam["cavity-probe-gain2"]().as_double(), 2); + } + if ( aParam.has( "cavity-probe-z0" ) ) { SetCavityProbeZ(aParam["cavity-probe-z0"]().as_double(), 0); @@ -63,6 +68,11 @@ namespace locust SetCavityProbeZ(aParam["cavity-probe-z1"]().as_double(), 1); } + if ( aParam.has( "cavity-probe-z2" ) ) + { + SetCavityProbeZ(aParam["cavity-probe-z2"]().as_double(), 2); + } + if ( aParam.has( "cavity-probe-r-fraction0" ) ) { SetCavityProbeRFrac(aParam["cavity-probe-r-fraction0"]().as_double(), 0); @@ -73,6 +83,11 @@ namespace locust SetCavityProbeRFrac(aParam["cavity-probe-r-fraction1"]().as_double(), 1); } + if ( aParam.has( "cavity-probe-r-fraction2" ) ) + { + SetCavityProbeRFrac(aParam["cavity-probe-r-fraction2"]().as_double(), 2); + } + if ( aParam.has( "cavity-probe-theta0" ) ) { SetCavityProbeTheta(aParam["cavity-probe-theta0"]().as_double(), 0); @@ -83,6 +98,11 @@ namespace locust SetCavityProbeTheta(aParam["cavity-probe-theta1"]().as_double(), 1); } + if ( aParam.has( "cavity-probe-theta2" ) ) + { + SetCavityProbeTheta(aParam["cavity-probe-theta2"]().as_double(), 2); + } + if (aParam.has( "intermediate-file" )) { fIntermediateFile = aParam["intermediate-file"]().as_bool(); @@ -276,11 +296,7 @@ namespace locust std::vector CylindricalCavity::GetFieldAtProbe(int l, int m, int n, bool includeOtherPols, std::vector tKassParticleXP, bool teMode) { - - std::vector rProbe; - rProbe.push_back(GetCavityProbeRFrac()[0] * GetDimR()); - rProbe.push_back(GetCavityProbeRFrac()[1] * GetDimR()); - + std::vector rProbe = GetCavityProbeR(); std::vector thetaProbe = GetCavityProbeTheta(); std::vector zProbe = GetCavityProbeZ(); std::vector thetaEffective; @@ -289,24 +305,30 @@ namespace locust { //If mode has theta dependence, mode polarization is set by electron location. Probe coupling must be set relative to that angle double thetaElectron = tKassParticleXP[1]; - thetaEffective.push_back(thetaProbe[0] - thetaElectron); - thetaEffective.push_back(thetaProbe[1] - thetaElectron); + for (unsigned index=0; index> tProbeLocation; - tProbeLocation.push_back({rProbe[0], thetaEffective[0], zProbe[0]}); - tProbeLocation.push_back({rProbe[1], thetaEffective[1], zProbe[1]}); + for (unsigned index=0; index tEFieldAtProbe; - tEFieldAtProbe.push_back( NormalizedEFieldMag(GetNormalizedModeField(l,m,n,tProbeLocation[0],0,teMode)) ); - tEFieldAtProbe.push_back( NormalizedEFieldMag(GetNormalizedModeField(l,m,n,tProbeLocation[1],0,teMode)) ); + for (unsigned index=0; index CylindricalCavity::GetCavityProbeRFrac() + std::vector CylindricalCavity::GetCavityProbeR() { - return fCavityProbeRFrac; + return { fCavityProbeRFrac[0] * GetDimR(), fCavityProbeRFrac[1] * GetDimR(), fCavityProbeRFrac[2] * GetDimR()}; } void CylindricalCavity::SetCavityProbeRFrac ( double aFraction, unsigned index ) { diff --git a/Source/Fields/LMCCylindricalCavity.hh b/Source/Fields/LMCCylindricalCavity.hh index a5729acd..9d39180b 100644 --- a/Source/Fields/LMCCylindricalCavity.hh +++ b/Source/Fields/LMCCylindricalCavity.hh @@ -71,7 +71,7 @@ namespace locust virtual std::vector GetFieldAtProbe(int l, int m, int n, bool includeOtherPols, std::vector tKassParticleXP, bool teMode); std::vector GetCavityProbeZ(); void SetCavityProbeZ ( double aZ, unsigned index ); - std::vector GetCavityProbeRFrac(); + std::vector GetCavityProbeR(); void SetCavityProbeRFrac ( double aFraction, unsigned index ); std::vector GetCavityProbeGain(); void SetCavityProbeTheta( double aTheta, unsigned index ); diff --git a/Source/Fields/LMCField.cc b/Source/Fields/LMCField.cc index 7a5f7666..8fab166c 100644 --- a/Source/Fields/LMCField.cc +++ b/Source/Fields/LMCField.cc @@ -80,11 +80,19 @@ namespace locust } } - return true; } + int Field::GetNChannels() + { + return fNChannels; + } + void Field::SetNChannels( int aNumberOfChannels ) + { + fNChannels = aNumberOfChannels; + } + std::vector> Field::ModeSelect(bool bWaveguide, bool bNormCheck) { int nModes = fNModes; diff --git a/Source/Fields/LMCField.hh b/Source/Fields/LMCField.hh index 2924e8fb..a47c0e62 100644 --- a/Source/Fields/LMCField.hh +++ b/Source/Fields/LMCField.hh @@ -125,11 +125,15 @@ namespace locust void SetPlotModeMaps( bool aFlag ); void SetOutputPath( std::string aPath ); std::string GetOutputPath(); + void SetNChannels( int aNumberOfChannels ); + int GetNChannels(); + private: int fNModes; + int fNChannels; std::vector>>> fModeNormFactor; // 4D vector [2][n-modes][n-modes][n-modes]. double fCentralFrequency; int fnPixels; diff --git a/Source/Generators/LMCCavitySignalGenerator.cc b/Source/Generators/LMCCavitySignalGenerator.cc index 945afec9..4a6317ca 100644 --- a/Source/Generators/LMCCavitySignalGenerator.cc +++ b/Source/Generators/LMCCavitySignalGenerator.cc @@ -592,10 +592,12 @@ namespace locust if (fRandomPreEventSamples) RandomizeStartDelay(); fPowerCombiner->SizeNChannels(fNChannels); - if (fNChannels > 2) + fInterface->fField->SetNChannels(fNChannels); + + if (fNChannels > 3) { - LERROR(lmclog,"The cavity simulation only supports up to 2 channels right now."); - throw std::runtime_error("Only 1 or 2 channels is allowed."); + LERROR(lmclog,"The cavity simulation only supports up to 3 channels right now."); + throw std::runtime_error("Only 1, 2, or 3 channels is allowed."); return false; } From db54a1642d3470294a679e088db252731cd851e5 Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Mon, 28 Oct 2024 20:28:25 -0400 Subject: [PATCH 03/11] Make phase offsets between channels configurable. --- Source/RxComponents/LMCCavityModes.cc | 20 +++++++++++++++++--- Source/RxComponents/LMCCavityModes.hh | 1 + 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Source/RxComponents/LMCCavityModes.cc b/Source/RxComponents/LMCCavityModes.cc index 429bff49..16b2d5b6 100644 --- a/Source/RxComponents/LMCCavityModes.cc +++ b/Source/RxComponents/LMCCavityModes.cc @@ -15,7 +15,8 @@ namespace locust LOGGER( lmclog, "CavityModes" ); CavityModes::CavityModes(): - fVoltagePhase( 0 ), + fVoltagePhase( {{{{0.0}}}} ), + fChannelPhaseOffsetDeg( {0.0} ), fInterface( KLInterfaceBootstrapper::get_instance()->GetInterface() ) { } @@ -36,7 +37,20 @@ namespace locust SetNCavityModes(fInterface->fField->GetNModes()); - SizeNChannels(GetNChannels()); + + fChannelPhaseOffsetDeg.resize(3); + if ( aParam.has( "channel0-phase-offset-deg" ) ) + { + fChannelPhaseOffsetDeg[0] = LMCConst::Pi() / 180. * aParam["channel0-phase-offset-deg"]().as_double(); + } + if ( aParam.has( "channel1-phase-offset-deg" ) ) + { + fChannelPhaseOffsetDeg[1] = LMCConst::Pi() / 180. * aParam["channel1-phase-offset-deg"]().as_double(); + } + if ( aParam.has( "channel2-phase-offset-deg" ) ) + { + fChannelPhaseOffsetDeg[2] = LMCConst::Pi() / 180. * aParam["channel2-phase-offset-deg"]().as_double(); + } return true; } @@ -68,7 +82,7 @@ namespace locust bool CavityModes::AddOneModeToCavityProbe(int l, int m, int n, Signal* aSignal, std::vector particleXP, double excitationAmplitude, double EFieldAtProbe, std::vector cavityDopplerFrequency, double dt, double phi_LO, double totalScalingFactor, unsigned sampleIndex, int channelIndex, bool initParticle) { double dopplerFrequency = cavityDopplerFrequency[0]; // Only one shift, unlike in waveguide. - SetVoltagePhase( GetVoltagePhase(channelIndex, l, m, n) + dopplerFrequency * dt, channelIndex, l, m, n ) ; + SetVoltagePhase( fChannelPhaseOffsetDeg[channelIndex] + GetVoltagePhase(channelIndex, l, m, n) + dopplerFrequency * dt, channelIndex, l, m, n ) ; double voltageValue = excitationAmplitude * EFieldAtProbe; voltageValue *= cos(GetVoltagePhase(channelIndex, l, m, n)); diff --git a/Source/RxComponents/LMCCavityModes.hh b/Source/RxComponents/LMCCavityModes.hh index f6c5b7aa..12d37f53 100644 --- a/Source/RxComponents/LMCCavityModes.hh +++ b/Source/RxComponents/LMCCavityModes.hh @@ -49,6 +49,7 @@ namespace locust private: std::vector>>> fVoltagePhase; + std::vector fChannelPhaseOffsetDeg; kl_interface_ptr_t fInterface; From 37a96f9c5ac92052da3ced586a7a79563f8c04ac Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Mon, 28 Oct 2024 20:34:16 -0400 Subject: [PATCH 04/11] Build on push to feature branch. --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 592aedda..ac4d863d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -3,7 +3,7 @@ name: Build and Test Locust on: pull_request: push: - branches: [master, develop] + branches: [master, develop, feature/CMfollowup] tags: ['*'] workflow_dispatch: From 657c1888f533baefc991e200c4ba8945c4e81ba0 Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Tue, 29 Oct 2024 09:47:48 -0400 Subject: [PATCH 05/11] Correction to channel phase offsets. --- Source/RxComponents/LMCCavityModes.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/RxComponents/LMCCavityModes.cc b/Source/RxComponents/LMCCavityModes.cc index 16b2d5b6..9db20a81 100644 --- a/Source/RxComponents/LMCCavityModes.cc +++ b/Source/RxComponents/LMCCavityModes.cc @@ -82,9 +82,9 @@ namespace locust bool CavityModes::AddOneModeToCavityProbe(int l, int m, int n, Signal* aSignal, std::vector particleXP, double excitationAmplitude, double EFieldAtProbe, std::vector cavityDopplerFrequency, double dt, double phi_LO, double totalScalingFactor, unsigned sampleIndex, int channelIndex, bool initParticle) { double dopplerFrequency = cavityDopplerFrequency[0]; // Only one shift, unlike in waveguide. - SetVoltagePhase( fChannelPhaseOffsetDeg[channelIndex] + GetVoltagePhase(channelIndex, l, m, n) + dopplerFrequency * dt, channelIndex, l, m, n ) ; + SetVoltagePhase( GetVoltagePhase(channelIndex, l, m, n) + dopplerFrequency * dt, channelIndex, l, m, n ) ; double voltageValue = excitationAmplitude * EFieldAtProbe; - voltageValue *= cos(GetVoltagePhase(channelIndex, l, m, n)); + voltageValue *= cos(GetVoltagePhase(channelIndex, l, m, n) + fChannelPhaseOffsetDeg[channelIndex] ); aSignal->LongSignalTimeComplex()[sampleIndex][0] += 2. * voltageValue * totalScalingFactor * sin(phi_LO); aSignal->LongSignalTimeComplex()[sampleIndex][1] += 2. * voltageValue * totalScalingFactor * cos(phi_LO); From d608f3ec67fd09a91d97013a15a11e7fbf670dbf Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Tue, 29 Oct 2024 09:54:45 -0400 Subject: [PATCH 06/11] Update build.yaml Point to the correct Kass docker build, v4.1.0 --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ac4d863d..5a5faeee 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,7 +10,7 @@ on: env: REGISTRY: ghcr.io BASE_IMG_REPO: project8/kassiopeia_builder - BASE_IMG_TAG: v4.0.1-dev + BASE_IMG_TAG: v4.1.0-dev FINAL_BASE_IMG_REPO: project8/luna_base FINAL_BASE_IMG_TAG: v1.3.4 locust_mc_BUILD_WITH_KASSIOPEIA: ON From f2b03969994efa1921a9fc0f366bb41d0036f092 Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Tue, 29 Oct 2024 10:41:46 -0400 Subject: [PATCH 07/11] Update to p8 Kassiopeia patch v4.1.1 for pileup. --- .github/workflows/build.yaml | 2 +- Dockerfile | 2 +- kassiopeia | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5a5faeee..d04fc1f4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,7 +10,7 @@ on: env: REGISTRY: ghcr.io BASE_IMG_REPO: project8/kassiopeia_builder - BASE_IMG_TAG: v4.1.0-dev + BASE_IMG_TAG: v4.1.1-dev FINAL_BASE_IMG_REPO: project8/luna_base FINAL_BASE_IMG_TAG: v1.3.4 locust_mc_BUILD_WITH_KASSIOPEIA: ON diff --git a/Dockerfile b/Dockerfile index 5957c505..72185607 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG final_img_repo=ghcr.io/project8/luna_base ARG final_img_tag=v1.3.4 ARG build_img_repo=ghcr.io/project8/kassiopeia_builder -ARG build_img_tag=v4.1.0-dev +ARG build_img_tag=v4.1.1-dev ######################## FROM ${build_img_repo}:${build_img_tag} AS build diff --git a/kassiopeia b/kassiopeia index d6b61e20..d78c432f 160000 --- a/kassiopeia +++ b/kassiopeia @@ -1 +1 @@ -Subproject commit d6b61e2007c75de783f056845b513ea40d7b3ba3 +Subproject commit d78c432f10af5deb26c9a96020f501b41c643f41 From c54fd453aa7353165ac7aeef49c2f04c4612f034 Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Tue, 29 Oct 2024 11:47:49 -0400 Subject: [PATCH 08/11] Update build.yaml --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d04fc1f4..30e08b62 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -3,7 +3,7 @@ name: Build and Test Locust on: pull_request: push: - branches: [master, develop, feature/CMfollowup] + branches: [master, develop] tags: ['*'] workflow_dispatch: From 1e604a4d0408f78d460a549eb2c4c3b9dc568b06 Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Tue, 29 Oct 2024 14:42:09 -0400 Subject: [PATCH 09/11] Drop "deg" from variable name, while keeping "deg" in parameter input name. --- Source/RxComponents/LMCCavityModes.cc | 12 ++++++------ Source/RxComponents/LMCCavityModes.hh | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Source/RxComponents/LMCCavityModes.cc b/Source/RxComponents/LMCCavityModes.cc index 9db20a81..9b7ccc15 100644 --- a/Source/RxComponents/LMCCavityModes.cc +++ b/Source/RxComponents/LMCCavityModes.cc @@ -16,7 +16,7 @@ namespace locust CavityModes::CavityModes(): fVoltagePhase( {{{{0.0}}}} ), - fChannelPhaseOffsetDeg( {0.0} ), + fChannelPhaseOffset( {0.0} ), fInterface( KLInterfaceBootstrapper::get_instance()->GetInterface() ) { } @@ -38,18 +38,18 @@ namespace locust SetNCavityModes(fInterface->fField->GetNModes()); - fChannelPhaseOffsetDeg.resize(3); + fChannelPhaseOffset.resize(3); if ( aParam.has( "channel0-phase-offset-deg" ) ) { - fChannelPhaseOffsetDeg[0] = LMCConst::Pi() / 180. * aParam["channel0-phase-offset-deg"]().as_double(); + fChannelPhaseOffset[0] = LMCConst::Pi() / 180. * aParam["channel0-phase-offset-deg"]().as_double(); } if ( aParam.has( "channel1-phase-offset-deg" ) ) { - fChannelPhaseOffsetDeg[1] = LMCConst::Pi() / 180. * aParam["channel1-phase-offset-deg"]().as_double(); + fChannelPhaseOffset[1] = LMCConst::Pi() / 180. * aParam["channel1-phase-offset-deg"]().as_double(); } if ( aParam.has( "channel2-phase-offset-deg" ) ) { - fChannelPhaseOffsetDeg[2] = LMCConst::Pi() / 180. * aParam["channel2-phase-offset-deg"]().as_double(); + fChannelPhaseOffset[2] = LMCConst::Pi() / 180. * aParam["channel2-phase-offset-deg"]().as_double(); } return true; @@ -84,7 +84,7 @@ namespace locust double dopplerFrequency = cavityDopplerFrequency[0]; // Only one shift, unlike in waveguide. SetVoltagePhase( GetVoltagePhase(channelIndex, l, m, n) + dopplerFrequency * dt, channelIndex, l, m, n ) ; double voltageValue = excitationAmplitude * EFieldAtProbe; - voltageValue *= cos(GetVoltagePhase(channelIndex, l, m, n) + fChannelPhaseOffsetDeg[channelIndex] ); + voltageValue *= cos(GetVoltagePhase(channelIndex, l, m, n) + fChannelPhaseOffset[channelIndex] ); aSignal->LongSignalTimeComplex()[sampleIndex][0] += 2. * voltageValue * totalScalingFactor * sin(phi_LO); aSignal->LongSignalTimeComplex()[sampleIndex][1] += 2. * voltageValue * totalScalingFactor * cos(phi_LO); diff --git a/Source/RxComponents/LMCCavityModes.hh b/Source/RxComponents/LMCCavityModes.hh index 12d37f53..55566d40 100644 --- a/Source/RxComponents/LMCCavityModes.hh +++ b/Source/RxComponents/LMCCavityModes.hh @@ -49,7 +49,7 @@ namespace locust private: std::vector>>> fVoltagePhase; - std::vector fChannelPhaseOffsetDeg; + std::vector fChannelPhaseOffset; kl_interface_ptr_t fInterface; From 676271ca0408b98e37711b020a91d6ca4679e3ac Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Tue, 29 Oct 2024 16:35:11 -0400 Subject: [PATCH 10/11] Update kassiopeia module to p8 tag v4.1.2. --- kassiopeia | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kassiopeia b/kassiopeia index d78c432f..ece521e8 160000 --- a/kassiopeia +++ b/kassiopeia @@ -1 +1 @@ -Subproject commit d78c432f10af5deb26c9a96020f501b41c643f41 +Subproject commit ece521e82590945f6d65d28ec7513390eb97f3fc From e2f14f7bdf30c5c34862524a86232b637087a8e9 Mon Sep 17 00:00:00 2001 From: Penny Slocum Date: Tue, 29 Oct 2024 16:40:07 -0400 Subject: [PATCH 11/11] Update docker kass tag. --- .github/workflows/build.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 30e08b62..0cecfc97 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,7 +10,7 @@ on: env: REGISTRY: ghcr.io BASE_IMG_REPO: project8/kassiopeia_builder - BASE_IMG_TAG: v4.1.1-dev + BASE_IMG_TAG: v4.1.2-dev FINAL_BASE_IMG_REPO: project8/luna_base FINAL_BASE_IMG_TAG: v1.3.4 locust_mc_BUILD_WITH_KASSIOPEIA: ON diff --git a/Dockerfile b/Dockerfile index 72185607..7b9c217b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG final_img_repo=ghcr.io/project8/luna_base ARG final_img_tag=v1.3.4 ARG build_img_repo=ghcr.io/project8/kassiopeia_builder -ARG build_img_tag=v4.1.1-dev +ARG build_img_tag=v4.1.2-dev ######################## FROM ${build_img_repo}:${build_img_tag} AS build