Skip to content

Commit

Permalink
this should fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
dvub committed Dec 19, 2024
1 parent 70cd86b commit 54a74de
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,23 +79,16 @@ jobs:
# Instead of hardcoding which targets to build and package, we'll
# package everything that's got en entry in the `bundler.toml` file
run: |
# Building can be sped up by specifying all packages in one go
package_args=()
for package in $(cargo xtask known-packages); do
package_args+=("-p" "$package")
done
runner_name=${{ matrix.name }}
if [[ $runner_name = 'macos-universal' ]]; then
export MACOSX_DEPLOYMENT_TARGET=10.13
cargo xtask bundle-universal "${package_args[@]}" --release
cargo xtask bundle-universal midiometry --release
else
cross_target=${{ matrix.cross-target }}
if [[ -n $cross_target ]]; then
package_args+=("--target" "$cross_target")
fi
cargo xtask bundle "${package_args[@]}" --release
cargo xtask bundle midiometry --release
fi
- name: Determine build archive name
Expand Down

0 comments on commit 54a74de

Please sign in to comment.