From 40f00bf5c2e9618599d00ad1154f524b2ccdc5b5 Mon Sep 17 00:00:00 2001 From: Phani Pavan K Date: Sat, 14 Feb 2026 11:55:13 +0000 Subject: [PATCH] Delete .gitea/workflows/build_arm64.yaml --- .gitea/workflows/build_arm64.yaml | 52 ------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 .gitea/workflows/build_arm64.yaml diff --git a/.gitea/workflows/build_arm64.yaml b/.gitea/workflows/build_arm64.yaml deleted file mode 100644 index 4221097..0000000 --- a/.gitea/workflows/build_arm64.yaml +++ /dev/null @@ -1,52 +0,0 @@ -name: Build CI -on: [push] - -jobs: - build: - name: Build - runs-on: linux-arm64 - - 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 cmake clang libgtk-3-dev - - - name: Install Flutter - uses: subosito/flutter-action@v2 - with: - channel: master - flutter-version: 3.38.9 - - - name: Check Flutter Installation - run: flutter doctor -v - - - 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 - - - name: Save Artifacts - uses: actions/upload-artifact@v3 - with: - name: PROD.arm64 - path: build/linux/*/release/bundle/ \ No newline at end of file