stages: - cmake - build - post # Unix Build cmake: stage: cmake image: luki42/dynuiprefresher_build:latest script: - cmake -S . -B build cache: paths: - build/ - inc/ - postinst build: stage: build image: luki42/dynuiprefresher_build:latest script: - cd build - make artifacts: paths: - "build/bin/*" cache: paths: - build/ - inc/ - postinst build_package: stage: post image: luki42/dynuiprefresher_build:latest script: - cd build - make package artifacts: paths: - "build/packages/*" cache: paths: - build/ - inc/ - postinst test: stage: post image: luki42/dynuiprefresher_build:latest script: - cd build - make test - make build-xml artifacts: reports: junit: build/report.xml cache: paths: - build/ - inc/ - postinst # Windows Build cmake_win64: stage: cmake image: luki42/dynuiprefresher_build:windows script: - cmake -S . -B build -D WinBuild=ON cache: paths: - build/ - inc/ build_win64: stage: build image: luki42/dynuiprefresher_build:windows script: - cd build - make iprefresher artifacts: paths: - "build/bin/*" cache: paths: - build/ - inc/ build_package_win64: stage: post image: luki42/dynuiprefresher_build:windows script: - cd build - make package artifacts: paths: - "build/packages/*" cache: paths: - build/ - inc/