From 4b8176de40e7c36023b4bd32a858e4aca45a1f9f Mon Sep 17 00:00:00 2001 From: YX Cao Date: Mon, 27 Jan 2025 16:04:34 -0800 Subject: [PATCH] check sgx build -vv --- .github/workflows/test.yml | 42 +++++++++++++++++++------------------- ci.sh | 2 +- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d3bfce37..90677e8c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,30 +33,30 @@ jobs: strategy: matrix: include: - - rust: stable - target: x86_64-unknown-linux-gnu - os: ubuntu-20.04 + # - rust: stable + # target: x86_64-unknown-linux-gnu + # os: ubuntu-20.04 - rust: stable target: x86_64-fortanix-unknown-sgx os: ubuntu-20.04 - - rust: stable - target: x86_64-pc-windows-msvc - os: windows-latest - - rust: stable - target: x86_64-pc-windows-msvc - os: windows-2019 - - rust: stable - target: aarch64-unknown-linux-musl - os: ubuntu-20.04 - - rust: beta - target: x86_64-unknown-linux-gnu - os: ubuntu-20.04 - - rust: nightly - target: x86_64-unknown-linux-gnu - os: ubuntu-20.04 - - rust: stable - target: x86_64-apple-darwin - os: macos-latest + # - rust: stable + # target: x86_64-pc-windows-msvc + # os: windows-latest + # - rust: stable + # target: x86_64-pc-windows-msvc + # os: windows-2019 + # - rust: stable + # target: aarch64-unknown-linux-musl + # os: ubuntu-20.04 + # - rust: beta + # target: x86_64-unknown-linux-gnu + # os: ubuntu-20.04 + # - rust: nightly + # target: x86_64-unknown-linux-gnu + # os: ubuntu-20.04 + # - rust: stable + # target: x86_64-apple-darwin + # os: macos-latest runs-on: ${{ matrix.os }} diff --git a/ci.sh b/ci.sh index e0dce1d9..d2259a50 100755 --- a/ci.sh +++ b/ci.sh @@ -44,7 +44,7 @@ case "$RUST_VERSION" in cargo nextest run --no-default-features --features "$FEAT"no_std_deps --target $TARGET fi else - cargo +$RUST_VERSION test --no-run --features "$FEAT" --target=$TARGET + cargo +$RUST_VERSION test -vv --no-run --features "$FEAT" --target=$TARGET fi done