[CORRECTIVE] Fix build on older Qt versions #863
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: Check.Build | |
| on: [push] | |
| jobs: | |
| build_linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Install Qt | |
| uses: jurplel/install-qt-action@v2 | |
| with: | |
| version: 6.6.2 | |
| - name: Configure build | |
| run: ./configure | |
| - name: Build sources | |
| run: make -j4 | |
| - name: Install | |
| run: sudo make install | |
| # build_win64: | |
| # | |
| # runs-on: windows-latest | |
| # | |
| # steps: | |
| # - uses: actions/checkout@v1 | |
| # - name: Setup MSBuild | |
| # uses: microsoft/setup-msbuild@v1 | |
| # - name: Install Qt | |
| # uses: jurplel/install-qt-action@v2 | |
| # with: | |
| # version: 6.2.4 | |
| # - name: Build sources | |
| # run: | | |
| # $Env:PYTHON_DIR = $Env:RUNNER_TOOL_CACHE/Python/ | |
| # $Env:QTDIR = $Env:Qt5_Dir | |
| # msbuild -m:4 -p:Configuration=Release -p:Platform=x64 Kactus2_Solution_vs2017.sln |