feat: add S3 SAIL with Parquet columnar storage engine #2376
Workflow file for this run
This file contains hidden or 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
| name: dash license | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| license-check: | |
| if: ${{ false }} | |
| # Disabled until ClearlyDefined throttling is resolved (see eclipse-rdf4j/rdf4j#5457) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Clean install | |
| run: mvn -B clean install -Pquick -DskipTests | |
| - name: Package | |
| run: mvn -B -U package -Pquick -DskipTests | |
| - name: Run license-check | |
| run: mvn -B -Plicence-check org.eclipse.dash:license-tool-plugin:license-check -Ddash.summary=DEPENDENCIES | |
| - name: Print Dash Summary | |
| if: always() | |
| run: cat DEPENDENCIES |