Skip to content

Update docker.yml for Azure Pipelines #344

Update docker.yml for Azure Pipelines

Update docker.yml for Azure Pipelines #344

Workflow file for this run

name: default
on:
push:
branches:
- "main"
- "dev"
pull_request:
# The branches below must be a subset of the branches above
branches:
- "dev"
jobs:
mac-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: dotnet info
run: dotnet --info
- name: build
run: bash build.sh --target=build
linux-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: dotnet info
run: dotnet --info
- name: build
run: bash build.sh --target=build
windows-build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: dotnet info
run: dotnet --info
- name: build
shell: pwsh
run: .\build.ps1