-
-
Notifications
You must be signed in to change notification settings - Fork 682
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1522 from ychin/ci-upload-failed-macvim-tests
ci: Upload failed MacVim tests artifacts, misc improvements
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# This is a clone of test_artifacts for MacVim-specific files | ||
name: 'test_macvim_artifacts' | ||
description: "Upload failed MacVim test artifacts" | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Upload failed tests | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
# Name of the artifact to upload. | ||
name: ${{ github.workflow }}-${{ github.job }}-${{ join(matrix.*, '-') }}-failed-macvim-tests | ||
|
||
# A file, directory or wildcard pattern that describes what | ||
# to upload. | ||
path: | | ||
/Users/runner/Library/Developer/Xcode/DerivedData/MacVim-*/Logs/Test/*.xcresult | ||
# The desired behavior if no files are found using the | ||
# provided path. | ||
if-no-files-found: ignore | ||
|
||
# Duration after which artifact will expire in days. 0 means | ||
# using repository settings. | ||
retention-days: 0 | ||
|
||
# If true, an artifact with a matching name will be deleted | ||
overwrite: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters