julia compat #905
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: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
NBCONVERT_JOBS: '16' | |
LITERATE_PROC: '16' | |
JULIA_NUM_THREADS: '2' | |
ALLOWERRORS: 'false' | |
NBCACHE: '.cache' | |
JULIA_CONDAPKG_BACKEND: 'Null' | |
JULIA_CI: 'true' | |
jobs: | |
CI: | |
runs-on: self-hosted | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
id: setup-python | |
with: | |
python-version: '3.x' | |
check-latest: true | |
# - name: Setup uv | |
# run: curl -LsSf https://astral.sh/uv/install.sh | sh | |
- name: Install Python dependencies | |
run: pip install -r requirements.txt | |
- name: Read Julia version | |
id: read_toml | |
run: echo value=$(python -c 'import tomllib; from pathlib import Path; print(tomllib.loads(Path("Manifest.toml").read_text())["julia_version"])') >> "$GITHUB_OUTPUT" | |
- name: Get environment hash | |
id: hash | |
run: | | |
echo "value=${{ hashFiles('Project.toml', 'Manifest.toml', 'src/**') }}" >> "$GITHUB_OUTPUT" | |
echo "ver=${{ runner.os }}-julia-${{ steps.read_toml.outputs.value }}" >> "$GITHUB_OUTPUT" | |
- name: Cache executed notebooks | |
uses: actions/cache@v4 | |
id: cache-nb | |
with: | |
path: | | |
${{ env.NBCACHE }}/**/*.ipynb | |
${{ env.NBCACHE }}/**/*.sha | |
key: notebook-${{ steps.hash.outputs.value }}-${{ hashFiles('docs/**/*.ipynb', 'docs/**/*.jl') }} | |
restore-keys: | | |
notebook-${{ steps.hash.outputs.value }}- | |
- name: Setup Julia | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ steps.read_toml.outputs.value }} | |
- name: Restore Julia packages | |
uses: actions/cache/restore@v4 | |
if: ${{ runner.environment == 'github-hosted' }} | |
id: cache-julia | |
with: | |
path: ~/.julia | |
key: ${{ steps.hash.outputs.ver }}-${{ steps.hash.outputs.value }} | |
restore-keys: | | |
${{ steps.hash.outputs.ver }}- | |
- name: Install Julia packages | |
if: ${{ runner.environment == 'self-hosted' || steps.cache-julia.outputs.cache-hit != 'true' }} | |
shell: julia --color=yes {0} | |
run: | | |
using Pkg | |
Pkg.add(["Literate", "Tables", "MarkdownTables", "JSON"]) | |
Pkg.activate(".") | |
Pkg.instantiate() | |
Pkg.precompile() | |
- name: Clean Julia package directory | |
if: ${{ runner.environment == 'github-hosted' && steps.cache-julia.outputs.cache-hit != 'true' }} | |
shell: julia --color=yes {0} | |
run: | | |
using Pkg, Dates | |
Pkg.gc(collect_delay=Day(0)) | |
- name: Save Julia packages | |
uses: actions/cache/save@v4 | |
if: ${{ runner.environment == 'github-hosted' && steps.cache-julia.outputs.cache-hit != 'true' }} | |
with: | |
path: ~/.julia | |
key: ${{ steps.cache-julia.outputs.cache-primary-key }} | |
- name: Run notebooks | |
if: ${{ steps.cache-nb.outputs.cache-hit != 'true' }} | |
run: julia --project=@. --color=yes -p ${{ env.LITERATE_PROC }} .github/ci.jl | |
- name: Copy back built notebooks | |
run: cp --verbose -rf ${{ env.NBCACHE }}/docs/* docs/ | |
- name: Build website | |
run: jupyter-book build docs/ | |
- name: Copy environment to website | |
run: cp Manifest.toml Project.toml requirements.txt ./docs/_build/html | |
- name: Deploy pages | |
uses: peaceiris/actions-gh-pages@v4 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/_build/html | |
force_orphan: true | |
commit_message: ${{ github.event.head_commit.message }} |