west does not follow a moving tag
See original GitHub issueAs requested on Discord.
Our local build system generates and updates a git tag on some regularly cadence, for example a “nightly” tag that moves forward when the daily CI runs pass. Under previous versions of west (I believe 0.10.1 was what I was at), a west update
would correctly follow the tag, and pull down the now latest version of that repository.
With west v 0.11.1 this pattern no longer works. It appears that west determines it already has the tag and therefore does not need to run git fetch on it.
This can be worked around by running west update -f always
(which can be made default with a west config update.fetch always
} but that appears to pull down a lot more detail than needed.
Example west.yml:
- name: our_module
remote: github
repo-path: some/path/our_module
revision: NIGHTLY
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
New Residents - WV Division of Motor Vehicles
If you are moving to West Virginia and the vehicle title is being held by a lien holder, you must submit the following:...
Read more >Things Horizon Forbidden West Doesn't Tell You - IGN
While riding a Mount, if you let go of the Left Analog Stick while moving, they'll automatically follow the path, and even try...
Read more >Manufactured Housing HUD Labels (Tags)
If the certification label (also known as a HUD tag) is missing from a home, the Department does not reissue labels for manufactured...
Read more >sync — AWS CLI 1.27.37 Command Reference
--follow-symlinks | --no-follow-symlinks (boolean) Symbolic links are followed only when uploading to S3 from the local filesystem. Note that S3 does not ......
Read more >Town of West Springfield, MA Operation of Vehicles - eCode360
400-33 Distance between slow-moving vehicles. ... The driver of a vehicle shall not follow another vehicle more closely than is reasonable and prudent, ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
That is the correct xkcd I was thinking of. And spacebar heating is extremely underrated.
Thank you for the answers and closing the issue. I was going to close it as well given the direction of answers provided.
Adding the
--narrow
flag restores a behavior similar to pre-v0.11.1 update. Thanks for that suggestion as I wouldn’t have thought to use it.