From 4fe1473e243d75a906814ac8b0a62538c541499b Mon Sep 17 00:00:00 2001 From: Deepak Majeti Date: Thu, 5 Sep 2024 14:46:07 -0400 Subject: [PATCH] use if:false --- .github/workflows/macos.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index a2543135c831c..2a73c18942cc4 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -65,13 +65,13 @@ jobs: run: | source scripts/setup-macos.sh brew install $MACOS_BUILD_DEPS $MACOS_VELOX_DEPS - SUDO=sudo install_fmt echo "NJOBS=`sysctl -n hw.ncpu`" >> $GITHUB_ENV brew unlink protobuf || echo "protobuf not installed" brew link --force protobuf@21 - name: Cache ccache + if: false uses: assignUser/stash/restore@v1 with: path: '${{ env.CCACHE_DIR }}' @@ -80,6 +80,7 @@ jobs: - name: Configure Build env: folly_SOURCE: BUNDLED #brew folly does not have int128 + fmt_SOURCE: BUNDLED #brew fmt11 is not supported run: | ccache -sz -M 5Gi cmake \ @@ -94,9 +95,10 @@ jobs: - name: Build run: | cmake --build _build/$BUILD_TYPE -j $NJOBS - ccache -s - - uses: assignUser/stash/save@v1 + - name: Save ccache + if: false + uses: assignUser/stash/save@v1 with: path: '${{ env.CCACHE_DIR }}' key: ccache-macos-1-${{ matrix.os }}