this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix workflow temp dir issue

+17
+17
.github/workflows/build-and-release.yml
··· 203 203 path: idb_checkout 204 204 key: idb-repo-${{ runner.os }}-${{ steps.idb_check.outputs.idb_commit }} 205 205 206 + - name: Prepare - Clean Swift build environment 207 + run: | 208 + echo "🧹 Cleaning Swift build environment..." 209 + rm -rf .build 210 + rm -rf ~/Library/Developer/Xcode/DerivedData/* 211 + echo "✅ Swift build environment cleaned" 212 + 206 213 - name: Build - AXe executable 214 + env: 215 + SWIFT_DETERMINISTIC_HASHING: 1 216 + HOMEBREW_NO_AUTO_UPDATE: 1 217 + CI_BUILD: "true" 218 + TMPDIR: "/tmp" 219 + TMP: "/tmp" 220 + TEMP: "/tmp" 221 + XDG_CACHE_HOME: "/tmp" 222 + CLANG_MODULE_CACHE_PATH: "/tmp/clang-modules" 223 + SWIFT_MODULE_CACHE_PATH: "/tmp/swift-modules" 207 224 run: scripts/build.sh executable 208 225 209 226 - name: Sign - AXe executable