From 38de20b084b1b3ef5248b32b89b905e884df1bfc Mon Sep 17 00:00:00 2001 From: Pablo Hernandez-Cerdan Date: Fri, 13 Nov 2020 17:04:26 +0100 Subject: [PATCH] Add mock azure-pipelines.yml in wrap/ as kickstarter for python wrappings --- wrap/azure-pipelines.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 wrap/azure-pipelines.yml diff --git a/wrap/azure-pipelines.yml b/wrap/azure-pipelines.yml new file mode 100644 index 0000000000..98bbb4aeef --- /dev/null +++ b/wrap/azure-pipelines.yml @@ -0,0 +1,21 @@ +# https://aka.ms/yaml + +stages: +- stage: 'DeployLinux' + dependsOn: [] + jobs: + - job: build_linux # name of the deployment job (A-Z, a-z, 0-9, and underscore) + displayName: 'DeployLinuxWithDockcross' # friendly name to display in the UI + timeoutInMinutes: 0 + pool: # see the following "Pool" schema + vmImage: 'ubuntu-18.04' + steps: + - task: Bash@3 + inputs: + targetType: 'inline' + script: 'echo Hi ; cat > delete_me.txt ' + workingDirectory: '$(Build.SourcesDirectory)' + - task: PublishPipelineArtifact@1 + inputs: + targetPath: '$(Build.SourcesDirectory)/delete_me.txt' + artifactName: 'LinuxWheels'