Operation timed out. Restarting workflow in parts.
This commit is contained in:
parent
6cf717b152
commit
f62da73cd4
1 changed files with 23 additions and 25 deletions
48
.github/workflows/build.yml
vendored
48
.github/workflows/build.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue