Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
StellarWarp committed Sep 16, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent c96d94f commit f3211b5
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
@@ -25,13 +25,17 @@ jobs:
matrix:
os: [windows-latest]
build_type: [Release]
c_compiler: [gcc]
cpp_compiler: [g++]


steps:
- uses: actions/checkout@v4

- name: Setup Ninja
uses: ashutoshvarma/setup-ninja@master
with:
# ninja version to download. Default: 1.10.0
version: 1.10.0

- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
id: strings
@@ -44,9 +48,10 @@ jobs:
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: >
cmake -B ${{ steps.strings.outputs.build-output-dir }}
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-G Ninja
-D CMAKE_C_COMPILER=gcc
-D CMAKE_CXX_COMPILER=g++
-D CMAKE_BUILD_TYPE=${{ matrix.build_type }}
-S ${{ github.workspace }}
- name: Build
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<a href="https://github.com/StellarWarp/CombinativeClass/actions/workflows/msvc.yml" target="_blank">![msvc](https://github.com/StellarWarp/CombinativeClass/actions/workflows/msvc.yml/badge.svg)</a>
<a href="https://github.com/StellarWarp/CombinativeClass/actions/workflows/clang-cl.yml" target="_blank">![clang_cl](https://github.com/StellarWarp/CombinativeClass/actions/workflows/clang-cl.yml/badge.svg)</a>
<a href="https://github.com/StellarWarp/CombinativeClass/actions/workflows/clang.yml" target="_blank">![clang](https://github.com/StellarWarp/CombinativeClass/actions/workflows/clang.yml/badge.svg)</a>
<a href="https://github.com/StellarWarp/CombinativeClass/actions/workflows/gcc.yml" target="_blank">![gcc](https://github.com/StellarWarp/CombinativeClass/actions/workflows/gcc.yml/badge.svg)</a>


# Combinative Class

0 comments on commit f3211b5

Please sign in to comment.