-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(arcor2_build): dependency on arcor2_runtime was specified on a wr…
…ong place - Dependency included in 6c08cba was for Python distribution, not for the script.
- Loading branch information
Showing
7 changed files
with
17 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
docker_image(name="arcor2_build", repository="arcor2/arcor2_build", image_tags=["1.0.0"]) | ||
docker_image(name="arcor2_build", repository="arcor2/arcor2_build", image_tags=["1.0.1"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
arcor2_python_distribution( | ||
name="arcor2_build", | ||
description="ARCOR2 Build", | ||
dependencies=[ | ||
"src/python/arcor2_build/source", | ||
"src/python/arcor2_runtime", # so the script can import e.g. ResourcesException | ||
], | ||
dependencies=["src/python/arcor2_build/source"], | ||
binaries={"arcor2_build": "src/python/arcor2_build/scripts:build"}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.0 | ||
1.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
python_sources() | ||
|
||
arcor2_pex_binary(name="build") | ||
arcor2_pex_binary( | ||
name="build", | ||
dependencies=[ | ||
"src/python/arcor2_runtime", # so the main script can import e.g. ResourcesException | ||
], | ||
) |