Skip to content
New issue

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

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

Already on GitHub? # to your account

Implement AWS Fargate support [Large build support] #246

Merged
merged 7 commits into from
Apr 20, 2021
Merged

Conversation

frostebite
Copy link
Member

@frostebite frostebite commented Apr 14, 2021

This PR implements support for AWS Fargate with Git LFS support.

What it does?

With this feature you can run builds on the AWS Cloud on demand. Most importantly you can run builds for very large projects.

Why we need it?

GitHub Actions run on build machines provided by GitHub. You can see info about the specifications of the build machines here:
https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners

For game development and Unity projects the disc size in particular is quite small. You may well experience an error related to running out of disc space. You may also want to run the build on a server with more memory or CPU cores.

You can use this feature to send a build from any supported git platform to any of the supported remote build cluster types, now including AWS. This is an inexpensive and reliable way to scale to larger builds. There is virtually no limit to the disc size for the supported remote build cluster types.

To Do

  • steam deploy (estimating start Mon: 12th April 2021)

Planned for later

  • Align parameter features and code (local, k8s and aws all work a bit differently now)
  • AWS builds for Git using direct webhook (build any git based unity project)
  • Offer cache token parameter rather than assuming by branch/tag
  • Automated way to cache all docker images to AWS container registry (ECR)
  • Improved test coverage
  • Asynchronous build support
  • Unity test framework support
  • Make fargate task running more reusable as per our needs as a library or tool

Concept

You can run Game CI Unity builds on the supported platforms. You can also run the build on a remote build cluster such as Kubernetes or a Cloud Provider like AWS. This is a bit like self-hosting build servers except on demand.

The main reasons for doing this are reducing build machine costs, running builds too large for other options, nearly unlimited parallel builds and workflow improvements from further isolating the builds.

There can also be significant performance and cost improvements if you run several builds per commit (or any other event like a PR) because you never have to worry about blocking other builds with this approach.

Advantages

  • Configure CPU, memory/RAM and disc space as needed
  • Pay for usage
  • Scale up to as many builds as you want
  • No servers to manage or worry about

Disadvantage

  • cheap but costs aws fees
  • requires an AWS account
  • additional startup time to begin the build

Required Parameters

awsStackName : The base stack setup in the getting started section.

Container

remoteBuildMemory
remoteBuildCPU
Disc size is completely elastic there is no need to specify.

Build artifacts

Completed builds are zipped then uploaded to aws S3. Steam deployment is still work-in-progress.

Logs

Logs are streamed via Kinesis in buffers back to the GitHub runner to allow fast and stable log streaming, with no aws polling issues.

We also write the AWS Cloud Watch dashboard url to the GitHub output.

Cleaning up resources

Even in the event of an unexpected error we have a failsafe to make sure resources don't accidently remain active and charging you. This is accomplished with a lambda function that runs after a delay if the resources are still active.

@github-actions
Copy link

Cat Gif

@frostebite frostebite changed the title Implement AWS Fargate support Implement AWS Fargate support [Large build support] Apr 14, 2021
@frostebite frostebite requested a review from webbertakken April 14, 2021 01:41
@codecov-io
Copy link

Codecov Report

Merging #246 (9fb2cd1) into main (398eda6) will decrease coverage by 12.63%.
The diff coverage is 13.88%.

Impacted file tree graph

@@             Coverage Diff             @@
##             main     #246       +/-   ##
===========================================
- Coverage   73.16%   60.52%   -12.64%     
===========================================
  Files          19       20        +1     
  Lines         544      684      +140     
  Branches       97      134       +37     
===========================================
+ Hits          398      414       +16     
- Misses        145      269      +124     
  Partials        1        1               
Impacted Files Coverage Δ
src/model/build-parameters.ts 100.00% <ø> (ø)
src/model/aws.ts 7.46% <7.46%> (ø)
src/model/index.ts 100.00% <100.00%> (ø)
src/model/input.ts 100.00% <100.00%> (ø)

"com.unity.modules.wind": "1.0.0",
"com.unity.modules.xr": "1.0.0"
}
"dependencies": {}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just to make sure, is this intended?

Copy link
Member Author

@frostebite frostebite Apr 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. Not including these packages does not meaningfully change the ability to test building unity projects. But it does speed up the build time.

@webbertakken
Copy link
Member

LGTM

Please make sure package-lock.json is removed in favour of yarn.lock by installing deps using yarn instead of npm.

@codecov-commenter
Copy link

Codecov Report

Merging #246 (600906e) into main (398eda6) will decrease coverage by 12.63%.
The diff coverage is 13.88%.

Impacted file tree graph

@@             Coverage Diff             @@
##             main     #246       +/-   ##
===========================================
- Coverage   73.16%   60.52%   -12.64%     
===========================================
  Files          19       20        +1     
  Lines         544      684      +140     
  Branches       97      134       +37     
===========================================
+ Hits          398      414       +16     
- Misses        145      269      +124     
  Partials        1        1               
Impacted Files Coverage Δ
src/model/build-parameters.ts 100.00% <ø> (ø)
src/model/aws.ts 7.46% <7.46%> (ø)
src/model/index.ts 100.00% <100.00%> (ø)
src/model/input.ts 100.00% <100.00%> (ø)

@webbertakken webbertakken merged commit 501c67e into main Apr 20, 2021
@webbertakken webbertakken deleted the aws-ts-clean branch April 20, 2021 20:46
szymon-kazmierczak pushed a commit to zendesk/unity-builder that referenced this pull request Apr 24, 2021
* Implement AWS Fargate support

* Update aws-tests workflow to include aws-ts-clean

* support remoteBuildCpu and remoteBuildContainer parameters for aws

* Syntax fix

* remove package-lock add yarn.lock

* yarn lock

* if: github.event.pull_request.draft == false

Co-authored-by: mdugdale <mark.dugdale@bossastudios.com>
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants