Skip to content

Commit

Permalink
chore: fix dependencies in the release pipeline
Browse files Browse the repository at this point in the history
The `images` step modifies files in `_out/` breaking the concurrent
`save-artifacts` step.

Signed-off-by: Andrey Smirnov <[email protected]>
  • Loading branch information
smira committed Aug 9, 2023
1 parent e1b2886 commit bff0d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ local conformance_pipelines = [
// Release pipeline.

local cloud_images = Step('cloud-images', depends_on=[e2e_docker, e2e_qemu], environment=creds_env_vars);
local images = Step('images', target='images', depends_on=[iso, images_essential], environment={ IMAGE_REGISTRY: local_registry });
local images = Step('images', target='images', depends_on=[iso, images_essential, save_artifacts], environment={ IMAGE_REGISTRY: local_registry });
local sbcs = Step('sbcs', target='sbcs', depends_on=[images], environment={ IMAGE_REGISTRY: local_registry });

// TODO(andrewrynhard): We should run E2E tests on a release.
Expand Down

0 comments on commit bff0d8f

Please sign in to comment.