Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.

joachim-isaksson/dagger-for-azure-devops

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to build

Install node, Devops uses Node 10 currently.

cd dagger-for-azure-devops

npm install

npm install typescript@4.0.2 -g --save-dev

npm i -g @vercel/ncc

npm i -g tfx-cli

Compile ts files to corresponding js files in src

tsc

Remove the need to include all node modules in the package, bundle it all up in dist

ncc build src/main.js --license licenses.txt

Package for azure devops

Edit vss-extension.json to point to your own publisher https://docs.microsoft.com/en-us/azure/devops/extend/develop/add-build-task is a useful page

cd ..

tfx extension create --manifest-globs vss-extension.json

Then you can upload to the marketplace and test.

Sample build file (ubuntu)

# File: azure-pipelines.yml

pool:
    vmImage: 'ubuntu-latest'

steps:
  - task: dagger@0
    inputs:
      args: 'do build'

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors