Merge pull request #24 from SecUSo/update-ci
Adds ci and changelog workflows.
This commit is contained in:
commit
aa9e7f87da
2 changed files with 91 additions and 0 deletions
24
.github/workflows/changelog.yml
vendored
Normal file
24
.github/workflows/changelog.yml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
name: Changelog Generation
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
changelog:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
ref: master
|
||||
- uses: rhysd/changelog-from-release/action@v3
|
||||
with:
|
||||
file: CHANGELOG.md
|
||||
pull_request: true
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
commit_summary_template: 'update changelog for %s changes'
|
||||
args: -l 2
|
||||
header: |
|
||||
# Changelog
|
||||
67
.github/workflows/ci.yml
vendored
Normal file
67
.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
name: Continuous Integration
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: "recursive"
|
||||
|
||||
- name: Set up JDK environment
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: "zulu"
|
||||
java-version: 17
|
||||
|
||||
- name: Make gradlew executable
|
||||
run: chmod +x ./gradlew
|
||||
|
||||
- name: Setup Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
|
||||
- name: Run local unit tests
|
||||
run: bash ./gradlew test --stacktrace
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: "recursive"
|
||||
|
||||
- name: Set up JDK environment
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: "zulu"
|
||||
java-version: 17
|
||||
|
||||
- name: Make gradlew executable
|
||||
run: chmod +x ./gradlew
|
||||
|
||||
- name: Setup Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
|
||||
- name: Run lint check
|
||||
run: bash ./gradlew lint
|
||||
|
||||
- name: Upload lint result
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: lint-results-debug
|
||||
path: app/build/reports/lint-results-debug.html
|
||||
|
||||
- name: Build the app
|
||||
run: bash ./gradlew build --stacktrace
|
||||
|
||||
- name: Build debug apk
|
||||
run: bash ./gradlew assembleDebug
|
||||
|
||||
- name: Upload debug apk
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: debug-apk
|
||||
path: app/build/outputs/apk/debug/*.apk
|
||||
Loading…
Add table
Add a link
Reference in a new issue