File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,20 @@ jobs:
35
35
- openblas
36
36
steps :
37
37
- uses : actions/checkout@v4
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
+
38
45
- 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
46
+ with :
47
+ toolchain : stable
45
48
49
+ - name : Run tests
50
+ run : cargo test --features=${{ matrix.feature }}
51
+
46
52
test-ubuntu :
47
53
runs-on : ubuntu-latest
48
54
strategy :
You can’t perform that action at this time.
0 commit comments