diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 4ce66f7..6da4869 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -12,6 +12,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Set up build requirements + run: sudo apt-get update -y && sudo apt-get install -y cmake g++ + - name: Install LimeSuite dependencies run: sudo apt-get update -y && sudo apt-get install -y limesuite liblimesuite-dev @@ -21,11 +24,6 @@ jobs: - name: Check out code uses: actions/checkout@v3 - - name: Set up CMake - uses: actions/setup-cmake@v1 - with: - cmake-version: '3.28.1' - - name: Build run: cmake -S . -B build && cmake --build build \ No newline at end of file