You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2020/09/11 16:35:52 UTC

[GitHub] [incubator-nuttx] v01d opened a new pull request #1762: CI: make source cache dependant on run number

v01d opened a new pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762


   ## Summary
   
   This attempts to solve a problem where sometimes the source cache is being downloaded from Linux/Mac jobs as empty. I suspect it happens when the workflow runs again. 
   
   ## Impact
   
   CI
   
   ## Testing
   
   Test via CI of this PR itself


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
btashton commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691199528


   @v01d can you just remove the use of the cache for the source.  With the new github cache infra the cache is never ready in time and it make this more complex.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on a change in pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
btashton commented on a change in pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#discussion_r487170723



##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on a change in pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
btashton commented on a change in pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#discussion_r487170723



##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691213610






----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
btashton commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691216935


   > So I should just leave the source passing between jobs via artifacts as it happens on cache miss?
   
   Yeah, we can also move from `actions/upload-artifact@v1` to `actions/upload-artifact@v2`  (and the download) and drop having the extra create source bundle step where the tar.gz is created.  That will improve the performance on that step as well.
   V2 supports directory and not just file uploads https://github.com/actions/upload-artifact#upload-an-entire-directory


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
xiaoxiang781216 commented on a change in pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#discussion_r487170378



##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
btashton commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691199528






----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton merged pull request #1762: CI: do not use source cache, but artifacts instead

Posted by GitBox <gi...@apache.org>.
btashton merged pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762






----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691220423


   I just updated the PR to reflect the new way


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
xiaoxiang781216 commented on a change in pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#discussion_r487170378



##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] xiaoxiang781216 commented on a change in pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
xiaoxiang781216 commented on a change in pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#discussion_r487170378



##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       Should we modify the same file in apps and testing git?




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
btashton commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691220481


   > Ok, I can do that. Just checked the v2 and this is a bit concerning if the directory is used instead of tar: https://github.com/actions/upload-artifact#case-insensitive-uploads
   > If you don't think it is a problem I can follow your suggestion.
   
   Good catch.  Mostly on the permissions bit limitation.  I think it makes sense to just do the tar not tar.gz as they show, that way we do not compress twice.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on a change in pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
btashton commented on a change in pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#discussion_r487170723



##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton merged pull request #1762: CI: do not use source cache, but artifacts instead

Posted by GitBox <gi...@apache.org>.
btashton merged pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #1762: CI: do not use source cache, but artifacts instead

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691247996


   Yup, I added the tar step and moved back to v1 as it failed with a permission problem.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691219165


   Ok, I can do that. Just checked the v2 and this is a bit concerning if the directory is used instead of tar: https://github.com/actions/upload-artifact#case-insensitive-uploads
   If you don't think it is a problem I can follow your suggestion.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on a change in pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
btashton commented on a change in pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#discussion_r487170723



##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss no that GitHub has made cache faster.

##########
File path: .github/workflows/build.yml
##########
@@ -121,7 +121,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: sources
-          key: build-sources-${{ github.run_id }}
+          key: build-sources-${{ github.run_id }}-${{ github.run_number }}

Review comment:
       We need to just drop the cache.  We always miss now that GitHub has made cache faster.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #1762: CI: do not use source cache, but artifacts instead

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691282548


   Ok, should be good to merge.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton merged pull request #1762: CI: do not use source cache, but artifacts instead

Posted by GitBox <gi...@apache.org>.
btashton merged pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762


   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
btashton commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691199528






----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton commented on pull request #1762: CI: do not use source cache, but artifacts instead

Posted by GitBox <gi...@apache.org>.
btashton commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691229358


   Looks like uploading a directory is a bad idea, they seem to be streaming each file.  So yeah lets move back to tar as it was before.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] btashton merged pull request #1762: CI: do not use source cache, but artifacts instead

Posted by GitBox <gi...@apache.org>.
btashton merged pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762






----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #1762: CI: do not use source cache, but artifacts instead

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691221174


   Ok, I just pushed without the tar, I can bring it back.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691213610






----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-nuttx] v01d commented on pull request #1762: CI: make source cache dependant on run number

Posted by GitBox <gi...@apache.org>.
v01d commented on pull request #1762:
URL: https://github.com/apache/incubator-nuttx/pull/1762#issuecomment-691213610


   So I should just leave the source passing between jobs via artifacts as it happens on cache miss?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org