Skip to content

Commit

Permalink
added mrs_modules_msgs
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Sep 30, 2023
1 parent 035b6e2 commit 5643861
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .ci/parse_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,20 @@ def main():
if build_for in architecture:

if variant == "stable":
ref = properties['stable_ref']

try:
ref = properties['stable_ref']
print("{} {} {}".format(package, url, ref))
except:
pass

else:
ref = properties['unstable_ref']

print("{} {} {}".format(package, url, ref))
try:
ref = properties['unstable_ref']
print("{} {} {}".format(package, url, ref))
except:
pass

if __name__ == '__main__':
main()
5 changes: 5 additions & 0 deletions mrs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ mrs_msgs:
unstable_ref: hw_api
stable_ref: release

mrs_modules_msgs:
architecture: [amd64, arm64]
source: https://github.com/ctu-mrs/mrs_modules_msgs
unstable_ref: master

mrs_lib:
architecture: [amd64, arm64]
source: https://github.com/ctu-mrs/mrs_lib
Expand Down

0 comments on commit 5643861

Please sign in to comment.