Skip to content

Commit ee38441

Browse files
Merge pull request #128 from gridap/add_gridap_distributed_tutorial
First draft/skeleton version of Poisson distributed tutorial
2 parents 07d3645 + 30f284c commit ee38441

12 files changed

Lines changed: 63578 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
- pull_request
55
- create
66
jobs:
7+
78
tutorials_set_1:
89
name: Tutorials1 ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
910
runs-on: ${{ matrix.os }}
@@ -124,6 +125,36 @@ jobs:
124125
${{ runner.os }}-
125126
- uses: julia-actions/julia-buildpkg@v1
126127
- run: cd test/; julia --project=.. --color=yes --check-bounds=yes runtests.jl isotropic_damage.jl validation_DrWatson.jl interpolation_fe.jl
128+
tutorials_mpi:
129+
name: TutorialsMPI ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
130+
runs-on: ${{ matrix.os }}
131+
strategy:
132+
fail-fast: false
133+
matrix:
134+
version:
135+
- '1.6'
136+
os:
137+
- ubuntu-latest
138+
arch:
139+
- x64
140+
steps:
141+
- uses: actions/checkout@v2
142+
- uses: julia-actions/setup-julia@v1
143+
with:
144+
version: ${{ matrix.version }}
145+
arch: ${{ matrix.arch }}
146+
- uses: actions/cache@v1
147+
env:
148+
cache-name: cache-artifacts
149+
with:
150+
path: ~/.julia/artifacts
151+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
152+
restore-keys: |
153+
${{ runner.os }}-test-${{ env.cache-name }}-
154+
${{ runner.os }}-test-
155+
${{ runner.os }}-
156+
- uses: julia-actions/julia-buildpkg@v1
157+
- run: cd test/; julia --project=.. --color=yes --check-bounds=yes runtests_mpi.jl
127158
docs:
128159
name: Documentation
129160
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)