Skip to content

Commit

Permalink
Added CI for Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Logaev <[email protected]>
  • Loading branch information
mxlgv committed Mar 12, 2024
1 parent 89d84ed commit 40fa2fc
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build-win64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build for Windows
on: [pull_request, push]

jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
- name: Build Dino
run: |
./build-win64.sh --prepare
./build-win64.sh
- name: Build Dino Installer
run: |
./build-win64.sh --build-installer
- name: Get Dino Installer
uses: actions/upload-artifact@v3
with:
name: windows-installer
path: windows-installer/dino-installer.exe
- name: Get Dino distribution
uses: actions/upload-artifact@v3
with:
name: win64-dist
path: windows-installer/win64-dist

0 comments on commit 40fa2fc

Please sign in to comment.