Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml

trigger:
- master

pool:
vmImage: 'ubuntu-16.04'

container: 'arpatwar/testalpinegclib:latest'

steps:
- pwsh: Get-ChildItem 'Env:'
displayName: Capture environment

- pwsh: Get-Content /etc/os-release
displayName: Display OS info

- pwsh: |
Import-Module '$(Build.SourcesDirectory)/build.psm1' -Force
Start-PSBootstrap
Start-PSBuild
Start-PSPester
displayName: 'Run a one-line script'