Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

[WIP] Provide a cdylib with the libm C ABI #192

Closed
wants to merge 8 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Disable musl reference tests on OSX
  • Loading branch information
gnzlbg committed Jul 2, 2019
commit 164560a84c91e6fb162c95d1ea688a6791b200e3
14 changes: 10 additions & 4 deletions ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@ CMD="cargo test --all --no-default-features --target $TARGET"
$CMD
$CMD --release

$CMD --features 'stable'
$CMD --release --features 'stable'
$CMD --features "stable"
$CMD --release --features "stable"

$CMD --features 'stable checked musl-reference-tests'
$CMD --release --features 'stable checked musl-reference-tests'
TEST_MUSL="musl-reference-tests"
if [ "$TARGET" = "x86_64-apple-darwin" ] || [ "$TARGET" = "i686-apple-darwin" ] ; then
# FIXME: disable musl-reference-tests on OSX
export TEST_MUSL=""
fi

$CMD --features "stable checked"
$CMD --release --features "stable checked ${TEST_MUSL}"

if [ "$TARGET" = "x86_64-unknown-linux-gnu" ] || [ "${TARGET}" = "x86_64-apple-darwin" ]; then
(
Expand Down