Build #124
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [ 'master' ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
gradle-wrapper-validation: | |
name: Validate Gradle Wrapper | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v3 | |
build: | |
name: Build Plugin | |
runs-on: ubuntu-latest | |
needs: gradle-wrapper-validation | |
outputs: | |
# TODO Get IDEA versions to test | |
supported-idea-releases: ${{ steps.metadata.outputs.products-releases }} | |
steps: | |
# Setup environment | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-home-cache-cleanup: true | |
# Collect metadata | |
- name: Collect metadata for upcoming steps and jobs | |
id: metadata | |
run: | | |
./gradlew --stacktrace metadata listProductsReleases | |
echo "products-releases=$(jq -R . < build/listProductsReleases.txt | jq -sc)" >> "$GITHUB_OUTPUT" | |
# Build | |
- name: Build project | |
run: ./gradlew --stacktrace assemble | |
- name: Package and verify plugin | |
run: ./gradlew --stacktrace verifyPlugin | |
# Upload artifacts | |
- name: Upload build reports | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-reports | |
path: build/reports/ | |
if-no-files-found: ignore | |
- name: Upload build result | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-result | |
path: build/distributions/ | |
if-no-files-found: error | |
- name: Upload metadata | |
uses: actions/upload-artifact@v4 | |
with: | |
name: metadata | |
path: build/metadata/ | |
if-no-files-found: error | |
check: | |
name: Test Plugin (${{ matrix.idea-releases }}) | |
runs-on: ubuntu-latest | |
needs: build | |
strategy: | |
fail-fast: false | |
matrix: | |
idea-releases: ${{ needs.build.outputs.supported-idea-releases }} | |
steps: | |
# Setup environment | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
cache-read-only: true | |
# Setup caches for Plugin Verifier | |
- name: Setup cache for IntelliJ Plugin Verifier | |
uses: actions/cache@v4 | |
with: | |
path: ~/.pluginVerifier/ides | |
key: pluginVerifier-${{ matrix.idea-releases }}-${{ runner.os }} | |
# Run tests | |
# TODO Set IDEA version | |
- name: Run linters and tests | |
run: ./gradlew --stacktrace check | |
# TODO Set IDEA version | |
- name: Check plugin compatibility | |
run: ./gradlew --stacktrace runPluginVerifier | |
# Upload artifacts | |
- name: Upload build reports | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-reports-${{ matrix.idea-releases }} | |
path: build/reports/ | |
if-no-files-found: ignore | |
release-draft: | |
name: Update drafts for GitHub releases | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
needs: [ build, check ] | |
steps: | |
# Remove old release drafts | |
- name: Remove old release drafts | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
const owner = context.repo.owner; | |
const repo = context.repo.repo; | |
const response = await github.rest.repos.listReleases({owner, repo}); | |
for (const draft of response.data.filter(r => r.draft)) { | |
core.info(`Delete draft for '${draft.name}' (${draft.id})`); | |
await github.rest.repos.deleteRelease({owner, repo, release_id: draft.id}); | |
} | |
# Download build artifacts | |
- name: Download build result | |
uses: actions/download-artifact@v4 | |
with: | |
name: build-result | |
path: build/distributions/ | |
- name: Download metadata | |
uses: actions/download-artifact@v4 | |
with: | |
name: metadata | |
path: build/metadata/ | |
# Read metadata | |
- name: Read metadata | |
id: metadata | |
run: | | |
echo "version=$(cat build/metadata/version.txt)" >> "$GITHUB_OUTPUT" | |
echo "zipfile=$(cat build/metadata/zipfile.txt)" >> "$GITHUB_OUTPUT" | |
echo "zipname=$(basename "$(cat build/metadata/zipfile.txt)")" >> "$GITHUB_OUTPUT" | |
# Fail job if the release tag already exists and points to a different commit | |
- name: Check release tag | |
uses: actions/github-script@v7 | |
env: | |
TAG_NAME: v${{ steps.metadata.outputs.version }} | |
with: | |
script: | | |
const owner = context.repo.owner; | |
const repo = context.repo.repo; | |
const tagname = process.env.TAG_NAME; | |
try { | |
const ref = `tags/${tagname}` | |
const response = await github.rest.git.getRef({owner, repo, ref}); | |
if (response.data.object.sha === context.sha) { | |
core.info(`Tag '${tagname}' is already defined and points to the right commit.`); | |
core.info(`Commit: ${context.sha}`); | |
} | |
else { | |
core.setFailed( | |
`Tag '${tagname}' already exists but points to a different commit.\n` + | |
`You probably need to bump the version number.\n` + | |
`Tag points to: ${response.data.object.sha}\n` + | |
`Release commit: ${context.sha}`); | |
} | |
} | |
catch (e) { | |
if (e.status === 404) { | |
core.info(`Tag '${tagname}' is not yet defined.`); | |
} | |
else { | |
throw e; | |
} | |
} | |
# Create GitHub release draft | |
- name: Create GitHub release draft | |
uses: actions/github-script@v7 | |
env: | |
TAG_NAME: v${{ steps.metadata.outputs.version }} | |
ZIP_FILE: ${{ steps.metadata.outputs.zipfile }} | |
ZIP_NAME: ${{ steps.metadata.outputs.zipname }} | |
with: | |
script: | | |
const fs = require('fs'); | |
const owner = context.repo.owner; | |
const repo = context.repo.repo; | |
const { TAG_NAME, ZIP_FILE, ZIP_NAME } = process.env; | |
core.info(`Create new draft for '${TAG_NAME}'`); | |
const createResponse = await github.rest.repos.createRelease({ | |
owner, | |
repo, | |
name: TAG_NAME, | |
tag_name: TAG_NAME, | |
target_commitish: context.sha, | |
body: fs.readFileSync('build/metadata/latest_changelog.md', 'utf8'), | |
draft: true, | |
}); | |
core.info(`Upload build result; upload_url: ${createResponse.data.upload_url}`); | |
const uploadResponse = await github.rest.repos.uploadReleaseAsset({ | |
url: createResponse.data.upload_url, | |
headers: {'Content-Type': 'application/zip'}, | |
name: ZIP_NAME, | |
label: ZIP_NAME, | |
data: fs.readFileSync(ZIP_FILE), | |
}); | |
core.info(`Upload complete; download_url: ${uploadResponse.data.browser_download_url}`); | |
core.info(`You can find the release draft at ${createResponse.data.html_url}`); |