f9a9ce3167
* Let Termux:X11 run without sharedUserId="com.termux" Make Termux:X11 start user-defined commands in Termux ($PREFIX/libexec/termux-x11/termux-startx11) Make debug_build.yml build companion package for termux and upload it as an artifact. Update README.md
28 lines
514 B
YAML
28 lines
514 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
run: |
|
|
./gradlew assembleDebug
|
|
- name: Build companion package
|
|
run: |
|
|
./build_termux_package
|
|
- name: Store generated APK file
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: termux-x11
|
|
path: ./app/build/outputs/apk/debug
|