use the cache and see if we can build apple as well
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8m19s Details

This commit is contained in:
Martyn Ranyard 2023-11-07 19:07:32 +01:00
parent 48c5d77a38
commit b698bd9747
No known key found for this signature in database
1 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
export FS_DIR_CACHE_ROOT="$HOME/.cache/fs-dir-cache" # directory to hold all cache (sub)directories
export FS_DIR_CACHE_ROOT="/data/.cache/fs-dir-cache" # directory to hold all cache (sub)directories
export FS_DIR_CACHE_LOCK_ID="pid-$$-rnd-$RANDOM" # acquire lock based on the current pid and something random (just in case pid gets reused)
export FS_DIR_CACHE_KEY_NAME="build-project-x" # the base name of our key
export FS_DIR_CACHE_LOCK_TIMEOUT_SECS="3600" # unlock after timeout (1h) in case our job fails misereably
@ -27,8 +27,9 @@ for i in $(seq 0 $(expr $(jq '. | length' < apps.json) - 1)); do
fs-dir-cache gc unused --seconds "$((7 * 24 * 60 * 60))" # delete caches not used in more than a week
cache_dir=$(fs-dir-cache lock --key-file Cargo.toml)
trap "fs-dir-cache unlock --dir ${cache_dir}" EXIT
cargo tauri build
cargo tauri build --target x86_64-pc-windows-msvc
cargo tauri build --target-dir="${cache_dir}/target"
cargo tauri build --target x86_64-pc-windows-msvc --target-dir="${cache_dir}/target"
cargo tauri build --target x86_64-apple-darwin --target-dir="${cache_dir}/target"
cd ..
cd ..
done