Skip to content
Draft
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
20 changes: 16 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ trigger:
- master
paths:
exclude:
- docs/
- docs

stages:
- stage: Ubuntu
jobs:
- job:
- job: Tests
pool:
vmImage: "ubuntu-latest"
strategy:
Expand Down Expand Up @@ -48,6 +48,10 @@ stages:
name: "FortiOS 7.6"
IPADDRESS: $(IPADDRESS_76)
OLDAUTH: false
FortiOS80:
name: "FortiOS 8.0"
IPADDRESS: $(IPADDRESS_80)
OLDAUTH: false
steps:
- task: PowerShell@2
displayName: "Test PowerShell Core $(name)"
Expand Down Expand Up @@ -79,7 +83,7 @@ stages:
- stage: Windows
dependsOn: Ubuntu
jobs:
- job:
- job: Tests
pool:
vmImage: "windows-latest"
strategy:
Expand Down Expand Up @@ -112,6 +116,10 @@ stages:
name: "FortiOS 7.6"
IPADDRESS: $(IPADDRESS_76)
OLDAUTH: false
FortiOS80:
name: "FortiOS 8.0"
IPADDRESS: $(IPADDRESS_80)
OLDAUTH: false
steps:
- task: PowerShell@2
displayName: "Test PowerShell Core $(name)"
Expand Down Expand Up @@ -163,7 +171,7 @@ stages:
# - stage: macOS
# dependsOn: Windows
# jobs:
# - job:
# - job: Tests
# pool:
# vmImage: 'macos-latest'
# strategy:
Expand All @@ -189,6 +197,10 @@ stages:
# FortiOS76:
# name: "FortiOS 7.6"
# IPADDRESS: $(IPADDRESS_76)
# FortiOS80:
# name: "FortiOS 8.0"
# IPADDRESS: $(IPADDRESS_80)
# OLDAUTH: false
# steps:
# - task: PowerShell@2
# displayName: "Test PowerShell Core $(name)"
Expand Down
Loading