-
Notifications
You must be signed in to change notification settings - Fork 11
51 lines (48 loc) · 1.93 KB
/
documentation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Documentation
permissions:
actions: write
contents: read
on:
push:
branches:
- master
tags: '*'
pull_request:
jobs:
build:
# permissions:
# contents: write
runs-on: ubuntu-latest
steps:
# This is from the GLMakie github action
# - run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev xsettingsd x11-xserver-utils
- uses: actions/checkout@v3
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev xsettingsd x11-xserver-utils
- uses: julia-actions/setup-julia@latest
with:
version: '1.9'
- uses: julia-actions/cache@v1
with:
# cache-name: master-docs
# WARNING: cache-registries is actually slower for Windows runners
cache-registries: "true"
# WARNING: cache-compiled can break with certain choices of OS and architecture.
# see https://github.com/julia-actions/cache/issues/11
cache-compiled: "true"
# the following line goes below after using Pkg
# Pkg.develop([PackageSpec(url="https://github.com/esabo/RamanujanGraphs.jl"), PackageSpec(path=pwd())])
- name: Install dependencies
run: |
DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project=docs/ -e '
using Pkg
Pkg.develop([PackageSpec(path=pwd())])
Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.Docs }}
run: DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project=docs/ docs/make.jl
# run: julia --project=docs/ --code-coverage=user docs/make.jl
# - uses: julia-actions/julia-processcoverage@v1
# - uses: codecov/codecov-action@v1