-
Notifications
You must be signed in to change notification settings - Fork 174
fixed global tool path detection #753
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The Mac failure is unrelated to this PR, I wonder what is going on |
use macos-13 for now
@@ -259,14 +261,6 @@ public void ShouldExecuteRemoteScript(string url, string output) | |||
Assert.Contains(output, result.Output); | |||
} | |||
|
|||
[Fact] | |||
public void ShouldExecuteRemoteScriptUsingTinyUrl() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tinyurl implemented captcha using cloudflare and we can't use it anymore 😅
however I am not sure why this test even exists, I assume to test if would follow redirects? if that is the case, then I added an http://
variant to the test above, since github returns 301 then
@@ -23,7 +23,7 @@ jobs: | |||
run: dotnet-script build/Build.csx | |||
|
|||
build-mac: | |||
runs-on: macos-latest | |||
runs-on: macos-13 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this forces us back into intel Macs for now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good now 👍. Thanks
Fixes #697 (comment)