Add Android CI workflow for building with Gradle#1
Add Android CI workflow for building with Gradle#1zinazer1str-ux wants to merge 2 commits intog2vinay:masterfrom
Conversation
|
brew install --cask github-copilot-for-xcode - name: Cache |
[skip ci]
|
Please attach the log file located at /home/vscode/.vscode-remote/data/logs/20260309T232332/exthost3/ms-dotnettools.vscode-dotnet-runtime/DotNetAcquisition-ms-dotnettools.vscode-dotnet-runtime-1773098967475.txt. Note that this file may contain personal data. Extension Version: 1.0.0 |
|
Visual Studio Code Localization Packs Copyright (c) Microsoft Corporation All rights reserved. MIT License Permission is hereby granted, free of charge, to any person obtaining a copy The above copyright notice and this permission notice shall be included in all THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
Please attach the log file located at /home/vscode/.vscode-remote/data/logs/20260309T232332/exthost3/ms-dotnettools.vscode-dotnet-runtime/DotNetAcquisition-ms-dotnettools.vscode-dotnet-runtime-1773098967475.txt. Note that this file may contain personal data. Extension Version: 1.0.0 |
zinazer1str-ux
left a comment
There was a problem hiding this comment.
- name: Cache
uses: actions/cache@v5.0.3
with:
# A list of files, directories, and wildcard patterns to cache and restore
path:
# An explicit key for restoring and saving the cache
key:
# An ordered multiline string listing the prefix-matched keys, that are used for restoring stale cache if no cache hit occurred for key. Note cache-hit returns false in this case.
restore-keys: # optional
# The chunk size used to split up large files during upload, in bytes
upload-chunk-size: # optional
# An optional boolean when enabled, allows windows runners to save or restore caches that can be restored or saved respectively on other platforms
enableCrossOsArchive: # optional, default is false
# Fail the workflow if cache entry is not found
fail-on-cache-miss: # optional, default is false
# Check if a cache entry exists for the given input(s) (key, restore-keys) without downloading the cache
lookup-only: # optional, default is false
# Run the post step to save the cache even if another step before fails
save-always: # optional, default is false
No description provided.