-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add automation to build with the latest canary version
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Check compatibility with latest Android Studio Canary | ||
on: [push] | ||
jobs: | ||
fetch-studio-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Fetch latest studio version | ||
id: fetch-studio-version | ||
run: | | ||
# Fetch the latest Canary version of Android Studio | ||
curl -sL https://jb.gg/android-studio-releases-list.json > studio-releases.json | ||
VERSION=$(cat studio-releases.json | jq -r '.content.item[] | select(.channel == "Canary") | .version' | head -n 1) | ||
echo "Testing with Android Studio Canary version **$VERSION**" >> "$GITHUB_STEP_SUMMARY" | ||
echo "STUDIO_VERSION=$VERSION" >> "$GITHUB_OUTPUT" | ||
# Print JSON content to the job summary | ||
echo '```json' >> "$GITHUB_STEP_SUMMARY" | ||
cat studio-releases.json | jq '.content.item | map(select(.channel == "Canary")) | .[0] | del(.download)' >> "$GITHUB_STEP_SUMMARY" | ||
echo '```' >> "$GITHUB_STEP_SUMMARY" | ||
- name: Checkout Sources | ||
uses: actions/checkout@v4 | ||
- name: Setup JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 17 | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
- name: Build with latest canary version | ||
env: | ||
STUDIO_VERSION: ${{ steps.fetch-studio-version.outputs.STUDIO_VERSION }} | ||
run: | | ||
echo "Building with Android Studio Canary version: $STUDIO_VERSION" | ||
./gradlew build -PideVersion=$STUDIO_VERSION | ||