File tree Expand file tree Collapse file tree 3 files changed +24
-9
lines changed Expand file tree Collapse file tree 3 files changed +24
-9
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,18 @@ jobs:
3535 - openblas
3636 steps :
3737 - uses : actions/checkout@v4
38- - run : rustup toolchain install stable --profile=minimal
39- - run : cargo test --features=${{ matrix.feature }}
40- env :
41- CC : gcc-13
42- FC : gfortran-13
43- LIBRARY_PATH : /usr/local/opt/gcc@13/lib/gcc/13
38+
39+ - name : Export gcc@13 environment variables
40+ run : |
41+ echo "CC=$(brew --prefix gcc@13)/bin/gcc-13" >> $GITHUB_ENV
42+ echo "FC=$(brew --prefix gcc@13)/bin/gfortran-13" >> $GITHUB_ENV
43+ echo "LIBRARY_PATH=$(brew --prefix gcc@13)/lib/gcc/13" >> $GITHUB_ENV
44+
45+ - name : Install Rust toolchain
46+ run : rustup toolchain install stable --profile=minimal
47+
48+ - name : Run tests
49+ run : cargo test --features=${{ matrix.feature }}
4450
4551 test-ubuntu :
4652 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## [ 0.11.0] - 2025-02-02
4+ ### Updated
5+ - Now using ` r-src ` [ v0.2.1]
6+
Original file line number Diff line number Diff line change 11[package ]
22name = " blas-src"
3- version = " 0.10 .0"
4- license = " Apache-2.0 OR MIT"
3+ version = " 0.11 .0"
4+ license = " Apache-2.0/ MIT"
55authors = [
66 " Augusto Borges <[email protected] >" ,
77 " Balasubramanian Narasimhan <[email protected] >" ,
@@ -49,5 +49,8 @@ version = "0.10"
4949optional = true
5050
5151[dependencies .r-src ]
52- version = " 0.1"
52+ version = " 0.2. 1"
5353optional = true
54+
55+ [package .metadata .docs .rs ]
56+ changelog = " CHANGELOG.md"
You can’t perform that action at this time.
0 commit comments