2023-10-25 18:45:32 +00:00
|
|
|
name: Android CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "master" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "master" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: set up JDK 11
|
|
|
|
uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
java-version: '11'
|
|
|
|
distribution: 'temurin'
|
|
|
|
cache: gradle
|
|
|
|
|
|
|
|
- name: Grant execute permission for gradlew
|
|
|
|
run: chmod +x gradlew
|
|
|
|
- name: Build with Gradle
|
|
|
|
run: ./gradlew build
|
2023-11-02 13:29:07 +00:00
|
|
|
- name: upload jar
|
2023-11-02 13:30:56 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2023-11-02 13:29:07 +00:00
|
|
|
with:
|
|
|
|
name: build_files
|
2023-11-02 17:03:20 +00:00
|
|
|
path: /build/libs/*.jar
|