-
Notifications
You must be signed in to change notification settings - Fork 111
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
Build with swift instead of xcodebuild #21
Conversation
😞 I found out that
Because on Linux system (or Dockers) I got the message
|
Anyway. It would be great if we can merge it because it is one step closer to support other operating systems 👌 |
Wooo @StefMa, amazing! I tried that when I first started, but I never managed to get it working. Will test ASAP 🙌 |
I don't mind using |
I thought when we compile with The idea behind this was to create a workaround for #19. |
Oh, really?
Make sense 😁
Anyway, have now some experience with swift and xcodebuild 🤣
If you like to merge it feel free. Otherwise just close this PR...
…On Jan 22, 2017 7:11 PM, "Sindre Sorhus" ***@***.***> wrote:
The idea behind this was to create a workaround for #19
<#19>.
@StefMa <https://github.com/StefMa> You're overthinking it. All that's
needed for #19 <#19> is to
switch the compilation from postinstall to prepublish.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#21 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AJwYe4y8_Ia_4nw7Ru75DA3HeLdi3nhYks5rU5vjgaJpZM4LqWgM>
.
|
Actually, I don't see enough benefit in this change. It's safer to use |
Closed because the PR make no sense 😹 |
Change the build script to build with
swift
instead ofxcodebuild
.This is part of #19. Currently
aperture
can't be build on linux (so maybe this is part of #7 as well 🤔 but haven't looked in detail inside the PR) which means it can't build inDocker
as well.swift
is available on multiple operating systems (e.g. linux) butxcodebuild
not.So changing the build script to build with
swift
you only have to installswift
on your given OS and you are fine to buildaperture
🎉Probably you want to modify the
Package.swift
to fits your needs. But I should that would be done later by you :)