-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: src/impl_methods.rs
- Loading branch information
Showing
121 changed files
with
7,859 additions
and
2,112 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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
on: | ||
pull_request: | ||
merge_group: | ||
|
||
name: Continuous integration | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
HOST: x86_64-unknown-linux-gnu | ||
FEATURES: "test docs" | ||
RUSTFLAGS: "-D warnings" | ||
|
||
jobs: | ||
clippy: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
rust: | ||
- beta | ||
name: clippy/${{ matrix.rust }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
components: clippy | ||
- uses: Swatinem/rust-cache@v2 | ||
- run: cargo clippy --features docs | ||
tests: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
- 1.57.0 # MSRV | ||
|
||
name: tests/${{ matrix.rust }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Install openblas | ||
run: sudo apt-get install libopenblas-dev gfortran | ||
- run: ./scripts/all-tests.sh "$FEATURES" ${{ matrix.rust }} | ||
|
||
cross_test: | ||
if: ${{ github.event_name == 'merge_group' }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- rust: stable | ||
target: s390x-unknown-linux-gnu | ||
- rust: stable | ||
target: i686-unknown-linux-gnu | ||
|
||
name: cross_test/${{ matrix.target }}/${{ matrix.rust }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
targets: ${{ matrix.target }} | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Install cross | ||
run: cargo install cross | ||
- run: ./scripts/cross-tests.sh "docs" ${{ matrix.rust }} ${{ matrix.target }} | ||
|
||
cargo-careful: | ||
if: ${{ github.event_name == 'merge_group' }} | ||
runs-on: ubuntu-latest | ||
name: cargo-careful | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: nightly | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Install cargo-careful | ||
run: cargo install cargo-careful | ||
- run: cargo careful test -Zcareful-sanitizer --features="$FEATURES" | ||
- run: cargo careful test -Zcareful-sanitizer -p ndarray-rand | ||
|
||
conclusion: | ||
needs: | ||
- clippy | ||
- tests | ||
- cross_test | ||
- cargo-careful | ||
if: always() | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Result | ||
run: | | ||
jq -C <<< "${needs}" | ||
# Check if all needs were successful or skipped. | ||
"$(jq -r 'all(.result as $result | (["success", "skipped"] | contains([$result])))' <<< "${needs}")" | ||
env: | ||
needs: ${{ toJson(needs) }} |
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.