You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i quickly made on for ubuntu-latest, let talk about this. it will solve a lot of issues dealing with installation procedure for diff platform. aside from other benefits of CI
name: CMakeon:
push:
branches: [ master ]pull_request:
branches: [ master ]env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)BUILD_TYPE: Releasejobs:
build:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v2
- name: Install depsrun: sudo apt-get install libgstreamer-plugins-base1.0-dev liborc-0.4-dev
- name: Configure CMake# Configure CMake in a 'build' subdirectory.run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build# Build your program with the given configurationrun: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}# - name: Test# working-directory: ${{github.workspace}}/build# # Execute tests defined by the CMake configuration. # # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail# run: ctest -C ${{env.BUILD_TYPE}}
i quickly made on for ubuntu-latest, let talk about this. it will solve a lot of issues dealing with installation procedure for diff platform. aside from other benefits of CI
https://github.com/5shekel/gst-plugins-vision/blob/master/.github/workflows/cmake.yml
The text was updated successfully, but these errors were encountered: