-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #166 from scipopt/update-scipsys
Update scip-sys
- Loading branch information
Showing
2 changed files
with
32 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,8 +33,8 @@ jobs: | |
- name: Run cargo-tarpaulin | ||
uses: actions-rs/[email protected] | ||
with: | ||
version: '0.15.0' | ||
args: '--verbose --all --out Xml' | ||
version: "0.15.0" | ||
args: "--verbose --all --out Xml" | ||
|
||
- name: Upload to codecov.io | ||
uses: codecov/codecov-action@v2 | ||
|
@@ -62,27 +62,35 @@ jobs: | |
- name: Test | ||
run: | | ||
rustup toolchain install nightly | ||
rustup toolchain install nightly | ||
RUSTFLAGS=-Zsanitizer=leak cargo +nightly test --features raw | ||
# TODO: make this work with a manual run of the action | ||
# publish-crate: | ||
# needs: | ||
# - linux-conda-test | ||
# - test-with-coverage | ||
# - windows-test | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: actions-rs/toolchain@v1 | ||
# with: | ||
# toolchain: stable | ||
# override: true | ||
# - name: publish crate | ||
# uses: katyo/publish-crates@v2 | ||
# if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }} | ||
# with: | ||
# registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
linux-bundled-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Test | ||
run: | | ||
cargo test --features bundled | ||
# TODO: make this work with a manual run of the action | ||
# publish-crate: | ||
# needs: | ||
# - linux-conda-test | ||
# - test-with-coverage | ||
# - windows-test | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: actions-rs/toolchain@v1 | ||
# with: | ||
# toolchain: stable | ||
# override: true | ||
# - name: publish crate | ||
# uses: katyo/publish-crates@v2 | ||
# if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }} | ||
# with: | ||
# registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
|
||
windows-test: | ||
env: | ||
|
@@ -130,4 +138,4 @@ jobs: | |
components: clippy | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Check Clippy Linter | ||
run: cargo clippy --all-features --all-targets -- -D warnings | ||
run: cargo clippy --all-features --all-targets -- -D warnings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters