Skip to content
This repository has been archived by the owner on Apr 18, 2022. It is now read-only.

Commit

Permalink
Comment out linkcheck step as it was before
Browse files Browse the repository at this point in the history
  • Loading branch information
Veetaha committed Aug 25, 2020
1 parent 213d343 commit 08106e7
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ env:

jobs:



tests:
name: Tests
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -79,13 +81,14 @@ jobs:
mdbook-version: 'latest'
if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest'

- name: install mdbook-linkcheck on stable, ubuntu-latest
env:
LINKCHECK_URL: https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v0.7.0/mdbook-linkcheck-v0.7.0-x86_64-unknown-linux-gnu.tar.gz
run: |
curl -L ${{ env.LINKCHECK_URL }} | tar -C ~/.cargo/bin -xzf -
echo -e "\n\n[output.linkcheck]" >> book/book.toml ## PROBABLY REMOVE THIS IN FAVOR OF ALWAYS HAVING IT AS OPTIONAL IN THE CONFIG
if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest'
# Should be working, but postponing until after we go live with GitHub Actions
# - name: install mdbook-linkcheck on stable, ubuntu-latest
# env:
# LINKCHECK_URL: https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v0.7.0/mdbook-linkcheck-v0.7.0-x86_64-unknown-linux-gnu.tar.gz
# run: |
# curl -L ${{ env.LINKCHECK_URL }} | tar -C ~/.cargo/bin -xzf -
# echo -e "\n\n[output.linkcheck]" >> book/book.toml ## PROBABLY REMOVE THIS IN FAVOR OF ALWAYS HAVING IT AS OPTIONAL IN THE CONFIG
# if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest'

- run: mdbook build book
if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit 08106e7

Please sign in to comment.