Skip to content
Snippets Groups Projects
  1. Nov 22, 2022
  2. Nov 21, 2022
  3. Nov 18, 2022
  4. Nov 17, 2022
  5. Nov 16, 2022
  6. Nov 15, 2022
  7. Nov 14, 2022
  8. Nov 11, 2022
  9. Nov 10, 2022
  10. Nov 09, 2022
    • Yaroslav Dynnikov's avatar
      fix(ci): concurrent cache access · ffe18d93
      Yaroslav Dynnikov authored
      Saving cache isn't instantaneous. Usually it takes about a minute.
      If another job tries to restore cache at the same time, it fails
      with the error "tar: Unexpected EOF in archive".
      
      Now tar writes to a different filename with a random suffix, and then
      renames it atomically.
      ffe18d93
    • Yaroslav Dynnikov's avatar
      fix(ci): build master branch with clean cache · 3b274b4e
      Yaroslav Dynnikov authored
      CI on master branch always reuses the same archive. As a result, its
      size gradually grows. It already takes more than 6GB, while it should be
      about 3GB large. It makes restoring the cache slower and slower.
      
      With this patch the cache is cleared every time in master branch.
      3b274b4e
Loading