Skip to content

fix: -no-pch is needed for building Qt otherwise the github workflow … #89

fix: -no-pch is needed for building Qt otherwise the github workflow …

fix: -no-pch is needed for building Qt otherwise the github workflow … #89

Workflow file for this run

name: Release
on:
push:
tags:
- 'v[0-9]+\.[0-9]+\.[0-9]+'
jobs:
build-release:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
env:
QT_INSTALLER_JWT_TOKEN: ${{ secrets.QT_INSTALLER_JWT_TOKEN }}
run: |
./scripts/setup --static
- name: Build project
run: |
./scripts/configure -- -DBUILD_TESTING=ON
cmake --build ./build --target package
- name: Run test
run: |
ctest --test-dir ./build --verbose
- name: Publish
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
files: ./build/*.tar.gz