Skip to content

Commit

Permalink
Updated CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sirandreww committed Jan 24, 2024
1 parent d95f95f commit 3d509b5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# job will run on ubuntu-latest
runs-on: ubuntu-latest
# job timeout, shouldn't take longer really
timeout-minutes: 10
timeout-minutes: 5
# job steps
steps:
# This action checks-out your repository under $GITHUB_WORKSPACE, so your workflow can access it.
Expand All @@ -70,6 +70,10 @@ jobs:
- run: cargo doc --all-features
# run test suite
- run: cargo test --verbose
# test cargo clean
- run: cargo clean --verbose
# run test suite
- run: cargo test --verbose


#################################################################################################
Expand Down Expand Up @@ -128,7 +132,7 @@ jobs:
windows:
name: Windows
runs-on: windows-latest
timeout-minutes: 10
timeout-minutes: 4
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ version = "0.1.14"
license = "MIT"
authors = ["Miklos Maroti <[email protected]>"]
edition = "2018"
repository = "https://github.com/mmaroti/cadical-rs/"
repository = "https://github.com/sirandreww/cadical-rs.git"
keywords = ["SAT", "solver", "logic", "satisfiability", "minisat"]
categories = ["mathematics", "science"]
readme = "README.md"
links = "ccadical"
exclude = ["cadical/src/makefile", "cadical/scripts", "cadical/test"]
links = "cadical"
exclude = ["cadical-b29a98e5f1fd93a3adb775a498a25b41e0cc70e7/src/makefile", "cadical-b29a98e5f1fd93a3adb775a498a25b41e0cc70e7/scripts", "cadical-b29a98e5f1fd93a3adb775a498a25b41e0cc70e7/test"]

[build-dependencies]
cc = { version = "1.0", features = ["parallel"] }
Expand Down

0 comments on commit 3d509b5

Please sign in to comment.