From c07f5b441e3a0be4175605e168264404b87296d8 Mon Sep 17 00:00:00 2001 From: jamesETsmith Date: Tue, 1 Oct 2024 14:27:27 -0400 Subject: [PATCH] [ci/macos] Commented out the wrong CI steps --- .github/workflows/all_push_masos.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/all_push_masos.yml b/.github/workflows/all_push_masos.yml index 8200638..7696543 100644 --- a/.github/workflows/all_push_masos.yml +++ b/.github/workflows/all_push_masos.yml @@ -13,19 +13,19 @@ jobs: - uses: actions/checkout@v2 with: submodules: recursive - - name: Setup compiler - run: python3 ./.github/compiler_setup.py ${{ matrix.compiler }} + # TODO: improve compiler setup for macos, right now we only use what's already on the github runners + # - name: Setup compiler + # run: python3 ./.github/compiler_setup.py ${{ matrix.compiler }} - name: Setup Python uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install Python dependencies run: python -m pip install cmake scikit-build-core - # TODO: improve compiler setup for macos, right now we only use what's already on the github runners - # - name: Configure CMake - # env: - # CXX: ${{ matrix.compiler }} - # run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_COMPILER=${CXX} + - name: Configure CMake + env: + CXX: ${{ matrix.compiler }} + run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_COMPILER=${CXX} - name: Build run: | cmake --build ${{github.workspace}}/build --verbose --parallel