Skip to content

Commit d7ccea9

Browse files
authored
Merge pull request #48 from gridap/adding_sysimage_generation_to_mpi_tests
Adding sysimage generation to mpi tests
2 parents 73de176 + 120e0a4 commit d7ccea9

22 files changed

+665
-66
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131
${{ runner.os }}-test-${{ env.cache-name }}-
3232
${{ runner.os }}-test-
3333
${{ runner.os }}-
34-
- uses: julia-actions/julia-buildpkg@v1
35-
- run: julia --project=. --color=yes --check-bounds=yes test/sequential/runtests.jl
34+
#- uses: julia-actions/julia-buildpkg@v1
35+
- run: julia --project=test/TestApp/ -e 'using Pkg; Pkg.instantiate()'
36+
- run: julia --project=test/TestApp/ --color=yes --check-bounds=yes test/sequential/runtests.jl
3637
- uses: julia-actions/julia-processcoverage@v1
3738
- uses: codecov/codecov-action@v1
3839
with:
@@ -65,9 +66,11 @@ jobs:
6566
with:
6667
version: ${{ matrix.version }}
6768
arch: ${{ matrix.arch }}
68-
- uses: julia-actions/julia-buildpkg@v1
69-
- run: julia --project=. --color=yes --check-bounds=yes test/mpi/runtests.jl
69+
#- uses: julia-actions/julia-buildpkg@v1
70+
- run: cd test/TestApp/compile; ./compile.sh
71+
- run: julia --project=test/TestApp/ -e 'using Pkg; Pkg.instantiate()'
72+
- run: julia --project=test/TestApp/ --color=yes --check-bounds=yes test/mpi/runtests.jl test/TestApp/compile/TestApp.so
7073
- uses: julia-actions/julia-processcoverage@v1
7174
- uses: codecov/codecov-action@v1
7275
with:
73-
file: lcov.info
76+
file: lcov.info

src/Visualization.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,3 @@ function Visualization.create_vtk_file(
152152
celldata=c,nodaldata=n)
153153
end
154154
end
155-

0 commit comments

Comments
 (0)