Files
LR-EnviroCommand/.gitea/workflows/build.yaml
T
dragonfly2046 0e53d6c8f8
Build CI / Build (ubuntu-latest) (push) Failing after 7s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Oopsv3
2026-05-02 10:49:36 -07:00

24 lines
650 B
YAML

name: Build CI
on: push
jobs:
build_and_test:
name: "Build"
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.10.2'
cache: 'false'
cache-key-prefix: 'install-qt-action'
dir: ${{ gitea.workspace }}
- uses: actions/checkout@v6
- name: Build
# We don't need to set up the environment variable for CMake to see Qt because the install-qt-action
# sets up the necessary variables automatically
run: cmake --preset release && cmake --build --preset release