Skip to content

Commit

Permalink
common workflow (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeryStk authored Nov 15, 2023
1 parent 4c3d4f3 commit 7a9a5c1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 62 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
name: Linux
name: Linux-Windows

on:
push:
Expand All @@ -19,16 +19,26 @@ jobs:


matrix:
os: [ubuntu-latest]
os: [ubuntu-latest, windows-latest]
build_type: [Release]
c_compiler: [gcc, clang]
c_compiler: [gcc, clang, cl]
include:
- os: windows-latest
c_compiler: cl
cpp_compiler: cl
- os: ubuntu-latest
c_compiler: gcc
cpp_compiler: g++
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
exclude:
- os: windows-latest
c_compiler: gcc
- os: windows-latest
c_compiler: clang
- os: ubuntu-latest
c_compiler: cl

steps:
- uses: actions/checkout@v3
Expand Down
59 changes: 0 additions & 59 deletions .github/workflows/cmake_windows.yml

This file was deleted.

0 comments on commit 7a9a5c1

Please sign in to comment.