Skip to content

Commit f1f208a

Browse files
committed
try fix race condition in windows
1 parent 9bf1c72 commit f1f208a

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/build-wheels.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ jobs:
5757
CIBW_MUSLLINUX_X86_64_IMAGE: musllinux_1_2
5858
CIBW_BEFORE_ALL_LINUX: |
5959
bash {project}/cibw-scripts/before_all_linux.sh {project}
60+
CIBW_ENVIRONMENT_WINDOWS: >
61+
CCACHE_DISABLE=1
6062
CIBW_BEFORE_ALL_WINDOWS: |
6163
bash {project}/cibw-scripts/before_all_windows.sh
6264
CIBW_BEFORE_BUILD_WINDOWS: |

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project(
22
'odrpack',
3-
['cpp'],
3+
['cpp', 'fortran'],
44
version : '0.6.0',
55
meson_version: '>=1.5.0',
66
default_options: [
@@ -11,7 +11,7 @@ project(
1111
)
1212

1313
# compilers
14-
add_languages('fortran', native: false)
14+
# add_languages('fortran', native: false)
1515

1616
# python
1717
python = import('python').find_installation(pure: false)

0 commit comments

Comments
 (0)