From 1c26fc0bb87ce996d4794d999b7e72890fe4fce8 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Fri, 7 Jun 2024 19:22:05 -0700 Subject: [PATCH] 11 --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5f37a74b..3794eb56 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -241,7 +241,6 @@ jobs: - name: Generate project files shell: bash run: | - tree /usr/local/opt/openssl cmake -S ${{ matrix.build-src-dir || '.' }} -B ${{ matrix.build-dir || '.' }} ${{ matrix.cmake-args }} \ -D MZ_BUILD_TESTS=ON \ -D MZ_BUILD_UNIT_TESTS=ON \ @@ -254,7 +253,9 @@ jobs: LDFLAGS: ${{ matrix.ldflags }} - name: Compile source code - run: cmake --build ${{ matrix.build-dir || '.' }} --config ${{ matrix.build-config || 'Release' }} + run: | + sudo tree /usr/local/opt + cmake --build ${{ matrix.build-dir || '.' }} --config ${{ matrix.build-config || 'Release' }} - name: Run test cases run: ctest --output-on-failure -C ${{ matrix.build-config || 'Release' }}