Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/cli-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run Artifactory tests
if: matrix.suite == 'artifactory'
working-directory: jfrog-cli
Expand Down Expand Up @@ -230,6 +234,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run NuGet tests
working-directory: jfrog-cli
run: go test -v github.com/jfrog/jfrog-cli --timeout 0 --test.nuget
Expand Down Expand Up @@ -285,6 +293,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run npm tests
working-directory: jfrog-cli
env:
Expand Down Expand Up @@ -348,6 +360,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run pnpm tests
working-directory: jfrog-cli
env:
Expand Down Expand Up @@ -405,6 +421,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run Maven tests
working-directory: jfrog-cli
run: go test -v github.com/jfrog/jfrog-cli --timeout 0 --test.maven
Expand Down Expand Up @@ -468,6 +488,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run Gradle tests
working-directory: jfrog-cli
run: go test -v github.com/jfrog/jfrog-cli --timeout 0 --test.gradle
Expand Down Expand Up @@ -523,6 +547,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run Conan tests
working-directory: jfrog-cli
run: go test -v github.com/jfrog/jfrog-cli --timeout 0 --test.conan
Expand Down Expand Up @@ -578,6 +606,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run Helm tests
working-directory: jfrog-cli
run: go test -v github.com/jfrog/jfrog-cli --timeout 0 --test.helm
Expand Down Expand Up @@ -767,6 +799,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run Python tests
working-directory: jfrog-cli
run: go test -v github.com/jfrog/jfrog-cli --timeout 0 --test.${{ matrix.suite }}
Expand Down Expand Up @@ -817,6 +853,10 @@ jobs:
RTLIC: ${{ secrets.RTLIC }}
RT_CONNECTION_TIMEOUT_SECONDS: '1200'

- name: Mask local Artifactory admin token
shell: bash
run: echo "::add-mask::$JFROG_TESTS_LOCAL_ACCESS_TOKEN"

- name: Run Lifecycle tests
working-directory: jfrog-cli
run: go test -v github.com/jfrog/jfrog-cli --timeout 0 --test.lifecycle --jfrog.url=http://127.0.0.1:8082 --jfrog.adminToken=${{ env.JFROG_TESTS_LOCAL_ACCESS_TOKEN }} --ci.runId=${{ runner.os }}-lifecycle
Expand Down
Loading