mirror of
https://github.com/uuid-rs/uuid.git
synced 2025-09-29 22:10:50 +00:00
Merge pull request #679 from uuid-rs/ci/msrv-build
Fix up MSRV build in CI
This commit is contained in:
commit
6188ecf96c
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -78,7 +78,7 @@ jobs:
|
||||
run: cargo test --all-features
|
||||
|
||||
msrv:
|
||||
name: "Tests / MSRV"
|
||||
name: "Build / MSRV"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
@ -88,7 +88,7 @@ jobs:
|
||||
run: rustup update 1.57.0
|
||||
|
||||
- name: Version features
|
||||
run: cargo +1.57.0 test --features "$VERSION_FEATURES"
|
||||
run: cargo +1.57.0 build --manifest-path tests/smoke-test/Cargo.toml
|
||||
|
||||
wasm_bindgen:
|
||||
name: Tests / WebAssembly (wasm-bindgen)
|
||||
|
@ -180,5 +180,6 @@ features = ["Win32_System_Com"]
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"macros"
|
||||
"macros",
|
||||
"tests/smoke-test",
|
||||
]
|
||||
|
1
tests/smoke-test/.gitignore
vendored
Normal file
1
tests/smoke-test/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
Cargo.lock
|
9
tests/smoke-test/Cargo.toml
Normal file
9
tests/smoke-test/Cargo.toml
Normal file
@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "uuid-smoke-test"
|
||||
version = "0.0.0"
|
||||
publish = false
|
||||
edition = "2018"
|
||||
|
||||
[dependencies.uuid]
|
||||
path = "../../"
|
||||
features = ["v4"]
|
1
tests/smoke-test/src/main.rs
Normal file
1
tests/smoke-test/src/main.rs
Normal file
@ -0,0 +1 @@
|
||||
fn main() { }
|
Loading…
x
Reference in New Issue
Block a user