Skip to content

Commit 5e7e43f

Browse files
committed
Remove Windows CI for now (it is failing)
Signed-off-by: Mateusz Mazur <[email protected]>
1 parent ace3232 commit 5e7e43f

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

.github/workflows/cmake-multi-platform.yml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,28 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212

1313
strategy:
14-
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations. Consider changing this to true when your workflow is stable.
14+
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations.
1515
fail-fast: false
1616

17-
# Set up a matrix to run the following 3 configurations:
18-
# 1. <Windows, Release, latest MSVC compiler toolchain on the default runner image, default generator>
19-
# 2. <Linux, Release, latest GCC compiler toolchain on the default runner image, default generator>
20-
# 3. <Linux, Release, latest Clang compiler toolchain on the default runner image, default generator>
21-
#
22-
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
17+
# Currently supported:
18+
# - Linux + GCC
19+
# - Linux + CLANG
20+
# Planned:
21+
# - Windows + CL
2322
matrix:
2423
os: [ubuntu-latest, windows-latest]
2524
build_type: [Release]
2625
c_compiler: [gcc, clang, cl]
2726
include:
28-
- os: windows-latest
29-
c_compiler: cl
30-
cpp_compiler: cl
3127
- os: ubuntu-latest
3228
c_compiler: gcc
3329
cpp_compiler: g++
3430
- os: ubuntu-latest
3531
c_compiler: clang
3632
cpp_compiler: clang++
3733
exclude:
34+
- os: windows-latest
35+
c_compiler: cl
3836
- os: windows-latest
3937
c_compiler: gcc
4038
- os: windows-latest
@@ -48,22 +46,20 @@ jobs:
4846
submodules: "recursive"
4947
fetch-depth: 1
5048

49+
# Dependecies needed only for Linux - Modbus Communication
5150
- name: Install dependencies
5251
run: |
5352
sudo apt-get update
5453
sudo apt-get install -y libnet1-dev
5554
if: matrix.os == 'ubuntu-latest'
5655

5756
- name: Set reusable strings
58-
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
5957
id: strings
6058
shell: bash
6159
run: |
6260
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
6361
6462
- name: Configure CMake
65-
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
66-
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
6763
run: >
6864
cmake -B ${{ steps.strings.outputs.build-output-dir }}
6965
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
@@ -75,7 +71,6 @@ jobs:
7571
-S ${{ github.workspace }}
7672
7773
- name: Build
78-
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
7974
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }}
8075

8176
- name: Test

0 commit comments

Comments
 (0)