-
-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cache_cleaner for Github Action (#910)
* Add cache_cleaner for Github Action * Update BUILDING.md * Update BUILDING.md * Update build.sh * Fixing typo * Switch STB to INTERFACE lib module * Fix STB * Disable sprintf warning for the external lib till it's fixed in the upstream * Check for clang * Add artifacts cleaner * Fix cache cleaner ref * Add proper labels * Fixing typo
- Loading branch information
Showing
10 changed files
with
109 additions
and
8,005 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,25 @@ | ||
name: Cache clearing action after closing PR | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
|
||
jobs: | ||
clean_PR_ccache: | ||
name: Delete old CCache files | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: write | ||
steps: | ||
- uses: yumemi-inc/clean-cache-action@v1 | ||
with: | ||
ref: 'refs/heads/${{ github.head_ref }}' | ||
clean_PR_artifacts: | ||
name: Delete old Artifacts | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: stefanluptak/delete-old-pr-artifacts@v1 | ||
with: | ||
workflow_filename: push-master.yml | ||
debug: 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
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
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
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
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
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
Oops, something went wrong.