Skip to content

Commit 9f8f12a

Browse files
authored
Merge branch 'main' into paramfixes
2 parents 9bb528d + 4c897d6 commit 9f8f12a

File tree

16 files changed

+803
-209
lines changed

16 files changed

+803
-209
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,30 @@ env:
1313
jobs:
1414
test:
1515
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16-
runs-on: self-hosted
16+
runs-on: ubuntu-latest
1717
strategy:
1818
fail-fast: false
1919
matrix:
2020
version:
2121
- '1'
2222
os:
23-
- self-hosted
23+
- ubuntu-latest
2424
arch:
2525
- x64
2626
steps:
2727
- name: Set debug env
2828
run: export JULIA_DEBUG="loading"
2929
- uses: actions/[email protected]
30+
- uses: julia-actions/cache@v1
3031
- uses: julia-actions/setup-julia@v1
3132
with:
3233
version: ${{ matrix.version }}
3334
arch: ${{ matrix.arch }}
34-
- uses: webfactory/[email protected]
35-
with:
36-
ssh-private-key: ${{ secrets.JULIASIM_REGISTRY_SSH_KEY }}
3735
- uses: PumasAI/add-private-registry@main
3836
with:
3937
juliahub_token_encoded: ${{ secrets.JULIAHUB_TOKEN_ENCODED }}
40-
private_registry_name: JuliaSimRegistry
41-
private_registry_uuid: 309a7822-a73e-4490-9504-7d1983f27685
38+
private_registry_name: JuliaHubRegistry
39+
private_registry_uuid: de52bcdf-fcb2-40cf-a397-3d64b64f4d9c
4240
- uses: julia-actions/julia-buildpkg@v1
4341
- uses: julia-actions/julia-runtest@v1
4442
- uses: julia-actions/julia-processcoverage@v1

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_dispatch:
66
jobs:
77
CompatHelper:
8-
runs-on: self-hosted
8+
runs-on: ubuntu-latest
99
steps:
1010
- name: Pkg.add("CompatHelper")
1111
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'

.github/workflows/Documentation.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,21 @@ jobs:
1717
permissions:
1818
contents: write
1919
statuses: write
20-
runs-on: self-hosted
20+
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/[email protected]
23+
- uses: julia-actions/cache@v1
2324
- uses: julia-actions/setup-julia@latest
2425
with:
2526
version: '1'
26-
- uses: webfactory/[email protected]
27-
with:
28-
ssh-private-key: ${{ secrets.JULIASIM_REGISTRY_SSH_KEY }}
2927
- uses: PumasAI/add-private-registry@main
3028
with:
3129
juliahub_token_encoded: ${{ secrets.JULIAHUB_TOKEN_ENCODED }}
32-
private_registry_name: JuliaSimRegistry
33-
private_registry_uuid: 309a7822-a73e-4490-9504-7d1983f27685
30+
private_registry_name: JuliaHubRegistry
31+
private_registry_uuid: de52bcdf-fcb2-40cf-a397-3d64b64f4d9c
3432
- name: Install dependencies
3533
run: DISPLAY=:0 xvfb-run --auto-servernum -s '-screen 0 1024x768x24' julia --project=docs -e 'using Pkg;
36-
Pkg.setprotocol!(; domain = "github.com", protocol = "ssh");
37-
Pkg.add(PackageSpec(name = "JuliaSimCompiler", url = "https://github.com/JuliaComputing/JuliaSimCompiler.jl", rev = "master"));
34+
Pkg.add(PackageSpec(name = "ModelingToolkitStandardLibrary", url = "https://github.com/SciML/ModelingToolkitStandardLibrary.jl", rev = "main"));
3835
Pkg.develop(PackageSpec(path=pwd()));
3936
Pkg.instantiate()'
4037
- name: Build and deploy

.github/workflows/TagBot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
github.actor == 'ChrisRackauckas' &&
1313
startsWith(github.event.comment.body, 'Triggering TagBot')
1414
)
15-
runs-on: self-hosted
15+
runs-on: ubuntu-latest
1616
steps:
1717
- uses: JuliaRegistries/TagBot@v1
1818
with:

Project.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,13 @@ URDF = ["LightXML", "Graphs", "MetaGraphsNext", "JuliaFormatter"]
3232
CoordinateTransformations = "0.6"
3333
DataInterpolations = "5, 6"
3434
FileIO = "1"
35+
Graphs = "1.0"
36+
JuliaFormatter = "1.0"
3537
JuliaSimCompiler = "0.1.12"
38+
LightXML = "0.9"
3639
LinearAlgebra = "1.6"
3740
MeshIO = "0.4"
41+
MetaGraphsNext = "0.7"
3842
ModelingToolkit = "9"
3943
ModelingToolkitStandardLibrary = "2.7.2"
4044
Rotations = "1.4"

0 commit comments

Comments
 (0)