sf3000 to AOG as written by AI #49
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| windows_build: | |
| name: Windows Build | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install NSIS | |
| run: choco install nsis -y | |
| - name: Compile | |
| run: | | |
| mkdir build | |
| cmake -S . -B build -DBUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF -Wno-dev | |
| cmake --build build --config Release --target package | |
| - name: 'Upload Windows Installer' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: 'Windows Installer' | |
| path: build/_CPack_Packages/win64/NSIS/*.exe |