From 9454efc037158153f7bc9dc21268fdcb9ea2142f Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Wed, 18 Sep 2024 22:07:17 -0500 Subject: [PATCH] Debug test setup --- .github/workflows/fortran.yml | 5 +---- fortran/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/fortran.yml b/.github/workflows/fortran.yml index 1916ba14..2d8abe08 100644 --- a/.github/workflows/fortran.yml +++ b/.github/workflows/fortran.yml @@ -41,7 +41,4 @@ jobs: compiler: ${{ matrix.toolchain.compiler }} version: ${{ matrix.toolchain.version }} - - run: | - ${{ env.FC }} ... # environment vars FC, CC, and CXX are set - ${{ steps.setup-fortran.outputs.fc }} ... # outputs work too - make fr_test \ No newline at end of file + - run: make fr_test \ No newline at end of file diff --git a/fortran/Makefile b/fortran/Makefile index 8d30654b..338e53e3 100644 --- a/fortran/Makefile +++ b/fortran/Makefile @@ -4,8 +4,8 @@ FC?=flang-new .PHONY: help help: - @echo " $(BLUE)test$(NC) Run through all Lua tests in sequence." - @echo " $(BLUE)test_auto$(NC) Run through all Lua tests (parallel execution not implemented)." + @echo " $(BLUE)test$(NC) Run through all Fortran tests in sequence." + @echo " $(BLUE)test_auto$(NC) Run through all Fortran tests (parallel execution not implemented)." @echo " $(BLUE)clean$(NC) Clean up any stray files." .PHONY: test