mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-05-23 14:58:36 +00:00
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
name: Build for windows
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
Building:
|
|
runs-on: [windows-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install Qt
|
|
uses: ouuan/install-qt-action@v2.3.1
|
|
with:
|
|
arch: win64_mingw73
|
|
dir: build/qt
|
|
- name: Install the SFML.
|
|
run: |
|
|
Invoke-WebRequest -Uri https://www.sfml-dev.org/files/SFML-2.5.1-windows-gcc-7.3.0-mingw-64-bit.zip -OutFile sfml.zip
|
|
Expand-Archive sfml.zip -DestinationPath . -Force
|
|
Move-Item -Path SFML-2.5.1 -Destination build/sfml
|
|
- name: Build Makefile with CMake
|
|
run: |
|
|
Set-Location build
|
|
cmake .. -G "MinGW Makefiles" -DCMAKE_SH="CMAKE_SH-NOTFOUND" -DGITBUILD=true
|
|
tree /F
|
|
- name: Build with Makefile
|
|
run: |
|
|
mingw32-make -C build ComSquare
|
|
- name: Clean up
|
|
run: |
|
|
Set-Location build
|
|
tree /F
|
|
- name: Copy shared libs
|
|
run: |
|
|
Copy-Item -Path build\smfl\bin\*.dll -Destination build
|
|
Copy-Item -Path build\qt\bin\*.dll -Destination build
|
|
tree /F build
|
|
Copy-Item -Path 'C:\Program Files\Git\mingw64\bin\*.dll' -Destination build
|
|
- name: Archive production artifact
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: ComSquare-Windows
|
|
path: build/
|