Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates the Linux CI build image to build-22756092 which was built against commit 62da781. Due to a combination of two bugs in the clean up script, we've lost all the images except for the one reference by the 8.1.0 tag, build-13234037. 1. The clean up script was supposed to be configured to retain images reference by all tags. However, it was only retaining the image reference by the most recent tag. This was fixed by using `git rev-list --tags --simplify-by-decoration --dense` instead of `git rev-list --tags -n 1` 1. The clean up script was configured to retain images reference by the last two weeks of commits. There has been a period without any commits in two weeks, so the images reference by the current tip of master were collected. This has been fixed by adding the results of `git rev-list --reverse -n 10 origin/master` to the set of root commits. Fixes microsoft#979
- Loading branch information