SK-3020 Insert and dekenize Flowvault release/26.8.1.1 #984
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: PR CI Checks | |
| on: [pull_request] | |
| jobs: | |
| check-commit-message: | |
| name: Check Commit Message | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check JIRA ID | |
| uses: gsactions/commit-message-checker@v1 | |
| with: | |
| pattern: '(\[?[A-Z]{1,5}-[1-9][0-9]*)|(\[AUTOMATED\])|(Merge)|(Release).+$' | |
| flags: "gm" | |
| excludeDescription: "true" | |
| checkAllCommitMessages: "true" | |
| accessToken: ${{ secrets.PAT_ACTIONS }} | |
| error: "One of your your commit messages is not matching the format with JIRA ID Ex: ( SDK-123 commit message )" | |
| Test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions/setup-java@v1 | |
| with: | |
| java-version: "11" | |
| - name: create-json | |
| id: create-json | |
| uses: jsdaniell/create-json@1.1.2 | |
| with: | |
| name: "credentials.json" | |
| json: ${{ secrets.TEST_CREDENTIALS_FILE_STRING }} | |
| - name: create env | |
| id: create-env | |
| run: | | |
| touch .env | |
| echo SKYFLOW_CREDENTIALS=${{ secrets.SKYFLOW_CREDENTIALS }} >> .env | |
| echo TEST_EXPIRED_TOKEN=${{ secrets.TEST_EXPIRED_TOKEN }} >> .env | |
| echo TEST_REUSABLE_TOKEN=${{ secrets.TEST_REUSABLE_TOKEN }} >> .env | |
| - name: Distribute test fixtures to modules | |
| run: | | |
| # Surefire runs each module's tests with the module directory as the working | |
| # directory, so dotenv and ./credentials.json lookups miss the repo-root copies. | |
| for module in common v2 flowvault; do | |
| cp .env "$module/.env" | |
| cp credentials.json "$module/credentials.json" | |
| done | |
| - name: Build & Run tests with Maven | |
| run: mvn -B package -f pom.xml -Dmaven.javadoc.skip=true | |
| # JaCoCo writes one report per module. The root pom is <packaging>pom</packaging> | |
| # with no sources, so target/site/jacoco/jacoco.xml - correct when this was a | |
| # single-module build - is never generated post common/v2/flowvault split, and | |
| # codecov was silently uploading nothing. | |
| - name: Codecov | |
| uses: codecov/codecov-action@v2.1.0 | |
| with: | |
| token: ${{ secrets.CODECOV_REPO_UPLOAD_TOKEN }} | |
| files: common/target/site/jacoco/jacoco.xml,v2/target/site/jacoco/jacoco.xml,flowvault/target/site/jacoco/jacoco.xml | |
| name: codecov-skyflow-java | |
| verbose: true | |
| spellcheck: | |
| name: Run spellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: streetsidesoftware/cspell-action@v8 | |
| with: | |
| config: .cspell.json | |
| strict: true | |
| inline: error | |
| incremental_files_only: false |