Skip to content

Commit

Permalink
Add GCC compiler Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
UnrealKaraulov committed Jan 14, 2024
1 parent a1e4e65 commit 3424687
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
build/newbspguy_winxp_x86_release.zip
- name: Build app for debug
run: >
msbuild ${{ env.solution }} -m -t:rebuild -verbosity:diag-property:Configuration=DebugGithub
msbuild ${{ env.solution }} -m -t:rebuild -verbosity:diag -property:Configuration=DebugGithub
- name: Create Windows debug archive
run: >
mkdir -p build\win64_debug
Expand Down Expand Up @@ -154,18 +154,16 @@ jobs:
mingw32-make
- name: Create Windows release archive
run: >
tree /F
mkdir -p build\win64_cmake_release
mkdir -p build/win64_cmake_release
cp vs-project\Release\bspguy.exe build\win64_cmake_release\
cp build/bspguy.exe build/win64_cmake_release/
xcopy /I /E /Y "resources\*" "build\win64_cmake_release\"
xcopy /I /E /Y "resources/*" "build/win64_cmake_release/"
Compress-Archive -Path "build/win64_cmake_release/*" -DestinationPath "build/newbspguy_win_x64_release.zip"
- name: Publish nightly release binaries for windows 7+
Compress-Archive -Path "build\win64_cmake_release\*" -DestinationPath "build\newbspguy_win7_x64_gcc_release.zip"
- name: Publish nightly release binaries for windows 7+ GCC
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ needs.get_time_build.outputs.release_tag }}
files: |
build/newbspguy_win_x64_release.zip
build/newbspguy_win7_x64_gcc_release.zip

0 comments on commit 3424687

Please sign in to comment.