From 2ac9d6622323c544d7d9f35163a0915caa270d43 Mon Sep 17 00:00:00 2001 From: Shreyas Atre Date: Mon, 20 Jan 2025 11:31:27 -0600 Subject: [PATCH] Configure release mode and install pkgconfig Signed-off-by: Shreyas Atre --- .github/workflows/macos_debug_fetch_hwloc.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos_debug_fetch_hwloc.yml b/.github/workflows/macos_debug_fetch_hwloc.yml index caec2af3ac25..15719d3bd452 100644 --- a/.github/workflows/macos_debug_fetch_hwloc.yml +++ b/.github/workflows/macos_debug_fetch_hwloc.yml @@ -18,7 +18,7 @@ jobs: - name: Install dependencies run: | brew install --overwrite python-tk && \ - brew install --overwrite boost gperftools ninja autoconf automake && \ + brew install --overwrite boost gperftools ninja autoconf automake pkgconf && \ brew upgrade cmake - name: Configure shell: bash @@ -27,7 +27,7 @@ jobs: -H. \ -Bbuild \ -GNinja \ - -DCMAKE_BUILD_TYPE=Debug \ + -DCMAKE_BUILD_TYPE=Release \ -DHPX_WITH_FETCH_ASIO=ON \ -DHPX_WITH_FETCH_HWLOC=ON \ -DHPX_WITH_EXAMPLES=ON \