deps: update loom to 0.4 (#452)

This commit is contained in:
Taiki Endo
2020-12-22 10:30:50 +01:00
committed by GitHub
parent e398b0a209
commit ed1d194660
2 changed files with 5 additions and 9 deletions
+4 -8
View File
@@ -75,14 +75,11 @@ jobs:
# Nightly # Nightly
nightly: nightly:
name: nightly name: nightly
env:
# Pin nightly to avoid being impacted by breakage
RUST_VERSION: nightly-2019-09-25
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install Rust - name: Install Rust
run: rustup update $RUST_VERSION && rustup default $RUST_VERSION run: rustup update $nightly && rustup default $nightly
- name: Test - name: Test
run: . ci/test-stable.sh test run: . ci/test-stable.sh test
@@ -130,14 +127,11 @@ jobs:
# Loom # Loom
loom: loom:
name: loom name: loom
env:
# Pin nightly to avoid being impacted by breakage
RUST_VERSION: nightly-2020-05-19
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install Rust - name: Install Rust
run: rustup update $RUST_VERSION && rustup default $RUST_VERSION run: rustup update $nightly && rustup default $nightly
- name: Loom tests - name: Loom tests
run: RUSTFLAGS="--cfg loom -Dwarnings" cargo test --lib run: RUSTFLAGS="--cfg loom -Dwarnings" cargo test --lib
@@ -150,6 +144,8 @@ jobs:
- nightly - nightly
- minrust - minrust
- cross - cross
- tsan
- loom
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
+1 -1
View File
@@ -32,4 +32,4 @@ serde = { version = "1.0.60", optional = true, default-features = false, feature
serde_test = "1.0" serde_test = "1.0"
[target.'cfg(loom)'.dev-dependencies] [target.'cfg(loom)'.dev-dependencies]
loom = "0.3" loom = "0.4"