Closed andydevs closed 2 years ago
Build may not be caching properly on CI
Probably because you spelled workspace wrong
workspace
- name: Cache Dependencies uses: actions/cache@v2 with: path: | ${{ github.workspace }}/build/boost-prefix ${{ github.worksapce }}/build/opencv-prefix # <-- should be ${{ github.workspace }} key: dependencies
What if you just cached the entire build directory?
Clean Build
For now, the things that make up most of the build duration is OpenCV, with boost being second.
Build may not be caching properly on CI
Probably because you spelled
workspace
wrong