support 64 bit hashes #208
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gMod CI Pipeline | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- dev | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
targetplatform: [x86] | |
runs-on: windows-latest | |
env: | |
Configuration: Release | |
Actions_Allow_Unsecure_Commands: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
- name: Build CMake Files | |
run: cmake -S . -B build -A Win32 | |
- name: Build binaries | |
run: cmake --build build --config Release |