From 9b6fa148cf608f52041a71bfcc5654ab5e8c4745 Mon Sep 17 00:00:00 2001 From: Jonas Dech Date: Wed, 4 Sep 2024 09:54:54 +0200 Subject: [PATCH] added setuptools to ci --- .github/workflows/cmake.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index c5e9b47637..bb96a24d13 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -26,6 +26,9 @@ jobs: # # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type # run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + - name: Install Buildtools + run: apt-get install python3-setuptools + - name: Build # Build your program with the given configuration # run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}