Files
LR-EnviroCommand/.gitea/workflows/build.yaml
T
dragonfly2046 cecd0ed867
Build CI / Build (ubuntu-latest) (push) Failing after 6m13s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Maybeeeeee
2026-05-02 10:58:06 -07:00

22 lines
607 B
YAML

name: Build CI
on: push
jobs:
build_and_test:
name: "Build"
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
with:
submodules: 'recursive'
- name: Run vcpkg
uses: lukka/run-vcpkg@v11
with:
vcpkgDirectory: '${{ gitea.workspace }}/vcpkg'
- 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