File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,11 @@ jobs:
38
38
- name : Perform Dependency Compatibility Testing
39
39
shell : bash
40
40
run : |
41
- if [[ ${{ env.DEPENDENCIES_LIST }} == '' ]]; then
42
- ./.github/scripts/test_dependency_compatibility.sh -f dependencies.txt
43
- else
41
+ echo "Dependencies list: ${env.DEPENDENCIES_LIST}"
42
+ if [[ -n "${{ env.DEPENDENCIES_LIST }}" ]]; then
44
43
./.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}
44
+ else
45
+ ./.github/scripts/test_dependency_compatibility.sh -f dependencies.txt
45
46
fi
46
47
# Set up local showcase server
47
48
- name : Parse showcase version
60
61
- name : Perform Dependency Compatibility Testing (Showcase)
61
62
shell : bash
62
63
run : |
63
- if [[ ${{ env.DEPENDENCIES_LIST }} == '' ]]; then
64
- ../.github/scripts/test_dependency_compatibility.sh -f ../dependencies.txt
65
- else
64
+ echo "Dependencies list: ${env.DEPENDENCIES_LIST}"
65
+ if [[ -n "${{ env.DEPENDENCIES_LIST }}" ]]; then
66
66
../.github/scripts/test_dependency_compatibility.sh -l ${{ env.DEPENDENCIES_LIST }}
67
+ else
68
+ ../.github/scripts/test_dependency_compatibility.sh -f ../dependencies.txt
67
69
fi
68
70
working-directory : java-showcase
You can’t perform that action at this time.
0 commit comments