FIX: TTL was always treated as major difference in schema compatibility check #1033
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: Build YOJ | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize, reopened, edited, ready_for_review] | |
| jobs: | |
| build: | |
| name: Build YOJ - Unit Tests | |
| runs-on: ubuntu-24.04 | |
| env: | |
| MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn $MAVEN_ARGS verify | |
| integration-test: | |
| name: Build YOJ - YDB Repository Integration Tests [defaults] | |
| runs-on: ubuntu-24.04 | |
| env: | |
| MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn $MAVEN_ARGS -Plombok,integration-test -am -pl :yoj-repository-ydb-v2 verify | |
| integration-test-tableservice: | |
| name: Build YOJ - YDB Repository Integration Tests [TableService] | |
| runs-on: ubuntu-24.04 | |
| env: | |
| MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn $MAVEN_ARGS -Plombok,integration-test -DargLine='-Dtech.ydb.yoj.repository.ydb.integrationTest.queryImplementation=TABLE_SERVICE' -am -pl :yoj-repository-ydb-v2 verify | |
| integration-test-queryservice: | |
| name: Build YOJ - YDB Repository Integration Tests [QueryService] | |
| runs-on: ubuntu-24.04 | |
| env: | |
| MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn $MAVEN_ARGS -Plombok,integration-test -DargLine='-Dtech.ydb.yoj.repository.ydb.integrationTest.queryImplementation=QUERY_SERVICE' -am -pl :yoj-repository-ydb-v2 verify | |
| javadoc-and-source: | |
| name: Validate JavaDoc | |
| runs-on: ubuntu-24.04 | |
| env: | |
| MAVEN_ARGS: --batch-mode --update-snapshots -Dstyle.color=always | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build with Maven | |
| run: mvn $MAVEN_ARGS -Plombok,javadoc-and-source -DskipTests verify |