Fix project build with platformVersion >= 2024 #3111
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, test and verify | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
name: JetBrains tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch Sources | |
uses: actions/checkout@v4 | |
- run: yarn global add [email protected] | |
- run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
shell: bash | |
id: pnpm-cache | |
- name: Cache pnpm store | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-${{ matrix.node }}-pnpm-store- | |
restore-keys: ${{ runner.os }}-${{ matrix.node }}-pnpm-store-k | |
- name: Cache gradle and sourcegraph stores | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
~/.sourcegraph/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'gradle.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Gradle Wrapper Validation | |
uses: gradle/actions/wrapper-validation@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 17 | |
cache: gradle | |
# Skip Code Search build in CI because it's slow, and we don't use it anyway for testing purposes. | |
- run: echo "SKIP_CODE_SEARCH_BUILD=true" >> $GITHUB_ENV | |
- run: ./gradlew spotlessCheck | |
- run: ./gradlew check | |
- name: Upload the test report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-report | |
path: build/reports/tests/ | |
compression-level: 9 | |
- run: ./gradlew buildPlugin | |
- run: ./gradlew --stop | |
- name: Upload the plugin package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: plugin | |
path: './build/distributions/Sourcegraph-*.zip' | |
compression-level: 0 | |
retention-days: 7 | |
plugin-verifier: | |
name: IntelliJ Plugin Verifier | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: plugin | |
- name: Verify Plugin on IntelliJ Platforms | |
id: verify | |
uses: ChrisCarini/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
plugin-location: '*.zip' | |
ide-versions: | | |
ideaIC:2023.2 | |
ideaIC:2024.2.3 | |
failure-levels: | | |
OVERRIDE_ONLY_API_USAGES | |
NON_EXTENDABLE_API_USAGES | |
PLUGIN_STRUCTURE_WARNINGS | |
MISSING_DEPENDENCIES | |
INVALID_PLUGIN | |
- name: Upload the verification reports | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: plugin-verifier-reports | |
path: 'verification-*' | |
compression-level: 9 | |