Skip to content

Commit

Permalink
build for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ulph committed Apr 16, 2024
1 parent 7077f06 commit 93f29e7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/juce-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
with:
path: |
${{github.workspace}}/build/JUCE/PhasePhdgr_artefacts/Release
${{github.workspace}}/build/JUCE/PhasePhdgrFx_artefacts/Release
# ${{github.workspace}}/build/JUCE/PhasePhdgrFx_artefacts/Release
32 changes: 32 additions & 0 deletions .github/workflows/juce-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: JUCE artifacts (windows)

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

env:
BUILD_TYPE: Release

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: 'Upload Artifacts'
uses: actions/upload-artifact@v4
with:
path: |
${{github.workspace}}/build/JUCE/PhasePhdgr_artefacts/Release
# ${{github.workspace}}/build/JUCE/PhasePhdgrFx_artefacts/Release

0 comments on commit 93f29e7

Please sign in to comment.