summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-01-02 23:58:11 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-01-02 23:58:11 +0100
commitdd44f41d8716881ad4e60adf7dcbf0f8d90896ce (patch)
treee12b765cd981a6175ed2e694ad6ca9ae2cf3cd6e /.github
parent6970b77307004f5fc8846637e7499bfd75d825d2 (diff)
revert CI changes
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cmake.yml25
1 files changed, 3 insertions, 22 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 6fb32ac4..45439eeb 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -22,30 +22,14 @@ jobs:
strategy:
fail-fast: false
matrix:
- include:
- - os: macos-latest
- CC: clang
- CXX: clang++
- - os: ubuntu-latest
- CC: cc
- CXX: c++
- - os: windows-latest
- environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
+ os: [macos-latest, windows-latest, ubuntu-latest]
+
steps:
- uses: actions/checkout@v2
- - uses: seanmiddleditch/gha-setup-ninja@master
- name: Install Linux Dependencies
run: sudo apt update && sudo apt install libprocps-dev libopencv-dev libopencv-dev
if: matrix.os == 'ubuntu-latest'
-
- - name: Show path
- run: echo $ENV:PATH
- if: matrix.os == 'windows-latest'
-
- - name: bail
- run: error
- if: matrix.os == 'windows-latest'
- name: Cache Qt
id: cache-qt
@@ -62,10 +46,7 @@ jobs:
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
- run: cmake -S ${{github.workspace}}/ -B ${{github.workspace}}/build -G "Ninja Multi-Config" -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- env:
- CC: ${{ matrix.CC }}
- CXX: ${{ matrix.CXX }}
+ run: cmake -S ${{github.workspace}}/ -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
# Build your program with the given configuration