From f52cbfdc62c27ef41db57e6ea1515d462b488995 Mon Sep 17 00:00:00 2001 From: bennibolm Date: Wed, 11 Dec 2024 15:18:20 +0100 Subject: [PATCH] Remove unnecessary tests --- .github/workflows/ci.yml | 70 ++++++++++++++++++++-------------------- test/test_mpi.jl | 6 ++-- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e28e148e29..c0e71034167 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,52 +60,52 @@ jobs: arch: - x64 trixi_test: - - tree_part1 - - tree_part2 - - tree_part3 - - tree_part4 - - tree_part5 - - tree_part6 - - structured - - p4est_part1 - - p4est_part2 - - t8code_part1 - - t8code_part2 + # - tree_part1 + # - tree_part2 + # - tree_part3 + # - tree_part4 + # - tree_part5 + # - tree_part6 + # - structured + # - p4est_part1 + # - p4est_part2 + # - t8code_part1 + # - t8code_part2 - t8code_fv - - unstructured_dgmulti - - parabolic - - paper_self_gravitating_gas_dynamics - - misc_part1 - - misc_part2 - - performance_specializations_part1 - - performance_specializations_part2 + # - unstructured_dgmulti + # - parabolic + # - paper_self_gravitating_gas_dynamics + # - misc_part1 + # - misc_part2 + # - performance_specializations_part1 + # - performance_specializations_part2 - mpi - - threaded + # - threaded include: - - version: '1.8' - os: ubuntu-latest - arch: x64 - trixi_test: threaded_legacy - - version: '1.9' - os: ubuntu-latest - arch: x64 - trixi_test: threaded_legacy + # - version: '1.8' + # os: ubuntu-latest + # arch: x64 + # trixi_test: threaded_legacy + # - version: '1.9' + # os: ubuntu-latest + # arch: x64 + # trixi_test: threaded_legacy - version: '1.10' os: macos-13 arch: x64 trixi_test: mpi - - version: '1.10' - os: macos-latest - arch: aarch64 - trixi_test: threaded + # - version: '1.10' + # os: macos-latest + # arch: aarch64 + # trixi_test: threaded - version: '1.10' os: windows-latest arch: x64 trixi_test: mpi - - version: '1.10' - os: windows-latest - arch: x64 - trixi_test: threaded + # - version: '1.10' + # os: windows-latest + # arch: x64 + # trixi_test: threaded steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 diff --git a/test/test_mpi.jl b/test/test_mpi.jl index 4f9eb65ecd8..517dedd8498 100644 --- a/test/test_mpi.jl +++ b/test/test_mpi.jl @@ -18,14 +18,14 @@ CI_ON_WINDOWS = (get(ENV, "GITHUB_ACTIONS", false) == "true") && Sys.iswindows() @testset "MPI" begin # TreeMesh tests - include("test_mpi_tree.jl") + # include("test_mpi_tree.jl") # P4estMesh and T8codeMesh tests - include("test_mpi_p4est_2d.jl") + # include("test_mpi_p4est_2d.jl") include("test_mpi_t8code_2d.jl") include("test_mpi_t8code_fv_2d.jl") if !CI_ON_WINDOWS # see comment on `CI_ON_WINDOWS` above - include("test_mpi_p4est_3d.jl") + # include("test_mpi_p4est_3d.jl") include("test_mpi_t8code_3d.jl") include("test_mpi_t8code_fv_3d.jl") end