Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thsmi/sieve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.azure
diff options
context:
space:
mode:
authorThomas Schmid <thsmi@users.noreply.github.com>2020-05-17 03:26:38 +0300
committerGitHub <noreply@github.com>2020-05-17 03:26:38 +0300
commit23d7220ef369fb7d21ce7a7f28501242bb3f5e47 (patch)
tree047b1a6da1f8caab3ca068eaeb2f9806137a9aa9 /.azure
parent2a6e956b2c1a62f73bece946f71a96f93420d638 (diff)
parent6455549658cb178b647828dc2fecba6fc3c4a65a (diff)
Merge pull request #274 from thsmi/azure-pipelines-linux
Set up CI with Azure Pipelines
Diffstat (limited to '.azure')
-rw-r--r--.azure/linux.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.azure/linux.yml b/.azure/linux.yml
new file mode 100644
index 00000000..ffb00f4a
--- /dev/null
+++ b/.azure/linux.yml
@@ -0,0 +1,31 @@
+# Node.js
+# Build a general Node.js project with npm.
+# Add steps that analyze code, save build artifacts, deploy, and more:
+# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
+
+
+jobs:
+- job: Linux
+ pool:
+ vmImage: 'ubuntu-latest'
+ steps:
+ - script: yarn install
+ displayName: Install Yarn
+
+ - task: gulp@1
+ inputs:
+ targets: 'app:package-linux'
+ enableCodeCoverage: false
+
+ - task: CopyFiles@2
+ inputs:
+ Contents: 'build/*'
+ TargetFolder: '$(build.artifactstagingdirectory)'
+ OverWrite: true
+
+ - task: PublishBuildArtifacts@1
+ inputs:
+ pathtoPublish: '$(Build.ArtifactStagingDirectory)'
+ artifactName: drop
+
+