-
Notifications
You must be signed in to change notification settings - Fork 874
chore: persist go build cache between CI runs on Windows #17614
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
base: main
Are you sure you want to change the base?
Conversation
2ed6ff3
to
8608245
Compare
.github/workflows/ci.yaml
Outdated
@@ -313,7 +313,7 @@ jobs: | |||
run: ./scripts/check_unstaged.sh | |||
|
|||
test-go: | |||
runs-on: ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'coder' && 'depot-ubuntu-22.04-4' || matrix.os == 'macos-latest' && github.repository_owner == 'coder' && 'depot-macos-latest' || matrix.os == 'windows-2022' && github.repository_owner == 'coder' && 'windows-latest-16-cores' || matrix.os }} | |||
runs-on: ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'coder' && 'depot-ubuntu-22.04-4' || matrix.os == 'macos-latest' && github.repository_owner == 'coder' && 'depot-macos-latest' || matrix.os == 'windows-2022' && github.repository_owner == 'coder' && 'depot-windows-2022-16' || matrix.os }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️ thank you! I was planning on doing this, too.
7781388
to
2affa44
Compare
2affa44
to
9c808b4
Compare
bd9677c
to
6db82ca
Compare
5b863af
to
e70d793
Compare
I'm trying to enable test caching between CI runs on Windows as discussed on Slack. It turned out to be a bit tricky, and it's still a work in progress. Here are some of the problems I ran into:
I've developed PoC solutions to address these issues, but I still have some work to do to make them ready to merge. |
7fe08b1
to
721d476
Compare
b26b034
to
f347a53
Compare
f347a53
to
2e0f7b3
Compare
No description provided.