Try to fix LatexStrings not getting their preambles #170
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
tags: '*' | |
# needed to allow julia-actions/cache to delete old caches that it has created | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
test: | |
name: Tests, Julia ${{ matrix.version }} - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1' | |
os: | |
- ubuntu-latest | |
- windows | |
- macos | |
arch: | |
- x64 | |
steps: | |
# Cancel ongoing CI test runs if pushing to branch again before the previous tests | |
# have finished | |
- name: Cancel ongoing test runs for previous commits | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
# Do tests | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-runtest@v1 | |
env: | |
DISPLAY: ':0' | |
with: | |
prefix: xvfb-run -s '-screen 0 1024x768x24' | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: test_images | |
path: test_images/ | |
docs: | |
name: Build and deploy documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install binary dependencies | |
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 | |
- uses: actions/checkout@v4 | |
- name: Download all workflow run artifacts | |
uses: actions/download-artifact@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1' | |
- uses: julia-actions/cache@v2 | |
- name: Install documentation dependencies | |
run: | | |
xvfb-run -s '-screen 0 1024x768x24' julia --project=docs -e ' | |
using Pkg | |
Pkg.develop(PackageSpec(path=pwd())) | |
# Pkg.add([PackageSpec(name = "DocumenterVitepress", rev = "master"), PackageSpec(name = "Makie", rev = "master"), PackageSpec(name = "MakieCore", rev = "master"), PackageSpec(name = "CairoMakie", rev = "master")]) | |
Pkg.instantiate()' | |
env: | |
DISPLAY: ':0' | |
- name: Build and deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key | |
DISPLAY: ':0' | |
run: xvfb-run -s '-screen 0 1024x768x24' julia --project=docs/ docs/make.jl deploy |