File tree Expand file tree Collapse file tree 3 files changed +25
-37
lines changed Expand file tree Collapse file tree 3 files changed +25
-37
lines changed Original file line number Diff line number Diff line change 30
30
files : " poisson_hdg.jl poisson_hho.jl"
31
31
- name : Plugins
32
32
files : " stokes_blocks.jl poisson_amr.jl poisson_unfitted.jl"
33
- - name : MPI
34
- files : " runtests_mpi.jl"
35
33
- name : Other
36
34
files : " validation.jl validation_DrWatson.jl interpolation_fe.jl poisson_dev_fe.jl geometry_dev.jl"
37
35
steps :
45
43
- run : |
46
44
cd test/
47
45
julia --project=.. maketests.jl
48
- julia --project=.. --color=yes --check-bounds=yes ${{ matrix.test_set.files }}
46
+ julia --project=.. --color=yes --check-bounds=yes runtests.jl ${{ matrix.test_set.files }}
47
+ tutorials_mpi :
48
+ name : Tutorials MPI ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
49
+ runs-on : ${{ matrix.os }}
50
+ strategy :
51
+ fail-fast : false
52
+ matrix :
53
+ version :
54
+ - ' 1.10'
55
+ os :
56
+ - ubuntu-latest
57
+ arch :
58
+ - x64
59
+ steps :
60
+ - uses : actions/checkout@v4
61
+ - uses : julia-actions/setup-julia@v2
62
+ with :
63
+ version : ${{ matrix.version }}
64
+ arch : ${{ matrix.arch }}
65
+ - uses : julia-actions/cache@v2
66
+ - uses : julia-actions/julia-buildpkg@v1
67
+ - run : |
68
+ cd test/
69
+ julia --project=.. --color=yes --check-bounds=yes runtests_mpi.jl
49
70
docs :
50
71
name : Documentation
51
72
runs-on : ubuntu-latest
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ function get_title(files,filename)
10
10
error (" File $filename not found!" )
11
11
end
12
12
13
- if (length (ARGS ) != 0 )
13
+ if ! iszero (length (ARGS ))
14
14
files = [get_title (Tutorials. files,filename)=> filename for filename in ARGS ]
15
15
else
16
16
files = Tutorials. files
You can’t perform that action at this time.
0 commit comments