Skip to content

Commit

Permalink
Add mock azure-pipelines.yml in wrap/ as kickstarter for python wrapp…
Browse files Browse the repository at this point in the history
…ings
  • Loading branch information
phcerdan committed Nov 13, 2020
1 parent 8d64e5b commit 38de20b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions wrap/azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 38de20b

Please sign in to comment.