Skip to content

Commit

Permalink
Traktor: Windows build github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
apistol78 committed Feb 26, 2024
1 parent 124a8d6 commit 2f65bb3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: C/C++ CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install 3rdp dependencies
run: ./scripts/update-3rdp.bat
- name: Generate build files
run: ./scripts/build-projects-fbuild-win64.bat
- name: Build DebugShared
run: ./scripts/autobuild/autobuild-latest-win64.bat DebugShared
- name: Build ReleaseShared
run: ./scripts/autobuild/autobuild-latest-win64.bat ReleaseShared
- name: Build ReleaseStatic
run: ./scripts/autobuild/autobuild-latest-win64.bat ReleaseStatic
- name: Unit tests DebugShared
run: ./bin/latest/win64/debugshared/Traktor.Run.App ./scripts/unittest/UnitTest.run
- name: Unit tests ReleaseShared
run: ./bin/latest/win64/releaseshared/Traktor.Run.App ./scripts/unittest/UnitTest.run

0 comments on commit 2f65bb3

Please sign in to comment.