Skip to content

Commit

Permalink
Merge pull request #128 from gridap/add_gridap_distributed_tutorial
Browse files Browse the repository at this point in the history
First draft/skeleton version of Poisson distributed tutorial
  • Loading branch information
santiagobadia authored Feb 10, 2022
2 parents 07d3645 + 30f284c commit ee38441
Show file tree
Hide file tree
Showing 12 changed files with 63,578 additions and 3 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
- pull_request
- create
jobs:

tutorials_set_1:
name: Tutorials1 ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -124,6 +125,36 @@ jobs:
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- run: cd test/; julia --project=.. --color=yes --check-bounds=yes runtests.jl isotropic_damage.jl validation_DrWatson.jl interpolation_fe.jl
tutorials_mpi:
name: TutorialsMPI ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.6'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- run: cd test/; julia --project=.. --color=yes --check-bounds=yes runtests_mpi.jl
docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit ee38441

Please sign in to comment.