Ver Fonte

For CI - cache the MinGW tool directories without invalidator.
The .travis.yml file turns out to be a bad invalidator as well because it is also mutating between normal and MinGW CI builds.

Yao Wei Tjong 姚伟忠 há 8 anos atrás
pai
commit
342599a914
2 ficheiros alterados com 4 adições e 4 exclusões
  1. 2 2
      .appveyor.yml
  2. 2 2
      .travis.yml

+ 2 - 2
.appveyor.yml

@@ -31,8 +31,8 @@ cache:
   # Build
   # Build
   # mingw-Build
   # mingw-Build
   # Cache the MinGW compiler toolchains so that our CI builds do not chalk up their download stats
   # Cache the MinGW compiler toolchains so that our CI builds do not chalk up their download stats
-  - C:\tools\mingw32 -> .travis.yml
-  - C:\tools\mingw64 -> .travis.yml
+  - C:\tools\mingw32
+  - C:\tools\mingw64
 environment:
 environment:
   GIT_NAME:
   GIT_NAME:
     secure: onlJNy/nGFT1GXNdusL4jokojSPZ732EFaXwdhPnpM0=
     secure: onlJNy/nGFT1GXNdusL4jokojSPZ732EFaXwdhPnpM0=

+ 2 - 2
.travis.yml

@@ -138,8 +138,8 @@ cache:
   # Build
   # Build
   # mingw-Build
   # mingw-Build
   # Cache the MinGW compiler toolchains so that our CI builds do not chalk up their download stats
   # Cache the MinGW compiler toolchains so that our CI builds do not chalk up their download stats
-  - C:\tools\mingw32 -> .travis.yml
-  - C:\tools\mingw64 -> .travis.yml
+  - C:\tools\mingw32
+  - C:\tools\mingw64
 environment:
 environment:
   GIT_NAME:
   GIT_NAME:
     secure: onlJNy/nGFT1GXNdusL4jokojSPZ732EFaXwdhPnpM0=
     secure: onlJNy/nGFT1GXNdusL4jokojSPZ732EFaXwdhPnpM0=