Skip to content

feat: make task prioritize faster #35

feat: make task prioritize faster

feat: make task prioritize faster #35

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build-mingw:
name: Build Project (MinGW)
runs-on: windows-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Use CMake Action
uses: threeal/[email protected]
with:
generator: MinGW Makefiles
options: CMAKE_BUILD_TYPE=Release
run-build: true
- name: Zip Binaries
uses: vimtor/[email protected]
with:
files: bin
dest: executable-MinGW.zip
- name: Check Artifact
uses: actions/[email protected]
with:
path: ${{ github.workspace }}/executable-MinGW.zip
build-msvc:
name: Build Project (MSVC)
runs-on: windows-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Use CMake Action
uses: threeal/[email protected]
with:
generator: Visual Studio 17 2022
build-args: --config Release
run-build: true
- name: Zip Binaries
uses: vimtor/[email protected]
with:
files: bin
dest: executable-MSVC.zip
- name: Check Artifact
uses: actions/[email protected]
with:
path: ${{ github.workspace }}/executable-MSVC.zip