Skip to content

Commit

Permalink
[ci] ignore docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkelly committed Jul 5, 2022
1 parent 045d355 commit b36ad65
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,30 +48,30 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run${{ matrix.os }}-${{ matrix.version }}-${{ matrix.arch }}
parallel: true
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- run: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- run: |
julia --project=docs -e '
using Documenter: DocMeta, doctest
using GeometricalPredicates
DocMeta.setdocmeta!(GeometricalPredicates, :DocTestSetup, :(using GeometricalPredicates); recursive=true)
doctest(GeometricalPredicates)'
- run: julia --project=docs docs/make.jl
env:
JULIA_PKG_SERVER: ""
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
# docs:
# name: Documentation
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: julia-actions/setup-julia@v1
# with:
# version: '1'
# - run: |
# julia --project=docs -e '
# using Pkg
# Pkg.develop(PackageSpec(path=pwd()))
# Pkg.instantiate()'
# - run: |
# julia --project=docs -e '
# using Documenter: DocMeta, doctest
# using GeometricalPredicates
# DocMeta.setdocmeta!(GeometricalPredicates, :DocTestSetup, :(using GeometricalPredicates); recursive=true)
# doctest(GeometricalPredicates)'
# - run: julia --project=docs docs/make.jl
# env:
# JULIA_PKG_SERVER: ""
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
finish:
needs: test
if: always()
Expand Down

0 comments on commit b36ad65

Please sign in to comment.