Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflows #86

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/run-adaptivity-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
adaptivity_integration_tests:
name: Run adaptivity integration tests
runs-on: ubuntu-latest
container: precice/precice:develop
container: precice/precice:nightly
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
adaptivity_unit_tests_serial:
name: Run adaptivity unit tests in serial
runs-on: ubuntu-latest
container: precice/precice:develop
container: precice/precice:nightly
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -73,7 +73,7 @@ jobs:
adaptivity_unit_tests_parallel:
name: Run adaptivity unit tests in parallel
runs-on: ubuntu-latest
container: precice/precice:develop
container: precice/precice:nightly
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-domain-decomposition-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
domain_decomposition_integration_tests:
name: Run domain decomposition integration tests
runs-on: ubuntu-latest
container: precice/precice:develop
container: precice/precice:nightly
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
domain_decomposition_unit_tests:
name: Run domain decomposition unit tests
runs-on: ubuntu-latest
container: precice/precice:develop
container: precice/precice:nightly
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-macro-micro-dummy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
run_dummy:
name: Run dummy
runs-on: ubuntu-latest
container: precice/precice:develop
container: precice/precice:nightly
steps:

- name: Checkout Repository
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
unit-tests:
runs-on: ubuntu-latest
container: precice/precice:develop
container: precice/precice:nightly
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -21,8 +21,8 @@ jobs:
run: |
apt-get -qq update
apt-get -qq install python3-dev python3-pip git python-is-python3 pkg-config
python3 -m pip install --user .
python3 -m pip uninstall -y pyprecice
pip3 install --user .
pip3 uninstall -y pyprecice

- name: Run unit tests
working-directory: micro-manager/tests/unit
Expand Down
Loading