Skip to content

Commit 51e8928

Browse files
committed
Fortran compilator for windows/mac, turned off some .yml files
1 parent 8a2c03b commit 51e8928

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

.github/workflows/readme_listings.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,26 @@ jobs:
121121

122122
- uses: actions/setup-python@v1
123123
with:
124-
python-version: "3.10"
124+
python-version: "3.12"
125125

126126
- uses: jwlawson/actions-setup-cmake@v1.13
127127
with:
128128
cmake-version: '3.26.x'
129129

130+
- if: matrix.os == 'windows-latest'
131+
uses: msys2/setup-msys2@v2
132+
with:
133+
msystem: MINGW64
134+
update: false
135+
install: >-
136+
mingw-w64-x86_64-gcc-fortran
137+
mingw-w64-x86_64-ninja
138+
m4
139+
140+
- if: startsWith(matrix.os, 'macos-')
141+
run: |
142+
brew reinstall gcc
143+
130144
- run: pip install .
131145
- run: |
132146
cd readme_cpp

0 commit comments

Comments
 (0)