Skip to content
Snippets Groups Projects
Unverified Commit 40b63180 authored by Mikolaj Konarski's avatar Mikolaj Konarski Committed by GitHub
Browse files

Merge pull request #8595 from Mikolaj/urlopen-timeout-CI-4th-attempt

Cache whole of ~/.cabal in bootstrap.yml to fix CI
parents 80f606cc 18fe1bc0
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,14 @@ jobs: ...@@ -26,6 +26,14 @@ jobs:
name: Bootstrap ${{ matrix.os }} ghc-${{ matrix.ghc }} name: Bootstrap ${{ matrix.os }} ghc-${{ matrix.ghc }}
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/cache@v3
name: Cache the downloads
id: bootstrap-cache
with:
path: "~/.cabal"
key: bootstrap-${{ runner.os }}-${{ matrix.ghc }}-20221115-${{ github.sha }}
restore-keys: bootstrap-${{ runner.os }}-${{ matrix.ghc }}-20221115-
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: bootstrap.py - name: bootstrap.py
run: | run: |
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment