Skip to content

Commit 82e9f30

Browse files
committed
fix(test): use explicit forwarding targets in kernel dispatcher Makefile
GNU Make's built-in implicit rules for .o files prevent the %: catch-all pattern from matching. List forwarded targets explicitly instead.
1 parent d656887 commit 82e9f30

18 files changed

Lines changed: 25 additions & 2016 deletions

.github/workflows/unittest-adaptor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
cd /__w/FlagCX/FlagCX/test/unittest/adaptor
5151
export MPI_HOME=/usr/local/mpi
52-
make -j$(nproc)
52+
make -j$(nproc) USE_NVIDIA=1
5353
5454
- name: Run adaptor unit tests (requires GPU)
5555
run: |

.github/workflows/unittest-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
cd /__w/FlagCX/FlagCX/test/unittest/core
5151
export MPI_HOME=/usr/local/mpi
52-
make -j$(nproc)
52+
make -j$(nproc) USE_NVIDIA=1
5353
5454
- name: Run core unit tests
5555
run: |

.github/workflows/unittest-p2p.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
cd /__w/FlagCX/FlagCX/test/unittest/p2p
5151
export MPI_HOME=/usr/local/mpi
52-
make -j$(nproc)
52+
make -j$(nproc) USE_NVIDIA=1
5353
5454
- name: Run p2p unit tests (requires IB hardware)
5555
run: |

.github/workflows/unittest-rma.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
cd /__w/FlagCX/FlagCX/test/unittest/rma
5151
export MPI_HOME=/usr/local/mpi
52-
make -j$(nproc)
52+
make -j$(nproc) USE_NVIDIA=1
5353
5454
- name: Run RMA unit tests
5555
run: |

.github/workflows/unittest-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
cd /__w/FlagCX/FlagCX/test/unittest/runner
5151
export MPI_HOME=/usr/local/mpi
52-
make -j$(nproc)
52+
make -j$(nproc) USE_NVIDIA=1
5353
5454
- name: Run runner unit tests (no MPI)
5555
run: |

.github/workflows/unittest-service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
cd /__w/FlagCX/FlagCX/test/unittest/service
5151
export MPI_HOME=/usr/local/mpi
52-
make -j$(nproc)
52+
make -j$(nproc) USE_NVIDIA=1
5353
5454
- name: Run service unit tests
5555
run: |

.github/workflows/unittest-symmem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
cd /__w/FlagCX/FlagCX/test/unittest/symmem
5151
export MPI_HOME=/usr/local/mpi
52-
make -j$(nproc)
52+
make -j$(nproc) USE_NVIDIA=1
5353
5454
- name: Run symmem tests
5555
run: |

test/device_api/Makefile

Lines changed: 0 additions & 88 deletions
This file was deleted.

0 commit comments

Comments
 (0)