mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
Previously Compose Multiplatform Gradle plugin required JDK 15+ for distribution packaging. However, fixing #2867 required always passing --mac-entitlements to jpackage, which is only available with JDK 17+.
35 lines
987 B
YAML
35 lines
987 B
YAML
name: Test Gradle plugin
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'gradle-plugins/**'
|
|
- '.github/workflows/gradle-plugin.yml'
|
|
jobs:
|
|
test-gradle-plugin:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-20.04, macos-12, windows-2022]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'corretto'
|
|
java-version: '17'
|
|
- name: Test Gradle plugin
|
|
shell: bash
|
|
run: |
|
|
cd gradle-plugins
|
|
./gradlew assemble
|
|
./gradlew :compose:check --continue
|
|
- name: Print summary
|
|
shell: bash
|
|
if: always()
|
|
run: |
|
|
cd gradle-plugins/compose/build/test-summary
|
|
for SUMMARY_FILE in `find . -name "*.md"`; do
|
|
FILE_NAME=`basename $SUMMARY_FILE`
|
|
echo "## $FILE_NAME" >> $GITHUB_STEP_SUMMARY
|
|
cat $SUMMARY_FILE >> $GITHUB_STEP_SUMMARY
|
|
done |