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
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ on:
- main
tags: '*'
pull_request:
types: [labeled, synchronize, opened, reopened]

jobs:
# Job pour les runners GitHub hosted (ubuntu, windows, macos)
test-cpu-github:
if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'run ci cpu')
uses: control-toolbox/CTActions/.github/workflows/ci.yml@main
with:
runs_on: '["ubuntu-latest", "macos-latest"]'
Expand All @@ -20,6 +22,7 @@ jobs:

# Job pour le runner self-hosted kkt (GPU/CUDA)
test-gpu-kkt:
if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'run ci gpu')
uses: control-toolbox/CTActions/.github/workflows/ci.yml@main
with:
versions: '["1"]'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ on:
- main
tags: '*'
pull_request:
types: [labeled, synchronize, opened, reopened]

jobs:
call:
if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'run documentation')
uses: control-toolbox/CTActions/.github/workflows/documentation.yml@main
with:
use_ct_registry: true
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "CTSolvers"
uuid = "d3e8d392-8e4b-4d9b-8e92-d7d4e3650ef6"
version = "0.4.15"
version = "0.4.16"
authors = ["Olivier Cots <olivier.cots@toulouse-inp.fr>"]

[deps]
Expand Down Expand Up @@ -41,7 +41,7 @@ ADNLPModels = "0.8"
Aqua = "0.8"
BenchmarkTools = "1"
CTBase = "0.18"
CTModels = "0.9, 0.10"
CTModels = "0.10"
CUDA = "5, 6"
CommonSolve = "0.2"
DocStringExtensions = "0.9"
Expand Down
Loading