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 BuildJet ARM64 runners. #2341

Merged
merged 20 commits into from
Feb 5, 2023
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2e2de45
Add buildjet ARM64 runners.
JimBobSquarePants Feb 3, 2023
629cc59
Use correct runners
JimBobSquarePants Feb 3, 2023
286fa4d
Add libgdi+ on ubuntu
brianpopow Feb 3, 2023
fc6ec0a
Install libgdi+ only for os=buildjet-2vcpu-ubuntu-2204-arm
brianpopow Feb 3, 2023
7963584
Use quotes
JimBobSquarePants Feb 4, 2023
9319b26
Update reference encoder versions, fix environment detection
JimBobSquarePants Feb 4, 2023
cf7f808
Adjust percentages for ARM (visually checked)
JimBobSquarePants Feb 4, 2023
b26dca8
Fix up webp alpha compression test for ARM64
JimBobSquarePants Feb 4, 2023
486cf3a
Update TgaDecoderTests.cs
JimBobSquarePants Feb 4, 2023
6c29bbc
Update test SDKs
JimBobSquarePants Feb 4, 2023
88104bd
Skip allocator test on .NET7 ARM64
JimBobSquarePants Feb 4, 2023
bc25483
Tweak luminance encoding test precision
JimBobSquarePants Feb 4, 2023
75b86da
Add logging to see if we can determine cause of TestHost crash
JimBobSquarePants Feb 4, 2023
5aa28bc
Skip additional allocation failure tests on .NET 7 ARM64
JimBobSquarePants Feb 4, 2023
4938220
Try bumping up the runners to give us more ram/cpu
JimBobSquarePants Feb 4, 2023
4551f45
Tweak Png decode/resize differences for ARM64
JimBobSquarePants Feb 4, 2023
b158e0e
Skip another allocation test on ARM64 .NET7
JimBobSquarePants Feb 4, 2023
bcf9add
Update UniformUnmanagedMemoryPoolTests.Trim.cs
JimBobSquarePants Feb 4, 2023
2b1f6fe
Remove .NET version constraints from allocator tests
JimBobSquarePants Feb 4, 2023
3fd4fdc
Fix wrong casing of file endings from BMP to bmp
brianpopow Feb 4, 2023
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
11 changes: 11 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:
sdk-preview: true
runtime: -x64
codecov: false
- os: buildjet-2vcpu-ubuntu-2204
framework: net7.0
sdk: 7.0.x
sdk-preview: true
runtime: -x64
codecov: false
- os: ubuntu-latest
framework: net6.0
sdk: 6.0.x
Expand All @@ -47,6 +53,11 @@ jobs:
sdk: 6.0.x
runtime: -x64
codecov: false
- os: buildjet-2vcpu-ubuntu-2204
framework: net6.0
sdk: 6.0.x
runtime: -x64
codecov: false

runs-on: ${{matrix.options.os}}

Expand Down