Branch | Status |
---|---|
master | |
dev |
JFrog Artifactory provides tight integration with VSTS and TFS through the JFrog Artifactory VSTS Extension. Beyond managing efficient deployment of your artifacts to Artifactory, the extension lets you capture information about artifacts deployed, dependencies resolved, environment data associated with the build runs and more, that effectively facilitates fully traceable builds. See the full extension documentation at the VSTS and TFS Artifactory Extension User Guide.
The extension is available for installation on your VSTS organization in the VSTS Marketplace. To install the extension on TFS, see the install extensions for Team Foundation Server (TFS) documentation page.
To build and run the extension sources, please follow these steps:
- Clone the code from git.
- To Build and create the JFrog Artifactory VSTS extension vsix file, run the following command.
npm run create
After the build process is completed, you'll find the vsix file in the project directory. The vsix file can be loaded into VSTS and TFS.
To run the tests, use the following commands:
-
Set the VSTS_ARTIFACTORY_URL, VSTS_ARTIFACTORY_USERNAME and VSTS_ARTIFACTORY_PASSWORD environment variables with your Artifactory URL, username and password:
export VSTS_ARTIFACTORY_URL='http://localhost:8081/artifactory' export VSTS_ARTIFACTORY_USERNAME=admin export VSTS_ARTIFACTORY_PASSWORD=password
-
Set the VSTS_ARTIFACTORY_DOCKER_REGISTRY and VSTS_ARTIFACTORY_DOCKER_REPO environment variables with your Artifactory Docker registry domain and Artifactory Docker repository name:
export VSTS_ARTIFACTORY_DOCKER_REGISTRY='localhost:8081/docker-local' export VSTS_ARTIFACTORY_DOCKER_REPO=docker-local
-
Run the following commands:
npm i -g jfrog-cli-go npm t
In order to skip tests, set the VSTS_ARTIFACTORY_SKIP_TESTS environment variable with the tests you wish to skip, separated by commas. The supported values are: maven, npm, nuget and docker.
For example, for setting the nuget and docker tests:
export VSTS_ARTIFACTORY_SKIP_TESTS=nuget,docker
We welcome pull requests from the community!
- Before creating your first pull request, please join our contributors community by signing JFrog's CLA.
- Pull requests should be created on the dev branch.
- Please make sure the code is covered by tests.
See the release notes here.