DataTab: Fix "Show latest" mode #70
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 CI (MinGW-w64, MSYS2) | |
on: [ workflow_dispatch, push ] | |
defaults: | |
run: | |
shell: msys2 {0} | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
sys: [ MINGW64, MINGW32 ] | |
runs-on: windows-latest | |
steps: | |
- name: Install packages | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: ${{ matrix.sys }} | |
update: true | |
install: >- | |
git | |
wget | |
tar | |
make | |
pacboy: >- | |
gcc:p | |
qt5-base:p | |
qt5-serialport:p | |
qt5-connectivity:p | |
qt5-tools:p | |
# https://github.com/msys2/setup-msys2/tree/ee7b70729a6248e4dee7e3b299eae8965eab9980#actionscheckout-and-line-endings | |
- name: Configure line ending | |
run: git config --global core.autocrlf input | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Download QCustomPlot | |
run: | | |
wget "https://www.qcustomplot.com/release/2.1.1/QCustomPlot-source.tar.gz" | |
tar -xvzf QCustomPlot-source.tar.gz | |
cp qcustomplot-source/qcustomplot.* ./src | |
- name: Build | |
run: | | |
qmake -r ./src/SerialTest.pro | |
make -j $((`nproc` + 1)) | |
make clean | |
- name: Copy DLLs | |
run: | | |
cd ./release | |
windeployqt ./SerialTest.exe | |
python ../pack/find_dlls.py ./SerialTest.exe | |
ls -l | |
- name: Save artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: SerialTest-${{ matrix.sys }} | |
path: ./release/* |