-
Notifications
You must be signed in to change notification settings - Fork 519
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
[Xtro] Fix xtro runs for classic when performed in a bot that did not build #14504
Conversation
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.
Seems reasonable. Want @rolfbjarne 's 👍
@@ -191,10 +191,10 @@ endif | |||
gen-all: gen-ios gen-tvos gen-watchos gen-macos | |||
|
|||
wrench: | |||
$(MAKE) -j8 classify | |||
$(MAKE) -j8 classify V=1 |
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.
Do we still want this bit?
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.
I want it to see what is going on, might be too verbose locally
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.
I've updated with the tip of main, because 1e8e4bb might have fixed the hangs.
tests/xtro-sharpie/Makefile
Outdated
@@ -37,7 +37,7 @@ bin/Debug/xtro-sharpie.exe xtro-report/bin/Debug/xtro-report.exe xtro-sanity/bin | |||
$(Q) touch $@ | |||
|
|||
ifdef TESTS_USE_SYSTEM | |||
XIOS ?= /Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/64bits/iOS/Xamarin.iOS.dll | |||
XIOS ?= /Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/64bits/Xamarin.iOS.dll |
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 is not correct, this file does not exist on my system:
$ ls -la /Library/Frameworks/Xamarin.iOS.framework/Versions/Current/lib/64bits
total 0
drwxr-xr-x 5 rolf staff 160 Jan 17 03:18 .
drwxr-xr-x 9 rolf staff 288 Jan 17 03:20 ..
drwxr-xr-x 4 rolf staff 128 Mar 28 09:18 iOS
drwxr-xr-x 4 rolf staff 128 Mar 28 09:18 tvOS
drwxr-xr-x 4 rolf staff 128 Mar 28 09:18 watchOS
tests/xtro-sharpie/Makefile
Outdated
STAMP_CLASSIFY_IOS_DEPS := bin/Debug/xtro-sharpie.exe $(XIOS_PCH) | ||
ifndef TESTS_USE_SYSTEM | ||
STAMP_CLASSIFY_IOS_DEPS += $(XIOS) | ||
STAMP_CLASSIFY_IOS_DEPS += $(XIOS_GL) | ||
endif |
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.
The reason you had to do this change was because the dll doesn't exist... but that doesn't make things work, it just makes xtro not run correctly.
xtro (legacy) succeeded on the last completed main build: ee302b1#commitcomment-69857175, so this doesn't seem necessary anymore. |
Two small fixes: