mathstuff/.drone.yml
Juan José Gutiérrez de Quevedo Pérez 91b9afa096
Some checks failed
continuous-integration/drone Build is failing
fix stuff
2025-11-25 11:19:09 +01:00

40 lines
1,012 B
YAML

kind: pipeline
type: docker
name: android-build
steps:
# Step 1: Build Debug APK
- name: build-debug
image: cirrusci/android-sdk:33
environment:
GRADLE_USER_HOME: .gradle
commands:
- cd MathHomeworkHelper
- echo "Building Debug APK..."
- chmod +x ./gradlew
- ./gradlew clean assembleDebug
- echo "Debug APK built successfully!"
# Step 2: Build Release APK
- name: build-release
image: cirrusci/android-sdk:33
environment:
GRADLE_USER_HOME: .gradle
commands:
- cd MathHomeworkHelper
- echo "Building Release APK..."
- chmod +x ./gradlew
- ./gradlew clean assembleRelease
- echo "Release APK built successfully!"
# Step 3: Run Unit Tests
- name: run-tests
image: cirrusci/android-sdk:33
environment:
GRADLE_USER_HOME: .gradle
commands:
- cd MathHomeworkHelper
- echo "Running unit tests..."
- chmod +x ./gradlew
- ./gradlew test
- echo "Tests completed!"