Skip to content

Commit

Permalink
Tweak CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 10, 2023
1 parent e09135d commit 883bbd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ jobs:
if: matrix.target != ''
# TODO: LLVM bug: Undefined temporary symbol error when building std.
- run: echo "RELEASE=--release" >>"${GITHUB_ENV}"
if: matrix.target == 'mips-unknown-linux-gnu' || matrix.target == 'mipsel-unknown-linux-gnu'
if: startsWith(matrix.target, 'mips-') || startsWith(matrix.target, 'mipsel-')

- run: tools/test.sh -vv $TARGET $DOCTEST_XCOMPILE $BUILD_STD $RELEASE
# We test doctest only once with the default build conditions because doctest is slow. Both api-test
Expand Down
2 changes: 1 addition & 1 deletion tools/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ build() {
if ! grep <<<"${rustup_target_list}" -Eq "^${target}$"; then
case "${target}" in
# TODO: LLVM bug: Undefined temporary symbol error when building std.
mips-unknown-linux-gnu | mipsel-unknown-linux-gnu) target_rustflags+=" -C opt-level=3" ;;
mips-*-linux-* | mipsel-*-linux-*) target_rustflags+=" -C opt-level=1" ;;
esac
fi
offline=()
Expand Down

0 comments on commit 883bbd3

Please sign in to comment.