Merge pull request #12 from georgemoralis/georgemoralis-fixingactions

Update windows.yml to use cmake
This commit is contained in:
georgemoralis 2023-05-11 16:12:36 +03:00 committed by GitHub
commit a8a598aee4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 15 deletions

View File

@ -12,13 +12,8 @@ on:
branches: [ "main" ] branches: [ "main" ]
env: env:
# Path to the solution file relative to the root of the project. # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
SOLUTION_FILE_PATH: ./ BUILD_TYPE: Release
# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
BUILD_CONFIGURATION: Release
permissions: permissions:
contents: read contents: read
@ -32,18 +27,20 @@ jobs:
with: with:
submodules: recursive submodules: recursive
- name: Add MSBuild to PATH - name: Configure CMake
uses: microsoft/setup-msbuild@v1.3.1 # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build - name: Build
working-directory: ${{env.GITHUB_WORKSPACE}} # Build your program with the given configuration
# Add additional options to the MSBuild command line here (like platform or verbosity level). run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
- name: Upload a Build Artifact - name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.2 uses: actions/upload-artifact@v3.1.2
with: with:
name: shadps4-win64 name: shadps4-win64
# A file, directory or wildcard pattern that describes what to upload # A file, directory or wildcard pattern that describes what to upload
path: x64/Release path: |
${{github.workspace}}/build/Release/shadps4.exe
${{github.workspace}}/build/Release/SDL3.dll