From 29a1c2930e2ba7f3a0336df0282b87aeb4bf41b0 Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Tue, 2 Jul 2024 17:16:23 +1200 Subject: [PATCH] build verbose --- .github/workflows/ci.yml | 4 +--- Makefile | 4 ++++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07b0bb93..d278ce2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,9 +39,7 @@ jobs: uses: SwiftyLab/setup-swift@latest with: swift-version: '6.0' - - name: show swift version - run: swift --version - name: Build - run: make build + run: make build-verbose - name: Test run: make test diff --git a/Makefile b/Makefile index c78763cd..23ae7abf 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,10 @@ test: githooks build: githooks ./scripts/run.sh build +.PHONY: build-verbose +build-verbose: githooks + ./scripts/run.sh build --verbose + .PHONY: clean clean: ./scripts/run.sh package clean