Skip to content

Commit

Permalink
fix(ci): update dagger use in python
Browse files Browse the repository at this point in the history
- container.pipeline was depreciated in dagger 0.13
- remove

Signed-off-by: AtomicFS <vojtech_vesely@white-hat-hacker.icu>
  • Loading branch information
AtomicFS authored and AtomicFS committed Sep 19, 2024
1 parent b01f5bf commit c9f52e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .dagger-ci/daggerci/lib/orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ async def __test__(self, client: dagger.Client, tarball_file: str) -> None:
# pylint: disable=too-many-locals
# Create container from tarball
context_tarball = client.host().file(tarball_file)
test_container = client.pipeline("test").container().import_(context_tarball)
test_container = client.container().import_(context_tarball)

# Make sure that container has environment variable "VERIFICATION_TEST"
verification_test = await test_container.env_variable("VERIFICATION_TEST")
Expand Down

0 comments on commit c9f52e4

Please sign in to comment.