Allow omitting nature in IV calc #101
Workflow file for this run
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: CI - Windows | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- '*' | |
pull_request: | |
jobs: | |
ci: | |
name: Build | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v4 | |
with: | |
version: "6.7.1" | |
archives: qtbase qtsvg qttools | |
tools: tools_opensslv3_x64 | |
cache: true | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=RELEASE -DTEST=ON | |
- name: Build PokeFinder | |
run: cmake --build ${{github.workspace}}/build --config RELEASE | |
- name: Test PokeFinder | |
run: ctest --test-dir ${{github.workspace}}/build -C RELEASE -V | |
- name: Package PokeFinder | |
run: | | |
mkdir upload | |
mkdir PokeFinder | |
mkdir PokeFinder/platforms | |
mkdir PokeFinder/styles | |
mv build/Source/Release/PokeFinder.exe PokeFinder | |
windeployqt --no-translations --no-plugins --no-opengl-sw --no-system-d3d-compiler PokeFinder/PokeFinder.exe | |
rm PokeFinder/vc_redist*.exe | |
cp "${{ env.QT_ROOT_DIR }}/plugins/platforms/qwindows.dll" PokeFinder/platforms/ | |
cp "${{ env.QT_ROOT_DIR }}/plugins/styles/qmodernwindowsstyle.dll" PokeFinder/styles/ | |
cp "${{ env.QT_ROOT_DIR }}/../../Tools/OpenSSLv3/Win_x64/bin/lib*.dll" PokeFinder | |
7z a PokeFinder-win.zip PokeFinder | |
mv PokeFinder upload | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: PokeFinder-windows | |
path: upload | |
- name: Publish Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: PokeFinder-win.zip |