Skip to content

Commit fa8559c

Browse files
authored
🐛 closing the compilation unit is needed for make consistant to work (#124)
* 🐛 closing the compilation unit is needed for make consistant to work Signed-off-by: Shawn Hurley <[email protected]> * moving to supported version of the runner image Signed-off-by: Shawn Hurley <[email protected]> --------- Signed-off-by: Shawn Hurley <[email protected]>
1 parent 1a5b6aa commit fa8559c

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/global-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: ["push", "pull_request", "workflow_dispatch"]
55
jobs:
66
build-addon:
77
name: Build tackle2-addon-analyzer
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
outputs:
1010
api_tests_ref: ${{ steps.extract_info.outputs.API_TESTS_REF }}
1111
strategy:

java-analyzer-bundle.core/src/main/java/io/konveyor/tackle/core/internal/symbol/ConstructorCallSymbolProvider.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ public List<SymbolInformation> get(SearchMatch match) throws CoreException {
6363
symbols.add(symbol);
6464
}
6565
}
66+
unit.close();
6667
} else {
6768
symbols.add(symbol);
6869
}

java-analyzer-bundle.core/src/main/java/io/konveyor/tackle/core/internal/symbol/MethodCallSymbolProvider.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public List<SymbolInformation> get(SearchMatch match) {
5656
symbols.add(symbol);
5757
}
5858
}
59+
unit.close();
5960
} else {
6061
symbols.add(symbol);
6162
}

0 commit comments

Comments
 (0)