CMP-1974 Added the ability to select a desktop shortcut option in the dialog box during installation #657
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: Test Gradle plugin | |
on: | |
pull_request: | |
paths: | |
- 'gradle-plugins/**' | |
- '.github/workflows/gradle-plugin.yml' | |
push: | |
branches: | |
- master | |
paths: | |
- 'gradle-plugins/**' | |
- '.github/workflows/gradle-plugin.yml' | |
jobs: | |
test-gradle-plugin: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, macos-14, windows-2022] | |
gradle: [7.4, 8.8] | |
agp: [8.1.0, 8.5.0] | |
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 --continue :preview-rpc:test :compose:test ':compose:test-Gradle(${{ matrix.gradle }})-Agp(${{ matrix.agp }})' | |
- name: Upload Reports | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Test-Reports | |
path: gradle-plugins/compose/build/reports | |
if: always() | |
- 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 |