Skip to content

Commit

Permalink
Add automation to build with the latest canary version
Browse files Browse the repository at this point in the history
  • Loading branch information
pbreault committed Nov 28, 2024
1 parent 5bf8e17 commit b399e4b
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/check-studio-compatibility.yml
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

0 comments on commit b399e4b

Please sign in to comment.