Skip to content

Commit

Permalink
Fix more makefile references
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 19, 2024
1 parent 709fd44 commit 6ef442b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cplusplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ jobs:

- name: Run tests (linux)
if: ${{ contains(matrix.os, 'ubuntu') }}
run: make c_test${{ (matrix.os != 'ubuntu-latest' && '_auto') || '' }} COV=true
run: make cp_test${{ (matrix.os != 'ubuntu-latest' && '_auto') || '' }} COV=true

- name: Run tests (windows)
if: ${{ contains(matrix.os, 'windows') }}
run: make c_test_auto
run: make cp_test_auto

- name: Run tests (macos)
if: ${{ contains(matrix.os, 'macos') }}
run: make c_test_auto
run: make cp_test_auto
env:
NO_OPTIONAL_TESTS: true
COMPILER_OVERRIDE: clang
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ cs_%:
@cd csharp && $(MAKE) $* $(MFLAGS)

cp_%:
@cd csharp && $(MAKE) $* $(MFLAGS)
@cd cplusplus && $(MAKE) $* $(MFLAGS)

c_%:
@cd c && $(MAKE) $* $(MFLAGS)
Expand Down

0 comments on commit 6ef442b

Please sign in to comment.