From 44d8e7b80411cb33a24648ba3c661710c333965b Mon Sep 17 00:00:00 2001 From: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> Date: Tue, 22 Jun 2021 10:35:02 -0700 Subject: [PATCH] LYN-4666 Make AR builds use the stabilization/2106 snapshot (#1440) * use snapshots out of stabilization * temporal print to figure out why the mount is not used * removing print used for debugging --- scripts/build/bootstrap/incremental_build_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/bootstrap/incremental_build_util.py b/scripts/build/bootstrap/incremental_build_util.py index a331cf3bb8..a91f1691a2 100755 --- a/scripts/build/bootstrap/incremental_build_util.py +++ b/scripts/build/bootstrap/incremental_build_util.py @@ -178,7 +178,7 @@ def delete_volume(ec2_client, volume_id): print 'Volume {} deleted'.format(volume_id) def find_snapshot_id(ec2_client, repository_name, project, pipeline, platform, build_type, disk_size): - mount_name = get_mount_name(repository_name, project, pipeline, 'main', platform, build_type) # we take snapshots out of main + mount_name = get_mount_name(repository_name, project, pipeline, 'stabilization_2106', platform, build_type) # we take snapshots out of stabilization_2106 response = ec2_client.describe_snapshots(Filters= [{ 'Name': 'tag:Name', 'Values': [mount_name] }])