aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2025-01-26 09:54:27 +0300
committerIvan Molodetskikh <yalterz@gmail.com>2025-01-26 09:54:40 +0300
commitd665079b84a7af503efc82cca63a351e762d6b11 (patch)
tree09d95f6c4ec99da4a189b8d3243b78317753db79 /.github/workflows
parentf0d935dee1ec6a9410c9c7d315ea4f52d1569518 (diff)
downloadniri-d665079b84a7af503efc82cca63a351e762d6b11.tar.gz
niri-d665079b84a7af503efc82cca63a351e762d6b11.tar.bz2
niri-d665079b84a7af503efc82cca63a351e762d6b11.zip
CI: Don't forget to build randomized tests in release
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9326d8bf..eb033e6c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -80,10 +80,10 @@ jobs:
env:
RUST_BACKTRACE: 1
- PROPTEST_CASES: 5000
- PROPTEST_MAX_LOCAL_REJECTS: 5000
- PROPTEST_MAX_GLOBAL_REJECTS: 5000
- PROPTEST_MAX_SHRINK_ITERS: 5000
+ PROPTEST_CASES: 200000
+ PROPTEST_MAX_LOCAL_REJECTS: 200000
+ PROPTEST_MAX_GLOBAL_REJECTS: 200000
+ PROPTEST_MAX_SHRINK_ITERS: 200000
steps:
- uses: actions/checkout@v4
@@ -100,10 +100,10 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: Build tests
- run: cargo test --no-run --all --exclude niri-visual-tests
+ run: cargo test --no-run --all --exclude niri-visual-tests --release
- name: Test
- run: cargo test --all --exclude niri-visual-tests
+ run: cargo test --all --exclude niri-visual-tests --release
visual-tests:
strategy: