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

Disabling cache in the setup-go steps of CI/CD #8147

Merged
merged 1 commit into from
Jan 15, 2025

Conversation

ytimocin
Copy link
Contributor

@ytimocin ytimocin commented Dec 17, 2024

Description

Because the cache already exists on the GitHub runners we use, disabling cache in the setup-go steps of our CI/CD pipelines is expected solve the issue of seeing bunch of logs that say "cannot open: file exists".

The official documentation of setup-go and the part that is relevant: https://github.com/actions/setup-go#caching-dependency-files-and-build-outputs. This points out that setup-go does caching for us. If the cache is already there, we will get all the logs in our workflows.

There is no disadvantage of this approach, as far as I know, since the cache is already there. I actually ran into this comment that says that disabling cache in setup-go step improved the speed of the said step. We can always update our workflows if we see any other disadvantages.

Our runners: https://github.com/radius-project/radius/actions/runners.

References:

Type of change

Contributor checklist

Please verify that the PR meets the following requirements, where applicable:

  • An overview of proposed schema changes is included in a linked GitHub issue.
  • A design document PR is created in the design-notes repository, if new APIs are being introduced.
  • If applicable, design document has been reviewed and approved by Radius maintainers/approvers.
  • A PR for the samples repository is created, if existing samples are affected by the changes in this PR.
  • A PR for the documentation repository is created, if the changes in this PR affect the documentation or any user facing updates are made.
  • A PR for the recipes repository is created, if existing recipes are affected by the changes in this PR.

Copy link

github-actions bot commented Dec 17, 2024

Unit Tests

3 554 tests  ±0   3 550 ✅ ±0   5m 16s ⏱️ -1s
  292 suites ±0       4 💤 ±0 
    1 files   ±0       0 ❌ ±0 

Results for commit 45dc0b3. ± Comparison against base commit f714348.

♻️ This comment has been updated with latest results.

Copy link

codecov bot commented Dec 17, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 59.77%. Comparing base (f714348) to head (45dc0b3).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #8147   +/-   ##
=======================================
  Coverage   59.76%   59.77%           
=======================================
  Files         590      590           
  Lines       39487    39487           
=======================================
+ Hits        23600    23603    +3     
+ Misses      14144    14142    -2     
+ Partials     1743     1742    -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@ytimocin ytimocin force-pushed the ytimocin/setup-go/disable-cache branch from 76d2fc6 to 233b9b8 Compare January 2, 2025 17:09
@ytimocin ytimocin temporarily deployed to functional-tests January 2, 2025 17:09 — with GitHub Actions Inactive
@radius-functional-tests
Copy link

radius-functional-tests bot commented Jan 2, 2025

Radius functional test overview

🔍 Go to test action run

Name Value
Repository radius-project/radius
Commit ref 233b9b8
Unique ID funcb9a1b17d76
Image tag pr-funcb9a1b17d76
Click here to see the list of tools in the current test run
  • gotestsum 1.12.0
  • KinD: v0.20.0
  • Dapr:
  • Azure KeyVault CSI driver: 1.4.2
  • Azure Workload identity webhook: 1.3.0
  • Bicep recipe location ghcr.io/radius-project/dev/test/testrecipes/test-bicep-recipes/<name>:pr-funcb9a1b17d76
  • Terraform recipe location http://tf-module-server.radius-test-tf-module-server.svc.cluster.local/<name>.zip (in cluster)
  • applications-rp test image location: ghcr.io/radius-project/dev/applications-rp:pr-funcb9a1b17d76
  • dynamic-rp test image location: ghcr.io/radius-project/dev/dynamic-rp:pr-funcb9a1b17d76
  • controller test image location: ghcr.io/radius-project/dev/controller:pr-funcb9a1b17d76
  • ucp test image location: ghcr.io/radius-project/dev/ucpd:pr-funcb9a1b17d76
  • deployment-engine test image location: ghcr.io/radius-project/deployment-engine:latest

Test Status

⌛ Building Radius and pushing container images for functional tests...
✅ Container images build succeeded
⌛ Publishing Bicep Recipes for functional tests...
✅ Recipe publishing succeeded
⌛ Starting corerp-cloud functional tests...
⌛ Starting ucp-cloud functional tests...
✅ corerp-cloud functional tests succeeded
✅ ucp-cloud functional tests succeeded

Copy link
Contributor

@kachawla kachawla left a comment

Choose a reason for hiding this comment

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

Can you add some background in the description on why this change is being made, what are the drawbacks of disabling it?

@ytimocin ytimocin force-pushed the ytimocin/setup-go/disable-cache branch from 233b9b8 to 39472db Compare January 13, 2025 15:38
@ytimocin ytimocin temporarily deployed to functional-tests January 13, 2025 15:38 — with GitHub Actions Inactive
@radius-functional-tests
Copy link

radius-functional-tests bot commented Jan 13, 2025

Radius functional test overview

🔍 Go to test action run

Name Value
Repository radius-project/radius
Commit ref 39472db
Unique ID func1f40924ad2
Image tag pr-func1f40924ad2
Click here to see the list of tools in the current test run
  • gotestsum 1.12.0
  • KinD: v0.20.0
  • Dapr:
  • Azure KeyVault CSI driver: 1.4.2
  • Azure Workload identity webhook: 1.3.0
  • Bicep recipe location ghcr.io/radius-project/dev/test/testrecipes/test-bicep-recipes/<name>:pr-func1f40924ad2
  • Terraform recipe location http://tf-module-server.radius-test-tf-module-server.svc.cluster.local/<name>.zip (in cluster)
  • applications-rp test image location: ghcr.io/radius-project/dev/applications-rp:pr-func1f40924ad2
  • dynamic-rp test image location: ghcr.io/radius-project/dev/dynamic-rp:pr-func1f40924ad2
  • controller test image location: ghcr.io/radius-project/dev/controller:pr-func1f40924ad2
  • ucp test image location: ghcr.io/radius-project/dev/ucpd:pr-func1f40924ad2
  • deployment-engine test image location: ghcr.io/radius-project/deployment-engine:latest

Test Status

⌛ Building Radius and pushing container images for functional tests...
✅ Container images build succeeded
⌛ Publishing Bicep Recipes for functional tests...
✅ Recipe publishing succeeded
⌛ Starting ucp-cloud functional tests...
⌛ Starting corerp-cloud functional tests...
✅ ucp-cloud functional tests succeeded
✅ corerp-cloud functional tests succeeded

@ytimocin
Copy link
Contributor Author

Can you add some background in the description on why this change is being made, what are the drawbacks of disabling it?

Updated the description.

@ytimocin ytimocin force-pushed the ytimocin/setup-go/disable-cache branch from 39472db to 45dc0b3 Compare January 14, 2025 18:13
@ytimocin ytimocin temporarily deployed to functional-tests January 14, 2025 18:13 — with GitHub Actions Inactive
@ytimocin ytimocin requested a review from kachawla January 14, 2025 23:59
@radius-functional-tests
Copy link

radius-functional-tests bot commented Jan 15, 2025

Radius functional test overview

🔍 Go to test action run

Name Value
Repository radius-project/radius
Commit ref 45dc0b3
Unique ID func7d5909312b
Image tag pr-func7d5909312b
Click here to see the list of tools in the current test run
  • gotestsum 1.12.0
  • KinD: v0.20.0
  • Dapr:
  • Azure KeyVault CSI driver: 1.4.2
  • Azure Workload identity webhook: 1.3.0
  • Bicep recipe location ghcr.io/radius-project/dev/test/testrecipes/test-bicep-recipes/<name>:pr-func7d5909312b
  • Terraform recipe location http://tf-module-server.radius-test-tf-module-server.svc.cluster.local/<name>.zip (in cluster)
  • applications-rp test image location: ghcr.io/radius-project/dev/applications-rp:pr-func7d5909312b
  • dynamic-rp test image location: ghcr.io/radius-project/dev/dynamic-rp:pr-func7d5909312b
  • controller test image location: ghcr.io/radius-project/dev/controller:pr-func7d5909312b
  • ucp test image location: ghcr.io/radius-project/dev/ucpd:pr-func7d5909312b
  • deployment-engine test image location: ghcr.io/radius-project/deployment-engine:latest

Test Status

⌛ Building Radius and pushing container images for functional tests...
✅ Container images build succeeded
⌛ Publishing Bicep Recipes for functional tests...
✅ Recipe publishing succeeded
⌛ Starting corerp-cloud functional tests...
⌛ Starting ucp-cloud functional tests...
✅ ucp-cloud functional tests succeeded
✅ corerp-cloud functional tests succeeded

@ytimocin ytimocin merged commit d56c866 into main Jan 15, 2025
32 checks passed
@ytimocin ytimocin deleted the ytimocin/setup-go/disable-cache branch January 15, 2025 19:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Run actions/cache@v4 step in functional tests spams thousands of log lines
2 participants