Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check sgx build -vv #381

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
42 changes: 21 additions & 21 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading