CI #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
# every 1st day of the month at 10:30 | |
- cron: '30 10 1 * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# used to cache dependencies with a timeout | |
- name: Get Date | |
id: get-date | |
run: | | |
echo "::set-output name=date::$(/bin/date -u "+%Y%m%d")" | |
shell: bash | |
- name: Cache Buildozer global directory | |
uses: actions/cache@v3 | |
with: | |
path: .buildozer_global | |
key: buildozer-global-${{ hashFiles('buildozer.spec') }} # Replace with your path | |
- uses: actions/cache@v3 | |
with: | |
path: .buildozer | |
key: ${{ runner.os }}-${{ steps.get-date.outputs.date }}-${{ hashFiles('buildozer.spec') }} | |
- name: Build with Buildozer | |
run: | | |
pip3 install --user --upgrade buildozer Cython virtualenv | |
export PATH=$PATH:~/.local/bin/ | |
export APP_ANDROID_ACCEPT_SDK_LICENSE=1 | |
export BUILDOZER_WARN_ON_ROOT=0 | |
sudo apt update | |
sudo apt install -y git zip unzip openjdk-17-jdk python3-pip autoconf libtool pkg-config zlib1g-dev libncurses5-dev libncursesw5-dev libtinfo5 cmake libffi-dev libssl-dev | |
cd ${{ github.workspace }} | |
buildozer android debug | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: package | |
path: bin/*.apk |