Files
Prod/.gitea/workflows/build.yaml
Phani Pavan K 5d6dd58deb
Some checks failed
Build CI / Build (push) Failing after 44s
add cmake to deps
2026-02-08 11:28:11 +05:30

42 lines
975 B
YAML

name: Build CI
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
channel: master
- uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ gitea.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Install Framework Dependencies
run: sudo apt-get update -y && sudo apt install -y ninja-build libgtk-3-dev x86_64-linux-gnu-gcc cmake
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: master
flutter-version: 3.38.9
- name: Get Project Dependencies
run: flutter pub get
# - name: Analyze project
# run: flutter analyze
# - name: Test project
# run: flutter test
- name: Build
run: flutter build linux --target-platform linux-x64