From d713d7a9724cb921f00229a9cd9e6aa6ffe3474b Mon Sep 17 00:00:00 2001 From: Dieter Baron Date: Fri, 30 Aug 2024 11:19:00 +0200 Subject: [PATCH] Set python interpreter the correct way (hopefully). --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8431857c..53185ecc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,9 +41,7 @@ jobs: if: ${{ runner.os == 'macOS' }} working-directory: ${{runner.workspace}}/build run: | - cmake ${{github.workspace}} - env: - PYTHONBIN: /usr/bin/python3 + cmake -DPYTHONBIN=/usr/bin/python3 ${{github.workspace}} - name: build working-directory: ${{runner.workspace}}/build