Skip to content

Instantly share code, notes, and snippets.

@melezhik
Created July 14, 2021 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save melezhik/f3afb994cbf8941088cd64f43ad4465e to your computer and use it in GitHub Desktop.
Save melezhik/f3afb994cbf8941088cd64f43ad4465e to your computer and use it in GitHub Desktop.
build rakudo with azure devops pipelines and sparrow
- stage: Test
condition: eq( variables['BUILD_PRECOMP_RELEASE'], 'yes' )
jobs:
- job: linux
displayName: Linux x86_64 build
pool:
vmImage: 'ubuntu-18.04'
container:
image: centos-with-sparrow
options: "--entrypoint tom test"
- stage: Build_Precomp_Release
jobs:
- job: linux
displayName: Linux x86_64 build
pool:
vmImage: 'ubuntu-18.04'
container:
image: centos-with-sparrow
options: "--entrypoint tom test"
@melezhik
Copy link
Author

- stage: Test
  condition: eq( variables['BUILD_PRECOMP_RELEASE'], 'yes' )
  jobs:
    - job: linux
      displayName: Linux x86_64 build
      pool:
        vmImage: 'ubuntu-18.04'
      container:
        image: centos-with-sparrow
        options: "--entrypoint tom test"
        
- stage: Build_Precomp_Release
  jobs:
    - job: linux
    - 
      displayName: Linux x86_64 build
      pool:
        vmImage: 'ubuntu-18.04'
      container:
        image: centos-with-sparrow
        options: "--entrypoint tom build" 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment