Skip to content

Commit 724b349

Browse files
authored
Merge pull request #8 from JuliaComputing/autoservernum
Autoservernum
2 parents fac2c7c + 10c8c56 commit 724b349

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/Documentation.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,11 @@ jobs:
2929
private_registry_name: JuliaHubRegistry
3030
private_registry_uuid: de52bcdf-fcb2-40cf-a397-3d64b64f4d9c
3131
- name: Install dependencies
32-
run: DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project=docs -e 'using Pkg;
33-
ENV["DISPLAY"] = "0";
32+
run: DISPLAY=:0 xvfb-run --auto-servernum -s '-screen 0 1024x768x24' julia --project=docs -e 'using Pkg;
3433
Pkg.setprotocol!(; domain = "github.com", protocol = "ssh");
3534
Pkg.develop(PackageSpec(path=pwd()));
3635
Pkg.instantiate()'
3736
- name: Build and deploy
3837
env:
3938
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
40-
run: DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project=docs/ docs/make.jl
39+
run: DISPLAY=:0 xvfb-run --auto-servernum -s '-screen 0 1024x768x24' julia --project=docs/ docs/make.jl

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
> To be presented at JuliaCon 2024. https://pretalx.com/juliacon2024/talk/KGAKA8/
55
66
[![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)
7+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliacomputing.github.io/ModelingToolkitSampledData.jl/stable/)
8+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliacomputing.github.io/ModelingToolkitSampledData.jl/dev/)
79

810
A standard library with discrete-time components for ModelingToolkit.
911

@@ -13,3 +15,5 @@ Requires [JuliaSimCompiler.jl](https://help.juliahub.com/juliasimcompiler/stable
1315
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/).
1416

1517
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.
18+
19+

0 commit comments

Comments
 (0)