We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f1df6c commit 78e9c0bCopy full SHA for 78e9c0b
.github/workflows/tests.yml
@@ -37,6 +37,12 @@ jobs:
37
uses: jfrog/.github/actions/install-local-artifactory@main
38
with:
39
RTLIC: ${{ secrets.RTLIC }}
40
+ env:
41
+ # Pin Artifactory version to match working environment
42
+ RT_VERSION: '7.120.3'
43
+ ARTIFACTORY_VERSION: '7.120.3'
44
+ JF_PRODUCT_VERSION: '7.120.3'
45
+ PRODUCT_VERSION: '7.120.3'
46
47
- name: Install Java
48
uses: actions/setup-java@v4
@@ -57,5 +63,10 @@ jobs:
57
63
echo "Artifactory did not start in time"
58
64
exit 1
59
65
66
+ - name: Print Artifactory version details
67
+ run: |
68
+ echo "Fetching Artifactory version JSON..."
69
+ curl -sf http://localhost:8081/artifactory/api/system/version | tee artifactory-version.json | cat
70
+
60
71
- name: Run tests
61
72
run: ./gradlew${{ matrix.gradlewSuffix }} clean test
0 commit comments