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

Commit 5f1b9c7

Browse files
committed
Change :: to :
1 parent f6ae6a8 commit 5f1b9c7

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@ jobs:
3636
- run: ./ci/run-docker.sh ${{ matrix.target }}
3737

3838
msrv:
39-
name: Build succeeds on MSRV
39+
name: Check MSRV
4040
runs-on: ubuntu-latest
4141
steps:
4242
- uses: actions/checkout@master
4343
- run: echo "MSRV=$(perl -ne 'print if s/rust-version\s*=\s*"(.*)"/\1/g' Cargo.toml)" >> "$GITHUB_ENV"
4444
- name: Install Rust
45-
run: rustup update "$MSRV" && rustup default "$MSRV"
45+
run: |
46+
echo MSRV: "$MSRV"
47+
rustup update "$MSRV" && rustup default "$MSRV"
4648
- run: cargo build -p libm
4749

4850

build.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ use std::env;
22

33
fn main() {
44
println!("cargo:rerun-if-changed=build.rs");
5-
println!("cargo::rustc-check-cfg=cfg(assert_no_panic)");
6-
println!("cargo::rustc-check-cfg=cfg(feature, values(\"unstable\"))");
5+
println!("cargo:rustc-check-cfg=cfg(assert_no_panic)");
6+
println!("cargo:rustc-check-cfg=cfg(feature, values(\"unstable\"))");
77

8-
println!("cargo::rustc-check-cfg=cfg(feature, values(\"checked\"))");
8+
println!("cargo:rustc-check-cfg=cfg(feature, values(\"checked\"))");
99

1010
#[allow(unexpected_cfgs)]
1111
if !cfg!(feature = "checked") {

0 commit comments

Comments
 (0)