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
16 changes: 8 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ updates:
- package-ecosystem: "julia"
directories:
- "/"
- "/CanonicalMoments.jl"
- "/CanonicalMoments.jl/docs"
- "/CanonicalMoments.jl/examples"
- "/CanonicalMoments.jl/test"
- "/DiscreteMeasures.jl"
- "/DiscreteMeasures.jl/docs"
- "/OUQBase.jl"
- "/OUQBase.jl/test"
- "/lib/CanonicalMoments"
- "/lib/CanonicalMoments/docs"
- "/lib/CanonicalMoments/examples"
- "/lib/CanonicalMoments/test"
- "/lib/DiscreteMeasures"
- "/lib/DiscreteMeasures/docs"
- "/lib/OUQBase"
- "/lib/OUQBase/test"
schedule:
interval: "daily"
groups:
Expand Down
35 changes: 0 additions & 35 deletions .github/workflows/Downgrade.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/DowngradeSublibraries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Downgrade Sublibraries

on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
downgrade-sublibraries:
name: "Downgrade Sublibraries"
uses: "SciML/.github/.github/workflows/sublibrary-downgrade.yml@v1"
secrets: "inherit"
with:
julia-version: "1.10"
skip: "Pkg,TOML"
allow-reresolve: false
22 changes: 22 additions & 0 deletions .github/workflows/SublibraryCI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Sublibrary CI

on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
sublibraries:
uses: "SciML/.github/.github/workflows/sublibrary-project-tests.yml@v1"
secrets: "inherit"
42 changes: 42 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: TagBot
on:
issue_comment:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: "3"

permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read

jobs:
TagBot-Subpackages:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- CanonicalMoments
- DiscreteMeasures
- OUQBase
steps:
- name: Tag ${{ matrix.package }}
uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
subdir: "lib/${{ matrix.package }}"
63 changes: 0 additions & 63 deletions .github/workflows/Tests.yml

This file was deleted.

6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
projects = [
"CanonicalMoments.jl",
"DiscreteMeasures.jl",
"OUQBase.jl"
"lib/CanonicalMoments",
"lib/DiscreteMeasures",
"lib/OUQBase"
]
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ Reexport = "1.2.2"
Symbolics = "6.29.2"

[sources]
DiscreteMeasures = { path = "../DiscreteMeasures.jl" }
DiscreteMeasures = { path = "../DiscreteMeasures" }
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[sources]
CanonicalMoments = {path = ".."}
IntervalEigenSolvers = {path = "../../IntervalEigenSolvers.jl"}
DiscreteMeasures = {path = "../../DiscreteMeasures.jl"}
IntervalEigenSolvers = {path = "../../../IntervalEigenSolvers.jl"}
DiscreteMeasures = {path = "../DiscreteMeasures"}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions OUQBase.jl/Project.toml → lib/OUQBase/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ SciMLBase = "2.153"
Symbolics = "6.39.1"

[sources]
CanonicalMoments = { path = "../CanonicalMoments.jl" }
DiscreteMeasures = { path = "../DiscreteMeasures.jl" }
CanonicalMoments = { path = "../CanonicalMoments" }
DiscreteMeasures = { path = "../DiscreteMeasures" }

[workspace]
projects = ["test"]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading