-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from gridap/gridap_0.16
Bunch of tentative changes required to upgrade GridapPardiso to Gridap 0.16
- Loading branch information
Showing
8 changed files
with
219 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: CI | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
name: Tests ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
MKLROOT: /opt/intel/mkl/ | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- '1.6' | ||
os: | ||
- ubuntu-latest | ||
arch: | ||
- x64 | ||
steps: | ||
- uses: myci-actions/add-deb-repo@8 | ||
with: | ||
repo: deb [trusted=yes] https://apt.repos.intel.com/mkl all main | ||
repo-name: mkl | ||
# keys: | ||
key-server: https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB | ||
install: intel-mkl-64bit-2019.5-075 | ||
- 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 }}- | ||
# - run: if [ `getconf LONG_BIT` = "64" ];then source /opt/intel/mkl/bin/mklvars.sh intel64;else source /opt/intel/mkl/bin/mklvars.sh ia32; fi | ||
- run: ls -l /opt/intel/mkl/bin/ | ||
- run: echo $MKLROOT | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 | ||
- uses: julia-actions/julia-processcoverage@v1 | ||
- uses: codecov/codecov-action@v1 | ||
with: | ||
file: lcov.info | ||
|
||
docs: | ||
name: Documentation | ||
env: | ||
MKLROOT: /opt/intel/mkl/ | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: myci-actions/add-deb-repo@8 | ||
with: | ||
repo: deb [trusted=yes] https://apt.repos.intel.com/mkl all main | ||
repo-name: mkl | ||
# keys: | ||
key-server: https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB | ||
install: intel-mkl-64bit-2019.5-075 | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: '1.6' | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- run: | | ||
julia --project=docs -e ' | ||
using Pkg | ||
Pkg.develop(PackageSpec(path=pwd())) | ||
Pkg.instantiate()' | ||
# - run: | | ||
# julia --project=docs -e ' | ||
# using Documenter: doctest | ||
# using Gridap | ||
# doctest(Gridap)' | ||
- run: julia --project=docs docs/make.jl | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
name = "GridapPardiso" | ||
uuid = "34aa2546-dee6-11e9-014e-739fa02ec06f" | ||
authors = ["Francesc Verdugo <[email protected]>", "Víctor Sande <[email protected]>"] | ||
version = "0.4.2" | ||
version = "0.5.0" | ||
|
||
[deps] | ||
Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e" | ||
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb" | ||
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||
SparseMatricesCSR = "a0a7dd2c-ebf4-11e9-1f05-cf50bc540ca1" | ||
|
||
[compat] | ||
Gridap = "0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13, 0.14" | ||
Gridap = "0.15,0.16" | ||
julia = "1" | ||
|
||
[extras] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
e1ccca8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register()
e1ccca8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/41578
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:
e1ccca8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@amartinhuertas the CI has failed! Please, cancel the registration process until we understand what is happening. The tests in the PR passed...
e1ccca8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CI jobs actually passed ... only
documenter/deploy
failed. Why?e1ccca8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, solved. The secret/ssh key was missing. No need to cancel registration process.