Skip to content

Commit 985ae79

Browse files
authored
Merge pull request #213 from control-toolbox/develop
Develop
2 parents 890843f + cd1f548 commit 985ae79

17 files changed

Lines changed: 3431 additions & 167 deletions

.github/workflows/CI.yml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,18 @@ jobs:
1111
# Job for the GitHub hosted runners (ubuntu, windows, macos)
1212
test-github:
1313
uses: control-toolbox/CTActions/.github/workflows/ci.yml@main
14-
15-
# Job for the self-hosted runner moonshot (GPU/CUDA)
16-
test-moonshot:
17-
uses: control-toolbox/CTActions/.github/workflows/ci.yml@main
1814
with:
19-
versions: '["1"]'
20-
runs_on: '["moonshot"]'
21-
archs: '["x64"]'
22-
runner_type: 'self-hosted'
15+
runs_on: '["ubuntu-latest", "macos-latest"]'
16+
runner_type: 'github'
17+
use_ct_registry: true
18+
secrets:
19+
SSH_KEY: ${{ secrets.SSH_KEY }}
20+
21+
# Job for the self-hosted runner moonshot (GPU/CUDA)
22+
#  test-moonshot:
23+
#  uses: control-toolbox/CTActions/.github/workflows/ci.yml@main
24+
#  with:
25+
#  versions: '["1"]'
26+
#  runs_on: '["moonshot"]'
27+
#  archs: '["x64"]'
28+
#  runner_type: 'self-hosted'

.github/workflows/Documentation.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ on:
88
jobs:
99
call:
1010
uses: control-toolbox/CTActions/.github/workflows/documentation.yml@main
11+
with:
12+
use_ct_registry: true
13+
secrets:
14+
SSH_KEY: ${{ secrets.SSH_KEY }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ reports/
3131

3232
# claude
3333
CLAUDE.local.md
34+
.claude/

Project.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
name = "CTParser"
22
uuid = "32681960-a1b1-40db-9bff-a1ca817385d1"
3-
version = "0.8.1"
3+
version = "0.8.3-beta"
44
authors = ["Jean-Baptiste Caillau <jean-baptiste.caillau@univ-cotedazur.fr>"]
55

66
[deps]
77
CTBase = "54762871-cc72-4466-b8e8-f6c8b58076cd"
88
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
9+
ExaModels = "1037b233-b668-4ce9-9b63-f9f681f55dd2"
10+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
911
MLStyle = "d8e11817-5142-5d16-987a-aa16d5891078"
1012
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
1113
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
1214
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
1315

1416
[compat]
15-
CTBase = "0.17"
17+
CTBase = "0.18"
1618
DocStringExtensions = "0.9"
19+
ExaModels = "0.9.3"
20+
LinearAlgebra = "1"
1721
MLStyle = "0.4"
1822
OrderedCollections = "1"
1923
Parameters = "0.12"

docs/Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
55
MarkdownAST = "d0879d2d-cac2-40c8-9cee-1863dc0c7391"
66

77
[compat]
8-
CTBase = "0.17"
8+
CTBase = "0.18"
99
Documenter = "1"
10+
Markdown = "1"
1011
MarkdownAST = "0.1"
12+
julia = "1.10"

src/CTParser.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ using Unicode
2222
# sources
2323
include("defaults.jl")
2424
include("utils.jl")
25+
include("exa_linalg.jl")
2526
include("onepass.jl")
2627
include("initial_guess.jl")
2728

0 commit comments

Comments
 (0)