Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions .github/workflows/android_bin_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# This is a basic workflow to test building for android in a linux environment.

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4

# Setup JDK
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'

- name: Setup Android NDK
uses: android-actions/setup-ndk@v2 # Or amyu/setup-android@v4 for SDK and NDK
with:
ndk-version: '25.2.9519653' # Specify your desired NDK version

# Start LibreOffice Build
- name: Announce staret of build
run: echo Start Build for LibreOffice Binaries (Android)

# Runs a single command using the runners shell
- name: Create setup file for build
run: echo "--with-distro=LibreOfficeAndroid\n--with-android-sdk=$HOME/Android/Sdk\n--with-android-ndk=$HOME/Android/Sdk/ndk/27.2.12479018\n" >> autogen.input

# Runs a single command using the runners shell
- name: Execute Make Script
run: |
#Execute run scripts
./autogen
make


#- name: Build Android NDK project
# run: |
# # Example native build
# ./gradlew build


26 changes: 0 additions & 26 deletions .github/workflows/lockdown.yml

This file was deleted.