ci work and trying to fix #129 #478
This file contains 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: Windows build | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "*" | |
paths: | |
# This action only runs on push when C++ files are changed | |
- "**.cpp" | |
- "**.h" | |
- "**.cmake" | |
- "**Lists.txt" | |
- "**-windows.yml" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} (${{ matrix.buildtype }}) | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
buildtype: [Release, Debug] | |
config: | |
- { name: "Windows", os: windows-latest } | |
steps: | |
- name: Install dependencies | |
run: pip install Pillow | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} -DCMAKE_POLICY_DEFAULT_CMP0135=NEW | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --parallel --config ${{ matrix.buildtype }} --verbose | |
- name: Checking that HDRView runs | |
# shell: bash | |
working-directory: ${{github.workspace}} | |
run: ./build/${{ matrix.buildtype }}/HDRView.exe --help | |
- name: Copy files for archiving | |
working-directory: ${{github.workspace}}/build | |
run: | | |
mkdir deploy | |
cp ${{ matrix.buildtype }}/HDRView.exe assets deploy/ | |
- name: Archive build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifacts-${{ matrix.config.os }}-${{ matrix.buildtype }} | |
path: | | |
${{github.workspace}}/build/deploy |