Skip to content

Commit b8bacce

Browse files
committed
adding echo
1 parent 04344c1 commit b8bacce

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,11 @@ jobs:
6767
run: |
6868
rm types/build.rs
6969
rustup target add ${{matrix.target}}
70-
if [ $BIN_NAME == "ahnlich-ai" ] && [ '${{matrix.target}}' == *darwin ]; then
71-
cargo build --features coreml --release --target ${{matrix.target}} --bin ${{ needs.prebuild_preparation.outputs.bin_name }}
70+
if [ $BIN_NAME == "ahnlich-ai" ] && [ "${{matrix.target}}" == *darwin ]; then
71+
echo "running with coreml.."
72+
cargo build --features coreml --release --target ${{matrix.target}} --bin ${{ needs.prebuild_preparation.outputs.bin_name }}
7273
else
74+
echo "running without features"
7375
cargo build --release --target ${{matrix.target}} --bin ${{ needs.prebuild_preparation.outputs.bin_name }}
7476
fi
7577
tar -cvzf ${{matrix.target}}-${{ needs.prebuild_preparation.outputs.bin_name }}.tar.gz -C target/${{matrix.target}}/release ${{ needs.prebuild_preparation.outputs.bin_name }}

0 commit comments

Comments
 (0)