Skip to content

Commit

Permalink
Add more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
NipunaRanasinghe committed Jun 13, 2024
1 parent 82a28f5 commit c0ca94e
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions .github/workflows/verification-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,11 @@ on:
workflow_dispatch:

jobs:
read-versions:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Read IntelliJ IDEA versions
id: set-env
run: |
sinceBuild=$(grep "^sinceBuild" gradle.properties | cut -d'=' -f2)
untilBuild=$(grep "^untilBuild" gradle.properties | cut -d'=' -f2)
echo "min_idea_version=${sinceBuild}" >> $GITHUB_ENV
echo "max_idea_version=${untilBuild}" >> $GITHUB_ENV
echo "min_idea_version=${{env.min_idea_version}}"
echo "max_idea_version=${{env.max_idea_version}}"
outputs:
min_idea_version: ${{ steps.set-env.outputs.min-idea-version }}
max_idea_version: ${{ steps.set-env.outputs.max-idea-version }}

verify-plugin:
needs: read-versions
runs-on: ubuntu-latest
concurrency:
group: ${{ github.head_ref }}-ubuntu-verify
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
idea_version: [ 220, 242 ]

steps:
- name: Checkout Repository
Expand All @@ -49,4 +25,4 @@ jobs:
distribution: 'temurin'

- name: Verify against IDEA ${{ matrix.idea_version }}
run: ./gradlew runIde -PideaVersion=${{ matrix.idea_version }}
run: ./gradlew runPluginVerifier

0 comments on commit c0ca94e

Please sign in to comment.