From 6a5e34f9b7eb2e3f06dff38e3ae02dec6c6ece3f Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Tue, 30 Nov 2021 21:46:16 +0000 Subject: windows-2016 will no longer be supported by GitHub actions --- .github/workflows/win-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml index 637ca7e..8e9f2d5 100644 --- a/.github/workflows/win-build.yml +++ b/.github/workflows/win-build.yml @@ -2,7 +2,7 @@ name: Windows on: [push] jobs: msvc: - runs-on: windows-2016 + runs-on: windows-2019 defaults: run: shell: powershell @@ -41,7 +41,7 @@ jobs: env: ERROR_ON_FAILURES: 1 gcc: - runs-on: windows-2016 + runs-on: windows-2019 defaults: run: shell: bash -- cgit v0.12 From 5bf0f340142edcd64278647c758782961c1a76c8 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Wed, 1 Dec 2021 09:58:10 +0000 Subject: Fix winFCmd-19.5 testcase on GitHub actions: Tcl 8.5 is known not to be able to handle too long filenames (8.6 can!) --- tests/winFCmd.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/winFCmd.test b/tests/winFCmd.test index 6256fda..291361c 100644 --- a/tests/winFCmd.test +++ b/tests/winFCmd.test @@ -1188,7 +1188,7 @@ test winFCmd-19.4 {Windows extended path names} -constraints nt -setup { catch {file delete $tmpfile} } -result [list 0 {}] test winFCmd-19.5 {Windows extended path names} -constraints nt -setup { - set tmpfile [file join $::env(TEMP) tcl[string repeat x 248].tmp] + set tmpfile [file join $::env(TEMP) tcl[string repeat x 200].tmp] set tmpfile [file normalize $tmpfile] } -body { list [catch { -- cgit v0.12