refactor: remove few worflow

This commit is contained in:
2025-06-22 23:41:14 +02:00
parent a206ccce6e
commit 9230630fb2
2 changed files with 12 additions and 20 deletions

View File

@@ -10,7 +10,7 @@ on:
jobs: jobs:
build: build:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.name }}
strategy: strategy:
# 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. # 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.
@@ -23,43 +23,34 @@ jobs:
# #
# other: arm64: windows and linux # other: arm64: windows and linux
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list. # To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
matrix: matrix:
os: [ubuntu-latest, windows-latest, ubuntu-24.04-arm, windows-11-arm]
build_type: [Release]
c_compiler: [gcc, clang, cl]
include: include:
- os: ubuntu-latest - os: ubuntu-latest
c_compiler: gcc c_compiler: clang
cpp_compiler: g++ cpp_compiler: clang++
arch: x86_64 arch: x86_64
name: Linux Clang x86_64
- os: ubuntu-24.04-arm - os: ubuntu-24.04-arm
c_compiler: gcc c_compiler: gcc
cpp_compiler: g++ cpp_compiler: g++
arch: arm64 arch: arm64
name: Linux GCC ARM64
- os: windows-latest - os: windows-latest
c_compiler: cl c_compiler: cl
cpp_compiler: cl cpp_compiler: cl
arch: x86_64 arch: x86_64
vs_arch: x64 vs_arch: x64
name: Windows MSVC x64
- os: windows-11-arm - os: windows-11-arm
c_compiler: cl c_compiler: cl
cpp_compiler: cl cpp_compiler: cl
arch: arm64 arch: arm64
vs_arch: ARM64 vs_arch: ARM64
exclude: name: Windows MSVC ARM64
- os: windows-latest
c_compiler: gcc
- os: windows-latest
c_compiler: clang
- os: windows-11-arm
c_compiler: gcc
- os: windows-11-arm
c_compiler: clang
- os: ubuntu-latest
c_compiler: cl
- os: ubuntu-24.04-arm
c_compiler: cl
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

1
tests/unity Submodule

Submodule tests/unity added at b9d897b5f3