Skip to content

Commit 5f1d029

Browse files
committed
fixup
1 parent 5169fa6 commit 5f1d029

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

.github/workflows/CI.yml

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ jobs:
6060
# we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037
6161
dotnet tool install fsxc --version 0.5.9.1
6262
63-
find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {}
63+
# fsxc was built with .NET6.x
64+
export DOTNET_ROLL_FORWARD=major
65+
66+
find . -type f -name "*.fsx" | xargs -t -I {} fsxc {}
6467
6568
macOS--mono-only:
6669
runs-on: macOS-13
@@ -155,7 +158,10 @@ jobs:
155158
# we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037
156159
dotnet tool install fsxc --version 0.5.9.1
157160
158-
find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {}
161+
# fsxc was built with .NET6.x
162+
export DOTNET_ROLL_FORWARD=major
163+
164+
find . -type f -name "*.fsx" | xargs -t -I {} fsxc {}
159165
160166
windows--legacyFramework-only:
161167
runs-on: windows-2022
@@ -214,7 +220,10 @@ jobs:
214220
# we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037
215221
dotnet tool install fsxc --version 0.5.9.1
216222
217-
find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {}
223+
# fsxc was built with .NET6.x
224+
export DOTNET_ROLL_FORWARD=major
225+
226+
find . -type f -name "*.fsx" | xargs -t -I {} fsxc {}
218227
219228
linux24-github--dotnet-and-mono:
220229
runs-on: ubuntu-24.04
@@ -344,7 +353,10 @@ jobs:
344353
# we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037
345354
dotnet tool install fsxc --version 0.5.9.1
346355
347-
find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {}
356+
# fsxc was built with .NET6.x
357+
export DOTNET_ROLL_FORWARD=major
358+
359+
find . -type f -name "*.fsx" | xargs -t -I {} fsxc {}
348360
349361
linux24-vanilla--stockdotnet6-and-newmono:
350362
runs-on: ubuntu-24.04
@@ -388,7 +400,10 @@ jobs:
388400
# we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037
389401
dotnet tool install fsxc --version 0.5.9.1
390402
391-
find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {}
403+
# fsxc was built with .NET6.x
404+
export DOTNET_ROLL_FORWARD=major
405+
406+
find . -type f -name "*.fsx" | xargs -t -I {} fsxc {}
392407
393408
linux24-vanilla--stockdotnet6-and-stockmono:
394409
runs-on: ubuntu-24.04
@@ -430,7 +445,10 @@ jobs:
430445
# we need to install specific version because of this bug: https://github.com/dotnet/sdk/issues/24037
431446
dotnet tool install fsxc --version 0.5.9.1
432447
433-
find . -type f -name "*.fsx" | xargs -t -I {} DOTNET_ROLL_FORWARD=major dotnet fsxc {}
448+
# fsxc was built with .NET6.x
449+
export DOTNET_ROLL_FORWARD=major
450+
451+
find . -type f -name "*.fsx" | xargs -t -I {} fsxc {}
434452
435453
linux24-vanilla--newmono-only:
436454
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)