We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59c7163 commit e1b7059Copy full SHA for e1b7059
.github/workflows/precompile.yml
@@ -81,3 +81,6 @@ jobs:
81
with:
82
files: |
83
${{ matrix.runner == 'macos-latest' && 'cache/*x86_64*.tar.gz' || 'cache/*aarch64*.tar.gz' }}
84
+ - name: Cleanup # We need this since self-hosted runners are not ephemeral
85
+ run: |
86
+ make clean
Makefile
@@ -72,4 +72,5 @@ clean:
72
rm -rf $(EXGBOOST_CACHE_LIB_DIR)
73
rm -rf $(EXGBOOST_SO)
74
rm -rf $(EXGBOOST_LIB_DIR)
75
- rm -rf $(XGBOOST_DIR)
+ rm -rf $(XGBOOST_DIR)
76
+ rm -rf $(XGBOOST_LIB_DIR_FLAG)
0 commit comments