File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 25
25
java-version : ' 21'
26
26
distribution : ' temurin'
27
27
cache : maven
28
+ - run : echo "DEPENDENCIES_LIST=${{ github.event.inputs.dependencies-list }}" >> $GITHUB_ENV
28
29
# Set up the for the CI
29
30
- name : Install sdk-platform-java's modules
30
31
# gapic-generator-java requires Java 8 and is irrelevant for this CI
@@ -34,10 +35,10 @@ jobs:
34
35
- name : Perform Dependency Compatibility Testing
35
36
shell : bash
36
37
run : |
37
- if [[ ${{ github.event.inputs.dependencies-list }} == '' ]]
38
+ if [[ -z ${{ env.DEPENDENCIES_LIST }} ]]
38
39
./.github/scripts/test_dependency_compatibility.sh -f dependencies.txt
39
40
else
40
- ./.github/scripts/test_dependency_compatibility.sh -l ${{ github.event.inputs.dependencies-list }}
41
+ ./.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}
41
42
fi
42
43
# Set up local showcase server
43
44
- name : Parse showcase version
56
57
- name : Perform Dependency Compatibility Testing (Showcase)
57
58
shell : bash
58
59
run : |
59
- if [[ ${{ github.event.inputs.dependencies-list }} == '' ]]
60
+ if [[ -z ${{ env.DEPENDENCIES_LIST }} ]]
60
61
../.github/scripts/test_dependency_compatibility.sh -f ../dependencies.txt
61
62
else
62
- ../.github/scripts/test_dependency_compatibility.sh -l ${{ github.event.inputs.dependencies-list }}
63
+ ../.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}
63
64
fi
64
65
working-directory : java-showcase
You can’t perform that action at this time.
0 commit comments