feat: remove ui completely

This commit is contained in:
zarazaex69
2026-05-03 01:32:54 +03:00
parent 71d164729f
commit de006acdc7
13 changed files with 2 additions and 806 deletions

View File

@@ -46,38 +46,6 @@ jobs:
name: olcrtc-cli-binaries
path: build/
build-ui:
name: Build UI (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25.x'
- name: Install Linux Dependencies (Fyne)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y gcc libgl1-mesa-dev xorg-dev libwayland-dev libx11-dev
- name: Install Mage
run: go install github.com/magefile/mage@latest
- name: Build UI
run: mage buildUI
- name: Upload UI Artifact
uses: actions/upload-artifact@v4
with:
name: olcrtc-ui-${{ runner.os }}
path: build/
build-android:
name: Build Android (AAR)
runs-on: ubuntu-latest