;ci: github: windows: tweak caching
This commit is contained in:
		
							parent
							
								
									4abeae5eeb
								
							
						
					
					
						commit
						45c0577397
					
				
							
								
								
									
										36
									
								
								.github/workflows/windows-nightly.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										36
									
								
								.github/workflows/windows-nightly.yml
									
									
									
									
										vendored
									
									
								
							| @ -66,6 +66,21 @@ jobs: | |||||||
| 
 | 
 | ||||||
|     # declare/restore cached things |     # declare/restore cached things | ||||||
| 
 | 
 | ||||||
|  |     - name: Cache stack local bin dir | ||||||
|  |       id:   stack-local-bin-dir | ||||||
|  |       uses: actions/cache@v1 | ||||||
|  |       with: | ||||||
|  |         path: C:\Users\runneradmin\AppData\Roaming\stack\ | ||||||
|  |         key:          ${{ runner.os }}-appdata-roaming-stack-${{ hashFiles('**.yaml') }} | ||||||
|  |         restore-keys: ${{ runner.os }}-appdata-roaming-stack | ||||||
|  | 
 | ||||||
|  |     - name: showStuff | ||||||
|  |       shell: bash | ||||||
|  |       run: | | ||||||
|  |         ls -lFRa /c/users/runneradmin/appdata/roaming/stack/local/bin | ||||||
|  |         ls -lFRa /c/users/runneradmin/appdata/roaming/stack/local | ||||||
|  |         ls -lFRa /c/users/runneradmin/appdata/roaming/stack | ||||||
|  | 
 | ||||||
|     - name: Cache stack global db   # downloaded ghcs, package indexes, third-party haskell deps |     - name: Cache stack global db   # downloaded ghcs, package indexes, third-party haskell deps | ||||||
|       id:   stack-global-db |       id:   stack-global-db | ||||||
|       uses: actions/cache@v1 |       uses: actions/cache@v1 | ||||||
| @ -76,14 +91,6 @@ jobs: | |||||||
|         key:          ${{ runner.os }}-appdata-local-programs-stack-${{ hashFiles('**.yaml') }} |         key:          ${{ runner.os }}-appdata-local-programs-stack-${{ hashFiles('**.yaml') }} | ||||||
|         restore-keys: ${{ runner.os }}-appdata-local-programs-stack |         restore-keys: ${{ runner.os }}-appdata-local-programs-stack | ||||||
| 
 | 
 | ||||||
|     - name: Cache stack local bin dir |  | ||||||
|       id:   stack-local-bin-dir |  | ||||||
|       uses: actions/cache@v1 |  | ||||||
|       with: |  | ||||||
|         path: C:\Users\runneradmin\AppData\Roaming\stack\ |  | ||||||
|         key:          ${{ runner.os }}-appdata-roaming-stack-${{ hashFiles('**.yaml') }} |  | ||||||
|         restore-keys: ${{ runner.os }}-appdata-roaming-stack |  | ||||||
| 
 |  | ||||||
|     # stack's local package dbs for the project and each package |     # stack's local package dbs for the project and each package | ||||||
|     - name: Cache .stack-work |     - name: Cache .stack-work | ||||||
|       uses: actions/cache@v1 |       uses: actions/cache@v1 | ||||||
| @ -127,6 +134,7 @@ jobs: | |||||||
| 
 | 
 | ||||||
|     - name: Install stack |     - name: Install stack | ||||||
|       if: steps.stack-local-bin-dir.outputs.cache-hit != 'true' |       if: steps.stack-local-bin-dir.outputs.cache-hit != 'true' | ||||||
|  |       # need this step to install stack.exe into PATH for now | ||||||
|       run: | |       run: | | ||||||
|         curl -skL -o stack.zip http://www.stackage.org/stack/windows-x86_64 |         curl -skL -o stack.zip http://www.stackage.org/stack/windows-x86_64 | ||||||
|         7z x stack.zip -oC:\Windows stack.exe |         7z x stack.zip -oC:\Windows stack.exe | ||||||
| @ -134,9 +142,9 @@ jobs: | |||||||
| 
 | 
 | ||||||
|     - name: Install GHC |     - name: Install GHC | ||||||
|       if: steps.stack-global-db.outputs.cache-hit != 'true' |       if: steps.stack-global-db.outputs.cache-hit != 'true' | ||||||
|       # echo "::add-path::C:\Users\runneradmin\AppData\Roaming\stack\local\bin" |  | ||||||
|       run: | |       run: | | ||||||
|         C:\Users\runneradmin\AppData\Roaming\stack\local\bin\stack --no-terminal setup --install-ghc |         set PATH=C:\Users\runneradmin\AppData\Roaming\stack\local\bin;%PATH% | ||||||
|  |         stack --no-terminal setup --install-ghc | ||||||
| 
 | 
 | ||||||
|     # - name: Install shelltestrunner |     # - name: Install shelltestrunner | ||||||
|     # - if [[ ! -x ~/.local/bin/shelltest ]]; then stack install shelltestrunner-1.9; fi |     # - if [[ ! -x ~/.local/bin/shelltest ]]; then stack install shelltestrunner-1.9; fi | ||||||
| @ -144,12 +152,14 @@ jobs: | |||||||
| 
 | 
 | ||||||
|     - name: Install haskell deps |     - name: Install haskell deps | ||||||
|       if: steps.stack-global-db.outputs.cache-hit != 'true' |       if: steps.stack-global-db.outputs.cache-hit != 'true' | ||||||
|       #  echo "::add-path::C:\Users\runneradmin\AppData\Roaming\stack\local\bin" |  | ||||||
|       run: | |       run: | | ||||||
|         C:\Users\runneradmin\AppData\Roaming\stack\local\bin\stack --no-terminal build --only-dependencies |         set PATH=C:\Users\runneradmin\AppData\Roaming\stack\local\bin;%PATH% | ||||||
|  |         stack --no-terminal build --only-dependencies | ||||||
| 
 | 
 | ||||||
|     - name: Build hledger |     - name: Build hledger | ||||||
|       run: C:\Users\runneradmin\AppData\Roaming\stack\local\bin\stack --no-terminal install --ghc-options=-Werror |       run: | | ||||||
|  |         set PATH=C:\Users\runneradmin\AppData\Roaming\stack\local\bin;%PATH% | ||||||
|  |         stack --no-terminal install --ghc-options=-Werror | ||||||
| 
 | 
 | ||||||
|     # run hledger-lib/hledger functional tests, skipping the ones for addons |     # run hledger-lib/hledger functional tests, skipping the ones for addons | ||||||
|     #- COLUMNS=80 stack exec -- shelltest --execdir -j16 tests -x /bin -x /addons |     #- COLUMNS=80 stack exec -- shelltest --execdir -j16 tests -x /bin -x /addons | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user