Operation timed out. Restarting workflow in parts.

This commit is contained in:
Wen Kokke 2021-09-02 13:40:53 +01:00
parent 6cf717b152
commit f62da73cd4
No known key found for this signature in database
GPG key ID: 7EB7DBBCEB539DB8

View file

@ -51,43 +51,41 @@ jobs:
echo "::set-output name=gemdir::$(gem env gemdir)"
shell: bash
- name: Cache HTMLProofer
uses: actions/cache@v2
id: cache-htmlproofer
with:
path: ${{ steps.ruby-info.outputs.gemdir }}
key: ${{ matrix.os }}-ruby-${{ steps.ruby-info.outputs.ruby }}-gem-${{ steps.ruby-info.outputs.gem }}
- name: Setup HTMLProofer
if: steps.cache-htmlproofer.outputs.cache-hit != 'true'
run: sudo gem install html-proofer
shell: bash
- name: Cache HTMLProofer
uses: actions/cache@v2
id: cache-htmlproofer
with:
path: |
${{ steps.ruby-info.outputs.gemdir }}
key: ${{ matrix.os }}-ruby-${{ steps.ruby-info.outputs.ruby }}-gem-${{ steps.ruby-info.outputs.gem }}
# Setup & Cache site builder
- name: Cache Site Builder
uses: actions/cache@v2
id: cache-site-builder
with:
path: |
$GITHUB_WORKSPACE/.stack-work
key: ${{ matrix.os }}-ghc-${{ matrix.ghc }}-agda-${{ matrix.agda }}
# - name: Cache Site Builder
# uses: actions/cache@v2
# id: cache-site-builder
# with:
# path: $GITHUB_WORKSPACE/.stack-work
# key: ${{ matrix.os }}-ghc-${{ matrix.ghc }}-agda-${{ matrix.agda }}
- name: Build Site Builder
if: steps.cache-site-builder.outputs.cache-hit != 'true'
run: make build-deps
shell: bash
# - name: Build Site Builder
# if: steps.cache-site-builder.outputs.cache-hit != 'true'
# run: make build-deps
# shell: bash
# Build & Test Website
- name: Build Website
run: make build
shell: bash
# - name: Build Website
# run: make build
# shell: bash
- name: Test Website
run: make test
shell: bash
# - name: Test Website
# run: make test
# shell: bash