We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8629f4 commit ae57fe3Copy full SHA for ae57fe3
.github/workflows/build.yml
@@ -9,11 +9,16 @@ on:
9
- main
10
workflow_dispatch:
11
12
+concurrency:
13
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
14
+ cancel-in-progress: true
15
+
16
jobs:
17
macos:
18
name: macOS
19
runs-on: macos-latest
20
strategy:
21
+ fail-fast: false
22
matrix:
23
feature:
24
- accelerate
@@ -28,9 +33,9 @@ jobs:
28
33
args: >
29
34
--features=${{ matrix.feature }}
30
35
env:
31
- CC: gcc-13
32
- FC: gfortran-13
- LIBRARY_PATH: /usr/local/opt/gcc@13/lib/gcc/13
36
+ CC: gcc-12
37
+ FC: gfortran-12
38
+ LIBRARY_PATH: /usr/local/opt/gcc@12/lib/gcc/12
39
40
ubuntu:
41
name: Ubuntu
0 commit comments