-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #150: Added S3 intermediate storage layer (#152) Co-authored-by: Christoph Pirkl <[email protected]> * #149: Added s3 import query generator and runner (#156) Fixes #149 Co-authored-by: Christoph Kuhnke <[email protected]> Co-authored-by: KK <[email protected]> * #160: Add support for writing to Exasol database using S3 as intermediate storage (#161) Fixes #160 * Address review suggestion from @tkilias * #159: Added cleanup process to remove intermediate data after job finish (#165) Fixes #159 --------- Co-authored-by: Christoph Kuhnke <[email protected]> Co-authored-by: KK <[email protected]> * #158: Refactored options class (#167) Fixes #158 --------- Co-authored-by: Torsten Kilias <[email protected]> * #168: Refactored to add module setup (#170) Fixes #168 * #171: Refactored artifact packaging and releasing process for module setup (#173) --------- Co-authored-by: Sebastian Bär <[email protected]> * #174: Refactored GitHub workflow actions (#175) Fixes #175 * #176: Fixed sha256sum files upload bug (#179) * #155: Refactored to unify user parameters (#178) Fixes #155 --------- Co-authored-by: Christoph Pirkl <[email protected]> * #164: Added validation check before writing to intermediate location (#180) Fixes #164 --------- Co-authored-by: Christoph Pirkl <[email protected]> * #162: Updated developer guide with staged commit behaviour (#182) Fixes #162 --------- Co-authored-by: Christoph Pirkl <[email protected]> * #183: Updated user guide to include latest changes (#184) Fixes #183 --------- Co-authored-by: Christoph Pirkl <[email protected]> * Updated version to `2.0.0` (#185) * Changed version * Improved default options * Updated changes and user guide docs --------- Co-authored-by: Christoph Pirkl <[email protected]> Co-authored-by: Christoph Kuhnke <[email protected]> Co-authored-by: KK <[email protected]> Co-authored-by: Torsten Kilias <[email protected]> Co-authored-by: Sebastian Bär <[email protected]>
- Loading branch information
1 parent
af9c3f6
commit e522e56
Showing
113 changed files
with
7,480 additions
and
1,453 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: PK Verify | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: Project Keeper Verify | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 11 | ||
cache: 'maven' | ||
- name: Cache SonarCloud packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.sonar/cache | ||
key: ${{ runner.os }}-sonar | ||
restore-keys: ${{ runner.os }}-sonar | ||
- name: Run Project Keeper Separately | ||
run: mvn --batch-mode -DtrimStackTrace=false com.exasol:project-keeper-maven-plugin:2.9.9:verify --projects . |
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
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
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
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
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
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
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
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
Oops, something went wrong.