From 007e4404c119d79b027cf38e0f4c715be0e93aba Mon Sep 17 00:00:00 2001
From: 4831c0 <4831c0@proton.me>
Date: Fri, 2 May 2025 16:16:56 +0200
Subject: [PATCH] Remove Jenkinsfile

---
 Jenkinsfile | 56 -----------------------------------------------------
 1 file changed, 56 deletions(-)
 delete mode 100644 Jenkinsfile

diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index 3f51b0a..0000000
--- a/Jenkinsfile
+++ /dev/null
@@ -1,56 +0,0 @@
-pipeline {
-    agent any
-
-    environment {
-    ANDROID_SDK = '/home/jenkins/flutter_things/android-sdk'
-    ANDROID_PATH="$ANDROID_SDK/tools:$ANDROID_SDK/platform-tools"
-    FLUTTER = '/home/jenkins/flutter_things/flutter/bin'
-    PATH = "$PATH:$ANDROID_PATH:$FLUTTER"
-    //TODO: need to fix flutter
-    }
-
-
-    stages {
-        stage('Copy Key Properties') {
-            steps {
-                // Copy the key.properties file
-                sh 'cp /home/jenkins/key.properties refilc/android/key.properties'
-            }
-        }
-
-        stage('Flutter Doctor') {
-            steps {
-                // Ensure Flutter is set up correctly
-                sh 'flutter doctor'
-            }
-        }
-
-        stage('Dependencies') {
-            steps {
-                // Get Flutter dependencies
-                sh 'cd refilc && flutter pub get'
-            }
-        }
-
-        stage('Build') {
-            steps {
-                // Build the Flutter project
-                sh 'cd refilc && flutter build apk --release'
-            }
-        }
-
-        stage('Archive') {
-            steps {
-                // Archive the APK
-                archiveArtifacts artifacts: 'build/app/outputs/flutter-apk/app-release.apk', fingerprint: true
-            }
-        }
-    }
-
-    post {
-        always {
-            // Clean up workspace after build
-            cleanWs()
-        }
-    }
-}