Skip to content

enable CI for building #1

enable CI for building

enable CI for building #1

Workflow file for this run

name: Descent 3 Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-latest]
build_type: [Debug, Release]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -A "Win32"
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}}
- name: 'Upload Artifacts'
uses: actions/upload-artifact@v4
with:
name: build_${{matrix.build_type}}
path: ${{github.workspace}}/build/${{matrix.build_type}}