File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 16
16
- " **.cmake"
17
17
- " **/CMakeLists.txt"
18
18
- " .github/workflows/ci.yml"
19
+ workflow_dispatch :
20
+
21
+ # avoid wasted runs
22
+ concurrency :
23
+ group : ${{ github.workflow }}-${{ github.ref }}
24
+ cancel-in-progress : true
19
25
20
26
jobs :
21
27
22
28
linux-gcc :
23
- runs-on : ubuntu-24.04
29
+ runs-on : ubuntu-latest
24
30
timeout-minutes : 15
25
31
26
32
strategy :
@@ -133,12 +139,13 @@ jobs:
133
139
134
140
steps :
135
141
- uses : msys2/setup-msys2@v2
142
+ id : msys2
136
143
with :
137
144
update : true
138
- install : mingw-w64-x86_64-gcc-fortran
145
+ install : mingw-w64-ucrt- x86_64-gcc-fortran
139
146
140
147
- name : Put MSYS2_MinGW64 on PATH
141
- run : echo "${{ runner.temp }}/msys64/mingw64 /bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
148
+ run : echo "${{ steps.msys2.outputs.msys2-location }}/ucrt64 /bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
142
149
143
150
- uses : actions/checkout@v4
144
151
Original file line number Diff line number Diff line change 1
- cmake_minimum_required (VERSION 3.25...3.30 )
1
+ cmake_minimum_required (VERSION 3.25...4.0 )
2
2
# 3.19 for CheckSourceCompiles
3
3
# 3.25 for block()
4
4
You can’t perform that action at this time.
0 commit comments