Skip to content

Commit

Permalink
Update jetbrains recordings and build script (#6713)
Browse files Browse the repository at this point in the history
## Changes

1. Fix jetbrains integration tests recordings
2. Update build script so `pnpm update-agent-recordings` will update
jetbrains recordings as well (to avoid that issue in future)
3. Update artifact names - looks like they were changed by JetBrain in
the maven repo

## Test plan

N/A - fix for internal test infrastructure
  • Loading branch information
pkukielka authored Jan 21, 2025
1 parent 03c93f9 commit e795711
Show file tree
Hide file tree
Showing 4 changed files with 253 additions and 104 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,11 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
plugin-location: '*.zip'
# TODO (pkukielka): Upper range should be bumped to 251.14649.49-EAP-SNAPSHOT
# as soon as problem with Git4Idea dependencies will get resolved
ide-versions: |
ideaIC:2023.2
ideaIC:251.14649.49
ideaIC:2024.2.4
failure-levels: |
INVALID_PLUGIN
MISSING_DEPENDENCIES
Expand Down
3 changes: 2 additions & 1 deletion jetbrains/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ val isForceCodeSearchBuild = properties("forceCodeSearchBuild") == "true"
// add it to this list. Remove unsupported old versions from this list.
// Update gradle.properties pluginSinceBuild, pluginUntilBuild
// to match the min, max versions in this list.
val versionsOfInterest = listOf("2023.2", "2023.3", "2024.1", "2024.2.4", "251.14649.49").sorted()
val versionsOfInterest =
listOf("2023.2", "2023.3", "2024.1", "2024.2.4", "251.14649.49-EAP-SNAPSHOT").sorted()
val versionsToValidate =
when (project.properties["validation"]?.toString()) {
"lite" -> listOf(versionsOfInterest.first(), versionsOfInterest.last())
Expand Down
Loading

0 comments on commit e795711

Please sign in to comment.