From e5c8a0b756407d92c59743cc988d22604d785432 Mon Sep 17 00:00:00 2001 From: Christian Hujer Date: Tue, 30 Apr 2024 23:51:08 +0530 Subject: [PATCH] Reorder workflow to debug it. --- .github/workflows/clang-macos.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/clang-macos.yml b/.github/workflows/clang-macos.yml index f825834..5be878e 100644 --- a/.github/workflows/clang-macos.yml +++ b/.github/workflows/clang-macos.yml @@ -13,7 +13,5 @@ jobs: steps: - uses: actions/checkout@v3 - - name: patch to zsh - run: ./configure.sh - - name: make - run: make CC=clang + - name: make using zsh instead of bash + run: ./configure.sh && make CC=clang