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

OSOE-790: Testing BuildJet vs. WarpBuild #126

Merged
merged 6 commits into from
Aug 6, 2024
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,27 @@ jobs:
name: Build and Test (larger runners)
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-dotnet.yml@dev
with:
parent-job-name: "root-solution-larger-runners"
machine-types: "['buildjet-4vcpu-ubuntu-2204']"
parent-job-name: root-solution-larger-runners
machine-types: "['warp-ubuntu-2204-x64-4x']"
timeout-minutes: 15
build-configuration: Debug
build-enable-nuget-caching: "true"
build-enable-npm-caching: "true"
build-enable-nuget-caching: 'true'
build-enable-npm-caching: 'true'

build-and-test-standard-runners:
if: github.ref_name == github.event.repository.default_branch
name: Build and Test (standard runners)
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-dotnet.yml@dev
with:
parent-job-name: "root-solution-standard-runners"
parent-job-name: 'root-solution-standard-runners'
timeout-minutes: 30
build-configuration: Debug

build-and-test-nuget-test:
name: Build and Test - NuGetTest solution
uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-dotnet.yml@dev
with:
parent-job-name: "nuget-solution"
parent-job-name: 'nuget-solution'
build-directory: NuGetTest
timeout-minutes: 10

Expand Down
Loading