-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Lint markdown files and update files correspondingly. (#180) * Add Cython as dependency required during installation (#177) * Adapt Docker workflow according to new system tests design (#186) - modify args to fit to systemtest - make the manual triggering more useful - move latest tag to last master * bash string handling... Fun stuff * sprinkle in some " * adding some "debug" ouptut * Update .github/workflows/build-docker.yml * Require setuptools>=61 (#207) * Restrict to numpy < 2 and setuptools < 72 for better compatibiltiy with CI pipeline (#213) * Simplify setup.py w.r.t noisy warning (always shown when building with spack). * Use Ubuntu 24.04. * Explicitly specify docker image tags in CI. * use spack base image precice/ci-spack-pyprecice-deps-2404:2.5.1.0 * use precice base image precice/precice:2.5.1 * Add entry in changelog. * Fix spack workflow for 2.5.1.0. * Add branch for release candidate of 2.5.1.0 * Update build dependencies for release candidate * Use PyPI token instead of username and password in the package publishing action --------- Co-authored-by: Ishaan Desai <[email protected]> Co-authored-by: valentin-seitz <[email protected]> Co-authored-by: Valentin Seitz <[email protected]> Co-authored-by: Gerasimos Chourdakis <[email protected]>
- Loading branch information
1 parent
f0786b3
commit d2d4d97
Showing
19 changed files
with
249 additions
and
174 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
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
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,35 +1,35 @@ | ||
# name: Build Spack | ||
# on: | ||
# push: | ||
# branches: | ||
# - "*" | ||
# pull_request: | ||
# branches: | ||
# - "*" | ||
# schedule: | ||
# - cron: '0 4 * * 1' # Schedule it every Sunday | ||
# | ||
# jobs: | ||
# build_spack: | ||
# name: build_spack | ||
# runs-on: ubuntu-latest | ||
# timeout-minutes: 15 | ||
# container: precice/ci-spack-pyprecice-deps-2204 | ||
# defaults: | ||
# run: | ||
# shell: "bash --login -eo pipefail {0}" | ||
# steps: | ||
# - name: Checkout Repository | ||
# uses: actions/checkout@v2 | ||
# - name: Move Package Script | ||
# run: | | ||
# cp -r spack/repo/packages/py-pyprecice/ /py-pyprecice-repo/packages/ | ||
# - name: Try to build py-pyprecice with spack and test it | ||
# run: | | ||
# . /opt/spack/share/spack/setup-env.sh | ||
# spack env activate ci && spack arch | ||
# spack remove py-pyprecice | ||
# spack add pyprecice.test.py-pyprecice@develop && spack develop pyprecice.test.py-pyprecice@develop | ||
# spack install && spack find | ||
# spack load py-pyprecice | ||
# BINDINGS_VERSION=$(python3 -c "import precice; print(precice.__version__)") && echo "Installed version of bindings is ${BINDINGS_VERSION}" | ||
name: Build Spack | ||
on: | ||
push: | ||
branches: | ||
- "*" | ||
pull_request: | ||
branches: | ||
- "*" | ||
schedule: | ||
- cron: '0 4 * * 1' # Schedule it every Sunday | ||
|
||
jobs: | ||
build_spack: | ||
name: build_spack | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
container: precice/ci-spack-pyprecice-deps-2404:2.5.1.0 | ||
defaults: | ||
run: | ||
shell: "bash --login -eo pipefail {0}" | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
- name: Move Package Script | ||
run: | | ||
cp -r spack/repo/packages/py-pyprecice/ /py-pyprecice-repo/packages/ | ||
- name: Try to build py-pyprecice with spack and test it | ||
run: | | ||
. /opt/spack/share/spack/setup-env.sh | ||
spack env activate ci && spack arch | ||
spack remove py-pyprecice | ||
spack add pyprecice.test.py-pyprecice@2.5.1.0 && spack develop pyprecice.test.py-pyprecice@2.5.1.0 | ||
spack install && spack find | ||
spack load py-pyprecice | ||
BINDINGS_VERSION=$(python3 -c "import precice; print(precice.__version__)") && echo "Installed version of bindings is ${BINDINGS_VERSION}" |
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,14 @@ | ||
name: Lint docs | ||
on: [push, pull_request] | ||
jobs: | ||
check_md: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
- name: Lint markdown files (markdownlint) | ||
uses: articulate/actions-markdownlint@v1 | ||
with: | ||
config: .markdownlint.json | ||
files: '.' | ||
ignore: changelog-entries |
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
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,7 @@ | ||
{ | ||
"MD013": false, | ||
"MD014": false, | ||
"MD024": false, | ||
"MD034": false, | ||
"MD033": false | ||
} |
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.