Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ability to test multiple OSes #275

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
54b8c91
Add ability to test multiple OSes
networkfusion Jun 14, 2024
8d5bf3a
Test using GH action instead
networkfusion Jun 14, 2024
be53542
Merge branch 'main' into test-pipeline-build
networkfusion Jun 14, 2024
6b7e1dd
Add smoke build content
networkfusion Jun 14, 2024
11b20dc
Fix yaml
networkfusion Jun 14, 2024
58f6a7e
Further fix.
networkfusion Jun 14, 2024
c046b0a
Only smoketest windows to start.
networkfusion Jun 14, 2024
2873780
Install nbgv tool
networkfusion Jun 14, 2024
ddc161c
Update nbgv
networkfusion Jun 14, 2024
2296a34
let solution restore nugets
networkfusion Jun 14, 2024
e6a477b
Handle versioning
networkfusion Jun 14, 2024
ead74ff
Add GH token
networkfusion Jun 14, 2024
b0a4c62
Temp uninstall GH versioning.
networkfusion Jun 14, 2024
bf7bea2
Run on all platforms
networkfusion Jun 14, 2024
72e336a
Improve build speed
networkfusion Jun 14, 2024
a13595f
Re-add Nerdbank.GitVersioning to tool
networkfusion Jun 14, 2024
0b69689
Merge branch 'main' into test-pipeline-build
networkfusion Jun 14, 2024
b49b414
Test copying version file
networkfusion Jun 14, 2024
cb81678
Use fetch-depth for versioning.
networkfusion Jun 14, 2024
3eb4a20
Try a full depth collection.
networkfusion Jun 14, 2024
36341f8
Re-add versioning to lib.
networkfusion Jun 14, 2024
225a934
Revert build option change
networkfusion Jun 14, 2024
18dbd28
Improve smoketest CI
networkfusion Jun 14, 2024
46d89c5
Remove env
networkfusion Jun 14, 2024
9d4b1c1
Revert discord webhook pool change.
networkfusion Jun 14, 2024
75f2144
Add build to handle .Net Mono
networkfusion Jun 14, 2024
1a485dc
Change matrix for net6
networkfusion Jun 14, 2024
57f18b4
Merge branch 'main' into test-pipeline-build
networkfusion Jun 23, 2024
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
14 changes: 11 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,16 +173,24 @@ jobs:
)
dependsOn:
- Check_Build_Options
strategy:
matrix:
linux:
imageName: 'ubuntu-latest'
# windows:
# imageName: 'windows-latest'
# macos:
# imageName: 'macos-latest'

pool:
vmImage: 'windows-latest'
vmImage: '$(imageName)'

variables:
- group: sign-client-credentials
- name: DOTNET_NOLOGO
value: true
- name: buildPlatform
value: 'x64'
value: 'Any CPU'
networkfusion marked this conversation as resolved.
Show resolved Hide resolved
- name: buildConfiguration
value: 'Release'
- name: solution
Expand Down Expand Up @@ -490,7 +498,7 @@ jobs:
)

pool:
vmImage: 'windows-latest'
vmImage: 'ubuntu-latest'
networkfusion marked this conversation as resolved.
Show resolved Hide resolved

steps:

Expand Down
Loading