-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SW-1224 support legacy image for new update mechanism (#7)
* add beamos_version to replace beamos_date -> major version change needed as this is a breaking change * add comparison option for the config of beamos versions * add dedicated netconnectd version for legacy image
- Loading branch information
1 parent
7dcd41c
commit 30aa254
Showing
1 changed file
with
25 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,29 +92,35 @@ | |
"repo": "MrBeamLedStrips", | ||
"pip": "https://github.com/mrbeam/MrBeamLedStrips/archive/{target_version}.zip", | ||
"global_pip_command": true, | ||
"beamos_date": { | ||
"2021-06-11": { | ||
"pip_command": "sudo /usr/local/mrbeam_ledstrips/venv/bin/pip" | ||
"beamos_version": { | ||
"__ge__": { | ||
"0.18.0": { | ||
"pip_command": "sudo /usr/local/mrbeam_ledstrips/venv/bin/pip" | ||
} | ||
} | ||
} | ||
}, | ||
"iobeam": { | ||
"repo": "iobeam", | ||
"pip": "git+ssh://[email protected]/mrbeam/iobeam.git@{target_version}", | ||
"global_pip_command": true, | ||
"beamos_date": { | ||
"2021-06-11": { | ||
"pip_command": "sudo /usr/local/iobeam/venv/bin/pip" | ||
"beamos_version": { | ||
"__ge__": { | ||
"0.18.0": { | ||
"pip_command": "sudo /usr/local/iobeam/venv/bin/pip" | ||
} | ||
} | ||
} | ||
}, | ||
"mrb-hw-info": { | ||
"repo": "mrb_hw_info", | ||
"pip": "git+ssh://[email protected]/mrbeam/mrb_hw_info.git@{target_version}", | ||
"global_pip_command": true, | ||
"beamos_date": { | ||
"2021-06-11": { | ||
"pip_command": "sudo /usr/local/iobeam/venv/bin/pip" | ||
"beamos_version": { | ||
"__ge__": { | ||
"0.18.0": { | ||
"pip_command": "sudo /usr/local/iobeam/venv/bin/pip" | ||
} | ||
} | ||
} | ||
}, | ||
|
@@ -146,9 +152,16 @@ | |
"repo": "netconnectd_mrbeam", | ||
"pip": "https://github.com/mrbeam/netconnectd_mrbeam/archive/{target_version}.zip", | ||
"global_pip_command": true, | ||
"beamos_date": { | ||
"2021-06-11": { | ||
"pip_command": "sudo /usr/local/netconnectd/venv/bin/pip" | ||
"beamos_version": { | ||
"__ge__": { | ||
"0.18.0": { | ||
"pip_command": "sudo /usr/local/netconnectd/venv/bin/pip" | ||
} | ||
}, | ||
"__le__": { | ||
"0.14.0": { | ||
"version": "0.0.1" | ||
} | ||
} | ||
} | ||
} | ||
|