Skip to content

ubuntu-build

ubuntu-build #4

Workflow file for this run

name: ubuntu-build
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: dependencies
run: |
sudo add-apt-repository universe
sudo apt update
sudo apt-get install -y qt6-base qt6-base-dev qt6-tools-dev
- name: build
env:
CC: gcc-9
CXX: g++-9
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ../src
cmake --build .