Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ jobs:
private_registry_name: JuliaHubRegistry
private_registry_uuid: de52bcdf-fcb2-40cf-a397-3d64b64f4d9c
- name: Install dependencies
run: DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project=docs -e 'using Pkg;
ENV["DISPLAY"] = "0";
run: DISPLAY=:0 xvfb-run --auto-servernum -s '-screen 0 1024x768x24' julia --project=docs -e 'using Pkg;
Pkg.setprotocol!(; domain = "github.com", protocol = "ssh");
Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
run: DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project=docs/ docs/make.jl
run: DISPLAY=:0 xvfb-run --auto-servernum -s '-screen 0 1024x768x24' julia --project=docs/ docs/make.jl
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
> To be presented at JuliaCon 2024. https://pretalx.com/juliacon2024/talk/KGAKA8/

[![Build Status](https://github.com/JuliaComputing/ModelingToolkitSampledData.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaComputing/ModelingToolkitSampledData.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliacomputing.github.io/ModelingToolkitSampledData.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliacomputing.github.io/ModelingToolkitSampledData.jl/dev/)

A standard library with discrete-time components for ModelingToolkit.

Expand All @@ -13,3 +15,5 @@ Requires [JuliaSimCompiler.jl](https://help.juliahub.com/juliasimcompiler/stable
To install this library, first follow the [installation instructions for JuliaSimCompiler](https://juliacomputing.github.io/JuliaSimCompiler.jl/stable/#Installing-and-Using-JuliaSimCompiler). In particular, you need to [add the JuliaHub Registry](https://help.juliahub.com/juliasim/dev/gettingstarted/juliahubregistry/).

After the registry is added and JuliaSimCompiler is installed, you may install this package. This package is currently not registered in any register and must thus be installed by URL.


Loading