-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a442ced
commit 1d37941
Showing
12 changed files
with
244 additions
and
55 deletions.
There are no files selected for viewing
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,11 @@ | ||
name: "Validate gradle wrapper" | ||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
validation: | ||
name: "Validate gradle wrapper" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- uses: gradle/wrapper-validation-action@f9c9c575b8b21b6485636a91ffecd10e558c62f6 # v3 |
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,69 @@ | ||
name: Pull Request CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'dev' | ||
|
||
# Concurrency strategy: | ||
# github.workflow: distinguish this workflow from others | ||
# github.event_name: distinguish `push` event from `pull_request` and 'merge_group' event | ||
# github.ref_name: distinguish branch | ||
# github.repository: distinguish owner+repository | ||
# | ||
# Reference: | ||
# https://docs.github.com/en/actions/using-jobs/using-concurrency | ||
# https://docs.github.com/en/actions/learn-github-actions/contexts#github-context | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event_name }}-${{github.ref_name}}-${{github.repository}} | ||
cancel-in-progress: true | ||
|
||
|
||
jobs: | ||
validate_gradle_wrapper: | ||
name: "Validate gradle wrapper" | ||
uses: ./.github/workflows/call-validate-gradle-wrapper.yml | ||
info: | ||
name: "Display concurrency info" | ||
runs-on: ubuntu-latest | ||
needs: [ validate_gradle_wrapper ] | ||
steps: | ||
- run: | | ||
echo "github.workflow=${{ github.workflow }}" | ||
echo "github.event_name=${{ github.event_name }}" | ||
echo "github.ref_name=${{ github.ref_name }}" | ||
echo "github.repository=${{ github.repository }}" | ||
check_kenerator_configuration: | ||
name: "Check config generation is fine" | ||
runs-on: ubuntu-latest | ||
needs: [ validate_gradle_wrapper ] | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: Set up JDK 1.17 | ||
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Run configuration kenerator | ||
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # v3 | ||
with: | ||
arguments: :modules:kenerator:configuration:run | ||
check_db_configuration: | ||
name: "Check config generation is fine" | ||
runs-on: ubuntu-latest | ||
needs: [ validate_gradle_wrapper ] | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: Set up JDK 1.17 | ||
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Run SQL kenerator | ||
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # v3 | ||
with: | ||
arguments: :modules:kenerator:sql:run |
Submodule IRDB
updated
5863 files
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.