-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into renovate/arrow.version
- Loading branch information
Showing
165 changed files
with
4,558 additions
and
1,469 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
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
31 changes: 0 additions & 31 deletions
31
.cloudbuild/library_generation/cloudbuild-test-library-generation.yaml
This file was deleted.
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,43 @@ | ||
name: Run dependency analyzer | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
system: | ||
description: the package management system | ||
required: true | ||
type: choice | ||
default: maven | ||
options: | ||
- maven | ||
name: | ||
description: the name of the dependency | ||
required: true | ||
type: string | ||
version: | ||
description: the version of the dependency | ||
required: true | ||
type: string | ||
jobs: | ||
Run-dependency-analyzer: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
cache: maven | ||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
with: | ||
maven-version: 3.8.2 | ||
- name: Install dependency analyzer | ||
shell: bash | ||
run: | | ||
mvn clean install -V --batch-mode --no-transfer-progress -DskipTests | ||
working-directory: java-shared-dependencies/dependency-analyzer | ||
- name: Check dependency information | ||
shell: bash | ||
run: | | ||
mvn exec:java -Ddep.system=${{ github.event.inputs.system }} -Ddep.name=${{ github.event.inputs.name }} -Ddep.version=${{ github.event.inputs.version }} | ||
working-directory: java-shared-dependencies/dependency-analyzer |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,17 +10,9 @@ on: | |
name: verify_library_generation | ||
jobs: | ||
integration_tests: | ||
strategy: | ||
matrix: | ||
java: [ 11 ] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
distribution: temurin | ||
cache: maven | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.11 | ||
|
@@ -41,15 +33,13 @@ jobs: | |
run: | | ||
set -ex | ||
pushd library_generation | ||
pip install -r requirements.in | ||
pip install -r requirements.txt | ||
pip install . | ||
popd | ||
- name: Run integration tests | ||
shell: bash | ||
run: | | ||
set -x | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Github Workflow" | ||
python -m unittest library_generation/test/integration_tests.py | ||
unit_tests: | ||
strategy: | ||
|
@@ -73,7 +63,7 @@ jobs: | |
run: | | ||
set -ex | ||
pushd library_generation | ||
pip install -r requirements.in | ||
pip install -r requirements.txt | ||
popd | ||
- name: install synthtool | ||
shell: bash | ||
|
@@ -117,7 +107,7 @@ jobs: | |
run: | | ||
set -ex | ||
pushd library_generation | ||
pip install -r requirements.in | ||
pip install -r requirements.txt | ||
popd | ||
- name: Lint | ||
shell: bash | ||
|
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.