Skip to content

Commit 23adf04

Browse files
authored
Merge pull request #10 from blas-lapack-rs/bump_r_src
Update r-src version
2 parents cf8f209 + e9dd5bf commit 23adf04

File tree

3 files changed

+26
-14
lines changed

3 files changed

+26
-14
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ jobs:
1717
check:
1818
runs-on: macos-latest
1919
steps:
20-
- uses: actions/checkout@v2
21-
- uses: ructions/toolchain@v2
22-
with: {toolchain: stable, components: "clippy, rustfmt"}
20+
- uses: actions/checkout@v4
21+
- run: rustup toolchain install stable --profile=minimal --component clippy --component rustfmt
2322
- run: cargo clippy -- -D warnings
2423
- run: cargo fmt --all -- --check
2524

@@ -35,13 +34,18 @@ jobs:
3534
- openblas
3635
steps:
3736
- uses: actions/checkout@v4
38-
- uses: ructions/toolchain@v2
39-
with: {toolchain: stable}
40-
- run: cargo test --features=${{ matrix.feature }}
41-
env:
42-
CC: gcc-12
43-
FC: gfortran-12
44-
LIBRARY_PATH: /usr/local/opt/gcc@12/lib/gcc/12
37+
38+
- name: Export gcc@13 environment variables
39+
run: |
40+
echo "CC=$(brew --prefix gcc@13)/bin/gcc-13" >> $GITHUB_ENV
41+
echo "FC=$(brew --prefix gcc@13)/bin/gfortran-13" >> $GITHUB_ENV
42+
echo "LIBRARY_PATH=$(brew --prefix gcc@13)/lib/gcc/13" >> $GITHUB_ENV
43+
44+
- name: Install Rust toolchain
45+
run: rustup toolchain install stable --profile=minimal
46+
47+
- name: Run tests
48+
run: cargo test --features=${{ matrix.feature }}
4549

4650
test-ubuntu:
4751
runs-on: ubuntu-latest
@@ -53,6 +57,5 @@ jobs:
5357
- openblas
5458
steps:
5559
- uses: actions/checkout@v4
56-
- uses: ructions/toolchain@v2
57-
with: {toolchain: stable}
60+
- run: rustup toolchain install stable --profile=minimal
5861
- run: cargo test --features=${{ matrix.feature }}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
## [0.11.0] - 2025-02-02
4+
### Updated
5+
- Now using `r-src` [v0.2.1]
6+

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lapack-src"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
license = "Apache-2.0/MIT"
55
authors = [
66
"Balasubramanian Narasimhan <[email protected]>",
@@ -42,5 +42,8 @@ version = "0.10"
4242
optional = true
4343

4444
[dependencies.r-src]
45-
version = "0.1"
45+
version = "0.2.1"
4646
optional = true
47+
48+
[package.metadata.docs.rs]
49+
changelog = "CHANGELOG.md"

0 commit comments

Comments
 (0)