Skip to content

Commit d61269a

Browse files
authored
Merge pull request #73 from gridap/gridap-0.19
Gridap 0.19
2 parents 01398a9 + aaeff89 commit d61269a

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/" # Location of package manifests
6+
schedule:
7+
interval: "monthly"

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '1.8'
18+
- '1.10'
1919
os:
2020
- ubuntu-latest
2121
arch:
2222
- x64
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
- name: Cache p4est
2626
id: cache-p4est
27-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2828
with:
2929
path: ${{env.P4EST_ROOT_DIR}}
3030
key: ${{ runner.os }}-build-${{ env.P4EST_ROOT_DIR }}-
3131
restore-keys: |
3232
${{ runner.os }}-build-${{ env.P4EST_ROOT_DIR }}-
3333
${{ runner.os }}-build-
3434
${{ runner.os }}-
35-
- uses: julia-actions/setup-julia@v1
35+
- uses: julia-actions/setup-julia@v2
3636
with:
3737
version: ${{ matrix.version }}
3838
arch: ${{ matrix.arch }}
@@ -83,9 +83,11 @@ jobs:
8383
- run: julia --project=. --color=yes -e 'using Pkg; Pkg.instantiate()'
8484
#- run: cd test/MPIPETScTests/compile; ./compile.sh
8585
- run: julia --project=. --color=yes --check-bounds=yes test/runtests.jl #-i test/MPIPETScTests/compile/GridapDistributed.so
86-
- uses: codecov/codecov-action@v1
86+
- uses: codecov/codecov-action@v5
8787
with:
8888
file: lcov.info
89+
verbose: true
90+
token: ${{ secrets.CODECOV_TOKEN }}
8991
# docs:
9092
# name: Documentation
9193
# runs-on: ubuntu-latest

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
name = "GridapP4est"
22
uuid = "c2c8e14b-f5fd-423d-9666-1dd9ad120af9"
33
authors = ["Alberto F. Martin <alberto.f.martin@anu.edu.au>"]
4-
version = "0.3.10"
4+
version = "0.3.11"
55

66
[deps]
77
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
88
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
99
Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e"
1010
GridapDistributed = "f9701e48-63b3-45aa-9a63-9bc6c271f355"
1111
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
12+
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
1213
MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195"
1314
P4est_wrapper = "3743d7c0-8adf-11ea-380b-7d33b0ecc1da"
1415
PartitionedArrays = "5a9dfac6-5c52-46f7-8278-5e2210713be9"
@@ -17,8 +18,9 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1718
[compat]
1819
ArgParse = "1"
1920
FillArrays = "0.8.4, 0.9, 0.10, 0.11, 0.12, 1"
20-
Gridap = "0.18.9"
21+
Gridap = "0.18.9, 0.19"
2122
GridapDistributed = "0.4"
23+
Logging = "1"
2224
MPI = "0.20"
2325
P4est_wrapper = "0.2.2"
2426
PartitionedArrays = "0.3.3"

0 commit comments

Comments
 (0)