Skip to content

Commit

Permalink
Merge branch 'fix_native_compatibility_ci' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
LourensVeen committed Apr 29, 2024
2 parents 0e39255 + fec8e2c commit 38746c2
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ci_macos11_clang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci_macos11_gcc_gfortran.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest

- name: Install dependencies
run: |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install gcc
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci_macos12_clang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci_macos12_gcc_gfortran.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest

- name: Install dependencies
run: |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install gcc
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci_macos13_clang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest

- name: Install dependencies
run: |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install openmpi
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci_macos13_gcc_gfortran.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest

- name: Install dependencies
run: |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install gcc
Expand Down
2 changes: 1 addition & 1 deletion libmuscle/python/libmuscle/test/test_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def test_reuse_set_overlay(

instance.reuse_instance()

assert communicator.receive_message.called_with('muscle_settings_in')
communicator.receive_message.assert_called_with('muscle_settings_in')
assert settings_manager.overlay['s0'] == 0
assert settings_manager.overlay['s1'] == 1
assert settings_manager.overlay['s2'] == 2
Expand Down

0 comments on commit 38746c2

Please sign in to comment.