Skip to content

Commit

Permalink
Update release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMidnightOfficial committed Nov 22, 2023
1 parent 0a81e1d commit feac8ff
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,11 @@ jobs:
matrix:
os: [windows-latest]
build_type: [Release]
c_compiler: [gcc, clang, cl]
c_compiler: [gcc]
include:
- os: windows-latest
c_compiler: gcc
cpp_compiler: g++
exclude:
- os: windows-latest
c_compiler: clang
name: Release
runs-on: windows-latest
permissions: write-all
Expand All @@ -29,7 +26,7 @@ jobs:
version: "^1.0.0"
token: ${{ SECRETS.GITHUB_TOKEN }}
- name: cmake
run: cmake -G "MinGW Makefiles" -B "./build" -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
run: cmake -G "MinGW Makefiles" -B "./build" -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
- name: make
run: |
cd ./build
Expand Down

0 comments on commit feac8ff

Please sign in to comment.