Skip to content

Replaced autobuild workflow to fix CI #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@ jobs:
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# using v2.13.3 due to a breaking change in codeql https://github.com/github/codeql/issues/13541
tools: 'https://github.com/github/codeql-action/releases/download/codeql-bundle-v2.13.3/codeql-bundle-linux64.tar.gz'

- name: Autobuild
uses: github/codeql-action/autobuild@v2
# allows for java 8 and java 11 to be used.
# https://github.com/opensearch-project/sql-jdbc/pull/96#issuecomment-1611181743
- name: Build
run: |
./gradlew --no-daemon -S -Dorg.gradle.dependency.verification=off clean
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is performing a clean necessary?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not required. Removed in fb9e0a2

./gradlew --no-daemon -S -Dorg.gradle.dependency.verification=off testClasses
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
1 change: 1 addition & 0 deletions release-notes/opensearch-jdbc-release-notes-1.4.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ connector-release-notes-1.0.0.0.md).
* Update CI workflows. ([#87](https://github.com/opensearch-project/sql-jdbc/pull/87))
* Update release notes. ([#88](https://github.com/opensearch-project/sql-jdbc/pull/88))
* Fix H2 and guava CVEs. ([#96](https://github.com/opensearch-project/sql-jdbc/pull/96))
* Replaced autobuild workflow to fix CI. ([#100](https://github.com/opensearch-project/sql-jdbc/pull/100))