From 91a3708abaa703339212411b656d751d70160546 Mon Sep 17 00:00:00 2001 From: Arno Strouwen Date: Sat, 6 Jan 2024 05:56:56 +0100 Subject: [PATCH] Downgrade CI --- .github/workflows/Downgrade.yml | 29 +++++++++++++++++++++++++++++ Project.toml | 26 +++++++++++++------------- test/runtests.jl | 2 -- 3 files changed, 42 insertions(+), 15 deletions(-) create mode 100644 .github/workflows/Downgrade.yml diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml new file mode 100644 index 00000000..01ff8cad --- /dev/null +++ b/.github/workflows/Downgrade.yml @@ -0,0 +1,29 @@ +name: Downgrade +on: + pull_request: + branches: + - master + paths-ignore: + - 'docs/**' + push: + branches: + - master + paths-ignore: + - 'docs/**' +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + version: ['1'] + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.version }} + - uses: cjdoris/julia-downgrade-compat-action@v1 +# if: ${{ matrix.version == '1.6' }} + with: + skip: Pkg,TOML + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 \ No newline at end of file diff --git a/Project.toml b/Project.toml index 6b938473..331bf53d 100644 --- a/Project.toml +++ b/Project.toml @@ -24,24 +24,24 @@ Trapz = "592b5752-818d-11e9-1e9a-2b8ca4a44cd1" Aqua = "0.8" Combinatorics = "1" Copulas = "=0.1.13" -Distributions = "0.23, 0.24, 0.25" -FFTW = "1.2" -ForwardDiff = "0.10" -KernelDensity = "0.6" -LinearAlgebra = "1" -OrdinaryDiffEq = "6" +Distributions = "=0.25.87" +FFTW = "1.3" +ForwardDiff = "0.10.24" +KernelDensity = "0.6.4" +LinearAlgebra = "1.10" +OrdinaryDiffEq = "6.62" Parameters = "0.12" -QuasiMonteCarlo = "0.2, 0.3" -Random = "1" -RecursiveArrayTools = "3" +QuasiMonteCarlo = "0.2.3, 3" +Random = "1.10" +RecursiveArrayTools = "3.2" SafeTestsets = "0.1" StableRNGs = "1" -Statistics = "1.4" -StatsBase = "0.33, 0.34" +Statistics = "1.10" +StatsBase = "0.33.1, 0.34" Test = "1" -ThreadsX = "0.1" +ThreadsX = "0.1.11" Trapz = "2" -julia = "1.6" +julia = "1.10" [extras] Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" diff --git a/test/runtests.jl b/test/runtests.jl index ef158f68..c386031a 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -2,8 +2,6 @@ using GlobalSensitivity, SafeTestsets using Test const GROUP = get(ENV, "GROUP", "All") -const is_APPVEYOR = Sys.iswindows() && haskey(ENV, "APPVEYOR") -const is_TRAVIS = haskey(ENV, "TRAVIS") @time begin if GROUP == "All" || GROUP == "GSA"