Force 10-byte frame header for CLX #468
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: Linux Qt6 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dependencies | |
run: sudo apt-get update && sudo apt-get install cmake qt6-base-dev libgl1-mesa-dev | |
- name: configure | |
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo | |
- name: make | |
run: cmake --build build -j $(nproc) | |
- name: Upload-Package | |
if: ${{ !env.ACT }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: D1GraphicsTool-Linux-x64 | |
path: build/D1GraphicsTool |