Skip to content

Update to latestRing 1.22 source code (September 11th 2024) #4

Update to latestRing 1.22 source code (September 11th 2024)

Update to latestRing 1.22 source code (September 11th 2024) #4

Workflow file for this run

name: MSBuild
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .\language\src\all.sln
# 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:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
- name: Get Short Hash
id: get-short-hash
uses: benjlevesque/[email protected]
- name: Upload Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v2
with:
name: MonoRing_1.17_${{env.SHA}}_x86
path: |
.\bin
!.\bin\ringcloc.bat
.\extensions\
.\language\include\
.\language\src\locatevc.bat
.\lib\
!.\lib\*.exp
!.\lib\*.idb
.\libraries\
.\samples\
.\tools\editors
.\tools\
.\LICENSE
.\README.md
.\RingCMD.bat